@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;
	margin: 0;
	padding: 0;
	position: relative;
	width: 40px;
	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;
	-webkit-transition: background 0.3s;
	        transition: background 0.3s;
	z-index: 100;
}

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

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

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

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

.c-hamburger {
	background: transparent;
}

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

.c-hamburger > span::before,
.c-hamburger > 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 > 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 > 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;
}

html:not(.ios-device) .c-hamburger[aria-pressed="true"] > span {
	background: transparent;
}

html:not(.ios-device) .c-hamburger[aria-pressed="true"] > span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

html:not(.ios-device) .c-hamburger[aria-pressed="true"] > span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

html:not(.ios-device) c-hamburger[aria-pressed="true"] > span::before,
html:not(.ios-device) c-hamburger[aria-pressed="true"] > span::after {
	-webkit-transition-delay: 0s, 0.3s;
	        transition-delay: 0s, 0.3s;
}
