@charset "utf-8";
/* CSS Document */


body {
  transition: background-color .5s;
}

.sidenav {
  display: block;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  transition: 0.3s;
}	
	
.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 0px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}	

#menu-toggle{
	color:white;
	position: absolute;
	top: 46px;
	left: -45.75px;
	transform: rotate(90deg);
	background: black;
}



	
/* ====== Search =====*/ 
.input-container {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  width: 100%;
  
}

.icon {
  padding: 10px;
  background: #FFF;
  color: #373737;
  min-width: 50px;
  text-align: center;
}

.input-field {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
}

.input-field:focus {
  border: 0px solid #fff;
}
	
/* ================= Menu Sidenav ===============*/ 

/* Fixed sidenav, full height */
.menu_sidenav {
 /* height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;*/
  left: 0;
  background-color: #4d4d4d;
  overflow-x: hidden;
  padding-top: 0px;
}

/* Style the sidenav links and the dropdown button */
.menu_sidenav a, .dropdown-btn {
  padding: 10px 8px 10px 16px;
  text-decoration: none;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  border-bottom: 1px solid #7F7F7F;
}

/* On mouse-over */
.menu_sidenav a:hover, .dropdown-btn:hover {
  color: #f1f1f1;
  background-color: #ffa50a;
}
.menu_sidenav .dropdown-btn:active {
  background-color: #ffa50a;
  color: white;
}


/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 18px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  /*background-color: #ffa50a;*/
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #616161;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
	