
h1.page_header{
	color: #00826d;
}

.left-bar {
    /* width: 15%; */
    width: 200px;
    height: 100%;
    top: 0px;
    /* max-height: calc(100vh); */
    position: fixed;
    z-index: 1;
    transition: width .5s;
    overflow-y: auto;
    background-repeat: cover;
    background-color: rgb(47, 65, 86) !important;  
}

.left-bar::-webkit-scrollbar {
    width: 0.3em;
}
 
.left-bar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
.left-bar::-webkit-scrollbar-thumb {
    background-color: lightslategray !important;
    outline: 0.5px solid slategrey !important;
}

/*** ==================== ***/
/*** Left Navigation Menu ***/
/*** ==================== ***/
    .left-menu { 
        padding-top: 95px;
        z-index: 1;
        border-radius: 0px;
        border: none !important;
        background-repeat: cover;
        background-color: rgb(47, 65, 86) !important;
    }

/*** ====================== ***/
/*** First Level Menu Items ***/
/*** ====================== ***/
    .left-menu > .table > ul > li > a {
        background-color: rgb(47, 65, 86);
        border-color: rgb(67, 89, 114);
        color: white;
    }

    /* Toggle Glyphicon */
    .left-menu > .table > ul > li > a i {
        color: rgb(200, 200, 200);
    }

    /* Hover */
    .left-menu > .table > ul > li > a:focus, 
    .left-menu > .table > ul > li > a:hover {
        background-color: rgb(61, 117, 140);
        color: white;
    }

    /* Active */
    .left-menu > .table > ul > li.active > a {
        background-color: rgb(61, 117, 140);
        color: white;
    }

/*** =============================== ***/
/*** Second Level Onwards Menu Items ***/
/*** =============================== ***/
    .left-menu .left-menu-item > a {
        background-color: rgb(20, 38, 58);
        border-color: rgb(26, 51, 79);
        color: rgb(200, 200, 200);
    }

    /* Hover */
    .left-menu .left-menu-item > a:focus, 
    .left-menu .left-menu-item > a:hover {
        background-color: rgb(26, 51, 79);
        color: white;
    }

    /* Active */
    .left-menu > .table li.active > a {
        background-color: rgb(26, 51, 79);
        color: white;
    }


/*** ================== ***/
/*** General Menu Items ***/
/*** ================== ***/
    .left-menu .left-menu-item {
        margin-top: 0px;
    }

/*** ============== ***/
/*** Leftbar Toggle ***/
/*** ============== ***/
    .btn-left-menu-open {
        position: fixed;
        top: 55px;
        left: -40px;
        height: 30px;
        width: 60px;
        background-color: rgb(61, 117, 140);
        background-color: rgba(61, 117, 140, 0.4);
        transition: background-color 0.5s;
        opacity: 50%;
        color: white; 
        border-radius: 10px;
    }

    .btn-left-menu-open:hover {
        cursor: pointer;
        background-color: rgba(61, 117, 140, 1);
    }

    .btn-left-menu-open > i {
        top: 25%;
        left: 68%;
        font-size: 15px;
    }

    .btn-left-menu-close {
        /*position: fixed;*/
        position: absolute;
        top: 65px;
        left: 10px;
        color: rgb(180, 180, 180);
        z-index: 2;
    }

    .btn-left-menu-close:hover {
        cursor: pointer;
        color: white;
    }

    .btn-left-menu-close > i {
        font-size: 15px;
    }

/*** ============ ***/
/*** Content Part ***/
/*** ============ ***/
    .content-wrap {
        transition: margin-left .5s;
        /* margin-left: 15%; */
        margin-left: 200px;
        padding: 0px 20px 20px;
    }           

/*** ==================== ***/
/*** Smaller Window Sizes ***/
/*** ==================== ***/
/* start of medium tablet styles */
@media screen and (max-width: 767px) {
    .left-bar {
        position: static;
        width: 100% !important;
        height: 100%;
        max-height: none;
        overflow: hidden;
        display: block;
        background-color: transparent;
    }

    .left-menu {
        padding-top: 0px;
    }


    .content-wrap {
        margin-left: 0%;
        padding: 20px;
        display: block;
    } 

    .btn-left-menu-open {
        display: none;
    }

    .btn-left-menu-close {
        display: none;
    }
}