/* Menu styles */

.ak-ml-menu-container {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
}

.menu__wrap {
  position: absolute;
  top: 3.5em;
  bottom: 0;
  overflow: hidden;
  width: 100%;
}

.menu__level {
  position: absolute;
  top: 0;
  left: 0;
  /* visibility: hidden; */
  overflow: hidden;
  overflow-y: scroll;
  width: calc(100% + 50px);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #ffffff;
  background-image: linear-gradient(
    155deg,
    #ffffff 46%,
    #ffa3000d 56%,
    #e6edf2 83%,
    #85dee14d 100%
  );
}
.menu__level img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  margin-right: 15px;
}
.menu__level:focus {
  outline: none;
}

.menu__level--current {
  visibility: visible;
}

.menu__item {
  width: calc(100% - 50px);
  display: flex;
  align-items: center;
  padding: 18px 24px;
}

.menu__item a {
  display: flex;
  align-items: center;
}
.menu__item a:not(.menu__link) {
  /* width: 100%; */
  white-space: nowrap;
}

.menu__item .menu__link {
  /* font-weight: 600; */
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* padding: 1em 2.5em 1em 1em; */
  color: #33353e;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  cursor: pointer;
  align-self: stretch;
}

.menu__link[data-submenu]::after {
  content: "";
  font-family: "lqd-essentials";
  position: absolute;
  right: 0;
  padding: 0 1.25em;
  color: #2a2b30;
}

.menu__item .menu__link:hover,
.menu__item .menu__link:focus,
.menu__item .menu__link[data-submenu]:hover::after,
.menu__item .menu__link[data-submenu]:focus::after {
  color: var(--color-primary);
}

.menu__link--current::before {
  content: "\00B7";
  font-size: 1.5em;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 0.5em;
  height: 4px;
  color: var(--color-primary);
}

[class^="animate-"],
[class*=" animate-"] {
  visibility: visible;
}

.animate-outToRight .menu__item {
  -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.animate-outToLeft .menu__item {
  -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate-inFromLeft .menu__item {
  -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate-inFromRight,
.animate-inFromLeft,
.menu__level--current {
  z-index: 2;
}
/* .animate-inFromRight,
.animate-inFromLeft,
.menu__level--current {
  background-color: #ffffff;
} */
/* .menu__level--current.animate-outToLeft,
.menu__level--current.animate-outToRight {
  background: transparent;
} */
.animate-inFromRight .menu__item {
  -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.menu__breadcrumbs {
  font-size: 0.65em;
  line-height: 1;
  padding: 0em 2em;
  position: relative;
  display: block;
  margin-top: 25px;
}

.menu__breadcrumbs a {
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.menu__breadcrumbs a:last-child {
  pointer-events: none;
}

.menu__breadcrumbs a:hover,
.menu__breadcrumbs a:focus {
  color: var(--color-primary);
}

.menu__breadcrumbs a:not(:last-child)::after {
  content: "/ ";
  display: inline-block;
  padding: 0 0.5em;
  color: #33353e;
}

.menu__breadcrumbs a:not(:last-child):hover::after,
.menu__breadcrumbs a:not(:last-child):focus::after {
  color: #33353e;
}
.ld-module-dropdown .nav-trigger .bars:before {
  background-color: #f5f5f5;
}
.menu__back {
  background-color: #f5f5f5;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 1em;
  color: #2a2b30 !important;
  transform: translateY(-100%);
  appearance: none;
  border: none;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.menu__back .lqd-icn-ess {
  font-size: 23px;
  line-height: 55px;
}

.menu__back--hidden {
  pointer-events: none;
  opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
  color: #fff;
  outline: none;
}

/* Open and close buttons */

.action {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
}

.action:focus {
  outline: none;
}

.action--open {
  font-size: 1.5em;
  top: 1em;
  left: 1em;
  display: none;
  color: #fff;
  position: fixed;
  z-index: 1000;
}

.action--close {
  font-size: 1.1em;
  top: 1.25em;
  right: 1em;
  display: none;
  color: #45464e;
}

@media screen and (max-width: 40em) {
  .action--open,
  .action--close {
    display: block;
  }
  .ak-ml-menu-container {
    z-index: 1000;
    /*     top: 0; */
    width: 100%;
    height: calc(100vh - 70px);
    /*     -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); */
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
  }
  .menu--open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.menu__link .d-op-0 {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.ld-module-sd > .ld-module-dropdown > .nav-trigger {
  left: auto;
  right: 1em;
}
.nav-trigger.style-3 .bar:last-of-type {
  width: 16px !important;
}
@media all and (max-width: 767px) {
  .ld-module-sd > .ld-module-dropdown {
    width: 100% !important;
    max-width: 500px !important;
  }
}
