/* Стили для мобильного меню */

/* Кнопка мобильного меню */
.menu-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.header-one.header--sticky.sticky .menu-btn {
    color: #000000;
}

/* Стили для фона при открытом меню */
#anywhere-home.bgshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Боковая панель */
#side-bar {
    transition: all 0.5s ease;
}

#side-bar.show {
    right: 0;
}

/* Адаптация мобильного меню */
@media only screen and (max-width: 1199px) {
    .menu-btn {
        display: inline-block;
    }
}
