/* MENU */

.hamburger-menu-wrapper {
  margin: 15px;
  padding: 10px;
  display: inline-block;
}

.hamburger-menu-wrapper.bounce-effect { animation: bounce 0.3s ease 1; }

.menu {
  position: fixed;
  width: 0;
  height: 100%;
  transition: all 0.5s ease;
  z-index: 1;
  background: #faedd3;
}

.hamburger-menu {
  border: 0;
  margin: 0 auto;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 33px;
  height: 22px;
  font-size: 0;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 9999;
  cursor: pointer;
  background: transparent;
}

.menu-list {
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 9999;
}

.menu-list ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
  list-style: none;
}

.menu-list li {
  padding: 10px 0;
}

.fixed-cart {
  position: fixed;
  top: 25px;
  right: 18px;
}

.fixed-cart .cart-button {
  text-decoration: none;
}
.fixed-cart .cart-icon {
  background: url("../images/cart_empty_blue.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 20px;
  height: 20px;
  width: 20px;
  display: inline-block;
}

.fixed-cart .cart-circle {
  border: 1px solid #2F2A95;
  color: #2F2A95;
  font-size: 12px;
  line-height: 12px;
  width: 16px;
  height: 16px;
  text-align: center;
}

.fixed-cart .cart-circle.hidden {
  display: inline-block !important;
  border: none;
  background: none;
  width: 5px;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
    transform: scale(.9);
    transform: rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform: rotate(0);
  }
}

.menu-list a:nth-child(1) { animation-delay: .02s }
.menu-list a:nth-child(2) { animation-delay: .06s }
.menu-list a:nth-child(3) { animation-delay: .10s }
.menu-list a:nth-child(4) { animation-delay: .14s }
.menu-list a:nth-child(5) { animation-delay: .18s }
.menu-list a:nth-child(6) { animation-delay: .22s }
.menu-list a:nth-child(7) { animation-delay: .26s }

.menu-list a {
  color: #2F2A95;
  text-transform: uppercase;
  font-size: 30px;
  height: 40px;
  display: inline-block;
  transition: all 0.4s ease;
  animation: FadeIn 0.4s linear;
  animation-fill-mode: both;
  text-decoration: none;
  border: 1px solid transparent;
}

.menu-list a:hover {
  border-bottom: 1px solid #2F2A95;
}

.menu-list span {
  display: block;
  height: 1px;
  background: #2F2A95;
}

.menu-list .language-menu {
  margin-top: 30px;
}

.menu-list .language-menu a {
  font-size: 14px;
  display: inline;
  margin: 5px;
}

.menu-list .language-menu a:hover, .menu-list .language-menu a.active {
  border-bottom: 1px solid #2F2A95;
}

.hamburger-menu:focus { outline: none; }

.hamburger-menu span {
  display: block;
  position: absolute;
  top: 10px;
  left: 5px;
  right: 5px;
  height: 2px;
  background: #fff;
}

.hamburger-menu span:before, .hamburger-menu span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}

.hamburger-menu span:before { top: -6px; }

.hamburger-menu span:after { bottom: -6px; }

.hamburger-menu span:before, .hamburger-menu span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.hamburger-menu span:before { transition-property: top, transform; }

.hamburger-menu span::after { transition-property: bottom, transform; }

.hamburger-menu.active span { background: none; }

.hamburger-menu.active span:before {
  top: 0;
  transform: rotate(225deg);
}

.hamburger-menu.active span:after {
  bottom: 0;
  transform: rotate(135deg);
}

.hamburger-menu.active span:before, .hamburger-menu.active span:after { transition-delay: 0s, 0.3s; }
 @keyframes
bounce {  0% {
 transform: rotate(0);
}
 45% {
 transform: rotate(15deg);
}
 90% {
 transform: rotate(-7deg);
}
 100% {
 transform: rotate(0);
}
}