#mobileMenu {
    padding: 16px;
}
.header-menu__submenu-list {
    display: none;
    /* padding-left: 20px; */
    margin-top: 15px;
}
.header-menu__mobile-list {
    padding-top: 24px;
}
.header__mobile-menu .hidden {
    display: none !important;
}
.open {
    display: block;
}
.header-menu__mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
    overflow-y: auto;
}
.header-menu__mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}

.header-menu__mobile-top-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.header-menu__mobile-content {
    padding: 20px;
    background-color: white;
    height: 100%;
    overflow-y: auto;
}

.dropdown-arrow {
    background-color: none !important;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    border: 2px solid var(--gray-3, #97999b);
    border-width: 0 3px 3px 0; /* Увеличиваем толщину стрелки */
    padding: 5px; /* Увеличиваем размер стрелки */
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    vertical-align: middle; /* Для выравнивания со ссылкой */
}
.dropdown-arrow.open {
    transform: rotate(-135deg); /* Поворот стрелки при раскрытии */
}

.header-menu__mobile-item:hover .header-menu__submenu-list {
    display: block;
}

.header-menu__mobile-item {
    margin-bottom: 20px;
}

.header-menu__mobile-item--link {
    display: flex;
    justify-content: space-between; /* Чтобы текст и стрелка выровнялись по краям */
    align-items: center; /* Для вертикального выравнивания */
    color: #000;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.header__mobile-menu-btn span {
    background-color: none !important;
}
.header-menu__mobile-close {
    font-size: 30px;
}
.header__lk-link_mobile {
	display: none !important;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #81d0f5;
    width: 342px;
    height: 48px;
    padding: 13px 24px 13px 24px;
    gap: 10px;
    border-radius: 25px;
    margin-bottom: 34px;
}
.language-container a {
    padding-bottom: 34px;
    font-family: Avenir Next Cyr;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    gap: 8px;
    display: flex;
}
.header__theme-switcher {
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
}
.header__eye-switcher {
    padding-bottom: 32px;
}
.mobile_apps {
    display: flex;
    justify-content: space-between;
}
.mobile_app {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    width: 49%;
    background: #def4fd;
    color: #428fde;
}

.header-menu__submenu-item:not(:last-child) {
    padding-bottom: 15px;
}

.header-menu__submenu-item--link {
    font-size: 16px;
}

.header-menu__submenu-item--link:hover {
    color: #6dcdf6;
}

.header-menu__mobile-item--link:hover {
    color: #6dcdf6;
}

@media (max-width: 675px) {
    .mobile_apps {
        flex-direction: column;
        gap: 8px;
    }
    .mobile_app {
        width: 100%;
    }
    .header__lk-link_mobile {
        width: 100%;
    }
}
