/*!
 * 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: 300px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    left: 300px;
    width: 0;
    height: 100%;
    margin-left: -300px;
    background: #CCCCCC;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}

#wrapper.toggled #sidebar-wrapper {
    width: 300px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 0;
    margin-top: 52px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -300px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 100%;
    min-width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.sidebar-nav li {
    /*text-indent: 20px;*/
    line-height: 40px;
    min-width: 220px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #006600;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #0f0;
    background: rgba(0,0,0,0.5);
}

.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;
    text-indent: 20px;
}

.sidebar-nav > .sidebar-brand a {
    color: #006600;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #00FF00;
    background: none;
}

/*.sidebar-nav > .sidebar-user {
    color: #009900;
}*/

.sidebar-nav > li .glyphicon,
.sidebar-nav > li .fa {
    margin: 0 20px;
}

.sidebar-nav > li > ul {
    position: relative;
    top: 0;
    width: 100%;
    min-width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #E0E0E0;
}

.sidebar-nav > li > ul > li .glyphicon,
.sidebar-nav > li > ul > li .fa
{
    margin-left: 40px;
}

/*.sidebar-nav > li > .glyphicon {
    right: 10px;
}*/

@media(min-width:768px) {
    #wrapper {
        padding-left: 300px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 300px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 0;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}

.action-bar {
    clear: both;
    background: #E5E5E5;
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

.action-bar .sidebar-toggle {
    position: relative;
    float: left;
    padding: 9px 10px;
    margin: 8px 15px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.action-bar .sidebar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #333;
}

.action-bar .sidebar-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
}

.action-bar .page-title {
    font-size: 22px;
    margin: 15px 0;
    display: inline-block;
    line-height: 1;
}



