/*!
 * Start Bootstrap - Simple Sidebar (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

 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;*/
    font-family: arial ,tahoma, Times, serif;

}

h2 {
    font-size: 9pt;
    color: #336699;
    padding-left:22px;
}

#wrapper.toggled {
    padding-left: 220px;
}

#sidebar-wrapper {
    z-index: 3;
    position: fixed;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    /*-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: 220px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
    padding-top: 0px;
    font-size:13px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #e0e0e0;

}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
    border-bottom: 1px solid #e2e2e2;
    font-size:10pt;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #3b4042;
    font-weight: normal;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #00aabd;
    background: rgba(255,255,255,1);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > li > .active{
    text-decoration: none;
    color: white;
    background: rgba(249,114,68,1);
    border:none;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 10px;
    line-height: 60px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: white;
    background: rgba(249,114,68,1);
}
#sidebar-wrapper > ul > li.sidebar-brand{
    height: 34px;
}
.sidebar-nav > .sidebar-brand a {
    color: #00aabd;
    background: #3b4042;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #00aabd;
    background: #3b4042;
}


@media(min-width:768px) {
    #wrapper {
        padding-left: 220px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 220px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        /* padding: 20px; */
        padding-left: 10px;
        padding-bottom: 0px;
        position: relative;
        padding-top: 0px;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}