@media screen and (min-width: 0px) and (max-width: 992px) {
/* Important styles */
#toggle {
    display: block;
    width: 28px;
    height: 30px;
    position: absolute;
    top: 4%;
    right: 20px;
}

#toggle span:after,
#toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}
#toggle span:after{
  top: 9px;
}
#toggle span {
  position: relative;
  display: block;
}

#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 5px;
  background-color: #888;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}

/* on activation */
#toggle.on span {
  background-color: transparent;
}
#toggle.on span:before {
  transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}
#toggle.on + #menu {
  opacity: 1;
  visibility: visible;
}

/* menu appearance*/
#menu {
    position: absolute;
    z-index: 10001;
    color: #292929;
	top:0;
    width: 80%;
    height: 100VH;	
    padding: 0 0 20px;
    margin: 0 auto;
    font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
    text-align: center;
    background: #fff;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
}
#menu:after {
  position: absolute;
  top: -15px;
  left: 95px;
  content: "";
  display: block;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
#menu li{
  text-align: left;	
  list-style: none;
  display: block;
  margin: 0;
}
#menu li span a {
	padding: 0;
    display: inherit;
}
#menu li a {
  color: #4a4a4a;
  text-decoration: none;
  transition: all .2s;
  display:block;
  padding:10px 0;
}
#menu li a:hover,
#menu li a:focus {
}
#menu li ul {
	background-color:#fff;
}
#menu li ul li {
  padding: 1px 0;
  border-bottom:1px solid #ccc;
  font-size: 0.9em;
}
}
