@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
.accw-overlay{
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .15s ease;
    border-radius: inherit;
}
.accw-overlay--visible {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.accw-widget-trigger {
    position: fixed;
    bottom: 17px;
    right: 20px;
    z-index: 999999999;
    max-width: 55px;
    max-height: 55px;
    border: none;
    padding: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.accw-widget-trigger.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.accw-widget-trigger.move{
    right: 80px;
}
.accw-widget-trigger-overlay {
    display: none;
    position: absolute;
    width: 91%;
    height: 91%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    border-radius: 60%;
}

.accw-widget-trigger-overlay .loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.accw-widget-trigger .active-actions-icon{
    display: none;
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: solid 2px #018DC8;
    color: #018DC8;
    background-color: #fff;
    z-index: 9999;
}
.active-actions-icon svg {
    position: absolute;
    width: 11px;
    height: 11px;
    color: #018DC8;
        left: 4px;
    top: 4px;
}
.accw-widget-trigger.actions-active .active-actions-icon{
    display: block;
}

.widget *{
    font-family: "Inter", sans-serif;
}

.widget {
    position: fixed;
    background-color: #EDEFF6;
    color: #1f2533;
    visibility: hidden;
    width: 100%;
    max-width: 550px;
    height: 95%;
    max-height: 95%;
    top: 50%;
    bottom: auto;
    font-family: "Inter", sans-serif;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    text-transform: none;
    direction: ltr;
    text-align: left;
    border-radius: 7px;
    user-select: none;
    outline: 0;
    letter-spacing: 0;
    line-height: 1;
    z-index: 2147483647;
    will-change: transform, opacity, height;
    box-shadow: 0 10px 30px rgba(60, 80, 170, .1), 0 -20px 30px rgba(60, 80, 170, .1);
    transform: translateY(-45%);
    transition: opacity .15s ease, margin-top .15s ease, height .15s ease-out, transform .3s ease-out;
}

.widget--position-right {
    right: 30px;
    left: auto;
}
.widget--position-left {
    left: 30px;
    right: auto;
}


@media screen and (max-width: 700px) {
    .widget {
        width: 95%;
        height: 97% !important;
        max-height: none;
        max-width: 550px;
        margin: 150px auto auto;
        left: 0;
        right: 0;
    }
}

.widget--active {
    opacity: 1;
    visibility: visible;
    height: 95%;
    pointer-events: auto;
    margin-top: 0;
    transform: translateY(-50%);
}

.widget:not(.widget--transition), .widget:not(.widget--transition) .main-options, .widget:not(.widget--transition) .search {
    transition: none;
}

.widget .main {
    position: relative;
    height: calc(100% - 105px);
    overflow: hidden;
    visibility: hidden;
    scrollbar-color: silver transparent;
    scrollbar-width: thin;
}

.widget .main:after {
    position: absolute;
    background-color: #008BC1;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    z-index: -1;
    content: "";
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.widget--active .main {
    visibility: visible;
    overflow-y: scroll;
}

.widget .header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    margin-bottom: 20px;
    background: #fff;
}

.widget .header .left img {
    max-width: 267px;
    max-height: 80px;
    object-fit: contain;
}

.widget .header .right {
    display: flex;
    gap: 13px;
}

.widget .close_button {
    transition: all .15s ease;
    color: #fff;
    appearance: none;
    border: 0;
    padding: 0;
    line-height: .8;
    cursor: pointer;
    background: #018DC8;
    border-radius: 50%;
    width: 43px;
    height: 43px;
}
.widget .close_button .icon {
    height: 13px;
}

.widget .refresh_button{
    transition: all .15s ease;
    color: #3E454F;
    appearance: none;
    border: 0;
    background: 0 0;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}
.widget .refresh_button  .icon {
    height: 23px;
    stroke: #3E454F;
    stroke-width: 0.8;
}

.widget .hide_button{
    transition: all .15s ease;
    color: #3E454F;
    appearance: none;
    border: 0;
    background: 0 0;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}
.widget .hide_button  .icon {
    height: 23px;
}

@media screen and (max-width: 700px) {
    .widget .close_button .icon {
        height: 11px;
    }
}
.widget .hero {
    text-align: center;
    padding: 0 15px;
}

.widget .hero .title {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
}

.widget .hero p {
    color: #fff;
    margin-bottom: 0px;
}

.widget .hero .actions {
    padding-top: 30px;
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.widget .hero-button {
        appearance: none;
    border: 0;
    background: 0 0;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 30%;
    font-size: 15px;
    color: #018DC8;
    border-radius: 50px;
    letter-spacing: .3px;
    padding: 9px 3px;
    background-color: #fff;
    text-decoration: none;
    transition: all .15s ease;

}
.widget .hero-button:focus, 
.widget .hero-button:hover {
    transform: scale(1.07);
}


@media screen and (max-width: 980px) {
    .widget .hero .actions {
        flex-wrap: wrap;
    }
    .widget .hero-button {
        max-width: 48%;
        margin-top: 10px;
    }
}
@media screen and (max-width: 700px) {
    .widget .hero .actions {
        flex-direction: column;
    }
    .widget .hero-button {
        max-width: 300px;
    }
}
.hero-button .icon {
    margin-inline-end: 5px;
    color: #018DC8;
    height: 15px;
}


.widget .main-options {
    opacity: 0;
    margin-top: 18px;
    padding: 0 15px;
    will-change: transform, opacity;
    transform: translateY(50px);
    transition: opacity .35s ease-in-out, transform .35s ease-in-out;
} 
.widget--active .main-options {
    opacity: 1;
    transform: translateY(0);
}

.widget .action {
    overflow: hidden;
    position: relative;
    padding: 15px;
    border-radius: 10px;
    margin: 0 auto 20px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(60, 80, 170, .1);
}

.widget .action .action__title {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #000;
}

@media screen and (max-width: 700px) {
    .widget .action .action__title {
        font-size: 16px;
        line-height: 1.3;
    }
}

.widget .action-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    transition: all .5s ease;
}


.widget .action-group .action-box {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    width: 31%;
    line-height: 1;
    margin-bottom: 15px;
    height: 120px;
    padding: 15px;
    user-select: none;
    cursor: pointer;
    border-radius: 8px;
    border: solid 1px rgba(101,106,114,0.09);
    background-color: rgba(242,249,252,0.80);
    transition: all .15s ease;
}

.widget .action-group .action-box .content__title {
    font-size: 14px;
    color: #3E454F;
    font-weight: 500;
}

.widget .action-group .action-box:not([role=button]) {
    width: 65.5%;
    cursor: default;
    outline: 0 !important;
    background-color: #f2f7fa;
    border: solid 1px rgba(101,106,114,0.09) !important;
}
.widget .action-group .action-box:not([role=button]) .action__content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.widget .action-group .action-box:not([role=button]) .action__content .content__icon {
    display: inline-block;
    margin-bottom: 0;
    margin-inline-end: 10px;
    color: #1f2533;
}
.widget .action-group .action-box:not([role=button]) .action__content .content__title {
    display: inline-block;
    color: #1f2533;
}
.widget .action-group .action-box:not([role=button]) .action__custom-element {
    width: 100%;
    margin-top: 15px;
}
.widget .action-group .action-box:not([role=button]) .action__custom-element .range {
    position: relative;
    width: 90%;
    max-width: 200px;
    margin: auto;
}
.widget .action-group .range [class$=-button] {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 43px;
    height: 43px;
    top: 0;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transform: translateZ(0);
    background-color: #018DC8;
    transition: all .15s ease;
    color: #fff;
    border: none;
}
.widget .action-group .range .range__minus-button {
    left: -15px;
}
.widget .action-group .range .range__plus-button {
    right: -15px;
}
.widget .action-group .range [class$=-button] .icon {
    height: 14px;
    max-width: 14px;
}
.widget .action-group .range__base {
    color: #3E454F;
    position: relative;
    width: 100%;
    height: 45px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 3;
    direction: ltr;
    background-color: #fff;
}

@media screen and (max-width: 980px) {
    .widget .action-group .action-box {
        width: 48%;
    }
}

.widget .action-group .action-box--active[role=button] {
    background-color: #008BC1;
    outline: 0 !important;
    transition: all .15s ease;
    color: #fff;
}

.widget .action-group .action-box:focus, 
.widget .action-group .action-box:hover, 
.widget .action-group .action-box:active {
    border-color: transparent;
    outline: 1px solid #008BC1;
    outline-offset: -4px;
}

.widget .action-group .action-box--active[role=button] .content__icon, 
.widget .action-group .action-box--active[role=button] .content__title{
    color: #fff;
}

.widget .action-group .action-box .content__icon {
    margin-bottom: 15px;
    color: #3E454F;
    display: block;
}

.widget .action-group .action-box .content__icon .icon {
    height: 21px;
    max-width: 25px;
}

.widget .action-group .action-box[class*="action-box-textAlign"] .content__icon .icon {
    transform: rotate(180deg);
}


.widget .profiles .profile {
    position: relative;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -7px;
    padding: 18px 7px;
    line-height: 1;
    outline: 0;
    transition: all .15s ease;
    border-bottom: 1px solid transparent;
}

.widget .profiles .profile-toggle {
    display: block;
    direction: ltr;
    position: relative;
    min-width: 13%;
}

.widget .profiles .toggle, 
.widget .profiles .toggle__option {
    display: flex;
    align-items: center;
}
.widget .profiles .toggle {
    justify-content: flex-start;
    width: 100%;
    height: 35px;
    border-radius: 50px;
    background-color: #E7EAEF;
}

.widget .profiles .toggle__option {
    position: relative;
    justify-content: center;
    width: 50%;
    height: 100%;
    font-size: 9px;
    font-weight: 700;
    color: #1f2533;
    text-align: center;
    z-index: 1;
    transition: left .3s ease;
}
.widget .profiles .toggle--active, .widget .profiles .toggle:after {
    background-color: #fff;
}
.widget .profiles .toggle--active .toggle__option--on {
    color: #fff;
}

.widget .profiles .toggle:after {
    position: absolute;
    width: 46%;
    left: 5%;
    height: 85%;
    box-shadow: 0 0 30px rgba(60, 80, 170, .2);
    border-radius: 50px;
    z-index: 0;
    content: "";
    top: 49.5%;
    transform: translateY(-50%);
    transition: left .3s ease;
}
.widget .profiles .toggle--active:after {
    left: 48% !important;
    background-color: #fff;
}
.widget .profiles .toggle.toggle--active {
    background: #008BC1;
}

.widget .profiles .toggle__option {
    /*text-indent: -5000px;*/
}

.widget .profiles .profile-content {
    display: flex;
    flex-flow: column;
    position: relative;
    justify-content: space-between;
    width: 87%;
    padding-inline-start: 3%;
    padding-inline-end: 50px;
}
.widget .profiles .profile-content__name {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    color: #3E454F;
    font-weight: 500;
    /*text-shadow: 0 0 rgba(31, 37, 51, .5);*/
    transition: all .15s ease;
}
.widget .profiles .profile-content__text {
    font-size: 13px;
    margin-top: 5px;
    color: #3E454F;
    transition: all .15s ease;
}
.widget .profiles .profile-content__icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    right: 0;
    top: 50%;
    color: #3E454F;
    transform: translateY(-50%);
    transition: all .15s ease;
}
.widget .profiles .profile-content__icon .icon {
    height: 20px;
}
.widget .profiles .profile--active .profile-content__icon {
    background-color: #fff;
}
.widget .profiles .profile-description {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    padding: 0 15px;
    line-height: 1.3;
    transition: all .3s ease;
}
.widget .profiles .profile--active .profile-description {
    max-height: 150px;
    padding-top: 15px;
}
.widget .profiles .profile:after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 97%;
    left: 2%;
    display: block;
    border-bottom: solid 1px #ebecf2;
}
.widget .profiles .profile:last-child {
    border-bottom: none 0;
    margin-bottom: -15px;
}


