/* The side navigation menu */
#mySidenav {
    height: 100%; /* 100% Full-height */
    /* width: 0%; 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 200; /* Stay on top */
    margin-right: -50vw;
    top: 0; /* Stay at the top */
    right: 0;
    /* background-color:#ffffff; Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    /* padding-top: 60px; Place content 60px from the top */
    transition: margin-right .3s linear; /* 0.5 second transition effect to slide in the sidenav */
  }

  /* The navigation menu links */
  .sidenav a {
    text-decoration: none;
    display: block;
    /* transition: .1s; */
  }
.sidebar-header{
    /* margin-top: 25px; */
    height: 90px;
}
  /* When you mouse over the navigation links, change their color */
  /* .sidenav a:hover {
    color: #f1f1f1;
  } */


  /* 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;}
  }



