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

.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  display: block;
  list-style: none;
  text-align: left;
}

.nav-collapse li {
  display: block;
  font-size: 1.6em;
  padding: 1em 4em;
}

.nav-collapse li a,
.nav-collapse li a:hover {
  text-decoration: none;
  color: #e6e6e6;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
  z-index: 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;
  text-decoration: none;
  text-indent: -999px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 70px;
  height: 55px;
}

.nav-toggle:before {
  color: #444; /* Edit this to change the icon color */
  font-family: "/fonts/responsivenav";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 4em;
  text-transform: none;
  position: absolute;
  content: "\2261";
  text-indent: 0;
  text-align: center;
  line-height: 65px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
}
.nav-toggle.active:before {
  font-size: 4em;
  content: "\2261";
  color: #e6e6e6;
  z-index: 2;
}
