/*Main style*/
body.mmactive {
  overflow: hidden;
}
.mobile_menu {
  display: none;
  position: relative;
}
.sm_menu_outer.active .mobile_menu {
  display: block;
  border-top: 1px solid  rgba(255,255,255,0.5);
}
.sm_menu_outer {
  padding-top: 80px;
  max-width: 486px;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -9;
  width: 100%;
  opacity: 0;
  background-color: #002855;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
  height: 200%;
}
.sm_menu_outer.active {
  opacity: 1;
  z-index: 999;
}
li.back a {
  position: relative;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.7);
}

.sm_menu_outer .mobile_menu li.back a:before {
  content: "w";
  color: #fff;
  font-family: complete-icons;
  left: 32px;
  top: -54px;
  font-size: 32px;
  position: absolute;
}


.sm_menu_outer .mobile_menu a {
  display: block;
  letter-spacing: 1px;
  padding: 20px 20px;
  text-decoration: none;
  font-size: 20px;
}


.sm_menu_outer .mobile_menu a:hover {
  background-color: #023A78;
}

/*Sub Menu anim */
.sm_menu_outer.slide .mobile_menu .submenu {
  background-color: #002855;
  height: 100%;
  position: fixed;
  max-width: 486px;
  right: -100%;
  top: 0px;
  padding-top: 80px;
  transition: all 0.2s ease 0s;
  width: 100%;
  z-index: 999;
}
.sm_menu_outer.slide .mobile_menu li.active > .submenu {
  right: 0;
  border-top: 1px solid rgba(256,256,256,0.5);
  background-color: var(--cu-light-blue);
  overflow: scroll
}
.sm_menu_outer .mobile_menu li {
  list-style-type: none;
  position: relative;
  color: #ffffff;
 
}

.mobile_menu li.active a {
  font-weight: 400;
}

.mobile_menu li.active .submenu li a {
  color: #fff;
  background-color: #005295;
  padding-left: 20px;
}


.mobile_menu li.active .submenu li a:hover {
  color: #fff;
  background-color: #005fad;
  padding-left: 20px;
}

li.back a {
 padding-top: 20px   !important;
  background-color: var(--cu-dark-blue) !important;
}


.sm_menu_outer.slide .mobile_menu li.hasChild > a {
position: relative;
}

.sm_menu_outer.slide .mobile_menu li.hasChild > a:after {
  position: absolute;
  content: "n";
  color: #9db3cb;
  right: 0px;

  padding: 0px;
  font-family: complete-icons;
  font-size: 48px;
    top: 8px;
  }

/*Hamburger Animation */
#sm_menu_ham {
  cursor: pointer;
  float: right;
  height: 56px;
  position: fixed;
  -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: 60px;
  top: 0px;
  right: 0px;
  z-index: 9999;
  padding: 8px;
  background-color:  var(--cu-dark-blue-zero);
}

.colorise #sm_menu_ham {
}

.nextlevel {
  position: absolute;
  height: 66px;
  padding: 14px 32px;
  background-color:  var(--cu-dark-blue);
  color: var(--cu-dark-blue);
  right: 0px;
  top: 0px;
  cursor: pointer;
  width: 90px;
  border-left: 1px solid rgba(256,256,256,0.2);
}

.nextlevel:hover {
  background-color: var(--cu-dark-blue);

}

.nextlevel:after {
  position: absolute;
  content:"n";
  color: rgba(255,255,255,0.5);
  right: 24px;
  top: 8px;
  font-size: 40px;
  font-family: complete-icons;
}
#sm_menu_ham span {
  background-color: #FFFFFF;
  display: block;
  height: 3px;
  left: 10px;
  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: 42px;
}
#sm_menu_ham span:nth-child(1) {
  top: 12px;
}
#sm_menu_ham span:nth-child(2),
#sm_menu_ham span:nth-child(3) {
  top: 26px;
}
#sm_menu_ham span:nth-child(4) {
  top: 40px;
}
#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: 1180px) {
  #sm_menu_ham,
  .sm_menu_outer {
    display: none;
  }
}