@charset "utf-8";
/* CSS Document */

.left {
	display: none;
	width: 400px;
	min-height: 100vh;
	padding: 20px;
	background-color: #2E2E2E;
	margin-top: -7px;
}
.left h2 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 6px 8px 6px 16px;
}
/* Fixed sidenav, full height */
.sidenav {
  	height: 100%;
  	width: 100%;
 	z-index: 1;  
 	overflow-x: hidden;
  	padding-top: 24px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a {
  	padding: 6px 8px 6px 16px;
  	text-decoration: none;
  	font-size: 16px;
	font-weight: 200;
  	color: #FFFFFF;
  	display: block;
	border-top: 1px solid #FDFDFD;
	background: none;
  	width: 100%;
  	text-align: left;
  	cursor: pointer;
  	outline: none;
}
.dropdown-btn {
	text-decoration: none;
  	font-size: 16px;
  	color: #FFFFFF;
  	display: block;
	background: none;
	border: none;
  	width: 100%;
  	text-align: left;
  	cursor: pointer;
  	outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  	background-color: #e30613;
}


/* Add an active class to the active dropdown button */
.active {
  	background-color: #e30613;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.down-container {
  	display: none;
	margin-left: 8px;
	font-size: 12px;
	font-weight: 100;
}
/* Optional: Style the caret down icon */
.sidenav i {
  	float: right;
  	padding-right: 8px;
	color: rgba(255,255,255,0.80);
	font-size: 24px;
}
.sidenav .down-container a {
	border: none;
}

/*Desktop View*/

@media (min-width: 1150px){
	.left {
		display: block;
	}	
}

