.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-wrapper_opened {
  height: 100vh;
  overflow: hidden !important;
}

.mm-menu_opened {
  left: 0% !important;
}

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  height: 100%;
  padding: 0;
  position: absolute;
  width: 85%;
  left: -85%;
  top: 68px;
  top: var(--top);
  z-index: 100;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: none .4s ease;
  -moz-transition: none .4s ease;
  -ms-transition: none .4s ease;
  -o-transition: none .4s ease;
  transition: none .4s ease;
  -webkit-transition-property: top, right, bottom, left, -webkit-transform;
  -moz-transition-property: top, right, bottom, left, -moz-transform;
  -ms-transition-property: top, right, bottom, left, -o-transform;
  -o-transition-property: top, right, bottom, left, -o-transform;
  transition-property: top, right, bottom, left, transform;
}

.mm-page {
  -webkit-transition: none .4s ease;
  -moz-transition: none .4s ease;
  -ms-transition: none .4s ease;
  -o-transition: none .4s ease;
  transition: none .4s ease;
  -webkit-transition-property: top, right, bottom, left, border;
  -moz-transition-property: top, right, bottom, left, border;
  -ms-transition-property: top, right, bottom, left, border;
  -o-transition-property: top, right, bottom, left, border;
  transition-property: top, right, bottom, left, border;
}

.mm-panel:first-child .mm-navbar {
  display: none;
}

.mm-navbar {
  position: relative;
  display: flex;
  padding: 20px 20px 20px 11px;
  background: var(--primary-color);
}
.mm-navbar__title {
  color: var(--font-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.mm-navbar__title span {
  padding-left: 12px;
}


.mm-listitem {
  position: relative;
  /* border-bottom: 1px solid #333; */
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.mm-listview {
  padding-bottom: 250px !important;
}

.mm-listitem .mm-listitem__text,
.mm-listitem .router-link-exact-active,
.mm-listitem_selected a {
  color: #191923 !important;
  /* text-overflow: ellipsis; */
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 15px 20px 15px 11px;
  margin: 0;
  flex-grow: 1;
  flex-basis: 10%;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  font-family: inherit;
}

.mm-listitem .mm-listitem__text span,
.mm-listitem a span,
.mm-listitem_selected a span {
  color: #191923 !important;
  padding-left: 12px;
}

.mm-hidden {
  display: none !important;
}

.mm-sronly {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

.mm-btn {
  align-items: center;
  width: auto;
  padding-right: 50px;
  display: inline-flex;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}

.mm-listitem_opened > .mm-listitem__btn:after {
  transform: rotate(225deg);
  right: 19px;
}

.mm-btn {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  width: 50px;
  padding: 0;
}

.mm-btn:before, .mm-btn:after {
  border: 2px solid #333;
}

.mm-btn:before {
  border: 2px solid var(--font-color);
}

.mm-btn_next:after, .mm-btn_prev:before {
  content: "";
  border-bottom: none;
  border-right: none;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}

.mm-btn_prev:before {
  transform: rotate(-45deg);
  left: 23px;
  right: auto;
}

.mm-btn_next:after {
  transform: rotate(135deg);
  right: 23px;
  left: auto;
}

.mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: #fbfbfb;
  transform: translate3d(100%, 0, 0);
  -webkit-transition: transform .5s ease;
  -moz-transition: transform .5s ease;
  -ms-transition: transform .5s ease;
  -o-transition: transform .5s ease;
  transition: transform .5s ease;
}

.mm-panel_opened {
  z-index: 1;
  transform: translate3d(0, 0, 0);
  overflow-y: scroll;
}

.mm-panel_highest {
  z-index: 2;
}

.mm-panel_opened-parent {
  transform: translate3d(-30%, 0, 0);
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  overflow-y: hidden;
  display: block !important;
}

.mm-wrapper_opened main::before {
  content: '';
  height: 100vh;
  background: rgba(0,0,0,0.6);
  width: 100vw;
  position: absolute;
  z-index: 80;
}

@media (min-width:1024px) {
  .mm-menu {
    display: none !important;
  }
  .mm-wrapper_opened main::before {
    height: 0;
    width: 0;
  }
  .mm-wrapper_opened {
    overflow: auto !important;
  }
}

.mm-wrapper__blocker {
  display: none;
}