

/* Side Menu */

#sidebar-wrapper {
    position: fixed;
    z-index: 9999;
    right: 0;
    overflow-y: auto;
    width: 250px;
    height: 100%;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    transform: translateX(250px);
    background: #222;
    
    
}


/* Let's get this party started */
#sidebar-wrapper::-webkit-scrollbar {
    width: 16px;
}
 
/* Track */
#sidebar-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
#sidebar-wrapper::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,0,0,0.5); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
#sidebar-wrapper::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.2); 
}




/* Let's get this party started */
#sidebar-wrapper::-o-scrollbar {
    width: 16px;
}
 
/* Track */
#sidebar-wrapper::-o-scrollbar-track {
    -o-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -o-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
#sidebar-wrapper::-o-scrollbar-thumb {
    -o-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,0,0,0.5); 
    -o-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
#sidebar-wrapper::-o-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.2); 
}







.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    line-height: 40px;
    text-indent: 20px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, .2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    font-size: 18px;
    line-height: 55px;
    height: 55px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

#menu-toggle {
    position: fixed;
    z-index: 9999;
    top: 50;
    right: 0;
}

#sidebar-wrapper.active {
    right: 245px;
    width: 250px;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -ms-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}
