/*
JQuery Simple MobileMenu
https://github.com/Position2/jQuery-Simple-MobileMenu
*/
/*Main style*/
body.mmactive {
  overflow: hidden;
}
.mobile_menu {
  /*display: none;*/
  position: relative;
  margin: 0px 0 0 0;
}
.sm_menu_outer.active .mobile_menu {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0px;
}
.sm_menu_outer {
  height: calc(100vh - 120px) !important;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  right: 0;
  top: 92px;
  z-index: -9;
  width: 100%;
  opacity: 0;
  background-color: #ffffff;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.sm_menu_outer.active {
  opacity: 1;
  z-index: 999;
  padding-top: 0px;
}
.sm_menu_outer .mobile_menu li.back a {
  /*padding: 20px 5px 20px 55px;
  background: url("../images/back.png") no-repeat scroll 15px center / 5% auto;*/
  padding-left: 40px !important;
}
.sm_menu_outer .mobile_menu a {
    color: #005CAB;
    font-family: 'AnodinaRegular';
    font-size: 18px;
    font-weight: 400;
    line-height: 17px;
    padding: 10px 10px !important;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 20px 15px;
    text-transform: capitalize;
    text-decoration: none;
    display: inline;
}
.sm_menu_outer .mobile_menu .submenu a{display:block;}
.sm_menu_outer .mobile_menu .country-li a {
    padding: 0 !important;
}

.sm_menu_outer .mobile_menu .country-li .country-menu a.countryListBtn{
    width: 100%;
}
.sm_menu_outer .mobile_menu .country-li .country-menu a.countryListBtn .flag_icon{
    width: 100%;
    color: #999999;
    padding-left: 35px;
    font-size: 22px;
    background:url(../globe.png) no-repeat;
    background-size: 30px 30px;
    height: 30px;
    margin-top:30px;
    line-height: 24px;
}

.sm_menu_outer .mobile_menu .country-li .country-menu a.countryListBtn .flag_icon span{
   margin-top: 3px;
   display: inline-block;
}

.special-tab {
    font-family: 'AnodinaExtraBold' !important;
    font-weight: bolder !important;
}
li.back > a:before {
    content: "\f053";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: left;
    color: #005CAB;
    margin-left: -30px;
}

/*Sub Menu anim */
.sm_menu_outer.slide .mobile_menu .submenu {
  background-color: #ffffff;
  height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  transition: all 0.5s ease 0s;
  width: 100%;
  z-index: 999;
}


.mobile_menu .submenu li:first-child{margin-top: 25px;border-top:1px solid #005CAB;}
.sm_menu_outer.slide .mobile_menu li.active>.submenu {
  right: 0;
}
.sm_menu_outer .mobile_menu > li:first-child {
    border-top: 1px solid #BCBEC0;
}
.sm_menu_outer .mobile_menu li {
  list-style-type: none;
  border-bottom: 1px solid #005CAB;
  /*border-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #2a2a2a 20%, #2a2a2a 50%, #2a2a2a 80%, rgba(0, 0, 0, 0) 100%) 0 0 1 0;*/
  color: #ffffff;
  padding: 15px;
  /*position: relative;*/
}
.sm_menu_outer.slide .mobile_menu li.hasChild {
    /*position: relative;*/
}
.sm_menu_outer.slide .mobile_menu li.hasChild > a:after {
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    color: #005CAB;
}
/*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: 25px;
  top: 30px;
  right: 15px;
  z-index: 2001;
}
#sm_menu_ham span {
  background-color: #ffffff;
  /*border-radius: 5px;*/
  display: block;
  height: 3px;
  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: 25px;
}
#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;
}
.sm_menu_outer.accordion .mobile_menu .submenu, .sm_menu_outer.accordion .mobile_menu li.hasChild ul.submenu {
  display: none;
  margin-left:0px;
  padding: 0px;
}
.sm_menu_outer.accordion .mobile_menu .hasChild > .submenu li {
  padding-left: 20px;
}
.sm_menu_outer.accordion .mobile_menu li.active > .submenu {
  right: auto;
}
.sm_menu_outer.accordion .mobile_menu li.hasChild > a {
  position: relative;
  width:80%;
  display:inline;
}
.sm_menu_outer.accordion .mobile_menu li.hasChild > svg{background:red;width: 30px;height: 40px;color: blue;}
@media (min-width: 992px) {
  #sm_menu_ham,
  .sm_menu_outer {
    display: none;
  }
}
.sm_menu_outer.accordion li {
   display: block;
}
.sm_menu_outer.accordion li.mobile-search-panel .form-group{margin-bottom: 0px;}
.submenu .mobile-search-panel {
    display: none !important;
}
.sm_menu_outer .mobile_menu a.special-tab{
    display:none;
}
.sm_menu_outer.accordion .mobile_menu .hasChild > .submenu li:last-child{
    border-bottom:none;
}
.mobile_menu .search-toggle-icon-cust{
    height:auto;
    width:auto;
}
.m-fa-down {
    content:'';
    float:right;
    margin-top:3px
}

.mobile_menu .hasChild .m-fa-down:before {
    content: "\e114";
    color: #005CAB;
    transition: all 0.19s ease;
    /* font: normal normal normal 17px/1 FontAwesome; */
}

.mobile_menu .hasChild.active .m-fa-down:before {
    content: "\e113";
}
.mobile_menu .empty-li{border: 0 !important;min-height: 60px;}
@media screen and (max-width: 991px) and (min-width:768px) {
  .mobile-search-panel{padding-left: 30px !important;}
 }
@media only screen and (min-width:768px) and (max-width:1024px) and (orientation:portrait) {
    #sm_menu_ham {
        right: 40px;
    }
    .sm_menu_outer.active {
        margin-right: 15px;
        margin-left: 15px;
    }
}










