/*!
* zeynepjs v2.1.4
* A light-weight multi-level jQuery side menu plugin.
* It's fully customizable and is compatible with modern browsers such as Google Chrome, Mozilla Firefox, Safari, Edge and Internet Explorer
* MIT License
* by Huseyin ELMAS
*/
.zeynep{
  bottom:0;
  overflow:hidden;
  -webkit-overflow-scrolling:touch;
  overflow-y:auto;
  pointer-events:none;
  position:fixed;
  top:0;
  transform:translateX(100%);
  z-index:1011;
}

.zeynep:not(.no-transition),
.zeynep .submenu:not(.no-transition){
  transition:all 250ms;
}

.zeynep-overlay{
  background-color:rgba(0, 0, 0, .42);
  bottom:0;
  display:none;
  left:0;
  position:fixed;
  right:0;
  top:0;
  z-index:1010;
}

.zeynep-opened .zeynep-overlay{
  display:block;
}

.zeynep.opened{
  pointer-events:auto;
  transform:translateX(0px);
}

.zeynep .header-buttons{
    flex-direction: row;
    align-items: flex-start;
    margin-right: 20px;
}

.zeynep .dr-button.dr-btn2 {
    border: 1px solid #fff;
}

.zeynep .dr-button::before{
    display: none;
}


.zeynep.opened::before{
    position: absolute;
    content: '';
    background-image: url("../images/mobile-menu-shape.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 340px;
    height: 170px;
    bottom: 0;
    left: 0;
    opacity: .2;
}

.zeynep.submenu-opened{
  overflow:hidden;
}

.zeynep .submenu{
  bottom:0;
  min-height:100%;
  overflow:hidden;
  -webkit-overflow-scrolling:touch;
  overflow-y:auto;
  pointer-events:none;
  position:fixed;
  top:0;
  width:100%;
}

.zeynep .submenu.opened{
  left:0;
  pointer-events:auto;
  z-index: 10;
}

.zeynep .submenu.opened:not(.current){
  overflow:hidden;
}

.megamenu-logo{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