/*.widget .profiles .profile--active {
    margin-top: -2.5px;
    background-color: #f2f7fa;
}*/
.widget .profiles .profile--active:last-child {
    margin-bottom: -7px;
}
@media screen and (max-width: 980px) {
   .widget  .action-group .action-box.action-box--hide-mobile{
    display: none;
   }
   .widget  .action-group .action-box:not([role=button]) {
        width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .widget .profiles .profile-content__name {
        font-size: 15px;
    }
    .widget .profiles .profile-content__text {
        font-size: 13px;
    }
    .widget .profiles .profile-content__icon {
        display: none;
    }
    .widget .profiles .profile-content__icon .icon {
        height: 14px;
    }
    .widget .profiles .profile-description {
        font-size: 14px;
    }
    .widget .profiles .profile-content {
        width: 80%;
        padding-inline-end: 0;
    }
    .widget .profiles .profile-toggle {
        min-width: 20%;
    }
    .widget .profiles .toggle {
        height: 30px;
    }
    .widget .profiles .toggle:after {
        width: 43%;
    }
}

.widget-footer {
    font-size: 15px;
    white-space: nowrap;
    text-align: center;
    padding: 12px 15px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(60, 80, 170, .1);
    bottom: 0;
    left: 0;
    color: #fff;
}

.widget-footer__link {
    display: flex;
    align-items: center;
    display: inline-flex;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
}
.widget-footer__link:hover,.widget-footer__link:focus,.widget-footer__link:active{
    color: #fff;
}
.widget-footer__link .developer__cta {
    margin-inline-start: 40px;
    line-height: 0;
}

.widget-footer__link .developer__cta .icon {
    height: 10px;
    margin-inline-start: 3px;
    transform: rotate(90deg);
    margin-bottom: 1px;
}

.widget-footer .reset-button-wrap button.refresh_button {
    background-color: #018DC8;
    display: block;
    text-align: center;
    width: 100%;
    border-radius: 4px;
    padding: 9px 7px;
    line-height: normal;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.widget-footer .reset-button-wrap button.refresh_button .icon {
    stroke: #fff;
    color: #fff;
    height: 16px;
}

.footer_links_warp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 10px;
}

.footer_links_warp .widget-footer__link {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    line-height: 24px;
}


.footer_links_warp .footer_logo {
    max-width: 100px;
    max-height: 28px;
}

.footer_links_warp > div:first-child {color: #000;font-size: 23px;line-height: 15px;}

.footer_links_warp > div:first-child a {
    text-decoration: underline;
}

.footer_links_warp .widget-footer__link span {
    text-decoration: underline;
}


.footer-actions{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-actions button.hero-button{
    background-color: #018DC8;
    display: block;
    text-align: center;
    width: auto;
    border-radius: 4px;
    padding: 9px 10px;
    line-height: normal;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
        margin: 0;
}

.footer-actions button.hero-button .icon{
    color: #fff;
    height: 14px;
}


@media screen and (max-width: 700px) {
    .widget-footer .reset-button-wrap button.refresh_button {
        padding: 6px 5px;
        font-size: 12px;
    }

    .widget-footer .reset-button-wrap button.refresh_button .icon {
        height: 11px;
    }

    .footer_links_warp {flex-wrap: wrap;gap: 0px;margin-top: 4px;}

    .footer_links_warp > div:first-child {
        width: 100%;
        text-align: left;
    }
    .footer-actions button.hero-button {
        background-color: #018DC8;
        display: block;
        text-align: center;
        width: auto;
        border-radius: 4px;
        padding: 8px 7px;
        line-height: normal;
        color: #fff;
        font-size: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
        margin: 0;
    }
}



.readable-font-applied li:not(accw-widget-ui):not([data-accw]),
.readable-font-applied a:not(accw-widget-ui):not([data-accw]),
.readable-font-applied p:not(accw-widget-ui):not([data-accw]),
.readable-font-applied h1:not(accw-widget-ui):not([data-accw]),
.readable-font-applied h2:not(accw-widget-ui):not([data-accw]),
.readable-font-applied h3:not(accw-widget-ui):not([data-accw]),
.readable-font-applied h4:not(accw-widget-ui):not([data-accw]),
.readable-font-applied h5:not(accw-widget-ui):not([data-accw]),
.readable-font-applied h6:not(accw-widget-ui):not([data-accw]),
.readable-font-applied body:not(accw-widget-ui):not([data-accw]),
.readable-font-applied input[type="button"]:not(accw-widget-ui):not([data-accw]),
.readable-font-applied button:not(accw-widget-ui):not([data-accw]),
.readable-font-applied input[type="submit"]:not(accw-widget-ui):not([data-accw]) {
    font-family: Arial, Helvetica, sans-serif !important;
}

.readable-font-applied body:not(accw-widget-ui),
.readable-font-applied article:not(accw-widget-ui),
.readable-font-applied aside:not(accw-widget-ui),
.readable-font-applied details:not(accw-widget-ui),
.readable-font-applied figcaption:not(accw-widget-ui),
.readable-font-applied figure:not(accw-widget-ui),
.readable-font-applied footer:not(accw-widget-ui),
.readable-font-applied header:not(accw-widget-ui),
.readable-font-applied main:not(accw-widget-ui),
.readable-font-applied nav:not(accw-widget-ui),
.readable-font-applied section:not(accw-widget-ui),
.readable-font-applied summary:not(accw-widget-ui),
.readable-font-applied h1:not(accw-widget-ui),
.readable-font-applied h2:not(accw-widget-ui),
.readable-font-applied h3:not(accw-widget-ui),
.readable-font-applied h4:not(accw-widget-ui),
.readable-font-applied h5:not(accw-widget-ui),
.readable-font-applied h6:not(accw-widget-ui),
.readable-font-applied p:not(accw-widget-ui),
.readable-font-applied a:not(accw-widget-ui),
.readable-font-applied abbr:not(accw-widget-ui),
.readable-font-applied address:not(accw-widget-ui),
.readable-font-applied b:not(accw-widget-ui),
.readable-font-applied bdi:not(accw-widget-ui),
.readable-font-applied bdo:not(accw-widget-ui),
.readable-font-applied blockquote:not(accw-widget-ui),
.readable-font-applied br:not(accw-widget-ui),
.readable-font-applied cite:not(accw-widget-ui),
.readable-font-applied code:not(accw-widget-ui),
.readable-font-applied data:not(accw-widget-ui),
.readable-font-applied dfn:not(accw-widget-ui),
.readable-font-applied em:not(accw-widget-ui),
.readable-font-applied i:not(accw-widget-ui),
.readable-font-applied kbd:not(accw-widget-ui),
.readable-font-applied mark:not(accw-widget-ui),
.readable-font-applied q:not(accw-widget-ui),
.readable-font-applied rp:not(accw-widget-ui),
.readable-font-applied rt:not(accw-widget-ui),
.readable-font-applied rtc:not(accw-widget-ui),
.readable-font-applied ruby:not(accw-widget-ui),
.readable-font-applied s:not(accw-widget-ui),
.readable-font-applied samp:not(accw-widget-ui),
.readable-font-applied small:not(accw-widget-ui),
.readable-font-applied span:not(accw-widget-ui),
.readable-font-applied span:not(accw-widget-ui),
.readable-font-applied strong:not(accw-widget-ui),
.readable-font-applied sub:not(accw-widget-ui),
.readable-font-applied sup:not(accw-widget-ui),
.readable-font-applied time:not(accw-widget-ui),
.readable-font-applied u:not(accw-widget-ui),
.readable-font-applied var:not(accw-widget-ui),
.readable-font-applied wbr:not(accw-widget-ui),
.readable-font-applied area:not(accw-widget-ui),
.readable-font-applied audio:not(accw-widget-ui),
.readable-font-applied map:not(accw-widget-ui),
.readable-font-applied track:not(accw-widget-ui),
.readable-font-applied video:not(accw-widget-ui),
.readable-font-applied embed:not(accw-widget-ui),
.readable-font-applied object:not(accw-widget-ui),
.readable-font-applied param:not(accw-widget-ui),
.readable-font-applied source:not(accw-widget-ui),
.readable-font-applied canvas:not(accw-widget-ui),
.readable-font-applied noscript:not(accw-widget-ui),
.readable-font-applied script:not(accw-widget-ui),
.readable-font-applied del:not(accw-widget-ui),
.readable-font-applied ins:not(accw-widget-ui),
.readable-font-applied caption:not(accw-widget-ui),
.readable-font-applied col:not(accw-widget-ui),
.readable-font-applied colgroup:not(accw-widget-ui),
.readable-font-applied table:not(accw-widget-ui),
.readable-font-applied tbody:not(accw-widget-ui),
.readable-font-applied td:not(accw-widget-ui),
.readable-font-applied tfoot:not(accw-widget-ui),
.readable-font-applied th:not(accw-widget-ui),
.readable-font-applied thead:not(accw-widget-ui),
.readable-font-applied tr:not(accw-widget-ui),
.readable-font-applied button:not(accw-widget-ui),
.readable-font-applied datalist:not(accw-widget-ui),
.readable-font-applied fieldset:not(accw-widget-ui),
.readable-font-applied form:not(accw-widget-ui),
.readable-font-applied input:not(accw-widget-ui),
.readable-font-applied label:not(accw-widget-ui),
.readable-font-applied legend:not(accw-widget-ui),
.readable-font-applied meter:not(accw-widget-ui),
.readable-font-applied optgroup:not(accw-widget-ui),
.readable-font-applied option:not(accw-widget-ui),
.readable-font-applied output:not(accw-widget-ui),
.readable-font-applied progress:not(accw-widget-ui),
.readable-font-applied select:not(accw-widget-ui),
.readable-font-applied textarea :not(accw-widget-ui){
    font-family: Arial, Helvetica, sans-serif !important;
}

.readable-font-applied span[class*="fa-"] {
    font-family: 'FontAwesome' !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}



.cama_toolbar_wrap{
    text-align: initial;
}
/* Fallback for default cursor */
.big-cursor, .big-cursor:default {
    cursor: url('pointer-0e367182685adf6fbec119b494b56b76c355d6867a2ac533f9aef0bc7c3efa25.svg'), pointer;
}

.black-cursor, .black-cursor:default {
    cursor: url('pointer-0e367182685adf6fbec119b494b56b76c355d6867a2ac533f9aef0bc7c3efa25.svg'), pointer;
}

.white-cursor, .white-cursor:default {
    cursor: url('pointer-white-712974df03e75d0d832f66e70a7207c8befff7069e576d32a0d98f30af0ed605.svg'), pointer;
}

/* Change cursor on hover for black cursor */

.black-cursor button:hover,
.black-cursor a:hover,
.black-cursor [role="button"]:hover,
.black-cursor [role="link"]:hover,
.black-cursor [aria-haspopup="true"]:hover {
    cursor: url('hand-aa7660dc862dd32bd31609e41588d11b0b5892d4a9ef11aa9d8108db7be00e27.svg'), auto !important;
}

/* Change cursor on hover for white cursor */
.white-cursor button:hover,
.white-cursor a:hover,
.white-cursor [role="button"]:hover,
.white-cursor [role="link"]:hover,
.white-cursor [aria-haspopup="true"]:hover {
    cursor: url('hand-white-acd8cae93e0d5bc1dde73023babd81849fd9d158bed917dd9382a71ea728480b.svg'), auto !important;
}







/* Style for the reading mask */
.reading-mask {
    pointer-events: none !important;
    z-index: 2147483647;
    position: fixed;
    display: none;
}

/* Style for the focused element */
.focused-element {
    display: block;
    position: fixed;
    width: 100%;
    height: 150px;
    box-shadow: 0 0 0 99999px rgba(0, 0, 0, .5);
}



/* Style for the reading guide */
.reading-guide {
    position: fixed;
    max-width: 500px;
    width: 90%;
    height: 13px;
    border-radius: 50px;
    pointer-events: none;
    background-color: #018DC8;
    border: solid 4px #1f2533;
    z-index: 2147483647;
}


@media screen and (max-width: 980.98px){
    .reading-mask {
        display: none !important;
    }
}






/* Your regular styles here */
/* Define the CSS rules for hiding images, videos, and background images */
.hide-images-enabled img:not([data-accw]), .hide-images-enabled video:not([data-accw]) {
    opacity: 0 !important;
    visibility: hidden !important;
}

.hide-images-enabled *:not([data-accw]),.hide-images-enabled *:before {
    background-image: none !important;
}

/* Your regular styles here */
.magnifier {
    position: fixed;
    display: none;
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 25px;
    z-index: 999999999999;
    max-width: 60%;
}


.light-contrast {
    color: black !important;
    background-color: white !important;
    border-color: black !important;
}


.dark-contrast {
        color: white !important;
        background-color: black !important;
        border-color: white !important;
        -webkit-text-fill-color: unset !important;
    }

.display-none{
    display: none !important;
}    


body.highlight-focus > :not(accw-widget-ui):not([data-accw]) *:focus:not(accw-widget-ui):not([data-accw]) {
    outline: solid 2px rgba(99, 154, 249, 1) !important;
    outline-offset: 1px !important;
    box-shadow: inset 0 0 0 2px rgba(255, 114, 22, 0.5) !important;
}

/*.high-contrast-enabled > *:not(accw-widget-ui *, accw-widget-ui), 
.high-contrast-enabled #fh5co-header-section,
.high-contrast-enabled header {
    filter: contrast(135%) !important;
}

.high-contrast-enabled > *.sticky-wrapper, 
.high-contrast-enabled > *.header-wrap {
    filter: none !important;
}
*/
html.high-contrast-enabled {
    filter: contrast(135%) !important;
}
html.high-contrast-enabled accw-widget-ui,
html.high-contrast-enabled accw-widget-ui *{
    filter: none !important;
}



@media screen and (max-width: 980px) {
    #toggleLineHeight {
        order:10 !important;
    }

    #toggleContentScaling {
        order: 0 !important;
    }
    #toggleHeadingHighlight{
        order:1 !important;
    }
    #toggleLetterSpacing {
        order:10 !important;
    }
}


