﻿/* The side navigation menu */
#sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-x: hidden; 
    padding-top: 50px; 
    transition: 0.5s; 
    color: #eeeeee;
    font-size: 25px;
    line-height: 40px;
    
}
#sidenavList {
	margin-left: 0;
	padding-left: 0;
	text-indent: 25px;
}
#sidenav li{
    background-color: rgba(50, 50, 50, 0.7);
	border-bottom: 1px;
	border-color: #dddddd;
	border-bottom-style:solid;
	list-style-type: none;
	text-decoration: none;
}

/* The navigation menu links  */
#sidenav a {
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s
}

#hamburger {
	position: fixed;
	left: 15px; 
	top: 15px;
	height: 25px;
	width: 30px;
	cursor: pointer;
    transition: 0.5s;
	z-index: 20011;
}
#hamburger img {
	width: 100%;
	height: 100%;
	z-index: 20012;
}
