/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 300px; /* 0 width if closed - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 102; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #fff; /* Black*/
    /*overflow-x: hidden; /* Disable horizontal scroll */
    /*padding-top: 60px !important; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    border:1px solid #d1d1d1;
    border-width: 0 1px 0 0;

    opacity: 0.95;
}

.sidenav .content, .sidenav .toggleButton {box-shadow: 3px 0 7px -5px #000;}


.sidenav button {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;

}

/* The navigation menu links */
.sidenav .card a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .toggleButton {
    position: absolute;
    top: 200px;
    left: -35px;
    height:50px;
    width: 36px;
    background: white;
    cursor:pointer;
    /*border-radius: 5px 0px 0px 5px;*/
    border-width: 1px 0px 1px 1px;
    border-color: #d1d1d1;
    border-style: solid;
    opacity: 0.9;
}

.sidenav .toggleButton span.material-icons {
    position: relative;
    top: 12px;
    left:2px;
}

.sidenav .content {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

.sidenav .toggleButton span.badge {
    position: absolute;
    top:-6px;
    right: -6px;
    padding-left:6px;
    padding-right:6px;

}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
/*
#mySidenav-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;}
}

#overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}


/*#map {z-index: 0;}*/


/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}




a.sidebar-list-item {
    color:black;
    border-radius: 0 !important;
    border-left: 0;
    border-right: 0;
    font-weight: bolder;
}
a.sidebar-list-item:hover {
    font-weight: bold;
    color:black;
    text-decoration: none;
    background: #dee2e6;
}
a.sidebar-list-item.active {
    font-weight: bold;
        color:black;
        text-decoration: none;
        background: #dee2e6 !important;
        cursor:text;
}