@media screen and (max-width: 700px) {
    .widget .header .left img {
        max-width: 187px;
        max-height: 45px;
        object-fit: contain;
    }
    .widget .close_button {
        width: 33px;
        height: 33px;
        line-height: 0.55;
    }
    .widget .close_button .icon {
        height: 9px;
    }
    .widget .refresh_button .icon {
        height: 17px;
    }
    .widget .hide_button .icon {
        height: 18px;
    }
    .widget .hero .title {
        font-size: 22px;
    }
    .widget .hero p{
        font-size: 14px;
    }
    .widget .main-options {
        margin-top: 13px;
    }
    .widget .main:after {
        height: 185px;
        top: 1px;
    }
}


.swal2-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.custom-swal-container {
    padding-top: 30px;
}

.custom-swal-popup {
    text-align: left;
}

.custom-swal-popup h2 {color: #121212;font-size: 18px;font-weight: 700;text-align: left;margin-top: 25px;padding: 15px 30px 0;}

.custom-swal-popup .swal2-html-container {display: block;padding: 0em 30px 0;margin: 15px 0px;font-size: 15px;color: rgb(31, 37, 51);line-height: 1.4;text-align: left;}

.custom-swal-popup .swal2-actions {
    margin-top: 0px;
    width: 100%;
    justify-content: left;
    padding: 0em 30px 0;
    gap: 7px;
}

.custom-swal-popup .swal2-actions button.swal2-confirm {
    background-color: #018DC8;
    display: block;
    text-align: center;
    width: auto;
    border-radius: 4px;
    padding: 9px 10px;
    line-height: normal;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin: 0;
}

.custom-swal-popup .swal2-actions button.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(1,141,200,0.50);
}


