.pushy {
  position: fixed;
  width: 250px;
  height: 100%;
  top: 0;
  z-index: 9997;
  background:linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(../img/price_bg.jpg) center center/cover;
  overflow: auto;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-overflow-scrolling: touch;
}

.pushy a {
  display: block;
  color: #333;
  padding: 15px 0 15px 20px;
  text-decoration: none;

}

.pushy a:hover {
}

.pushy ul:first-child {
  margin-top: 10px;
}

.pushy ul li {
  list-style-type: none;
  border-bottom: 1px solid #ddd;
}

.pushy.pushy-left {
  left: 0;
}

.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;
}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-280px, 0, 0);
  -ms-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(280px, 0, 0);
  -ms-transform: translate3d(280px, 0, 0);
  transform: translate3d(280px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(280px, 0, 0);
  -ms-transform: translate3d(280px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-280px, 0, 0);
  -ms-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9995;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



.pushy-submenu ul {
  padding-left: 15px;
  transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}

.pushy-submenu>a,
.pushy-submenu>button {
  position: relative;
}

.pushy-submenu-closed ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-closed {
  position: relative;
}

.pushy-submenu ul,
.pushy-content li ul {
  background: #f0f0f0;
}

.pushy-content li ul li a {
  text-transform: none;
  font-size: 14px;
  font-weight: 300;
}

.pushy-submenu-open ul {
  max-height: 1000px;
  visibility: visible;
}

.pushy-submenu-open .pushy-link {
  opacity: 1;
}

.pushy ul {
  padding: 0;
}

.pushy .active {
  background: #872A18;
  color: #fff;
}

.pushy-submenu {
  position: relative;
}


.pushy-submenu-closed:after,
.pushy-submenu-open:after {
  content: '\f0d7 ';
  font-family: 'FontAwesome';
  color: #999;
  display: inline-block;
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform .5s;
  border-left: 1px solid #ddd;
  line-height: 55px;
  width: 50px;
  text-align: center;
}

.pushy-submenu-open:after {
  color: #854b9e;
}


.menu-btn {
  width: 48px;
  height: 48px;
  display: none;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
}

.menu-btn img{
  width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .menu-btn {
    display: block;
  }
}

@media (max-width: 1000px) {
  .menu-btn {
    margin-left: 5px;
  }
}