﻿@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:600,500,400,300);
/* CSS Document */
html, body {
    /*width: 100% !important;
	height: 100% !important; */
    font-family: Source Sans Pro,SansSerif,Helvetica; /*	font-family: "Myriad Set Pro", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif; */
}

body {
    /*color: #fff;*/
    /*background: -webkit-linear-gradient(#7532c7, #32c7c2) no-repeat fixed;
	background: -o-linear-gradient(#7532c7, #32c7c2) no-repeat fixed;
	background: -moz-linear-gradient(#7532c7, #32c7c2) no-repeat fixed;
	background: linear-gradient(#7532c7, #32c7c2) no-repeat fixed;*/
    background: #EEEEEE;
}

a {
    color: white;
}

.panel-body {
    color: black;
}

.required:after {
    content: "*";
    /*font-weight: bold;*/
    color: red;
    font-weight: 10px;
}

.zeromarg {
    margin: 0px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.navclr {
    background: #2E363F;
}

    .navclr .navbar-brand {
        padding: 10px 15px 0 0;
    }
/* ********* Login Page ********* */

#msform {
    width: 100%;
    margin-top: 60%;
    /*	margin: 50% auto;*/
    text-align: center;
    position: relative;
}

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 10px;
        box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.4);
        padding: 20px 30px;
        box-sizing: border-box;
        /*stacking fieldsets above each other*/
        position: relative;
    }
        /*Hide all except first fieldset*/
        #msform fieldset:not(:first-of-type) {
            display: none;
        }

    #msform label {
        text-align: right;
        margin: 10px;
        color: #2C3E50;
    }
    /*inputs*/
    #msform input, #msform textarea, #msform select {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin: 0 10px 10px 10px;
        width: 100%;
        box-sizing: border-box;
        color: #2C3E50;
        font-size: 13px;
    }
    /*buttons*/
    #msform .action-button {
        width: 100px;
        /*background: #27AE60;*/
        background: #27AE60;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 1px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
    }

        #msform .action-button:hover, #msform .action-button:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
        }
/*headings*/
.fs-title {
    font-size: 30px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 24px;
    color: #666;
    margin-bottom: 20px;
}
/* ************************ */
.navbar-brand {
    font-size: 30px;
    font-weight: lighter;
}

.badge-notify {
    padding: 5px 8px 6px 8px;
    background: red;
    position: absolute;
    top: -10px;
    right: -5px;
}

.menu1 {
    margin-top: 15%;
    padding: 20px;
}

.submenu {
    font-weight: normal;
    font-size: 14px;
    margin: 10px 0 10px 0;
    text-align: center;
    color: #666;
}

.icon {
    margin: 5px;
    background-color: #06C;
    border-radius: 10px;
    padding: 30px;
    font-size: 36px;
    /*box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: white;
}

    .icon:hover {
        color: #E8EBF0;
        background: linear-gradient(#32c7c2, #7532c7 );
        transform: rotate(360deg);
        transition: all 1s ease-in-out 0s;
    }


.icon1 {
    background: linear-gradient(#1C68EF, #2ACFFD);
}

.icon2 {
    color: #333;
    background: linear-gradient(#E6E6E6, #CCCCCC);
}

.icon3 {
    background: linear-gradient(#F7B63E, #F28D32);
}

.icon4 {
    background: linear-gradient(#9CDCF6, #4E84EC);
}

.icon5 {
    background: linear-gradient(to bottom, #febf01 0%, #febf01 100%);
}

.icon6 {
    background: linear-gradient(to bottom, #4096ee 0%, #4096ee 100%);
}

.icon7 {
    background: linear-gradient(to bottom, rgba(30,87,153,1) 0%, rgba(125,185,232,0) 100%);
}

/* ****** Side Menu ********* */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #E8EBF0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        /*color: #818181; */
        color: white;
        display: block;
        transition: 0.3s;
    }

        .sidenav a:hover, .offcanvas a:focus {
            color: #f1f1f1;
        }

.closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px !important;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}
/* **** Dropdown With Search *********/
.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 100%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: 0.9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1;
}

.bootstrap-select > select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: 0.5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: thin dotted #333333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    display: none;
}

