
/* Burger menu styles */

body.menu-open {
    overflow: hidden;
}

.root-menu a.close {
    position: absolute;
    top: 37px;
    right: 45px;
}

.root-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 375px;
    height: 100vh;
    background-color: #0F33D3;
    color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
    padding: 32px 32px 0px 48px;
    overflow-y: auto;
}
@media (max-width: 580px) {
    .root-menu-content {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .root-menu-content {
        padding: 22px 16px 0px 16px;
    }
    .root-menu a.close {
        right: 16px;
        top: 24px;
    }
    .root-menu a.close img {
        width: 16px;
    }
}

.root-menu.active .root-menu-content {
    right: 0px;
}

.root-menu-second{
    position: fixed;
    top: 0;
    right: -100%;
    width: calc(100% - 360px);
    height: 100vh;
    background-color: #E3E9FF;
    color: #05073C;
    transition: right 0.6s ease;
    z-index: 99;
    padding: 38px 32px 0px 48px;
    overflow-y: auto;
}
.root-menu.active .root-menu-second {
    right: 360px;
}

.root-menu-child-multi{
    display: flex;
    flex-direction: column;
    padding: 0px;
    /*min-height: 430px;*/
}

.root-menu-childs{
    position: absolute;
    bottom: 0px;
    background-color: #6993FF;
    color: white;
    width: 100%;
    padding: 24px 16px 24px 16px;
    font-size: 16px;
    line-height: 30px;
    max-height: 100%;
    overflow-y: auto;
}

.root-menu-childs .item-parent{
    font-weight: bold;
    text-transform: uppercase;
    line-height: 16px;
}
.root-menu-childs .item-parent:hover{
    color: #0F33D3;
}

.root-menu-childs-block{
    margin-top: 12px;
}

.root-menu-childs .item{
    display: block;
}
.root-menu-childs .item:hover{
    color: #0F33D3;
}

.root-menu .nav-item-auth{
    margin-bottom: 52px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    display: block;
    font-size: 18px;
}
.root-menu .nav-item-auth img{
    position: relative;
    top: 2px;
}
@media (max-width: 768px) {
    .root-menu .nav-item-auth{
        font-size: 14px;
    }
    .root-menu .nav-item-auth img{
        top: 3px;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.root-menu-navigation .nav-item {
    text-decoration: none;
    font-weight: 700;
    color: white;
    display: block;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 27px;
}
.root-menu-navigation .nav-item:hover,
.root-menu-navigation .nav-item-second:hover {
    color: #6993FF;
}

.root-menu-navigation .menu-mobile-list-second{
    margin-left: 40px;
}

.root-menu-navigation .menu-mobile-list-second .nav-item{
    font-size: 16px;
    margin-bottom: 12px;
}


.root-menu-navigation .nav-item-second {
    text-decoration: none;
    display: block;
    font-weight: 500;
    color: #D9E0FF;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 12px;
}

.root-menu .logo {
    display: unset;
}

.root-menu .multi-dropdown-img{
    width: 140%;
    margin-left: -20%;
    max-width: unset;
}

.root-menu .limitation-hide{
    display: none;
}
.menu-limitation .down{
    margin-left: 6px;
    position: relative;
    top: -3px;
}

.item-icons-title{
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 14px;
}

.root-menu-child-icons img{
    animation-play-state: paused;
}
.root-menu-child-icons:hover {
    color: #0F33D3;
}
.root-menu-child-icons:hover img{
    animation-play-state: running;
}

.root-menu-social-icons {
    position: absolute;
    bottom: -120px;
    padding-bottom: 20px;
    padding-left: 30px;
}

.root-menu-social-icons .root-menu-social-icon{
    margin-right: 9px;
}

.root-menu-social-icons img {
    width: 60px;
}

.menu-mobile{
    position: relative;
    min-height: calc(var(--vh, 1vh) * 100 - 240px);
}

.nav-item-block{
    margin-bottom: 26px;
}
.nav-item-block.nav-item-block-return{
    margin-bottom: 32px;
}

.root-menu-mobile-return .arrow-left{
    position: absolute;
    left: -32px;
    top: 1px;
}

.root-menu .menu__search{
    margin-right: 32px;
    font-size: 14px;
    font-weight: 700;
}
.root-menu .menu__search img{
    position: relative;
    top: 3px;
}