.dropdownmenu *,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* .dropdownmenu ul{
    margin: 0;
    padding: 0;
    list-style: none;
} */

.dropdownmenu__list{
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdownmenu img{
    max-width: 100%;
    height: auto;
}

.dropdownmenu{
    font-family: 'HelveticaNeueCyr-Medium', sans-serif;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.dropdownmenu__top{
    background: #689AE3;
    padding: 8px 20px;
}

.dropdownmenu__logo img{
    width: 100px;
}

.dropdownmenu__item{
    position: relative;
}

.dropdownmenu__item-wrap{
    display: flex;
    justify-content: space-between;
}

.dropdownmenu__item-wrap a{
    font-size: 18px;
    color: #689AE3;
    display: inline-block;
    width: calc(100% - 50px);
    padding: 12px 0px 12px 15px;
    text-decoration: none;
}

.dropdownmenu__item-wrap{
    border-bottom: 2px solid #ACB9E7;
}

.dropdownmenu__btn{
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdownmenu__btn.is-active img{
    transition: 0.5s;
}

.dropdownmenu__btn.is-active img{
    transform: rotate(180deg);
}

.dropdownmenu__btn img{
    width: 26px;
}

.dropdownmenu__inner{
    padding-top: 12px;
    padding-bottom: 22px;
    padding-left: 15px;
    border-bottom: 2px solid #ACB9E7;
    display: none;
}

.dropdownmenu__list-inner{
    margin: 0;
    padding: 0;
    list-style: none;
    padding-bottom: 7px;
}

.dropdownmenu-showmore{
    display: inline-block;
}

.dropdownmenu__list-inner a{
    font-size: 16px;
    position: relative;
    text-decoration: none;
    color: #689AE3;
    display: block;
    /* padding-left: 30px; */
    padding: 11px 0px 11px 30px;
}

.dropdownmenu__list-inner a:after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #689AE3;
}

/* .dropdownmenu__list-inner li:not(:last-child){
    margin-bottom: 22px;
} */

.dropdownmenu__apart-wrap{
    text-align: right;
    padding-right: 20px;
}

.dropdownmenu-showmore{
    width: 140px;
    height: 42px;
    background: #689AE3;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    line-height: 42px;
}

.dropdownmenu__bottom{
    height: 110px;
    background: #689AE3;
    padding: 12px;
    text-align: center;
    position: relative;
}

.dropdownmenu__apart-link{
    color: #fff;
    font-size: 18px;
}

.dropdownmenu__contacts{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
}

.dropdownmenu-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 100%;
}

.dropdownmenu-icon img{
    width: 18px; 
}

.dropdownmenu__phone-num{
    text-decoration: none;
    margin: 0 20px;
    font-size: 20px;
    color: #fff;
}

.dropdownmenu__nav{
    /* height: 65vh; */
    height: calc(100% - 170px);
    overflow-y: scroll;
}

.dropdownmenu__list{
    height: 65vh;
}