.bs-searchbox, .bs-actionsbox, .bs-donebutton {
    padding: 4px 8px;
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .bs-actionsbox .btn-group button {
        width: 50%;
    }

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .bs-donebutton .btn-group button {
        width: 100%;
    }

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px;
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100px;
    float: none;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
    padding: 4px 8px;
    margin-right: 10px;
}

.dropdown-menu {
    z-index: 1060;
    /*width:100%;*/
}

    .dropdown-menu > li > a {
        padding: 2px 22px;
    }

/* ******* Latest Side Menu **** */

#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;
    overflow: hidden;
}

    #wrapper.toggled {
        padding-left: 220px;
        overflow: scroll;
    }

#sidebar-wrapper {
    z-index: 1000;
    position: absolute;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #2E363F;
    -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 {
    position: absolute;
    padding: 15px;
    width: 100%;
    overflow-x: hidden;
}

.xyz {
    min-width: 100%;
}

#wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0px;
}

.fixed-brand {
    width: auto;
}
/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 2px;
}

    .sidebar-nav li {
        text-indent: 0px;
        line-height: 37px;
        border-top: 0px solid #37414b;
        border-bottom: 0px solid #1f262d;
        width: 100%;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: #939da8;
        }

            .sidebar-nav li a:hover {
                /*text-decoration: none;
    color: #fff;
    background: #337ab7;
    border-left: red 2px solid;*/
                background-color: #21272d;
                border-bottom: 0px solid #27a9e3;
                border-top: 0px solid #27a9e3;
                color: #fff;
                text-decoration: none;
            }

            .sidebar-nav li a:active,
            .sidebar-nav li a:focus {
                background-color: #21272d;
                border-bottom: 0px solid #27a9e3;
                border-top: 0px solid #27a9e3;
                color: #fff;
                text-decoration: none;
            }

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: #21272d;
    border-bottom: 0px solid #27a9e3;
    border-top: 0px solid #27a9e3;
    color: #fff;
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

    .sidebar-nav > .sidebar-brand a {
        color: #999999;
    }

        .sidebar-nav > .sidebar-brand a:hover {
            color: #fff;
            background: none;
        }

.no-margin {
    margin: 0;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: #999999;
    border: 1px solid transparent;
    border-radius: 4px;
}

@media(min-width:768px) {
    #wrapper {
        padding-left:220px;
    }

    .fixed-brand {
        width: 250px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 220px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 220px;
    }

    #wrapper.toggled-2 #sidebar-wrapper {
        width: 50px;
    }

        #wrapper.toggled-2 #sidebar-wrapper:hover {
            width: 220px;
        }


    #page-content-wrapper {
        padding: 5px;
        position: relative;
        -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 #page-content-wrapper {
        position: relative;
        margin-right: 0;
        padding-left: 220px;
    }

    #wrapper.toggled-2 #page-content-wrapper {
        position: relative;
        margin-right: 0;
        margin-left: -200px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        width: auto;
    }
}
/* ********* Form Control ********** */
.mypanel {
    border: 1px solid #e5e5e5;
    border-radius: 0px;
}

    .mypanel .panel-heading {
        background-color: #e5e5e5;
        border: 1px solid #e5e5e5;
        font-size: 18px;
        font-weight: normal;
        line-height: 14px;
        padding: 10px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        border-radius: 0px;
        overflow: hidden;
        text-transform: uppercase;
        color: #333333;
    }

        .mypanel .panel-heading a {
            color: black;
        }

