@charset "UTF-8";

/* -----------------------------------------------------------------------------

  HAMBURGER ICONS COMPONENT - from here: https://github.com/callmenick/Animating-Hamburger-Icons
  
----------------------------------------------------------------------------- */
/**
 * Toggle Switch Globals
 *
 * All switches should take on the class `c-hamburger` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */
.c-hamburger {
	display: block;
	position: fixed;
	right: 0;
	z-index: 7;
	overflow: hidden;
	margin-top: 0;
	margin-right: 0px;
	padding: 0;
	width: 56px; /* overall size of hamburger */
	height: 56px;
	background-color: transparent;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border-style: none;
	cursor: pointer;
	-webkit-transition: background 0.1s;
	transition: background 0.1s;
}
.c-hamburger:focus {
	outline: none;
}
/* middle line */
.c-hamburger span {
  display: block;
  position: absolute;
  top: 24px;
  left: 9px;
  right: 9px;
  height: 6px;
  /*background: white;*/
  /*background: black;*/
  background:#d20426;
}
/* top & bottom lines */
.c-hamburger span::before, .c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 6px;
	/*background-color: #fff;*/
	/*background: black;*/
	background:#d20426;
	content: "";
}
/* space between the lines */
.c-hamburger span::before {
	top: -13px;
}
.c-hamburger span::after {
	bottom: -13px;
}
/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger span {
	-webkit-transition: background 0s 0.1s;
	transition: background 0s 0.1s;
}
.c-hamburger span::before, .c-hamburger span::after {
	-webkit-transition-duration: 0.1s, 0.1s;
	transition-duration: 0.1s, 0.1s;
	-webkit-transition-delay: 0.1s, 0s;
	transition-delay: 0.1s, 0s;
}
.c-hamburger span::before {
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}
.c-hamburger span::after {
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.c-hamburger.is-active {
/*background-color: #cb0032;*/
}
.c-hamburger.is-active span {
	background: none;
}
.c-hamburger.is-active span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.c-hamburger.is-active span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.c-hamburger.is-active span::before, .c-hamburger.is-active span::after {
	-webkit-transition-delay: 0s, 0.1s;
	transition-delay: 0s, 0.1s;
}
@media screen and (max-width: 1024px) {
/*.c-hamburger {
	margin: 44px 36px 0 0;
	width: 48px;
	height: 48px;
}
.c-hamburger:focus {
	outline: none;
}

.c-hamburger span {
  height: 4px;
}

.c-hamburger span::before, .c-hamburger span::after {
	height: 4px;
}
.c-hamburger span::before {
	top: -10px;
}
.c-hamburger span::after {
	bottom: -10px;
}*/
/* Style 2 Hamburger to "x" (htx) is identical for large & small hamburgers */
}
