/*! responsive-nav.js 1.0.32 by @viljamis */

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 9999px;
  position: relative;
  display: block;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: none;
}  

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; 
  position: absolute;
  left: 95px;
  top: 85px;
  background: #fcaf17;
  text-decoration: none;
  color: #fff;
  font-size: 1em;
  line-height: 58px;
  padding: 0;
  height: 58px;
  width: -moz-calc(100% - 95px);
  width: -webkit-calc(100% - 95px);
  width: calc(100% - 95px);
  text-align: center; 
  display: none;
}

#wrapper .nav-toggle{
  position: inherit;
  font-weight: bold;
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  width: 100%;
  text-align: center;
  display: none;
  padding: 17px 0;
  background: #ad4d1a;
  margin-bottom: 5px;
  line-height: 1em;
  height: auto;
}

@media screen and (max-width: 780px) {
  .js .nav-collapse {
    position: absolute;
  }
  .js .nav-collapse.closed {
    max-height: 9999px;
  }
  #wrapper .nav-toggle {
    display: block;
  }
  
}

@media screen and (max-width: 500px) {
  .js .nav-collapse {
    position: absolute;
  }
  .js .nav-collapse.closed {
    max-height: 9999px;
  }
  .nav-toggle {
    display: block;
  }
  
}