.custom-swal-popup .swal2-actions button.swal2-cancel{
    display: block;
    text-align: center;
    width: auto;
    border-radius: 4px;
    padding: 9px 10px;
    line-height: normal;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin: 0;
}

.custom-swal-popup {
    width: 90%;
    padding-bottom: 25px;
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow: inherit;
    padding-right: 0px !important;
}

.custom-swal-popup.statement> h2 {
    margin-bottom: 40px;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #018DC8;
}

.accessibility-statement-modal-content .accw-title-main {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #018DC8;
    display: block;
    margin-top: 30px;
}

.accessibility-statement-modal-content .accw-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: rgb(31, 37, 51);
}

.accessibility-statement-modal-content p, .accessibility-statement-modal-content li {
    margin: 25px 0px;
    font-size: 16px;
    color: rgb(31, 37, 51);
    line-height: 1.3;
}

.accessibility-statement-modal-content ul,.accessibility-statement-modal-content ol {
    margin: 25px 0px;
    padding-left: 30px;
}

.accessibility-statement-modal-content li {
    display: list-item;
    margin: 15px 0px;
}

.custom-swal-popup.statement .swal2-close-button {
    z-index: 99999;
}


body.highlight-hover > :not(accw-widget-ui):not([data-accw]) p:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) span:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) h1:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) h2:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) h3:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) h4:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) h5:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) h6:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) a:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) button:not(.action-box):hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) strong:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) em:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) li:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) label:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) img:hover:not(accw-widget-ui):not([data-accw]), 
body.highlight-hover > :not(accw-widget-ui):not([data-accw]) input:hover:not(accw-widget-ui):not([data-accw]) {
    outline-offset: 1px !important;
    box-shadow: inset 0 0 0 2px rgba(255, 114, 22, 0.5) !important;
}

.accw-widget-trigger.draggable.moved {
    right:0px !important;
}
