/* =========================================================
       COMMON ELIGIBILITY / FISCAL SUPPORT TABLE
       Used across Category 5, 6 and 7
    ========================================================= */
.eligibility-table-wrapper {
    width: 100%;
    margin-top: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.eligibility-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.45;
    color: #26364a;
}

    /* Table cells */
    .eligibility-table th,
    .eligibility-table td {
        border: 1px solid #d9e0e8;
        padding: 11px 14px;
        vertical-align: middle;
    }

    /* Left label column */
    .eligibility-table .table-label {
        width: 28%;
        background: #f5f7fa;
        color: #26364a;
        font-weight: 700;
        text-align: center;
    }

    /* Main value column */
    .eligibility-table .table-value {
        width: 72%;
        background: #ffffff;
    }

    /* Technology / multi-column header */
    .eligibility-table .table-head {
        background: #eef2f7;
        color: #1d3046;
        font-weight: 700;
        text-align: center;
    }

    /* Multiple-value rows */
    .eligibility-table .table-value strong {
        font-weight: 700;
    }

    /* Fiscal support row */
    .eligibility-table .fiscal-label {
        background: #f1edfb;
        color: #4f3b79;
        font-weight: 700;
        text-align: center;
    }

    .eligibility-table .fiscal-value {
        background: #faf8ff;
        text-align: center;
        font-weight: 600;
    }

    /* Fiscal percentage */
    .eligibility-table .fiscal-percentage {
        display: block;
        margin-top: 3px;
        font-size: 15px;
        font-weight: 800;
        color: #60459a;
    }

    /* Italic text such as Group Companies / Joint Venture */
    .eligibility-table em {
        color: #4e5661;
    }

    /* Small explanatory text */
    .eligibility-table .table-note {
        display: block;
        margin-top: 3px;
        font-size: 11px;
        line-height: 1.4;
        color: #687586;
    }

/* Separate technology blocks inside Category 7 */
.eligibility-table-block {
    margin-top: 18px;
}

    .eligibility-table-block:first-child {
        margin-top: 0;
    }

.eligibility-table-block-title {
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #31465d;
}

/* Highlight the major financial numbers */
.eligibility-table .amount-highlight {
    font-weight: 700;
    color: #273b55;
}

.eligibility-table .table-item + .table-item {
    margin-top: 6px;
}

/* =========================================================
       RESPONSIVE TABLE
    ========================================================= */

@media (max-width: 767px) {

    .eligibility-table-wrapper {
        overflow-x: auto;
    }

    .eligibility-table {
        min-width: 680px;
        font-size: 13px;
    }

        .eligibility-table th,
        .eligibility-table td {
            padding: 9px 10px;
        }

        .eligibility-table .table-label {
            width: 30%;
        }

        .eligibility-table .table-value {
            width: 70%;
        }

        .eligibility-table .fiscal-percentage {
            font-size: 14px;
        }
}
