@charset "UTF-8";

.hamburger {
  display: block;
  width: 58px;
  height: 58px;
  position: fixed;
  /*position: fixed;*/
  top: 12px;
  right: 10px;
  z-index: 1000;
  padding: 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  /*background:#0e2e93;
  border-radius: 50%;
  border:1px solid #fff;*/
}


.hamburger__icon {
	position: relative;
	margin-top: 7px;
	margin-bottom: 7px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
	display: block;
	width: 34px;
	height: 2.5px;
	background-color: #ff5e79; /** icon color **/
	-moz-transition-property: background-color, -moz-transform;
	-o-transition-property: background-color, -o-transform;
	-webkit-transition-property: background-color, -webkit-transform;
	transition-property: background-color, transform;
	-moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.hamburger__icon:before, .hamburger__icon:after {
	  position: absolute;
	  content: "";
}
.hamburger__icon:before {
	top: -8px;
}
.hamburger__icon:after {
	top: 8px;
}
.hamburger.active .hamburger__icon {
	background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
	background-color: #ff5e79;
}
.hamburger.active .hamburger__icon:before {
	-moz-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	-webkit-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
	-moz-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	-webkit-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}

.fat-nav {
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.98); /** bgcolor **/
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	-moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
  
}
.fat-nav_wrapper {
	width: 100%;
	height: 100%;
	display: table;
	table-layout: fixed;
}
.fat-nav.active {
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}



@media screen and (min-width: 769px) {
	.hamburger,
	.fat-nav{
		display:none;
	}
}

@media print {
	.hamburger,
	.fat-nav{
		display:none;
	}
}

.hamburger {
	color:#ff5e79;
}
.hamburger:hover,
.hamburger:active{
	color:#ff5e79;
	text-decoration:none;
}

.hamburger span{
	display: block !important;
	width: 34px !important;
	font-size: 10px!important;
	text-align: center!important;
	margin-top: 14px!important;
	font-weight: bold!important;
}
