/*!
 * Start Bootstrap - Simple Sidebar (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */


/* Toggle Styles */
#sidebar-contenido{

}
#wrapper-sidebar {
    padding-left: 250px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
     
}

#wrapper-sidebar.toggled {
    padding-left: 0px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 95%;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #000;

    opacity: 0.9;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper-sidebar.toggled #sidebar-wrapper {
    width: 0px;
}



/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;

}








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

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

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

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

    #wrapper-sidebar.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 95%;
    }

    #wrapper-sidebar.toggled #sidebar-wrapper {
        width: 0px;
    }


}