/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */

.nav-collapse,
.nav-collapse * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-collapse li {
  float: left;
  width: 100%;
}

.nav-collapse a {
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  background: #16b996;
  padding: 1em;
  float: left;
  text-align: center;
  border-top: 2px dotted rgba(255,255,255,0.2)
}

.nav-collapse ul ul a {
  padding-left: 2em;
}

@media screen and (min-width: 768px) {
 .nav-collapse {
	 float: right;
 }
 .nav-collapse li {
    width: auto;
	  padding: 1.05em 0.9em;
  }
  .nav-collapse a {
    margin: 0;
  	padding: 0;
    float: left;
    text-align: center;
  	padding: 2px 4px;
  	border: 1px solid #16b996;
  	background: #16b996;
  	-webkit-transition: all 0.2s ease 0s;
      transition: all 0.2s ease 0s;
  }
  .nav-collapse a:hover {
	  border: 1px solid #ffffff;
  }
  .nav-collapse li:nth-child(odd) a {
	  background: #16b996;
	}
  .nav-collapse ul ul a {
    display: none;
  }
}

@media (max-width:767px) {
.nav-collapse,
    .nav-collapse ul {
  		list-style: none;
  		width: 100%;
  		float: right;
		}
}


/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */
.nav-toggle {
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  position: relative;
  width: 70px;
  height: 50px;
  float: right;
  margin-top: 8px;
}

.nav-toggle:before {
  color: #ffffff; /* Edit this to change the icon color */
  font-family: Verdana, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 35px;
  line-height: 1;
  text-transform: none;
  position: absolute;
  content: "≡";
  text-indent: 0;
  text-align: center;
  line-height: 48px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-toggle.active::before {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  font-size: 38px;
  content:"x";
}
