
.menu-trigger {
  display: inline-block;
  width: 30px;
  height: 18px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 10px;
  z-index: 100;
/*   transform: translateX(0);
  transition: transform .5s;
 */}
/* .menu-trigger.active {
  transform: translateX(-250px);
}
 */.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 80%;
  height: 1px;
  background-color: #000;
  transition: all .5s;
}
.menu-trigger.active span {
  background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(2px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 8px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
}


nav {
  background: #fff!important;
  height: 100%;
  position: fixed;
  box-sizing: border-box;
  padding-top: 64px!important;
  top: 0;
  right: 0;
  z-index: 50;
  transition: all .5s;
  overflow: auto;
  width: 100%;
  transform: translate(100%);
  padding:55px 16px;
}
nav.open {
  transform: translateZ(0);
}

  nav .menu{
    border-top: 1px solid #ccc;
  }

  a.menu__item__link{
    cursor: pointer;
    background: url(/img/icon_arrow_s2.png) no-repeat 97% center;
    padding: 14px 5px 15px 5px;
    display: block;
    box-sizing: border-box;
    text-decoration: none!important;
  }

  a.menu__item__link:hover{
    background: url(/img/icon_arrow_s2.png) no-repeat 97% center;
    text-decoration: none!important;
  }

  a.menu__item__link.nosub{
    background-image: none;
  }

.menu__item {
  cursor: pointer;
  display: block;
  margin-bottom: 1px;
  border-bottom: 1px solid #ccc;
}

.menu__item__link {
  display: block;
  position: relative;
}


.submenu {
  display: block;
  padding-bottom: 10px;
}

  .submenu__item a{
    display:block;
    margin-left: 5px;
    padding: 12px 0 14px 35px!important;
    text-decoration: none;
  }


  .submenu__item a:hover{
    background: #f9ba00;
    text-decoration: none;
  }
