.c-hamburger {
	display: block;
	position: relative;
	overflow: hidden;
	/*margin: auto;*/
	padding: 0;
	width: 60px;
	height: 50px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}

.c-hamburger:focus {
	outline: none !important;
}

.c-hamburger span {
	display: block;
	position: absolute;
	top: 22px;
	left: 15px;
	right: 15px;
	height: 2px;
	background: white;
	border-radius: 2px;
}

.c-hamburger span::before,
.c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	content: "";
	border-radius: 2px;
}

.c-hamburger span::before {
	top: -11px;
}

.c-hamburger span::after {
	bottom: -11px;
}

.c-hamburger--htx {
	background-color: white;
}

.c-hamburger--htx span {
	background-color: rgba(82,82,84,1);
  	transition: background 0s 0.2s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
	background-color: rgba(82,82,84,1);
	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: #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;
}