/*! responsive-nav.js v1.0.14 by @viljamis */

#responsiveNav ul {
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

#responsiveNav li {
  display: block;
}

.js #responsiveNav {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: visible;
  zoom: 1;
}

#responsiveNav.opened {
  max-height: 9999px;
}

#nav-toggle {
  background: url("../images/nav-toggle.png") no-repeat scroll 50% 33% #e00f40;
  position: absolute; top: 10px; right: 0;
  width: 70px; height: 55px;
  overflow: hidden;
  text-indent: -9999px;
}

@media screen and (min-width: 768px) {
  .js #responsiveNav {
    position: relative;
    max-height: none;
  }
  #nav-toggle {
    display: none;
  }
}