/*
JQuery Simple MobileMenu
https://github.com/Position2/jQuery-Simple-MobileMenu
*/

/*Main style*/

body.mmactive {
  overflow: hidden;
}

.mobile_menu {
  display: block;
  position: relative;
  margin: 0px;
  width: 90%;
}

.sm_menu_outer.active .mobile_menu {
  display: block;
}

.sm_menu_outer {
  height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  position: fixed;
  /*left: 0;
  bottom: 0;*/
  z-index: 999;
  width: 300px;
  opacity: 1;
  background-color: #fff;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

li.back {
  background: #e0e0e0;
}

li:odd {
  background: green
}

li:even {
  background: red
}

.sm_menu_outer.active {
  opacity: 1;
  z-index: 999;
}

.sm_menu_outer .mobile_menu li.back a {
  padding: 20px 5px 20px 55px;
  background: url("../../../img/menu/back.png") no-repeat scroll 19px center / 7% auto;
}

.sm_menu_outer .mobile_menu a {
  color: #333;
  box-sizing: content-box;
  display: inline-block;
  padding: 15px;
  text-decoration: none;
  width: 76%;
  margin-left: 0px;
  padding-left: 26px;
  position: relative;
}

/*Sub Menu anim */

.sm_menu_outer .mobile_menu .submenu {
  background-color: #fff;
  height: 100%;
  position: absolute;
  right: -125%;
  top: 0;
  transition: all 0.5s ease 0s;
  width: 100%;
  z-index: 999;
}

.sm_menu_outer .mobile_menu li.active>.submenu {
  right: 0;
}

.sm_menu_outer .mobile_menu li {
  list-style-type: none;
  color: #fff;
  border-bottom: 1px solid #CCC;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sm_menu_outer .mobile_menu li.hasChild>a {
  background: url(../../images/visor-donostiKalean/menu/next.svg) no-repeat 95% center / 3%;
  width: 75%;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

  .sm_menu_outer .mobile_menu li.hasChild>a {
    background: url("../../images/visor-donostiKalean/menu/next.svg");
    width: 76%;
    background-repeat:no-repeat;
    background-position-x:110%;
    background-position-y:center;
    background-size:23%;
    height:20px;
    
  }
 
}