.mobile--menu {
    position: relative;
    display: block;
}

.mobile-menu__dropdown {
    display: flex;
    gap:30px;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    bottom: -105%;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    z-index: 10000;
    transition: bottom 0.3s ease;
    padding: 40px 0 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    overflow-x: hidden;
}

.mobile-menu__dropdown.active {
    bottom: 0;
}
.mobile-menu__list {
    list-style: none;
    padding: 0 0 0 4rem;
    margin: 0;

}

.mobile-menu__item {
    position: relative;
}

.mobile-menu__link {
    display: inline-flex;
    padding: 20px 0;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size:2.6rem;
    line-height: 1;
}
.mobile-menu__link:hover{
    color:#FF0031;
}

.mobile-menu__toggle {
    width: 18px;
    height: 18px;
    padding: 0;
    transform: translateY(-2px);
    background-color: transparent;
    margin-left:30px;
    background-image: url(../images/down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
}
.mobile-menu__toggle.active {
    transform:translateY(-2px) rotate(180deg);
}
.mobile-menu__sublist {
    list-style: disc;
    display: block !important;
    max-height: 0;
    opacity: 0;
    padding:0 0 0 1rem;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    //overflow: hidden;
}

.mobile-menu__subitem {
    padding: 5px 0;
}
.mobile-menu__subitem:last-child {
    padding: 5px 0 17px 0;
}

.mobile-menu__sublink {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.mobile-menu__icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.mobile-menu__sublist {
    transition: max-height 0.3s ease;
    //overflow: hidden;
}

.menu--title{
    font-size:18px;
    font-weight: 600;
    height:40px;
    display: inline-flex;
    align-items: center;
    top:0;
    position:absolute;
    left:14px;
}
.menu--bottom{
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    width:100%;
    flex-direction: row;
    gap:20px;
    justify-content: space-between;
    padding:0 20px;
    flex: 0 0 70px;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.6);
    transition: all .5s ease;
    opacity:0;
}
.mobile-menu__dropdown.active .menu--bottom{
    transition-delay: 0.5s;
    opacity:1;
}
.has-submenu > .mobile-menu__link{
    -webkit-user-select: none;
    user-select: none;
}
.has-submenu > .mobile-menu__link:hover,
.has-submenu > .mobile-menu__link:focus{
    color:#000;
}