body.menu-opened {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
  
.close-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 15px 15px 20px;
}

.close-container img {
  width: 100%;
  max-width: 15px;
}
  
.mm-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
  
.nav-collapse.is-mobile-nav {
  height: 100%;
}
  
.main-nav {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
}
  
.main-nav > li {
  position: relative;
}
  
.main-nav li {
  clear: both;
  display: block;
  list-style: none;
}

.main-nav li:not(:last-of-type) {
  margin-bottom: 0;
}
  
.main-nav li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
  
.main-nav > li a {
  padding: 0 20px;
  display: inline-block;
  position: relative;
  line-height: 50px;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
}
  
.main-nav .dropdown {
  position: static;
}
  
.main-nav .dropdown:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
  
.main-nav .dropdown-inner {
  position: relative;
}
  
.main-nav > li.dropdown > .dropdown-inner > a,
.main-nav > li.dropdown > a {
  padding-right: 35px;
  pointer-events: none;
}
  
.dropdown-menu {
  clear: both;
  padding: 0;
  float: none;
  border: none;
  visibility: visible;
  overflow-y: auto;
  width: 100%;
  min-height: 100vh;
  max-height: calc(100vh - 60px);
  background: #fff;
  z-index: 9991;
  opacity: 1;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s ease;
}
  
.main-nav .dropdown-menu {
  padding: 15px 0;
  width: 400px;
}

.menu-mobile-open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.back-prev-menu {
  position: relative;
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  text-align: center;
  padding: 0;
  line-height: 50px;
  color: #000;
  background: #eee;
}

.back-prev-menu:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-image: url('../images/arrow-black-prev.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.menu-mobile .main-nav .dropdown-menu {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.menu-mobile .main-nav .dropdown-menu.menu-mobile-open {
  opacity: 1;
  pointer-events: auto;
}

.expand {
  z-index: 5;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: right;
  padding: 0 0 0 15px;
  font-size: 14px;
  cursor: pointer;
  color: #262626;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
}

.expand:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-image: url('../images/arrow-light-grey.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}