/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* Toggle Styles */

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 350px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 350px;
    width: 0;
    height: 100%;
    margin-left: -350px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 30px;
    background: #343131;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar { 
    display: none; 
}

#sidebar-wrapper h3 {
    padding-left: 10px;
    color: #555;
}

#wrapper.toggled #sidebar-wrapper {
    width: 350px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    /*padding: 15px;*/
    padding: 0;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -350px;
}

/* Sidebar Styles */

#sidebar-wrapper ul {
    list-style: none;
}

#sidebar-wrapper ul:first-child {
    position: absolute;
    top: 0;
    width: 350px;
    margin: 0;
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 70px;
    padding-left: 0;
    list-style: none;
}

#sidebar-wrapper ul ul {
    padding-left: 20px;
}

#sidebar-wrapper ul:first-child li {
    text-indent: 10px;
    line-height: 40px;
}

#sidebar-wrapper ul:first-child li a {
    display: block;
    text-decoration: none;
    color: #b3b3b3;
}

#sidebar-wrapper ul:first-child li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

#sidebar-wrapper ul:first-child li a:active,
#sidebar-wrapper ul:first-child li a:focus {
    text-decoration: none;
}

#sidebar-wrapper ul:first-child > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

#sidebar-wrapper ul:first-child > .sidebar-brand a {
    color: #999999;
}

#sidebar-wrapper ul:first-child > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

@media(min-width:940px) {
    #wrapper {
        padding-left: 350px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 350px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        /*padding: 20px;*/
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}