.hamburger {
  width:45px;
  height: 50px;
  position:absolute;
  top:16px;
  right:2px;
  border:none;
  z-index: 10000;
  padding: 12px;
  font-weight:bold;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	  -webkit-tap-highlight-color: transparent;
	  -webkit-tap-highlight-color: transparent;
	  -ms-touch-action: manipulation;
	  touch-action: manipulation;
}
@media screen and (min-width:451px) and (max-width:810px) {
	.hamburger{top:20px;right:5px;}
}
.hamburger.active{
	top:10px;
  	right:6px;
}
.hamburger__icon {
  position: relative;
  margin-top: 7px;
  margin-bottom: 7px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 25px;
  height:3px;
  background-color:#721C49;
  -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: -7px;
}
.hamburger__icon:after {
  top: 7px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: #fff;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}
.fat-nav {
  top: 0;
  box-sizing:border-box;
  left: 0;
  z-index: 9999;
  position: fixed;
  padding-top:40px;
  display: none;
  width: 100%;
  height: 100%;
  opacity:0.98;
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -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;
		background: #721c49;
		background: -moz-linear-gradient(left, #721c49 0%, #a42869 100%);
		background: -webkit-linear-gradient(left, #721c49 0%,#a42869 100%);
		background: linear-gradient(to right, #721c49 0%,#a42869 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#721c49', endColorstr='#a42869',GradientType=1 );
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav ul {
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
.fat-nav li {
  list-style-type: none;
  padding:16px 0 16px 8px;
  font-size:22px;
  background-image:url(border-nav2.png);
  background-repeat:no-repeat;
  background-position:bottom center;
}
.fat-nav li li{
	padding:6px 0;
	background:none;
 	 font-size:17px;
	 margin-left:16px;
}
.fat-nav li li li{
	background:none;
	list-style:none;
	padding:5px 0 2px 2px;
 	 font-size:13px;
	 margin-left:14px;
	list-style:square;
}
.fat-nav li li li li{
	list-style:none;
	padding:3px 0 3px 2px;
 	 font-size:13px;
	 margin-left:0;
}
.fat-nav li, .fat-nav li a {
  color: #fff;
  border:none;
}
.fat-nav li a {
  text-decoration: none;
}
.fat-nav li a:HOVER{
	color:#000;
}