.open-accessibility {
    position: absolute;
    top: 100px;
    z-index: 999;
}

body.special {
    padding-top: 70px;
}

#special-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #231f20;
    padding: 10px 0;
    overflow: hidden;
    z-index: 10;
}

.special #special-form {
    display: block;
}

#special-form .button {
    padding: 12px;
    background: #fff;
}

#special-form .sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#special-form .special-form-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#special-form .special-form-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

#special-form .special-form-options fieldset {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

#special-form .chx span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    opacity: .5;
    transition: .3s;
}

#special-form .chx input:checked + span {
    opacity: 1;
}

#special-form .chx input[value=theme-contrast] + span {
    background-color: #EB2027;
}

#special-form .chx input[value=theme-black] + span {
    background-color: #000;
}

#special-form .chx input[value=theme-white] + span {
    background-color: #fff;
}

/* font-size-lg */
.special.font-size-lg {
    font-size: 14px;
}

.special.font-size-lg#top #header .av-main-nav > li > a {
    font-size: 17px;
}

.special.font-size-lg h2.avia-caption-title {
    font-size: 62px !important;
}

.special.font-size-lg#top .avia-slideshow-button {
    font-size: 24px;
}

/* font-size-xl */
.special.font-size-xl {
    font-size: 16px;
}

.special.font-size-xl#top #header .av-main-nav > li > a {
    font-size: 18px;
}

.special.font-size-xl h2.avia-caption-title {
    font-size: 64px !important;
}

.special.font-size-xl#top .avia-slideshow-button {
    font-size: 26px;
}

@media (max-width: 767px) {
    body.special {
        padding-top: 0;
    }

    #special-form {
        position: relative;
        padding: 10px;
    }

    #special-form .chx span {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* font-size-lg */
    .responsive .special.font-size-lg#top .slideshow_caption h2 {
        font-size: 22px !important;
    }

    .special.font-size-lg .avia-slideshow-button {
        font-size: 18px !important;
    }

    /* font-size-xl */
    .responsive .special.font-size-xl#top .slideshow_caption h2 {
        font-size: 24px !important;
    }

    .special.font-size-xl .avia-slideshow-button {
        font-size: 20px !important;
    }
}

@media (max-width: 575px) {
    #special-form .special-form-wrap {
        flex-direction: column;
    }
}