 /* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 250px; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 11; /* Stay on top */
  top: 0; /* Stay at the top */
  right: -250px;
  background-color: #AD2E24; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  text-transform: uppercase;
}
.sidenav_container {
  padding: 25px;
}

/* The navigation menu links */
.sidenav a {
  /*padding: 8px 8px 8px 32px;*/
  text-decoration: none;
  font-size: 20px;
  color: #ffffff;
  display: block;
  /*transition: 0.3s;*/
}
.sidenav_img_container {
  background-color: #EA8C55;
  padding: 10px;
  text-align: center;
  transition: none;
  border-radius: 0.5rem;
  width: 200px;
  margin: 40px 25px;
}
.sidenav img {
  height: 50px;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  /*color: #f1f1f1;*/
  background-color: #EA8C55;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 56px;
  line-height: 50px;
  font-weight: bold;
}
.sidenav .closebtn:hover {
  background-color: transparent;
}
.sidenav .link {
  padding: 5px 25px;
  margin-top: 2px;
  margin-bottom: 2px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  /*transition: margin-left .5s;*/
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} 