.nav-right-side {
  position: absolute;
  right: 0;
}
.nav-left-side {
	position: fixed;
	left: 0;
	top: 0px;
	height: 100%;
	width: 100%;
	max-width: 250px;
	background-color: hsla(240, 10%, 20%, 0.9); /* 0.5 represents 50% transparency */
	text-align: left;
	box-sizing: border-box;
	padding: 20px;
	color: #fff;
	margin-left: -250px;
	transition: margin 200ms ease-in-out ;
	line-height: 1.5;
}

.nav-left-side.nav-open {
	margin-left: 0;
/*	box-shadow: 1px 1px 3px rgba(0, 0, 0, .1); */
}

.nav-toggle-left {
	position: absolute;
	right: -40px;
	top: 1px;
	width: 40px;
	height: 40px;
/*	background-color: #fff; */
	line-height: 40px;
	text-decoration: none;
	text-align: center;
/*	border-bottom-right-radius: 3px;
	box-shadow: 1px 0 3px rgba(0, 0, 0, .1);
*/
}

.nav-toggle-left:before {
	content: url("../../../images/burgers/burger_black_38_38.png");
/*-	background-image: url("../../../images/burgers/burger_blue_38_38.jpg"); */
/*	content: "\2192"; */
/*	font-weight: 600; */
/*	color: #fff; */
	
}

.nav-left-side.nav-open .nav-toggle-left:before {
	position: relative;
	right: 40px;
	top: 0px;
	/* content: "\2190";  This will render a 'back-arrow */
	content: "\00d7";
	font-weight: 500;
	font-size: 50px;
	padding-top:50px;
	color: #E50813;
	
/*
	color: #E50813;
	content: "\00d7"; /* This will render the 'X' */
}


.nav-left-side a:link {
	color: #fff;
	text-decoration: none;
}
.nav-left-side a:visited {
	color: #fff;
	text-decoration: none;
}
.nav-left-side a:hover {
	color: #fff;
	text-decoration: none;
}
.nav-left-side a:active {
	color: #fff;
	text-decoration: none;
}


