/* =========================================
   FULL SPECIFICATIONS
========================================= */

.netrvis-specifications-section {
    width: 100%;
    padding-top: 80px ;
    box-sizing: border-box;
    color: #000 !important;
            background: #f7f9fb;

}

.netrvis-spec-description {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 35px;
    text-align: justify;
}

.netrvis-spec-description p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.netrvis-spec-description p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.netrvis-spec-description p:last-child {
    margin-bottom: 0;
}
/* =========================================
   RESET EXISTING WEBSITE STYLES
========================================= */

.netrvis-specifications-section * {
    box-sizing: border-box;
}

.netrvis-specifications-section h2,
.netrvis-specifications-section h3,
.netrvis-specifications-section th,
.netrvis-specifications-section td {
    color: #000 !important;
}


/* =========================================
   SPECIFICATION CONTAINER
========================================= */

.netrvis-specifications-section .netrvis-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}


/* =========================================
   SECTION HEADING
========================================= */

.netrvis-specifications-section .section-heading {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
}

.netrvis-specifications-section .section-heading h2 {
    margin: 0;
    padding: 0;
    background: transparent !important;
    color: #000 !important;
}


/* =========================================
   SPECIFICATION GROUP
========================================= */

.netrvis-spec-group {
    width: 100%;
    min-width: 0;
}

.netrvis-spec-group h3 {
    margin: 0 0 18px;
    padding: 0;
    background: transparent !important;
    color: #000 !important;
    font-size: 24px;
    line-height: 1.3;
}


/* =========================================
   TABLE WRAPPER
========================================= */

.netrvis-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* =========================================
   TABLE RESET
========================================= */

.netrvis-spec-table {
    display: table !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
    border-collapse: collapse !important;
    border-spacing: 0;
    table-layout: fixed !important;
    background: #fff !important;
    color: #000 !important;
}


/* =========================================
   TABLE ROW RESET
========================================= */

.netrvis-spec-table thead {
    display: table-header-group !important;
}

.netrvis-spec-table tbody {
    display: table-row-group !important;
}

.netrvis-spec-table tr {
    display: table-row !important;
}


/* =========================================
   TABLE CELLS
========================================= */

.netrvis-spec-table th,
.netrvis-spec-table td {
    display: table-cell !important;

    height: auto !important;
    min-height: 0 !important;

    border: 1px solid #ddd !important;

    padding: 13px 15px !important;

    text-align: left !important;
    vertical-align: top !important;

    background: #fff !important;
    color: #000 !important;

    font-size: 14px;
    line-height: 1.5;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;

    writing-mode: horizontal-tb !important;
}


/* =========================================
   TABLE HEADER
========================================= */

.netrvis-spec-table th {
    font-weight: 600 !important;
    background: #f7f7f7 !important;
    color: #000 !important;
}


/* =========================================
   NORMAL 2-COLUMN TABLES
========================================= */

.netrvis-spec-table th:first-child,
.netrvis-spec-table td:first-child {
    width: 40% !important;
}

.netrvis-spec-table th:last-child,
.netrvis-spec-table td:last-child {
    width: 60% !important;
}


/* =========================================
   MECHANICAL & ENVIRONMENTAL
   TWO SEPARATE TABLES
========================================= */

.netrvis-mechanical-group {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    margin: 0;
}


/* Two tables side-by-side */

.netrvis-mechanical-environmental-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    align-items: start !important;
}


/* Each table wrapper */

.netrvis-mechanical-environmental-grid > .netrvis-table-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}


/* Tables inside Mechanical & Environmental */

.netrvis-mechanical-environmental-grid .netrvis-spec-table {
    display: table !important;
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
}


/* Mechanical & Environmental cells */

.netrvis-mechanical-environmental-grid .netrvis-spec-table th,
.netrvis-mechanical-environmental-grid .netrvis-spec-table td {
    display: table-cell !important;

    padding: 13px 15px !important;

    border: 1px solid #ddd !important;

    text-align: left !important;
    vertical-align: middle !important;

    background: #fff !important;
    color: #000 !important;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;

    writing-mode: horizontal-tb !important;
}


/* Mechanical & Environmental header */

