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

  HAMBURGER ICONS COMPONENT
  
----------------------------------------------------------------------------- */
/**
 * 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: relative;
  overflow: hidden;
  margin: 0;
  margin-top: 10px;
  padding: 0;
  width: 80px;
  height: 80px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
          transition: background 0.3s;
          
}

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

.c-hamburger span {
  display: block;
  position: absolute;
  top: 37px;
  left: 10px;
  right: 30px;
  height: 6px;
  background-color: #1F1F26;
}

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

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

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


/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger--htx {
  background-color: #ffffff;
}

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

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

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

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

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: #ffffff;
}

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

.c-hamburger--htx.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

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

@media (min-width: 320px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2){
	.c-hamburger {
	  margin-top: 12px;
	  width: 130px;
	  height: 120px;
	}
		
	.c-hamburger span {
	  top: 52px;
	  left: 20px;
	  right: 20px;
	  height: 16px;
	}
	
	.c-hamburger span::before,
	.c-hamburger span::after {
	  height: 16px;
	}
	
	.c-hamburger span::before {
	  top: -28px;
	}
	
	.c-hamburger span::after {
	  bottom: -28px;
	}
	
	
	/**
	 * Style 2
	 * 
	 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
	 * down to center and transform into an "x".
	 */
	.c-hamburger--htx {
	  background-color: #ffffff;
	}
	
	.c-hamburger--htx span {
	  -webkit-transition: background 0s 0.3s;
	          transition: background 0s 0.3s;
	}
	
	.c-hamburger--htx span::before,
	.c-hamburger--htx span::after {
	  -webkit-transition-duration: 0.3s, 0.3s;
	          transition-duration: 0.3s, 0.3s;
	  -webkit-transition-delay: 0.3s, 0s;
	          transition-delay: 0.3s, 0s;
	}
	
	.c-hamburger--htx span::before {
	  -webkit-transition-property: top, -webkit-transform;
	          transition-property: top, transform;
	}
	
	.c-hamburger--htx span::after {
	  -webkit-transition-property: bottom, -webkit-transform;
	          transition-property: bottom, transform;
	}
	
	/* active state, i.e. menu open */
	.c-hamburger--htx.is-active {
	  background-color: #ffffff;
	}
	
	.c-hamburger--htx.is-active span {
	  background: none;
	}
	
	.c-hamburger--htx.is-active span::before {
	  top: 0;
	  -webkit-transform: rotate(45deg);
	      -ms-transform: rotate(45deg);
	          transform: rotate(45deg);
	}
	
	.c-hamburger--htx.is-active span::after {
	  bottom: 0;
	  -webkit-transform: rotate(-45deg);
	      -ms-transform: rotate(-45deg);
	          transform: rotate(-45deg);
	}
	
	.c-hamburger--htx.is-active span::before,
	.c-hamburger--htx.is-active span::after {
	  -webkit-transition-delay: 0s, 0.3s;
	          transition-delay: 0s, 0.3s;
	}
}

@media (min-width: 320px) and (max-device-width:786px) and (-webkit-min-device-pixel-ratio: 2) and (orientation : landscape){
	
	.c-hamburger {
	  display: block;
	  position: relative;
	  overflow: hidden;
	  margin: 0;
	  margin-top: 10px;
	  padding: 0;
	  width: 80px;
	  height: 80px;
	  font-size: 0;
	  text-indent: -9999px;
	  -webkit-appearance: none;
	  -moz-appearance: none;
	  appearance: none;
	  box-shadow: none;
	  border-radius: none;
	  border: none;
	  cursor: pointer;
	  -webkit-transition: background 0.3s;
	  transition: background 0.3s;
	          
	}
	
	.c-hamburger:focus {
	  outline: none;
	}
	
	.c-hamburger span {
	  display: block;
	  position: absolute;
	  top: 37px;
	  left: 10px;
	  right: 30px;
	  height: 6px;
	  background-color: #1F1F26;
	}
	
	.c-hamburger span::before,
	.c-hamburger span::after {
	  position: absolute;
	  display: block;
	  left: 0;
	  width: 100%;
	  height: 6px;
	  background-color: #1F1F26;
	  content: "";
	}
	
	.c-hamburger span::before {
	  top: -12px;
	}
	
	.c-hamburger span::after {
	  bottom: -12px;
	}
	
	
	/**
	 * Style 2
	 * 
	 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
	 * down to center and transform into an "x".
	 */
	.c-hamburger--htx {
	  background-color: #ffffff;
	}
	
	.c-hamburger--htx span {
	  -webkit-transition: background 0s 0.3s;
	          transition: background 0s 0.3s;
	}
	
	.c-hamburger--htx span::before,
	.c-hamburger--htx span::after {
	  -webkit-transition-duration: 0.3s, 0.3s;
	          transition-duration: 0.3s, 0.3s;
	  -webkit-transition-delay: 0.3s, 0s;
	          transition-delay: 0.3s, 0s;
	}
	
	.c-hamburger--htx span::before {
	  -webkit-transition-property: top, -webkit-transform;
	          transition-property: top, transform;
	}
	
	.c-hamburger--htx span::after {
	  -webkit-transition-property: bottom, -webkit-transform;
	          transition-property: bottom, transform;
	}
	
	/* active state, i.e. menu open */
	.c-hamburger--htx.is-active {
	  background-color: #ffffff;
	}
	
	.c-hamburger--htx.is-active span {
	  background: none;
	}
	
	.c-hamburger--htx.is-active span::before {
	  top: 0;
	  -webkit-transform: rotate(45deg);
	      -ms-transform: rotate(45deg);
	          transform: rotate(45deg);
	}
	
	.c-hamburger--htx.is-active span::after {
	  bottom: 0;
	  -webkit-transform: rotate(-45deg);
	      -ms-transform: rotate(-45deg);
	          transform: rotate(-45deg);
	}
	
	.c-hamburger--htx.is-active span::before,
	.c-hamburger--htx.is-active span::after {
	  -webkit-transition-delay: 0s, 0.3s;
	          transition-delay: 0s, 0.3s;
	}
	
}