/* Toggle Styles */
#sidebar-wrapper {
    width: 0px;
    height: 100%;
    max-width: 100%;
    float: left;
    z-index: 1000;
    height: 100%;
    overflow-y: auto;
    background: #eee;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        width: 250px;
    }
}

/* Sidebar Styles */

.sidebar-nav {
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #333333;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #222222;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav > .sidebar-brand {
    color: #000;
}

.sidebar-nav > .sidebar-brand a {
    color: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
} 

