#mobile-menu {
  margin: 0.1rem 0 1rem;
  list-style-type: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: left;
  box-sizing: border-box;
}

#mobile-menu .next-level-button {
  display: none;
}

#mobile-menu ul {
  position: absolute;
  display: block;
  visibility: hidden;
  left: 100%;
  top: 0;
  width: 100% !important;
  height: 100vh;
  background-color: #2a2a2a;
  transition: left .3s cubic-bezier(.23,1,.32,1), visibility 0s linear .3s;
  z-index:3;
  margin: 0;
}

#mobile-menu li {
  position: unset;
  border-bottom: 1px solid #5b5b5b;
}

#mobile-menu ul.active {
  left: 0%;
  z-index: 3;
  visibility: visible;
  transition: left .4s cubic-bezier(.23,1,.32,1), visibility 0s;
}

#mobile-menu a {
  padding: 1rem 1.4rem 1rem 0;
  display: block;
  width: 100%;
  max-width: none;
}

#mobile-menu .sub-nav .menu-item:first-child > a {
  padding: 1rem 0 1rem 1rem;
}

#mobile-menu .has-children > a {
  position: relative;
}

#mobile-menu .has-children > a::after,
#mobile-menu .go-back-link > a::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 1;
  transform: translateY(-50%) rotate(45deg);
  right: 0;
}

#mobile-menu .has-children > a::after {
  transform: translateY(-50%) rotate(45deg);
  right: 0;
}

#mobile-menu .go-back-link a::before {
  transform: translateY(-50%) rotate(-135deg);
  left: 0;
}

#mobile-menu .go-back-link {
  background-color: #e20714;
  position: relative;
}

.go-back-link {
  text-align: center;
}

.mobile-menu-title > span {
  color: #fff;
  background-color: #e20714;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  width: 100%;
}

.mobile-menu-title,
.go-back-link {
  font-size: 1rem;
  line-height: 1.4em;
}

#page #mobile-menu .home-link a {
  margin-bottom: 0.9rem;
  margin-top: 0.9rem;
}