/* Nav icon positioning */

.position {
  position: absolute;
  top: 28px;
  left: 20px;
  transition: all .3s ease;
  z-index: 2;
}

/* Elijah Manor Nav button */

#nav-toggle {
	display:none;
}
#nav-toggle {
    cursor: pointer;
    padding: 0px 0px 0px 0px;
    position: absolute;
    top: 7px;
    left: 10px;
	color:#000;
	text-decoration:none!important;
	height: 50px;
}
#nav-toggle .hamburger { 
	width:32px; 
	height:25px;
	cursor: pointer;
}
#nav-toggle span { 
	margin-top:10px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  background: #343434;
  position: absolute;
  display: block;
  content: '';
}
#nav-toggle span:before {
  top: -8px;
}

#nav-toggle span:before {
  top: -8px;
}

#nav-toggle span:after {
  bottom: -8px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  transition: all 200ms ease-in-out;
}

#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);
}
/* Off Canvas Navigation */

main {
  width: 100%;
  left: 0;
  transition: .3s ease all;
}

aside {
  width: 250px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -250px;
  background: #cccccc;
  transition: all .3s ease;
}

aside .logo-mobile-menu {
    padding: 15px 0 0 0;
    margin: 0 auto;
    display: block;
}

aside p {
  color: #cdcdcd;
  padding: 20px;
  text-align: center;
}
.nav_right a {
    display: block;
    float: left;
    padding: 12px 3px 11px 3px;
    color: white;
    text-decoration: none;
    font: bold 13px tahoma;
}
.nav_right a img {
    border: 1px solid #ffffff;
}
.nav_right a:hover {
    background: none;
    opacity: 0.9;
}
.nav_right a.act {
    background: none;
}

aside nav ul {
  margin: 0;
  padding: 0;
}

aside nav ul li:first-of-type {
  /*border-top: 1px solid #ffffff;*/
}
aside nav ul li:last-of-type {
  border:none;
}
aside nav ul li {
  border-bottom: 1px solid #ffffff;
  background: #eb0202;
}
aside nav ul li:hover {
  background: #00acee!important;
}
aside nav ul li a {
  padding: 10px 20px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

aside nav ul li a:hover {
  background: #00acee!important;
  text-decoration:none;
  color: #fff!important;
}
aside nav ul li a.act {
    background: #00acee;
}
/* JavaScript toggle */

.show-nav aside,
.show-nav .position,
.show-nav main
 {
  /*transform: translateX(250px);*/
  transform: translateX(250px);
}
.show-nav .position {
  position: fixed;
}

.show-nav article {
  padding: 0 80px;
}
@media screen and (max-width: 1200px) {
  .menu { display:none;}
  #nav-toggle {display:block;}
}

@media screen and (min-width: 1200px) {
.position {
    position: fixed;
  }
}
