@CHARSET "UTF-8";

/*------------------------------------*\
   MOBILE MENU ANIMATION
   Licensed under the MIT license, http://www.opensource.org/licenses/mit-license.php
   Copyright 2014, Call Me Nick
   http://callmenick.com
   http://callmenick.com/post/animating-css-only-hamburger-menu-icons
\*------------------------------------*/
.c-hamburger {
  display: block;
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 30px;
  color: #000;
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  right: 50px;
  -webkit-transition: background 0.3s;
          transition: background 0.3s;
  top: 20px;
  z-index: 100;
}

.c-hamburger.with-text {
	overflow: visible;
	text-indent: 0;
}

.c-hamburger.with-text > span {
	font-size: 15px;
	overflow: visible;
}

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

.c-hamburger > span {
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 3px;
  background: #cd4631;
}

.c-hamburger > span > div {
	margin-left: -50px;
	margin-top: -7px;
	text-transform: uppercase;
}

div.logo-container + nav .c-hamburger > span {
	background: #cd4631;
}

html.using-keyboard-navigation .c-hamburger:focus > span,
html.no-js .c-hamburger:focus > span {
	opacity: 0.6 !important;
}

.c-hamburger > span::before,
.c-hamburger > span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background: #cd4631;
  content: "";
}

.is-active .c-hamburger > span::before,
.is-active .c-hamburger > span::after {
	background: #fff !important;
}

.c-hamburger > span::before {
  top: -12px;
}

.c-hamburger > span::after {
  bottom: -12px;
}

.c-hamburger--htx {
  background: transparent;
}

.c-hamburger--htx > span {
	-webkit-transition: background 0.3s 0s;
	        transition: background 0.3s 0s;
}

.c-hamburger--htx > span::before,
.c-hamburger--htx > span::after {
	-webkit-transition-duration: 0.3s, 0.3s, 0.3s;
	        transition-duration: 0.3s, 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0s, 0s;
	        transition-delay: 0.3s, 0s, 0s;
}

.c-hamburger--htx > span::before {
	-webkit-transition-property: top, background, -webkit-transform;
	        transition-property: top, background, -webkit-transform;
	        transition-property: top, background, transform;
	        transition-property: top, background, transform, -webkit-transform;
}

.c-hamburger--htx > span::after {
	-webkit-transition-property: bottom, background, -webkit-transform;
	        transition-property: bottom, background, -webkit-transform;
	        transition-property: bottom, background, transform;
	        transition-property: bottom, background, transform, -webkit-transform;
}

/* active state, i.e. menu open */
html:not(.ios-device) .is-active .c-hamburger--htx {
}

html:not(.ios-device) .is-active .c-hamburger--htx > span {
	background: transparent;
}

html:not(.ios-device) .is-active .c-hamburger--htx > span::before {
  top: 0;
  -webkit-transform: rotate(45deg) translateY(-2px);
          transform: rotate(45deg) translateY(-2px);
}

html:not(.ios-device) .is-active .c-hamburger--htx > span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg) translateY(1px);
          transform: rotate(-45deg) translateY(1px);
}

html:not(.ios-device) .is-active .c-hamburger--htx > span::before,
html:not(.ios-device) .is-active .c-hamburger--htx > span::after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}
