/* menuicon */
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 2px 2px 0 10px;
  padding: 0;
  width: 60px;
  height: 60px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  float: right;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 28px;
  left: 13px;
  right: 13px;
  height: 4px;
  background: #ffffff;
}
.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  content: "";
}
.c-hamburger span::before {
  top: -10px;
}
.c-hamburger span::after {
  bottom: -10px;
}
.c-hamburger--htx {
  background: transparent;
}
.c-hamburger--htx span {
  transition: background 0s 0.15s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.15s, 0.15s;
  transition-delay: 0.15s, 0s;
}
.c-hamburger--htx span::before {
  transition-property: top, transform;
}
.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}
.c-hamburger--htx.is-active span,
.c-hamburger--htx.is-active {
  background-color: #ffffff !important;
}
.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.15s;
  background: #782182;
}
/* end of menuicon */
/* Tablets (991px and down) */
@media (max-width: 991px) {
  .c-hamburger {
    width: 40px;
    height: 40px;
  }
  .c-hamburger span {
    top: 19px;
    left: 8px;
    right: 8px;
    height: 3px;
  }
  .c-hamburger span::before,
  .c-hamburger span::after {
    height: 3px;
  }
  .c-hamburger span::after {
    bottom: -8px;
  }
  .c-hamburger span::before {
    top: -8px;
  }
}
/*# sourceMappingURL=menuicon.css.14c9699da503.map */