.sideNav {
	background: ;
	color: #eee;
	width: 80px;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 15;
	text-align: center;
	/*border-right: 1px solid rgba(255,255,255,0.1);*/
}

.logoImg {
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 20px 10px;
	display: block;
}

	.logoImg a {
		box-shadow: none!important;
	}

.sideTxt {
	transform: rotate(-90deg);
	position: absolute;
	bottom: 120px;
	left: -80px;
	min-width: 250px;
	color: rgba(255,255,255,0.8);

}

.toggleNav {
	color: rgba(255,255,255,0.8);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 10px 10px;
	font-size: 30px;
	text-align: center;
	cursor: pointer;
	display: block;
	z-index: 15;
}

.nav-overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background:#F4CDC6;
  overflow-y: hidden;
  transition: 0.5s;
}

.nav-overlay-content {
  position: relative;
  width: 50%;
  height: 100vh;
  text-align: center;
  margin: 10vh auto;
}

.nav-overlay a {
  padding: 8px;
  text-decoration: none;
  border-bottom: none!important;
  font-size: 36px;
  color: #F46419;
  display: block;
  transition: 0.3s;
  box-shadow: none;
  font-weight: 300;
}

.nav-overlay a:hover, .nav-overlay a:focus {
  color: #f1f1f1;
}

.nav-overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 45px;
  font-size: 60px;
}

.mobileNav {
	position: fixed;
	z-index: 10;
	right: 15px;
	top: 15px;
	width: 60px;
	height: 60px;
	background: #F46419!important;
	border-radius: 20px;
}

@media screen and (max-height: 450px) {
  .nav-overlay {overflow-y: auto;}
  .nav-overlay a {font-size: 20px}
  .nav-overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}