.form-control {
    height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 0px !important;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 0px;
    color: #888;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-box-shadow: 0 1px 0 0 #fff;
    -webkit-box-shadow: 0 1px 0 0 #fff;
    box-shadow: 0 1px 0 0 #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

label {
    font-size: 18px;
    font-weight: 700;
    color: #555;
    line-height: 30px;
}

    label.radio-inline, label.checkbox-inline {
        margin-right: 15px;
        font-weight: 300;
    }

.radio-inline input[type="radio"], .checkbox-inline input[type="checkbox"] {
    position: static;
}

.action-button {
    width: 100px;
    margin: auto;
    background: #1D9D74;
    font-size: 18px;
    font-weight: 700;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
}

    .action-button:hover, .action-button:focus {
        box-shadow: 0 0 0 2px white, 0 0 0 3px #1D9D74;
    }

.reset-button {
    width: 100px;
    margin: auto;
    background: #5BC0DE;
    font-size: 18px;
    font-weight: 700;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
}

    .reset-button:hover, .reset-button:focus {
        box-shadow: 0 0 0 2px white, 0 0 0 3px #5BC0DE;
    }

.danger-button {
    width: 100px;
    margin: auto;
    background: #F0AD4E;
    font-size: 18px;
    font-weight: 700;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
}

    .danger-button:hover, .danger-button:focus {
        box-shadow: 0 0 0 2px white, 0 0 0 3px #F0AD4E;
    }
/* ********** Validation msg css ******* */

.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}


.mytable {
    width: 100%;
    height: 50px;
    overflow-x: auto;
    color: black;
}

    .mytable thead {
        padding: 20px;
        background-color: #92CDDC;
        color: #333;
        font-size: 16px;
    }

        .mytable thead > tr > th, .mytable > tbody > tr > td {
            padding: 5px;
            /*text-align: left;*/
        }



