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


.nav-mobile ul {
  margin: 0 ;
  padding: 0 !important;
  width: 100% !important;
  display: block;
  list-style: none;
}

.nav-mobile li {
  width: 100%;
  height: auto !important;
  display: block;
  margin: 1rem 0;
  text-align: center;
}

.nav-mobile li a {
	margin: 0 !important;
	padding: 0!important;
	display: block;
}

.sub-menu {
	margin: 1rem 0 !important;
	position: relative !important;	
	top: 0 !important;
	left: 0 !important;
	padding: 0rem !important;
}

.sub-menu li {
	background: #f5f5f5 !important;
	border-bottom: 1px solid #efefef !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	margin: 0 !important;
}

.sub-menu li a {
	padding: 2rem 2rem 2rem 1rem !important;
	color: #af2d2d !important;	
}


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

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

.js .nav-mobile-0.opened {
  max-height: 40em !important;
}


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

.nav-toggle {
	display: block !important;
	float: right;
	text-align: center;
	margin: -1em 0 0 0;

	font-family: 'FontAwesome';
	font-size: 2.5rem;

	background-size: 100%;
	
	width: 2em;
	height: 2em;
	
	-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;
}

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