/*!
* zeynepjs v2.2.0
* 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 {
  left: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translateX(-100%) translateZ(0);
  z-index: 1011;
}
.zeynep .submenu:not(.no-transition),
.zeynep:not(.no-transition) {
  transition: all 250ms;
}
.zeynep-overlay {
  background-color: rgba(0, 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(0) translateZ(0);
}
.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;
}
.zeynep .submenu.opened:not(.current) {
  overflow: hidden;
}
.btn-open {
  border: 0;
  border-radius: 27.5px;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.05);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  min-width: 150px;
  outline: 0;
  padding-bottom: 15px;
  padding-top: 15px;
  cursor: pointer;
  margin: 0 6px;
}
.btn-open:active {
  box-shadow: inset 0 3px 5px 0 rgba(0, 0, 0, 0.1);
}
.btn-open.first {
  background-color: #fd698d;
  color: #fff;
}
.btn-open.second {
  background-color: #fff;
  color: #fd698d;
}
.zeynep {
  background-color: #fff;
  color: #404143;
  width: 295px;
}
.zeynep ul {
  list-style-type: none;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}
.zeynep ul > li {
  display: block;
}
.zeynep ul > li > a {
  color: inherit;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 150ms;
}
.zeynep ul > li > a:hover {
  background-color: #efefef;
  border-radius: 3px;
}
.zeynep ul > li:not(:last-child) > a {
  border-bottom: 1px solid #efefef;
}
.zeynep .submenu {
  background-color: #fff;
  left: 100%;
}
.zeynep .submenu-header > a {
  color: inherit;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 20px;
  padding-left: 40px;
  text-decoration: none;
}
.zeynep .submenu > label {
  color: #e77691;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 19px;
  opacity: 0.5;
  padding-left: 40px;
  width: 100%;
}
