/* DESKTOP TABLE */
.schemes-table {
    flex-direction: column;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.row.schemes-head > .col,
.row.schemes-body > .col {
    padding: 0.5rem;
    border-right: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.row.schemes-head > .col,
.row.schemes-body > .col:first-child {
    font-size: 1.25rem;
    background-color: #141c52 !important;
    color: #FFF;
    font-weight: bold;
}


.row.schemes-body > .col:nth-child(odd) {
    background-color: #E9ECEF;
}

.row.schemes-body > .col:nth-child(even) {
    background-color: #D3D4E0;
}

.schemes-table ul,
.schemes-accordion ul {
    padding-left: 1rem !important;
}

.schemes-table ul {
        margin-bottom: 0 !important;
}

.schemes-table li,
.schemes-accordion li {
    padding-left: 0.5rem !important;
}

.schemes-table li::marker,
.schemes-accordion li::marker {
    content: "\00bb";
}


/* MOBILE ACCORDION */
.schemes-accordion {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    display: none;
}

details {
    border: 1px solid #ADB5BD;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

details:last-child,
details ul:last-child {
    margin-bottom: 0;
}

details>div {
    padding: 1.5rem;
}

summary {
    display: list-item;
    cursor: pointer;
    padding: 1rem;
    background: #D3D4E0;
    font-size: 18px;
    font-weight: bold;
}


@media screen and (max-width: 991px) {
    .schemes-table {
        display: none;
    }

    .schemes-accordion {
        display: block;
    }
}