button {
    background-color: transparent;
    border: none;
    padding: 0;
}

.vi-eye {
    width: 26px;
    height: 26px;
    border: 1px solid;
    border-radius: 50%;
    padding: 2px;
    filter: brightness(5);
}

.visually-impaired-menu {
    width: 100%;
    background-color: #FFFFFF;
    font-size: 18px;
    color: #000000;
    display: none;
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-items__text {
    max-width: 160px;
}

.menu-items__btn {
    position: relative;
    top: 0;
    transition: all 0.4s;
}

.menu-items__btn--active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background-color: black;
}

.menu-btn.menu-items__btn--active::before {
    bottom: -9px;
}

.menu-btn {
    border: 2px solid black;
    border-radius: 5px;
    padding: 7px 20px;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.menu-top__text {
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
}

.menu-middle {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}


.menu-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .menu-middle {
        flex-wrap: wrap;
        gap: 25px;
    }

    .menu-items__text {
        width: 160px;
    }

    .menu-items--font-size,
    .menu-items--kerning {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu-middle {
        justify-content: center;
    }
}

@media (max-width: 770px) {
    .menu-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 400px) {
    .menu-top {
        max-width: 305px;
    }
    .menu-top__text {
        width: 210px;
    }

    .option-img {
        width: 30px;
    }
}
