
/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 167px;
   
  top: 0;
  left: 0;
  background-color: #007195;
  overflow-x: hidden;
  padding-top: 20px;
	margin: 5px;
	border-radius: 10px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .Sidenavdropdown-butn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 13px;
  color:#fff;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .Sidenavdropdown-butn:hover {
  color: #f1f1f1;
}

/* Main content */


/* Add an active class to the active dropdown button */
.active {
  background-color: #555;
  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 */
.Sidenavdropdown-container {
  display: none;
  background-color: #9A9D9D;
  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: 14px;}
}