/*------------------------------------*\
    
    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: var(--c-blue);
}

.wysiwyg img {
    border-radius: 24px;
}

.bg-white {
    background: #ffffff;
}

.bg-light-orange {
    background: #FEF6EF;
}

.bg-light-blue {
    background: var(--c-light-blue);
}

.bg {
    position: relative;
    z-index: 1;
    background: var(--c-blue);
}

.bg__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 214px);
    opacity: 0.2;
    mix-blend-mode: soft-light;
    object-fit: cover;
    z-index: -1;
}

.bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 214px;
    background: #fff;
}

.bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 911px;
    background: linear-gradient(to bottom,  rgba(30,60,96,1) 0%,rgba(30,60,96,0) 100%);
}

.example-btns--padding .btn-secondary {
    margin: 24px 0;
}

@media (min-width: 768px) {
    .bg__bg {
        height: calc(100% - 198px);
    }
    
    .bg::before {
        height: 198px;
    }
    
    .example-btns--padding .btn-secondary {
        margin: 32px 0;
    }
}

@media (min-width: 1200px) {
    .bg__bg {
        height: calc(100% - 205px);
    }
    
    .bg::before {
        height: 205px;
    }

    .example-btns--padding .btn-secondary {
        margin: 38px 0;
    }
    
}







/* table */

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

.table-scroll {
    padding-bottom: 5px;
    position: relative;
    height: auto;
    width: 100%;
    overflow: auto;
}

.table-structure {
    width: 700px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(30,60,96,0.1);
}

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

.table-scroll::-webkit-scrollbar-track {
    border-radius: 16px;
    background-color: #D3E1E5;
    border: 1px solid #D3E1E5;
    margin-right: 0;
}

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

.table-structure table {
    border-collapse: collapse;
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    width: 100% !important;
    
}

.table-structure table thead tr th {
    padding: 16px 15px;
    text-align: left;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 700;
    border: none;
    color: var(--c-blue);
    vertical-align: middle;
    border-right: 2px solid rgba(30,60,96,0.1);
}

.table-structure table tbody tr:nth-child(odd) {
    background-color: var(--c-light-blue);
}

.table-structure table thead tr th:last-child,
.table-structure table tbody tr td:last-child {
    border-right: none;
}


.table-structure table tbody tr td,
.table-structure table tbody tr th {
    padding: 16px 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: var(--c-blue);
    line-height: 1.51em;
    vertical-align: middle;
    border-right: 2px solid rgba(30,60,96,0.1);
    border-top: 2px solid rgba(30,60,96,0.10);
}

@media (min-width: 768px) {
    .table-wrap {
        margin-right: 0px;
        margin-bottom: 32px;
    }
    
    .table-scroll {
        padding-bottom: 0;
        overflow: visible;
    }
    
    .table-structure {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .table-structure table thead tr th {
        padding: 22px 24px;
        font-size: 18px;
        line-height: 1.22em;
    }


    .table-structure table tbody tr td,
    .table-structure table tbody tr th {
        padding: 18px 24px;
        font-size: 18px;
        line-height: 1.22em;
    }
}

@media (min-width: 1200px) {
    .table-wrap {
        margin-bottom: 40px;
    }

    .table-structure table thead tr th {
        padding: 24px 24px;
    }


    .table-structure table tbody tr td,
    .table-structure table tbody tr th {
        padding: 15px 24px;
    }
}

.wysiwyg__cta {
    border-top: 1px solid rgba(30,60,96,0.1);
    padding-top: 30px;
}

.wysiwyg__cta__img {
    margin: 0 auto;
    width: 165px;
}

.wysiwyg__cta__text {
    text-align: center;
    padding-top: 30px;
}

.wysiwyg__cta__text h4 {
    margin-bottom: 20px;
}

.wysiwyg--full-list ul {
    margin-bottom: 20px;
}

.wysiwyg--full-list ul li {
    font-weight: 700;
}

@media (min-width: 1200px) {
    .wysiwyg__cta {
        padding-top: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .wysiwyg__cta__img {
        margin: 0;
    }
    
    .wysiwyg__cta__text {
        text-align: left;
        padding-top: 0;
        width: calc(100% - 165px);
        padding-left: 24px;
    }
    
    .wysiwyg__cta__text h4 {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .wysiwyg--full-list ul {
        margin-bottom: 0;
        margin-top: 15px;
    }
    
    .wysiwyg--full-list ul li {
        font-size: 20px;
        padding-left: 36px;
        margin-bottom: 15px;
    }

    .wysiwyg--full-list ul li::before {
        font-size: 24px;
    }

    ul.list--two-columns,
    ol.list--two-columns {
        column-count: 2;
    }

    ul.list--three-columns,
    ol.list--three-columns {
        column-count: 3;
        column-gap: 20px;
    }

    ul.list--three-columns li,
    ol.list--three-columns li {
        margin-bottom: 10px;
    }
}