@media (min-width: 768px){
  .bottom-menu .wrap_compact_mobile{display:none !important;}
  .bottom-menu .bottom-menu__arrow{display:none !important;}
}

@media (max-width: 767px){
  .bottom-menu{
    background:#333333;
  }

  .bottom-menu,
  .bottom-menu *{
    font-family:Montserrat, Arial, sans-serif;
    box-sizing:border-box;
  }

  .bottom-menu .items{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    width:100% !important;
    margin:0 !important;
  }

  .bottom-menu .line-block{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    width:100% !important;
    margin:0 !important;
  }

  .bottom-menu .line-block__item.bottom-menu__toplink{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    padding:16px 0;
    border-bottom:1px solid #474747;
    color:#FFFFFF;
    margin: 0;
  }

  .bottom-menu .line-block__item.bottom-menu__toplink > .item{
    flex:1 1 auto;
    min-width:0;
  }

  .bottom-menu .item-link .title{
    font-size:15px;
    line-height:1.219;
  }

  .bottom-menu .bottom-menu__toplink .title{
    font-weight:700;
  }

  .bottom-menu .bottom-menu__toplink .title a,
  .bottom-menu .bottom-menu__toplink .title span{
    color:inherit !important;
    text-decoration:none;
  }

  .bottom-menu .bottom-menu__toplink.is-active{
    color:#999999;
  }

  .bottom-menu .bottom-menu__arrow{
    width:20px;
    height:20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    user-select:none;
    flex:0 0 20px;
    margin-left:auto;
  }

  .bottom-menu .bottom-menu__arrow svg{
    width:20px;
    height:20px;
    display:block;
    transition:transform .35s ease;
  }

  .bottom-menu [data-bottommenu-trigger="1"][aria-expanded="true"] .bottom-menu__arrow svg{
    transform:rotate(-90deg);
  }

  .bottom-menu .wrap_compact_mobile{
    display:block;
    max-height:0;
    overflow:hidden;
    pointer-events:none;
    background:#333333;
    transition:max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bottom-menu .wrap_compact_mobile.is-open{
    max-height:1200px;
    pointer-events:auto;
  }

  .bottom-menu .wrap_compact_mobile .bottom-menu__sublink{
    padding:14px 0;
    border-bottom:1px solid #474747;
    margin: 0;
  }

  .bottom-menu .wrap_compact_mobile .bottom-menu__sublink:last-of-type{
    border-bottom:none;
  }

  .bottom-menu .wrap_compact_mobile .title{
    font-weight:500;
  }

  .bottom-menu .wrap_compact_mobile .title a,
  .bottom-menu .wrap_compact_mobile .title span{
    color:#FFFFFF !important;
    text-decoration:none;
  }
}