/*------------------------------------*\
    
    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 { 
    color: #333333;
}

.bg-white {
    background: #ffffff;
}

.bg-gray {
    background: rgba(220, 220, 220, 0.5);
}

.bg-dark-gray {
    background: #333333;
    color: #FFFFFF;
}

.bg-dark-gray h2,
.bg-dark-gray h3,
.bg-dark-gray h4,
.bg-dark-gray h5,
.bg-dark-gray h6,
.bg-dark-gray p,
.bg-dark-gray button,
.bg-dark-gray ol,
.bg-dark-gray ul {
    color: #FFFFFF;
}

.bg-dark-gray .sub-heading {
    color: #00A7FF;
}

.bg-dark-gray ul li:before {
    background-color: #ffffff;
}

.bg-dark-gray .btn-tertiary {
    color: #00A7FF;
}

.example-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.example-btns .btn+.btn {
    margin: 0;
}


@media (min-width: 768px) {
    .example-btns {
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .bg-dark-gray .btn-primary:hover {
        background: transparent; 
        color: #FFFFFF;
        box-shadow: 0px 0px 0 1px #FFFFFF;
    }

    .bg-dark-gray .btn-tertiary:hover {
        color: #00A7FF;
        background: linear-gradient(to bottom, rgba(0, 167, 255, 0.18) 0%, rgba(0, 167, 255, 0.18) 100%);
        background-position: 2px 80%;
        background-repeat: repeat-x;
        background-size: 1px 8px;
    }
}





/* table */

.table-wrap {
    margin-right: -22px;
    margin-bottom: 30px;
}

.table-wrap:last-child {
    margin-bottom: 0;
}

.table-scroll {
    padding-bottom: 20px;
    position: relative;
    height: auto;
    width: 100%;
    overflow: auto;
    @supports not (selector(::-webkit-scrollbar-thumb)) {
        scrollbar-color: #BABABA #FFFFFF;
        scrollbar-width: thin;
    }
}

.table-structure {
    width: 832px;
    overflow: hidden;
}

.table-scroll::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.table-scroll::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    margin-right: 22px;
}

.table-scroll::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #BABABA;
}

.bg-white .table-scroll::-webkit-scrollbar-track {
    background-color: #EDEDED;
    border: 1px solid #EDEDED;
}

.bg-white .table-scroll::-webkit-scrollbar-thumb {
    background-color: #AEAEAE;
}

.table-structure table {
    border-collapse: collapse;
    font-family: "Hind", serif;
    background: transparent;
    width: 100%;
    table-layout: fixed;
}

.table-structure table thead {
    color: #333333;
}

.table-structure table thead tr th {
    padding: 16px 36px;
    text-align: left;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 700;
    border: none;
    color: #333333;
    vertical-align: middle;
    font-family: "Montserrat", serif;
    background: #D9D9D9;
}

.table-structure table thead tr th:first-child,
.table-structure table tbody tr td:first-child {
    border-radius: 5px 0 0 5px;
}

.table-structure table thead tr th:last-child,
.table-structure table tbody tr td:last-child {
    border-radius: 0 5px 5px 0;
}

.table-structure table tbody tr td,
.table-structure table tbody tr th {
    padding: 15px 36px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.4em;
    vertical-align: middle;
    background: rgba(220, 220, 220, 0.50);
}

.table-structure table tbody tr:nth-child(even) td {
    background: #D9D9D9;
}

@media (min-width: 768px) {
    .table-wrap {
        margin-right: -52px;
    }

    .table-structure {
        width: 832px;
    }

    .table-scroll::-webkit-scrollbar-track {
        margin-right: 52px;
    }
}

@media (min-width: 1200px) {
    .table-wrap {
        margin-right: 0px;
    }
    
    .table-scroll {
        padding-bottom: 0;
        overflow: visible;
    }
    
    .table-structure {
        width: 100%;
        overflow: hidden;
    }
}
