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

#mobile-nav {
	z-index: 400;
	background: #b4567b;
}

#mobile-nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
  z-index: 500;
  position: absolute;
}

#mobile-nav li {
  width: 100%;
  display: block;
  z-index: 500;
}

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

#mobile-nav.opened {
  max-height: 9999px;
  min-height: 432px;
}

@media screen and (min-width: 40em) {
  .js #mobile-nav {
    position: relative;
  }
  .js #mobile-nav.closed {
    max-height: none;
  }
  #mobile-nav-toggle {
    display: none;
  }
}

#mobile-nav {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#mobile-nav,
#mobile-nav ul {
  list-style: none;
  width: 100%;
  float: left;
}

#mobile-nav li {
  float: left;
  width: 100%;
}

#mobile-nav a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  border-bottom: 1px solid #7d2f4d;
  border-top: 1px solid #7d2f4d;
  padding: 0.7em 1em;
  float: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

#mobile-nav a:active {
	color: #91bd09;
}

@media screen and (min-width: 40em) {
  #mobile-nav a {
    margin: 0;
    padding: 1em;
    float: left;
    text-align: center;
    border-bottom: 0;
    border-right: 1px solid white;
  }
}

#mobile-nav ul ul a {
  padding-left: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
 
}

@media screen and (min-width: 40em) {
  #mobile-nav ul ul a {
    display: none;
  }
}

#nav-toggle {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 30px;
  height: 30px;
  float: right;
  text-indent: -9999px;
  overflow: hidden;
  background:  url("../images/lines.png") no-repeat 50% 33%;
  background-size: 30px 30px;
  position: relative;
  z-index: 5000;
  top: 10px;
  right: 10px;
  margin-bottom: -40px;
}

