.accessibility-btn {
    position: fixed;
    right: 0px;
    transform: translate(calc(100% - 52px), 0);
    transition: all ease 0.2s;
    top: 90px;
    z-index: 999999;
    background-color: #2899CD;
    border-radius: 16px 0px 0px 16px;
    height: 52px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 16px;
}
.accessibility-btn:hover {
    transform: unset;
}
.accessibility-btn__icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}
.accessibility-btn__icon {
    width: 32px;
    height: 32px;
    display: block;
}
.accessibility-btn__buttons-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.accessibility-btn__option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}
.accessibility-btn__option button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.accessibility-btn__option button img {
    width: 32px;
    height: 32px;
    display: block;
}
.dark #theme-btn img,
.vLibrasTrigger--enabled img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(20%) saturate(6433%) hue-rotate(1deg) brightness(95%) contrast(106%);
}

@media screen and (min-width: 1224px) {
    .accessibility-btn {
        top: 130px;
    }
}