.netrvis-mechanical-environmental-grid .netrvis-spec-table th {
    background: #f7f7f7 !important;
    font-weight: 600 !important;
}


/* Parameter column */

.netrvis-mechanical-environmental-grid .netrvis-spec-table th:first-child,
.netrvis-mechanical-environmental-grid .netrvis-spec-table td:first-child {
    width: 40% !important;
}


/* Value column */

.netrvis-mechanical-environmental-grid .netrvis-spec-table th:last-child,
.netrvis-mechanical-environmental-grid .netrvis-spec-table td:last-child {
    width: 60% !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .netrvis-specifications-section {
        padding: 65px 0;
    }

    .netrvis-specifications-section .netrvis-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .netrvis-specifications-section .section-heading {
        grid-column: auto;
    }

    .netrvis-mechanical-group {
        grid-column: auto;
        max-width: 100%;
    }

    /*
       Keep Mechanical & Environmental
       as two tables side-by-side
    */

    .netrvis-mechanical-environmental-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 25px !important;
    }

    .netrvis-mechanical-environmental-grid .netrvis-spec-table th,
    .netrvis-mechanical-environmental-grid .netrvis-spec-table td {
        padding: 12px 12px !important;
        font-size: 13px !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .netrvis-specifications-section {
        width: 100%;
        padding: 50px 0;
        overflow: hidden;
    }


    /* Container */

    .netrvis-specifications-section .netrvis-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }


    /* Section heading */

    .netrvis-specifications-section .section-heading {
        grid-column: auto;
        width: 100%;
        text-align: left;
    }

    .netrvis-specifications-section .section-heading h2 {
        text-align: left !important;
    }


    /* Specification group */

    .netrvis-spec-group {
        width: 100%;
        min-width: 0;
    }

    .netrvis-spec-group h3 {
        margin-bottom: 15px;
        font-size: 22px;
        line-height: 1.3;
        text-align: left !important;
    }


    /* =====================================
       NORMAL TABLES
    ===================================== */

    .netrvis-spec-table {
        display: table !important;
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }

    .netrvis-spec-table th,
    .netrvis-spec-table td {
        display: table-cell !important;

        padding: 10px 8px !important;

        font-size: 13px !important;
        line-height: 1.45 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;

        writing-mode: horizontal-tb !important;
    }

    .netrvis-spec-table th:first-child,
    .netrvis-spec-table td:first-child {
        width: 38% !important;
    }

    .netrvis-spec-table th:last-child,
    .netrvis-spec-table td:last-child {
        width: 62% !important;
    }


    /* =====================================
       MECHANICAL & ENVIRONMENTAL
       TWO TABLES STACK ON MOBILE
    ===================================== */

    .netrvis-mechanical-group {
        grid-column: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .netrvis-mechanical-environmental-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .netrvis-mechanical-environmental-grid > .netrvis-table-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .netrvis-mechanical-environmental-grid .netrvis-spec-table {
        display: table !important;
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }

    .netrvis-mechanical-environmental-grid .netrvis-spec-table th,
    .netrvis-mechanical-environmental-grid .netrvis-spec-table td {
        display: table-cell !important;

        padding: 10px 8px !important;

        font-size: 13px !important;
        line-height: 1.45 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;

        writing-mode: horizontal-tb !important;
    }

    .netrvis-mechanical-environmental-grid .netrvis-spec-table th:first-child,
    .netrvis-mechanical-environmental-grid .netrvis-spec-table td:first-child {
        width: 38% !important;
    }

    .netrvis-mechanical-environmental-grid .netrvis-spec-table th:last-child,
    .netrvis-mechanical-environmental-grid .netrvis-spec-table td:last-child {
        width: 62% !important;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .netrvis-specifications-section {
        padding: 40px 0;
    }

    .netrvis-spec-group h3 {
        font-size: 20px;
    }

    .netrvis-spec-table th,
    .netrvis-spec-table td {
        padding: 9px 7px !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .netrvis-mechanical-environmental-grid {
        gap: 20px !important;
    }

    .netrvis-mechanical-environmental-grid .netrvis-spec-table th,
    .netrvis-mechanical-environmental-grid .netrvis-spec-table td {
        padding: 9px 7px !important;
        font-size: 12px !important;
    }
}