/*
 * Colors
 */
/*
 * Menu
 */
.adaptive-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  width: 320px;
  height: 100%;
  padding-top: 70px;
  padding-bottom: 50px;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translateX(-324px);
  -ms-transform: translateX(-324px);
  transform: translateX(-324px);
  text-align: left;
  background-color: white;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
}
.adaptive-menu > *:first-child,
.adaptive-menu ul:first-of-type {
  display: block !important;
}
.adaptive-menu ul:first-of-type {
  margin: 0;
  padding: 0;
}
.adaptive-menu ul:first-of-type li {
  display: block;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
.adaptive-menu ul:first-of-type li:hover::before, .adaptive-menu ul:first-of-type li:hover::after, .adaptive-menu ul:first-of-type li::before, .adaptive-menu ul:first-of-type li::after {
  display: none;
}
.adaptive-menu ul:first-of-type li a {
  font-size: 16px;
  display: block;
  padding:10px;
  transition: background-color .3s ease-out;
  color: #666666;
  border: 0;
}
.adaptive-menu ul:first-of-type li a:hover {
  color: white;
  background: #d6493e;
}
.adaptive-menu ul:first-of-type li a:hover::before, .adaptive-menu ul:first-of-type li a:hover::after, .adaptive-menu ul:first-of-type li a::before, .adaptive-menu ul:first-of-type li a::after {
  display: none;
}
.adaptive-menu--is-visible.adaptive-menu {
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.adaptive-menu__open {
  position: fixed;
  z-index: 100;
  top: 10px;
  right: 8px;
  width: 50px;
  height: 50px;
  background: transparent;
}
.adaptive-menu__open--is-hidden {
  visibility: hidden;
}
.adaptive-menu__open > span {
  position: absolute;
  top: 46%;
  left: -webkit-calc(50% - 19px);
  left: calc(50% - 19px);
  width: 36px;
  height: 4px;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out;
  pointer-events: none;  
  background:#00aeed;
}
.adaptive-menu__open > span:hover {
  opacity: .7;
}
.adaptive-menu__open > span::before, .adaptive-menu__open > span::after {
  position: absolute;
  right: 0;
  width: 36px;
  height: 4px;
  content: '';
  background:#00aeed;
}
.adaptive-menu__open > span::before {
  top: -10px;
}
.adaptive-menu__open > span::after {
  bottom: -10px;
}
.adaptive-menu__open > span b {
  display: none;
}
.adaptive-menu__close {
  position: absolute;
  z-index: 1000;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 40px;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out;
  opacity: .7;
}
.adaptive-menu__close:hover {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 1;
}
.adaptive-menu__close--is-hidden {
  visibility: hidden;
}
.adaptive-menu__close > span {
  display: none;
}
.adaptive-menu__close::before, .adaptive-menu__close::after {
  position: absolute;
  top: 18px;
  left: 0;
  width: 36px;
  height: 6px;
  content: '';
  background:#00aeed;
}
.adaptive-menu__close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.adaptive-menu__close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.adaptive-menu__bg {
  position: fixed;
  z-index: 59;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  background-color: transparent;
}
.adaptive-menu__bg--is-visible {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}

/* /*# sourceMappingURL=adaptive-menu.default.css.map */
/* a#open_menu:after {
    content: "MENU";
    top: 39px;
    position: absolute;
    left: 5px;
}  */