/*
JQuery Simple MobileMenu Slide
https://github.com/Position2/jQuery-Simple-MobileMenu
*/
/*Main style*/
body.mmactive {
  overflow: hidden;
}
.mobile_menu {
  display: none;
  position: relative;
	
}
.mobileMenuC{height: 80px;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0px;
    padding: 10px 10px;
    z-index: 99; display: none;}
.sm_menu_outer.active .mobile_menu {
  display: block;
}
.sm_menu_outer {
  height: calc(100vh - 70px);
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -9;
  width: 100%;
  opacity: 0;
  background-color: #F4F5F6;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
	border-top: 1px solid rgba(0,0,0,.13);
}
.sm_menu_outer.active {
  opacity: 1;
  z-index: 999;
}
.sm_menu_outer .mobile_menu li.back a {
  padding: 0 5px 0 45px; position: relative; height: 60px; line-height: 60px;
  background: #fff;
}
.sm_menu_outer .mobile_menu li.back a:before{
    position: absolute;
    left: 15px;
    top: 0;
    font-weight: 900;
    color:rgba(0,0,0,0.24);
    font-family: 'Line Awesome Free';
    content: '\f104';
	font-size: 20px;
}
.sm_menu_outer .mobile_menu li.back a:after{
   opacity: 0;
}
.sm_menu_outer .mobile_menu li a.mobileLogin:after{
   opacity: 0;
}
.sm_menu_outer .mobile_menu a {
  color: #000;
  display: block;
  font-size: 15px;
  padding: 20px 15px;
  text-decoration: none;
	position: relative;
	font-weight: 600;
	line-height: 20px;
}


.sm_menu_outer .mobile_menu a:after{
    position: absolute;
    right: 15px;
    top: 50%;
    font-weight: 900;
    color:rgba(0,0,0,0.24);
    font-family: 'Line Awesome Free';
    content: '\f105';
	font-size: 20px;
	margin-top: -10px;
}

.sm_menuIcon{width: 44px; height: 44px; background:#CB9274; display: inline-block; border-radius: 6px; float: left; margin: 22px 10px 0 0; text-align: center;
    padding: 8.5px 0;
    line-height: normal;}
.sm_menuIcon img{text-align: center; height: 27px;}

/*Sub Menu anim */
.sm_menu_outer.slide .mobile_menu .submenu {
  background-color: #F4F5F6;
  height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  transition: all 0.5s ease 0s;
  width: 100%;
  z-index: 999;
}
.sm_menu_outer.slide .mobile_menu li.active > .submenu {
  right: 0;
}
.sm_menu_outer .mobile_menu li {
  list-style-type: none;
  border-bottom: 1px solid rgb(112,112,112,0.13);
  
  color: #ffffff;
}
.sm_menu_outer.slide .mobile_menu li.hasChild > a {
  /**/
}
/*Hamburger Animation */
#sm_menu_ham {
  cursor: pointer;
  float: right;
  height: 25px;
  position: fixed;
  right: 5px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  width: 30px;
  top: 25px;
  right: 15px;
  z-index: 9999;
}
#sm_menu_ham span {
  background-color: #9C1F58;
  border-radius: 5px;
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  width: 30px;
}
#sm_menu_ham span:nth-child(1) {
  top: 0;
}
#sm_menu_ham span:nth-child(2),
#sm_menu_ham span:nth-child(3) {
  top: 10px;
}
#sm_menu_ham span:nth-child(4) {
  top: 20px;
}
#sm_menu_ham.open span:nth-child(1) {
  left: 50%;
  top: 18px;
  width: 0;
}
#sm_menu_ham.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
#sm_menu_ham.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#sm_menu_ham.open span:nth-child(4) {
  left: 50%;
  top: 18px;
  width: 0;
}
@media (min-width: 965px) {
  #sm_menu_ham,
  .sm_menu_outer {
    display: none;
  }
	
}

@media only screen and (max-width: 965px) {
	.mobileMenuC{display: block;}	
	.sm_menu_outer {
  /*height: calc(100vh - 126px);*/
	}
}