

/* The hamburger icon */
.hamburger {
  position: relative;
  padding-left: 1.25em;
  font-size: 25px;
  cursor: pointer;
  //background-color: #d1cf46;
}
.hamburger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.2em;
  height: 0.11em;
  background: white;
  box-shadow: 
    0 0.21em 0 0 white,
    0 0.41em 0 0 white;
}



 /* The side navigation hamburger menu */
.sidenavHamburger {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #595959; /* Menu background color */
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 18px;
  font-weight:bold;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 70px; /* How far content starts from top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenavHamburger a {
  padding: 5px 8px 0px 12px;
  text-decoration: none;
  color: #F1F1F1;
  display: block;
  //transition: 0.3s;  /* how long it takes menu item to highlight */
}

/* When you mouse over the navigation links, change their color */
.sidenavHamburger a:hover  {
  color: #9ad582;
}

/* Position and style the close button */
.sidenavHamburger .closebtn {
  position: absolute;
  top: 20px;
  left: 0px;
  font-size: 36px;
  //margin-left: 50px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .hamburgerBackArrow {font-size: 36px;}
  .sidenavHamburger a {font-size: 14px;}
} 


#mySidenav {
    max-width: 400px;
}
#mySidenav ul {
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 0px;
}
#mySidenav li {
    list-style: none;
    font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.1em;
    padding: 0px 50px 5px 0px;
    //margin: 0px;
}
#mySidenav label {
  position: relative;
  display: block;
  width: 95%; 
  cursor: pointer;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 22px;
  font-weight:bold;
  color: #BCBCBC;
}         
#mySidenav input[type=checkbox] {
  display: none; /* Hide ugly checkbox */
} 

/* Hide/collapse by default */
li.collapse ul {
  visibility: hidden; 
  opacity: 0;
  max-height: 0; /* CSS bug. Cannot animate height... */
  transition: transform 0.5s;
}     
label::after {
  content: "\25bc";   /* black down arrow */
  transform: translateX(30px) rotate(-90deg);
  position: absolute;
  top: 5px;
  right: 0px;
  font-size: 18px;
  color: #F1F1F1;  /* make the arrow the same colour as navigation links */
  transition: all 0.5s;
}
label:hover::after {
  color: #9ad582;  /* make the arrow color on hover the same as the navigation links hover */
}

/* Show when checked */
li.collapse input:checked ~ ul {
  visibility: visible;
  opacity: 1;
  max-height: 999px; /* Just give a big enough height for animation */
}
li.collapse input:checked ~ label::after {
  transform: translateX(30px) rotate(0deg);
}


