@charset "UTF-8";
/* Advanced Checkbox Hack */
body {
  -webkit-animation: bugfix infinite 1s;
}

@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
input[type=checkbox] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

label {
  display: none;
  cursor: pointer;
  user-select: none;
}

/* custom-dropdown */
nav[role=custom-dropdown] {
  position: relative;
  width: 100%;
  text-align: center;
}
nav[role=custom-dropdown] a,
nav[role=custom-dropdown] label {
  color: #255222;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
nav[role=custom-dropdown] label {
  color: #255222;
}
nav[role=custom-dropdown] ul {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  list-style: none;
}
nav[role=custom-dropdown] ul > li {
  float: left;
  padding: 0.55em 0.55em;
  width: 19%;
  background-color: #EDEAE6;
  text-align: center;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-property: box-shadow, color;
  box-shadow: 0 0.05em 0.25em 0 rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
nav[role=custom-dropdown] ul > li:hover {
  background-color: #b4d2b2;
  color: white;
  box-shadow: 0 0.05em 0.25em 0 rgba(0, 0, 0, 0.35), inset 0 0 0 2em rgba(0, 0, 0, 0.3);
}
nav[role=custom-dropdown] ul > li:hover > a {
  color: #fff;
}
nav[role=custom-dropdown] ul > li:last-child {
  margin-bottom: 35px;
}

/* small screens */
@media screen and (max-width: 768px) {
  html,
  body {
    margin: 0;
  }
  nav[role=custom-dropdown] ul {
    display: none;
    height: 100%;
  }
  nav[role=custom-dropdown] label {
    position: relative;
    display: inline-block;
    width: 36px;
    min-height: 64px;
  }
  nav[role=custom-dropdown] label:after {
    position: absolute;
    right: 0;
    content: "≡";
    font-size: 4em;
    line-height: 64px;
  }
  nav[role=custom-dropdown] input[type=checkbox]:checked ~ label:after {
    color: #5F925C;
  }
  nav[role=custom-dropdown] input[type=checkbox]:checked ~ ul {
    display: block;
  }
  nav[role=custom-dropdown] input[type=checkbox]:checked ~ ul > li {
    width: 100%;
    opacity: 0.8;
    text-align: center;
    font-size: 1.2em;
  }
  nav[role=custom-dropdown] input[type=checkbox]:checked ~ ul > li a {
    display: block;
  }
}

/*# sourceMappingURL=responsive-navbar.css.map */
