/* Important styles */
#toggle {
    display: block;
  width: 30px;
  height: 30px;
  margin: 30px auto 0px;
  margin-right: 0px;
    color: #46B9C4
    
      
}

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

#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 3px;
  background-color: #46B9C4;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 40px;
  color: #46B9C4
    
    
}

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

/* menu appearance*/
#menu {
	  position: absolute;
		  left: 0;
		 right: 0;
           top: 90px;
		margin: auto;
  
  color: #fff;
  width: 80%;
  padding: 10px;
  
  font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
  text-align: center;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  /* just for this demo */
  opacity: 1;
  visibility: hidden;
  transition: opacity .4s;
  z-index: 999;
}
#enu:after {
  position: absolute;
  top: -15px;
  left: 95px;
  content: "";
  display: block;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid white;
}
ul, li, li a {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
li a {
  padding: 5px;
  color: #fff;
  text-decoration: none;
  transition: all .2s;
}
li a:hover,
li a:focus {
  background: #aaa;
  color: #fff;
	text-decoration: none
}


/* demo styles */
