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

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

.nav-collapse.opened {
  max-height: 9999px;
}

.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;
  background:url(images/responsive-menu-icon.gif) center center transparent;
  width:33px;
  height: 26px;
  text-indent:-9999px;
   position: absolute;
   right: 12px;
   top: 12px;
}

/** ADJUSTING THE RESPONSIVE NAV TOGGLE/ICON **/
@media screen and (min-width: 615px) {
	.nav-toggle {right:12px;top:3%;}
}

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