/* 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: 1032; /* Stay on top */
    top: 0;
    right: -260px;
    background-color: #fff; /* Black*/
    will-change: transform;
    transition: all 200ms ease-out
}

.sidenav.open {
    -webkit-transform: translateX(-100%);
			transform: translateX(-100%);
	transition: transform 200ms ease-in;
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 21px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #333231;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    opacity: 0.6;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: -10px;
    right: 13px;
    font-size: 37px;
    margin-left: 50px;
    color: #096bb0;
    font-weight: 100;
}

.sidenav .universal-search:not(.focus) {
    padding: 8px 30px 8px 21px;
}

.sidenav .universal-search:not(.focus) .autocomplete-input {
    padding-left: 30px;
    border-bottom: 1px solid #eee;
}

.sidenav .universal-search:not(.focus) .autocomplete-icon {
    position: absolute;
    top: 19px;
    left: 25px;
}

.sidenav .universal-search .autocomplete-item:hover {
    color: black;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main-overlay-shadow {
    /* transition: margin-left .5s; */
    height: 100%; /* 100% Full-height */
    width: 100%; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1031; /* Stay on top */
    display: none;
    top: 0;
    left: 0;
    transition: 0.5s;
    
}

.navigation-sidebar-icon {
    vertical-align: unset;
}

.navigation-sidebar-span {
    float:left;
    text-align:left;
    margin-right: 13px;
    width: 18px;
}

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