﻿/* The side navigation menu */
.sidenav {
    width: 0; /* 0 width - change this with JavaScript */
    position: absolute; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    right: 0;
    background-color: #333; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 36px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav-open {
    width: 320px;
}

.fly-out {
    padding: 10px;
    font-size: 15px;
}

    .fly-out a {
        color: #000 !important;
    }
    .fly-out a:hover {
        color: #3b3838 !important;
    }

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    font-size: 30px;
    color: #ffffff;
    margin-left: 15px;
}

@media all and (max-width:320px) {
    .sidenav-open {
        width: 100%;
    }
}
