/* ==============================
   Responsive hamburger button
   ============================== */

.c-hamburger {
	display: block;
	position: absolute;
	overflow: hidden;
	margin-top: 15px;
	padding: 0;
	width: 52px;
	height: 52px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	background: none;
	z-index: 1032;
	right: 0;
}

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

.c-hamburger span {
	display: block;
	position: absolute;
	top: 50%;
	left: 16px;
	right: 16px;
	height: 2px;
	background-color: #9f9f9f;
}

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

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

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

.c-hamburger--htx {}

.c-hamburger--htx span {
	transition-duration: 0.2s, 0.2s;
	/*-- added this so midddle line appears timly correct --*/
}

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

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

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


/*-- active state, i.e. menu open --*/

.c-hamburger--htx.is-active {
	/*-- background-color:#252525; --*/
	/*-- #cb0032; --*/
}

.c-hamburger--htx.is-active span {
	background: none;
}

.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.2s;
}