/* Generated by less 2.5.1 */
.navigation {
  background: crimson;
}
.brand {
  position: absolute;
  padding-left: 10px;
  float: left;
  text-transform: uppercase;
  font-size: 24px;
  font-family: 'Bangers';
  background-color: crimson;
}
.brand a,
.brand a:visited {
  color: antiquewhite;
  text-decoration: none;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: crimson;
  height: 30px;
  line-height: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
}
nav {
  float: right;
  font-family: 'Bangers';
  font-size: 24px;
  background-color: crimson;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 10px;
  line-height: 30px;
  background: crimson;
  color: antiquewhite;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: antiquewhite;
  color: crimson;
  text-decoration: none;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: ' +';
  text-decoration: none;
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
  text-decoration: none;
}
.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
/* Mobile navigation */
.nav-mobile {
  display: none;
  background: green;
  height: 30px;
  width: 30px;
  margin: 0;
}
@media only screen and (max-width: 540px) {
  .nav-mobile {
    display: inline-block;
    float: left;
    background-color: crimson;
  }
  nav {
    width: 100%;
    padding: 30px 0 0px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 10px;
    line-height: 20px;
    text-decoration: none;
  }
  nav ul li ul li a {
    padding-left: 30px;
    text-decoration: none;
  }
  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 541px) {
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 5px;
  top: 12px;
  cursor: pointer;
  padding: 0;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 4px;
  width: 20px;
  background: antiquewhite;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -6px;
}
#nav-toggle span:after {
  bottom: -6px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
