/*------------------------------------*\
    
    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

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

.example-bttn .btn {
    margin-bottom: 20px;
}

.wysiwyg__content img {
    border-radius: 12px;
}


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

    .example-bttn br {
        display: none;
    }

    .example-bttn .btn {
        margin-bottom: 0px;
        margin-right: 32px;
    }
}

@media (min-width: 1200px) {
    .example-bttn + .example-bttn {
        margin-top: 32px;
    }
}

.bg-white {
    background: var(--white);
}

.bg-light-blue {
    background: #F1FDFC;
}

.bg-dark-blue {
    background: var(--primary-color);
    color: var(--white);
}

.bg-dark-blue h5,
.bg-dark-blue h2,
.bg-dark-blue h4 {
    color: var(--white);
}

.bg-dark-blue h3 {
    color: var(--light-blue);
}

.bg-dark-blue p a:not(.btn, .btn-location ,.btn-primary-dark-blue ),
.bg-dark-blue p a:hover:not(.btn, .btn-location, .btn-primary-dark-blue ) {
    color: var(--secondary-color);
}

.bg-dark-blue .btn, 
.bg-dark-blue .btn-location {
    color: var(--white);
} 

.bg-dark-blue .btn-primary {
    background: var(--white);
    color: var(--tertiary-color);
}

.bg-dark-blue .btn-secondary,
.bg-dark-blue .btn-tertiary {
    border-color: var(--white);
    color: var(--white);
}

.bg-dark-blue .btn-primary:hover {
    background: var(--white);
}

.wysiwyg__example-btns .btn {
    margin-bottom: 20px;
}

.example-bttn .btn-tertiary {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .wysiwyg__example-btns br {
        display: none;
    }

    .wysiwyg__example-btns .btn {
        margin-bottom: 0;
        margin-right: 40px;
    }

    .wysiwyg__example-btns {
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .bg-dark-blue p a:hover {
        color: var(--secondary-color-hover-2);
        background: linear-gradient(to bottom, rgba(32,185,204,0.5) 0%, rgba(32,185,204,0.5) 100%);
        background-position: 0 100%;
        background-repeat: repeat-x;
        background-size: 3px 15px;
        transition: background-size .0s;  
    }

    .bg-dark-blue .btn-primary:hover {
        color: var(--secondary-color-hover-2);
        transition: all 0.3s ease 0s;
    }
    
    .bg-dark-blue .btn-secondary:hover,
    .bg-dark-blue .btn-tertiary:hover {
        border-color: #FFEAC2;
        color: #FFEAC2;
    }
}





.table-structure {
    padding: 0 0 4px 0;
    position: relative;
    color: #444444;
    overflow-x: auto;
    position: relative;
    scrollbar-color: var(--light-blue) #D8D8D8;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

.table-scroll {
    margin: 20px -22px 0 0;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
    border-radius: 10px 0 0 10px;
}

.table-scroll::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 172px;
    height: 100%;
    background: linear-gradient(to right,  rgba(25,143,159,0) 0%,rgba(25,143,159,1) 90%,rgba(25,143,159,1) 100%); 
    z-index: 1;
}

.table-structure table {
    border-collapse: collapse;
    width: 664px;
    font-family: var(--font-family);
    background: var(--light-gray);
    border-radius: 10px;
}

.table-structure table tbody tr td {
    padding: 12px 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    color: #444444;
    line-height: 1.6em;
    vertical-align: middle;
    border-right: 2px solid var(--light-blue);
}

.table-structure table tbody tr td:first-child {
    width: 205px;
}

.table-structure table tbody tr td:last-child {
    width: 250px;
}

.table-structure table thead {
    background-color: var(--light-blue);
    color: var(--white);
}

.table-structure table tbody tr {
    border-bottom: 2px solid var(--light-blue);
}

.table-structure table thead tr th {
    padding: 22px 16px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 700;
    border: none;
    color: var(--primary-color);
    vertical-align: middle;
}

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

.table-info {
    font-size: 12px;
    line-height: 1em;
    font-weight: 400;
    color: var(--light-blue);
    margin: -10px 0 0;
    padding: 0;
    text-align: center;
}


@media (min-width: 768px) {
    .table-structure table {
        width: 100%;
    }

    .table-scroll {
        margin: 5px 0 0 0;
        border-radius: 10px;
    }

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

}

@media (min-width: 1200px) {
    .table-scroll {
        border-radius: 8px;
    }

    .table-structure table thead tr th {
        padding: 21px 22px;
        font-size: 20px;
        line-height: 1.35em;
    }

    .table-structure table tbody tr td {
        padding: 20px 24px;
        font-size: 18px;
        font-weight: 400;
        color: var(--dark);
        line-height: 1.44em;
    }

    .table-structure table tbody tr td:first-child {
        padding-left: 32px;
    }

    .table-structure table tbody tr td:first-child,
    .table-structure table tbody tr td:nth-child(2) {
        width: 324px;
    }

    .table-structure table tbody tr td:last-child {
        width: auto;
    }

}