/*------------------------------------*\
    
    WebFX WYSIWYG Customizations - Global styling for all ACF WYSIWYG's

    Add custom WYSIWYG styling to this file if it should be applied to all ACF WYSIWYG's on the site
    Otherwise, put your block-specific styles in individual block stylesheets

\*------------------------------------*/

.wysiwyg {
    position: relative;
    color: #888888;
    z-index: 9;
}

.bg-white {
    background: #ffffff;
}

.bg-gray-gradient {
    background: linear-gradient(to bottom, rgba(229, 231, 231, 1) 0%, rgba(229, 231, 231, 1) 7%, rgba(229, 231, 231, 0) 100%);
}

.bg-gray {
    background: #F6F6F6;
}

.bg-dark-gray {
    background: #E7E9E9;
}

.bg-dark-blue {
    background: linear-gradient(45deg, #13133b 0%, #18376c 100%);
    color: #FFFFFF;
}

.bg-dark-blue h2,
.bg-dark-blue h3,
.bg-dark-blue h4 {
    color: #FFFFFF;
}


.no-top-padding {
    padding-top: 0 !important;
}

.no-bottom-padding {
    padding-bottom: 0 !important;
}

ol {
    counter-reset: list-counter;
}

ol > li {
    counter-increment: list-counter !important;
}

ol > li::before {
    content: counter(list-counter) "." !important;
}

@media (min-width: 768px) {
    .example-btn .btn {
        margin-top: 20px;
    }
}

@media (min-width: 1200px) and (max-width:1400px) {
    .col-lg-offset-2 {
        margin-left: 0;
    }

    .col-lg-8 {
        width: 100%;
    }
}

@media (min-width: 1400px) {}

@media (min-width: 1600px) {
    .example-btn .btn {
        margin-top: 0;
    }
}

.masthead-innerpage + .bg-gray {
    padding-top: 150px;
    margin-top: -100px;
}


/* table */

.table-structure {
    padding: 0 0;
    position: relative;
    color: #888888;
    margin-bottom: 20px;
    border: 1px solid #00AEEF;
    border-radius: 10px;
}

.table-structure table {
    border-collapse: collapse;
    width: 898px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    padding: 15px;
    border-radius: 10px;

}

.table-structure table thead {
    background: #00AEEF;
    color: #ffffff;
}

.table-structure table thead tr th {
    padding: 17px 30px;
    text-align: left;
    font-size: 18px;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    color: #FFFFFF;
}

.table-structure table tbody tr {
    background-color: #FFFFFF;
}

.table-structure table tbody tr:nth-child(odd) {
    background-color: #F0FCFE;
}

.table-structure table tbody {
    padding: 0 0;
}

.table-structure table tbody tr {
    position: relative;
}

.table-structure table tbody tr:last-child::after {
    display: none;
}

.table-structure table tbody tr:last-child {
    border-bottom: none;
}

.table-structure table tbody tr td,
.table-structure table tbody tr th {
    padding: 14px 22px 14px 30px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #888888;
    line-height: 1.3em;
    vertical-align: top;
}


.table-scroll {
    scrollbar-width: thin;
    scrollbar-color: #00AEEF #00AEEF;
    position: relative;
    overflow-x: auto;
    border-radius: 5px;
}

.ntb_table_wrapper table {
    scroll-behavior: smooth;
}

.table-scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 5px;
}

.table-scroll::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 6px solid #E5E7E7;
    border-radius: 5px;
    margin-right: 22px;
    margin-left: 0;
}

.table-scroll::-webkit-scrollbar-thumb {
    background-color: #00AEEF;
    border-radius: 0;
    border: 0 solid #00AEEF;
    width: 6px;
    height: 6px;
    border-radius: 5px;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #000;
    border-radius: 5px;
}

.table-scroll::-webkit-scrollbar-corner,
.table-scroll::-webkit-scrollbar-track {
    background-color: #000;
    border-radius: 5px;
}

.table-scroll {
    position: relative;
    width: calc(100% + 22px);
    margin-right: -22px;
    margin-bottom: 25px;
    padding: 15px 0 0;
}

.table-info {
    font-size: 14px;
    font-weight: 700;
    color: #78BE20;
    line-height: 1.2em;
    text-transform: uppercase;
    padding: 25px 0 30px;
    font-family: 'Heebo', sans-serif;
}


@media (min-width: 768px) {

    .table-structure table thead tr th {
        padding: 17px 30px;
        font-size: 19px;
    }


    .table-structure table tbody tr td,
    .table-structure table tbody tr th {
        padding: 14px 22px 14px 30px;
        font-size: 17px;
    }


    .table-scroll {
        margin-right: 0px;
        width: 100%
    }

    .table-scroll::after {
        display: none;
    }

}

@media (min-width: 1200px) {
    .table-structure {
        padding: 0 0;
        overflow-x: visible;
        margin-bottom: 0;
    }

    .table-structure table {
        width: 100%;
    }

    .table-scroll::after {
        display: none;
    }

    .table-scroll {
        margin: 5px 0 30px;
        padding: 0;
    }

    .table-structure table thead tr th {
        padding: 17px 50px;
        font-size: 20px;
    }


    .table-structure table tbody tr td,
    .table-structure table tbody tr th {
        padding: 11px 50px;
        font-size: 18px;
    }

}