/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 999; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: var(--secondary);
    overflow-x: hidden; /* Disable horizontal scrollbar */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }

::-webkit-scrollbar {
    width: 0px; /* remove scrollbar space */
    }

.sidenav.left {
    left: 0;
    }

.sidenav.open {
    width: 50%;
    }

/* The navigation menu links */
/*
.sidenav a {
    text-decoration: none;
    color: #f1f1f1;
    display: block;
    transition: 0.5s;
    }
*/

/* When you mouse over the navigation links, change their color */
/*
.sidenav a:hover {
    color: #fff;
}
*/

/* Position and style the close button (top right corner) */
/*
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    }
*/

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