.heading_big {
    background: #F77900;
    padding: 10px !important;
    text-align: center;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.heading_small {
    background: #EEEEEE;
    padding: 5px 10px;
    text-align: left;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.heading_big_yellow {
    background: #f4bc33;
    padding: 10px 0;
    text-align: center;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.heading_small {
    background: #EEEEEE;
    padding: 5px 10px;
    text-align: left;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.font_big {
    font-size: 18px;
}

.jumbotron-small {
    background-color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.19);
}

.jumbotron1 {
    background-color: #fff;
    padding: 25% 10%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.icon-box {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    margin-bottom: 27px;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
}


    .icon-box .icon-img {
        /* margin: -60px 0 0;*/
        text-align: center;
        display: block;
        font-size: 0;
        line-height: 0;
        display: inline-flex;
        position: relative;
    }

        .icon-box .icon-img img {
            background: #fff;
            border: 0px solid #eee;
            border-radius: 0px;
            margin-right: 10px;
        }

        .icon-box .icon-img h3 {
            display: inline;
            font-size: 25px;
            margin-top: 0px;
        }

.table-stripped {
    border: 1px solid #ccc;
}

    .table-stripped tr:nth-child(odd) {
        background-color: #ccc;
    }

    .table-stripped tr td {
        text-align: left;
    }

.mypanel_yellow {
    border: 1px solid #f4bc33;
    border-radius: 0px;
}

    .mypanel_yellow .panel-heading {
        background-color: #f4bc33;
        border: 1px solid #f4bc33;
        font-size: 20px;
        font-weight: bolder;
        line-height: 16px;
        padding: 10px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        border-radius: 0px;
        overflow: hidden;
        text-transform: uppercase;
        color: #333333;
    }

.mypanel .panel-heading a {
    color: black;
}

.view-button {
    width: auto;
    /*background: #27AE60;*/
    background: #333;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 10px;
    margin: 10px 5px;
}

    .view-button:hover, .view-button:focus {
        box-shadow: 0 0 0 2px white, 0 0 0 3px #333;
        text-decoration: none;
        color: #fff;
    }

.btn-logout {
    background-color: #F77900;
    font-weight: bold;
    margin: 10px 10px 0 0;
}

/* ********** Media Query ******* */

@media screen and (max-width: 770px) {
    .menu1 {
        padding: 5px;
    }

    .submenu {
        font-weight: normal;
        font-size: 14px;
        margin: 10px 0 10px 0;
        text-align: center;
    }

    .icon {
        margin: 5px;
        background-color: #06C;
        border-radius: 10px;
        padding: 25px;
        font-size: 36px;
        /*box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);*/
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    #msform input, #msform textarea, #msform select {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin: 0 10px 10px 10px;
        width: 100%;
        box-sizing: border-box;
        color: #2C3E50;
        font-size: 13px;
    }


    .mytable {
        width: 100%;
        height: 50px;
        overflow-x: auto;
        color: black;
    }

        .mytable thead {
            padding: 20px;
            background-color: #27AE60;
            color: white;
            font-size: 16px;
        }

            .mytable thead > tr > th, .mytable > tbody > tr > td {
                padding: 10px;
                /*text-align: justify;*/
            }

    #msform {
        width: 100%;
        margin-top: 10%;
        /*	margin: 50% auto;*/
        text-align: center;
    }
}

#msform fieldset .footer {
    background: #ccc;
    border-radius: 0 0 10px 10px;
    padding: 15px;
    text-align: center;
    /*box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.4);*/
    margin: 0 -30px -20px;
}

    #msform fieldset .footer a {
        color: #333;
        font-weight: bold;
    }

.mymodal {
    z-index: 1150;
}

    .mymodal .modal-content {
        border-radius: 0px !important;
    }

    .mymodal .modal-header {
        background-color: #333;
        color: #fff;
        font-size: 25px;
        text-transform: uppercase;
    }

    .mymodal .modal-body {
        padding: 40px;
        width: 100%;
    }

    .mymodal .close {
        color: #fff;
        opacity: 1;
        font-size: 36px !important;
    }

.normal-form .form-control {
    height: 35px;
    margin: 0;
    padding: 0 10px !important;
    vertical-align: middle;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 0px !important;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-box-shadow: 0 1px 0 0 #fff;
    -webkit-box-shadow: 0 1px 0 0 #fff;
    box-shadow: 0 1px 0 0 #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.table-stripped {
    border: 1px solid #ccc;
}

.nav1 li {
    background-color: #EEEEEE;
    margin: 5px 0 0 0;
}

    .nav1 li a {
        color: #333;
        font-weight: bolder;
    }

.nav1 > li.active > a, .nav1 > li.active > a:hover, .nav1 > li.active > a:focus {
    background: #333;
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
}

.tab-content .tab-pane {
    border: 1px solid #ccc;
    padding: 10px 10px 15px 10px;
}

.mypanel_green {
    border: 1px solid #e5e5e5;
    border-radius: 0px;
}

    .mypanel_green .panel-heading {
        background-color: #48af2f;
        border: 1px solid #48af2f;
        font-size: 20px;
        font-weight: bolder;
        line-height: 16px;
        padding: 10px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        border-radius: 0px;
        overflow: hidden;
        text-transform: uppercase;
        color: #fff;
    }

        .mypanel_green .panel-heading a {
            color: black;
        }

.bg-green {
    background-color: #27AE60 !important;
    color: #000 !important;
    text-align: center;
    font-weight: bold !important;
    font-size: 20px;
}

.remarks-control {
    height: 150px;
    width: 800px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 0px !important;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    color: #888;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-box-shadow: 0 1px 0 0 #fff;
    -webkit-box-shadow: 0 1px 0 0 #fff;
    box-shadow: 0 1px 0 0 #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.yellow {
    background-color: #f4bc33;
}



/* *********************** */
.navclr {
    background: #357ca5 !important;
}

#sidebar-wrapper {
    background: #3c8dbc !important;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: #357ca5;
    border-bottom: 0px solid #27a9e3;
    border-top: 0px solid #27a9e3;
    color: #fff;
    text-decoration: none;
}

.sidebar-nav li a {
    color: #fff;
}

    .sidebar-nav li a:hover {
        /*text-decoration: none;
    color: #fff;
    background: #337ab7;
    border-left: red 2px solid;*/
        background-color: #357ca5;
        border-bottom: 0px solid #27a9e3;
        border-top: 0px solid #27a9e3;
        color: #fff;
        text-decoration: none;
    }

    .sidebar-nav li a:active,
    .sidebar-nav li a:focus {
        background-color: #357ca5;
        border-bottom: 0px solid #27a9e3;
        border-top: 0px solid #27a9e3;
        color: #fff;
        text-decoration: none;
    }

.sidebar-nav li ul {
    margin: 0;
    padding: 0;
}

.nav-stacked > li {
    float: left;
}

.nav-pills > li > a {
    border-radius: 0;
}

.sidebar-nav li ul li a {
    padding-left:15px;
}


@media (max-width: 800px){

             #msform input, #msform textarea, #msform select {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 0 10px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}
        }         
