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

    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: #4D5255;
}

.wysiwyg.section-padding {
    padding: 110px 0;
}

.bg-white {
    background: #ffffff;
}

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

.bg-light-blue .sub-heading {
    color: #006FAC;
}

.bg-medium-blue {
    background: #006FAC;
    color: #FFFFFF;
}

.bg-light-blue+.bg-light-blue,
.bg-medium-blue+.bg-medium-blue,
.bg-white+.bg-white {
    padding-top: 0 !important;
}

.bg-medium-blue h2,
.bg-medium-blue h3,
.bg-medium-blue h4,
.bg-medium-blue h5,
.bg-medium-blue h6,
.bg-medium-blue .sub-heading {
    color: #FFFFFF;
}

.bg-medium-blue p a:not(.btn) {
    background: linear-gradient(to right, #5FB4E3 0%, #5FB4E3 100%);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 4px;
    color: #FFFFFF;
}

.chat-widget-container {
    position: fixed;
    bottom: 35px;
    left: 0;
    z-index: 999;
}

.chat-widget-img {
    width: 264px;
    height: auto;
}

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

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

.wysiwyg__svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 4;
}

.wysiwyg__svg svg {
    width: 100%;
    height: auto;
}

.wysiwyg--top-padding {
    padding-top: 14px;
}

.wave-shape--mob {
    fill: #fff;
}

.wysiwyg li a:not(.btn),
.wysiwyg p a:not(.btn) {
    padding: 0 3px 3px;
}

p .btn,
.wysiwyg .btn {
    margin: 0 20px 20px 0;
}

@media (min-width: 768px) {
    .example-btns {
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .bg-medium-blue p a:not(.btn):hover {
        background: linear-gradient(to right, #fcdd31 0%, #cd278a 100%);
        background-position: left bottom;
        background-repeat: repeat-x;
        background-size: 100% 50px;
        color: #fff;
        border-radius: 8px;
    }

    .wysiwyg--top-padding {
        padding-top: 0;
    }
}

/* table */

.table-wrap,
.ninja_table_wrapper {
    margin: 0 0 20px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}

.foo-table.ninja_footable {
    border-radius: 10px;
    overflow: hidden;
}

.footable-filtering {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.table-scroll {
    background: #ffffff;
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
}

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

.table-structure table {
    border-collapse: collapse;
    font-family: "Ubuntu", sans-serif;
    background: #F7FCFF;
    width: 100%;
    position: relative;
}

.bg-medium-blue .table-structure table {
    background: #FFFFFF;
}

.table-structure table thead {
    color: #FFFFFF;
    background: #00347B;
}

.semantic_ui .ui.table thead th,
.table-structure table thead tr th {
    padding: 12px 12px;
    text-align: left;
    font-size: 16px;
    line-height: 1.25em;
    font-weight: 700;
    border: none;
    color: #FFFFFF;
    vertical-align: middle;
}

.table-structure table tbody tr:nth-child(even),
.bg-medium-blue .table-structure table tbody tr:nth-child(even) {
    background-color: #D8F0FF;
}

.semantic_ui .ui.table tr td,
.table-structure table tbody tr td,
.table-structure table tbody tr th {
    padding: 11px 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    color: #00347B;
    line-height: 1.33em;
    vertical-align: middle;
}

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

.table-search-filter {
    background: #1887C5;
    padding: 13px 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    border-radius: 10px 10px 0 0;
}

.footable-filtering {
    background: red;
    padding: 0;
    border-radius: 10px;
}

.table-filter {
    width: 34px;
    height: 34px;
}

.table-filter button {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border: none;
    display: block;
    position: relative;
    border-radius: 0 4px 4px 0;
}

.table-filter button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 4px;
    background: #006FAC;
    clip-path: polygon(0 0, 55% 100%, 100% 0);
}

.table-search {
    width: calc(100% - 34px);
    height: 34px;
    position: relative;
    background: #FFFFFF;
    border-radius: 4px 0 0 4px;
}

.table-search input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 14px;
    line-height: 1.3em;
    color: #313131;
    font-weight: 400;
    padding: 0 55px 0 13px;
    border-radius: 4px 0 0 4px;
}

.table-search input::placeholder {
    opacity: 1;
    color: #313131;
}

.table-search button {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    line-height: 1em;
    color: #FFFFFF;
    width: 41px;
    height: 100%;
    border: none;
    background: #00347B;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .table-wrap {
        margin: 0 0 25px
    }

    .semantic_ui .ui.table thead th,
    .table-structure table thead tr th {
        font-size: 24px;
        line-height: 1.2em;
    }

    .semantic_ui .ui.table tr td,
    .table-structure table tbody tr td,
    .table-structure table tbody tr th {
        font-size: 18px;
    }

    .table-search {
        width: 198px;
    }

}