/*!
 * Sidebar CSS
 */

body {
    overflow-x: hidden;
}

/* 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: 290px;
    }

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 290px;
    width: 0;
    height: 100%;
    margin-left: -290px;
    overflow-y: auto;
    background: #FF5C00;
    -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 #sidebar-wrapper {
    width: 290px;
}

#page-content-wrapper {
    width: 100%;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -290px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 290px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        text-indent: 20px;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: #fff;
            font-size: 22px;
            padding-bottom: 25px;
            padding-top: 25px;
            border-bottom: 1px solid #fff;
        }

            .sidebar-nav li a:hover {
                text-decoration: none;
                color: #fff;
                background: #ffffff7d;
            }

            .sidebar-nav li a:active,
            .sidebar-nav li a:focus {
                text-decoration: none;
            }

    .sidebar-nav > .sidebar-brand {
        line-height: 64px;
        min-height: 65px;
    }

        .sidebar-nav > .sidebar-brand a {
            color: #fff;
        }

            .sidebar-nav > .sidebar-brand a:hover {
                color: #fff;
                background: none;
            }

    .sidebar-nav li a > img {
        width: 25px;
    }

    .sidebar-nav li.sidebar-brand a > img {
        width: 155px;
    }

    .sidebar-nav li a > span {
        vertical-align: middle;
        position: relative;
        left: 5px;
    }

/**

@media(min-width:768px) {
    #wrapper {
        padding-left: 290px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 290px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}
**/
