/*!
 * 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 */

@media(max-width:768px) {
    #sidebar-wrapper {
        z-index: 1000;
        position: fixed;
        left: 0;
        top:0;
        min-width: 100%;
        height:100%;
        overflow:hidden;
        width: 0;
        height: 100%;
        margin-left: -100%;
        overflow-y: hidden;
        background: #fff;
        box-shadow: 1px 1px 4px rgba(128, 128, 128, .5);
        -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.toggled {
        margin-left: 0;
    }
    #sidebar-wrapper.toggled .navbar-collapse{
        padding: 0;
    }

    .sidebar-nav {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

@media(min-width:768px) {
    .sidebar-toggle{
        display:none;
    }
    .wrapper {
        padding-left: 0;
    }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    .wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}