[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
    /*TO AVOID VALIDATION MESSAGE BLINK*/
}

:root {
    --LoginLogo: '----';
    --HeaderImage: '----';
}

body, html {
    height: 100% !important;
}

body {
    background-color: #eaedf6;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #333333;
    font-weight: 400;
}

.l {
    float: left;
}

.r {
    float: right;
}

.c {
    clear: both;
}

.relative {
    position: relative;
}

.static {
    position: static;
}

.zindex-0 {
    z-index: 0 !important;
}

a {
    color: #2a487d;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

    a:hover, a:focus {
        color: #2196F3;
        text-decoration: underline;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    a.text-underline {
        text-decoration: underline;
    }

th {
    font-weight: 500;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

b, strong {
    font-weight: 500;
}

.bold {
    font-weight: 500;
}

label {
    color: #4f5f6f;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 5px;
}

.label {
    font-size: 88%;
    font-weight: 500;
}

.label-record {
    margin: 5px 0;
}

.d-none {
    display: none !important;
}

.d-inline-block {
    display: inline-block !important;
}

/*------------------ Text Colors ------------------*/
.text-primary {
    color: #2a487d !important;
}

.text-secondary {
    color: #64798d !important;
}

.text-info {
    color: #00BCD4 !important;
}

.text-success {
    color: #11c26d !important;
}

.text-warning {
    color: #ffa500 !important;
}

.text-danger {
    color: #f25e5c !important;
}
/*------------------ Label / Badge ------------------*/
.label-primary,
.badge-primary {
    background-color: #2a487d !important;
}

.label-secondary,
.badge-secondary {
    background-color: #64798d !important;
}

.label-info,
.badge-info {
    background-color: #00BCD4 !important;
}

.label-success,
.badge-success {
    background-color: #11c26d !important;
}

.label-warning,
.badge-warning {
    background-color: #ffa500 !important;
}

.label-danger,
.badge-danger {
    background-color: #f25e5c !important;
}

.label-inComplete,
.badge-danger {
    background-color: #b1b6b9 !important;
}
/*------------------ BG ------------------*/
.bg-primary {
    background-color: #2a487d !important;
}

.bg-secondary {
    background-color: #64798d !important;
}

.bg-info {
    background-color: #00BCD4 !important;
}

.bg-success {
    background-color: #11c26d !important;
}

.bg-warning {
    background-color: #ffa500 !important;
}

.bg-danger {
    background-color: #f25e5c !important;
}
/*------------------ Label / Badge ------------------*/

/*------------------ Loader ------------------*/
/*.loader-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding-top: 17%;
    background: rgba(0, 0, 0, 0.34);
    z-index: 999999999;
}

.loader {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    background: #FFF url(../images/loader-logo.jpg) center center no-repeat;
    z-index: 1051;
    margin: -30px 0 0 -30px;
    border: 2px solid #fff;
}

    .loader::after {
        content: '';
        display: inline-block;
        height: 60px;
        width: 60px;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        border: 8px solid #e8e8e8;
        border-top: 5px solid #e9303c;
        border-bottom: 5px solid #2a487d;
        border-left: 5px solid #fff;
        border-right: 5px solid #fff;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.66);
    z-index: 99999;
}

.loader {
    --path: #2a487d;
    --dot: #00b6a3;
    --duration: 2s;
    width: 48px;
    height: 44px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -24px;
    margin-top: -22px;
    display: inline-block;
}

    .loader:before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        position: absolute;
        display: block;
        background: var(--dot);
        top: 37px;
        left: 19px;
        -webkit-transform: translate(-18px, -18px);
        transform: translate(-18px, -18px);
        -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
        animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    }

    .loader svg {
        display: block;
        width: 100%;
        height: 100%;
    }

        .loader svg rect,
        .loader svg polygon,
        .loader svg circle {
            fill: none;
            stroke: var(--path);
            stroke-width: 10px;
            stroke-linejoin: round;
            stroke-linecap: round;
        }

        .loader svg polygon {
            stroke-dasharray: 145 76 145 76;
            stroke-dashoffset: 0;
            -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
        }

    .loader.triangle:before {
        left: 21px;
        -webkit-transform: translate(-10px, -18px);
        transform: translate(-10px, -18px);
        -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
        animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    }

@-webkit-keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }

    66% {
        stroke-dashoffset: 147;
    }

    100% {
        stroke-dashoffset: 221;
    }
}

@keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }

    66% {
        stroke-dashoffset: 147;
    }

    100% {
        stroke-dashoffset: 221;
    }
}

@-webkit-keyframes dotTriangle {
    33% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    66% {
        -webkit-transform: translate(10px, -18px);
        transform: translate(10px, -18px);
    }

    100% {
        -webkit-transform: translate(-10px, -18px);
        transform: translate(-10px, -18px);
    }
}

@keyframes dotTriangle {
    33% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    66% {
        -webkit-transform: translate(10px, -18px);
        transform: translate(10px, -18px);
    }

    100% {
        -webkit-transform: translate(-10px, -18px);
        transform: translate(-10px, -18px);
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx HEADER START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.page-heading-top {
    /*position: absolute;
        top: 10px;
        left: 50%;
        margin: 0 0 0 -160px;*/
    position: relative;
    float: left;
    top: -10px;
    left: 35%;
    transform: translate(-50%);
    width: auto;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    border-radius: 0 0 5px 5px;
    line-height: 20px;
    display: inline-block;
}

.navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
    margin: 0;
    min-height: 60px;
    border: none;
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.1);
    border-radius: 0;
    padding-left: 0;
}

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-color: rgba(0,0,0,.2);
    }

@media (min-width: 768px) {
    .navbar-collapse.collapse {
        float: right;
    }
}

.navbar-brand {
    padding: 7px 15px;
    height: 60px;
    background: #fff !important;
    width: 240px;
}

    .navbar-brand .navbar-brand-logo {
        display: inline-block;
        max-height: 45px;
        max-width: 210px;
    }

@media (max-width: 380px) {
    .navbar-brand {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 200px;
    }

        .navbar-brand .navbar-brand-logo {
            max-height: 40px;
            max-width: 180px;
        }
}

@media all and (max-width:620px) {
    .navbar-default {
        padding-left: 0;
    }
}

.navbar-toolbar {
    float: left;
    margin-right: 0;
}

@media (max-width: 767px) {
    .navbar-toolbar-right {
        float: right !important;
    }
}

.navbar-toolbar > li {
    float: left;
}

.navbar-default .container-fluid {
    padding-left: 0;
    padding-right: 10px;
}

.nav > li > a {
    overflow: hidden;
}

.navbar-toolbar > li > a {
    padding: 16px 15px;
    line-height: 30px;
}

.navbar-default .navbar-toolbar > li > a {
    font-size: 24px;
    height: 60px;
    color: inherit;
}

    .navbar-default .navbar-toolbar > li > a:focus, .navbar-default .navbar-toolbar > li > a:hover {
        background-color: #f4f6fb;
    }

.navbar-default .navbar-toolbar > .active > a, .navbar-default .navbar-toolbar > .active > a:focus, .navbar-default .navbar-toolbar > .active > a:hover {
    background-color: #f4f6fb;
}

.navbar-default .navbar-toolbar > .disabled > a, .navbar-default .navbar-toolbar > .disabled > a:focus, .navbar-default .navbar-toolbar > .disabled > a:hover {
    background-color: transparent;
}

.navbar-default .navbar-toolbar > .open > a, .navbar-default .navbar-toolbar > .open > a:focus, .navbar-default .navbar-toolbar > .open > a:hover {
    background-color: #f4f6fb;
}

.navbar-default .navbar-toggle {
    font-size: 18px;
    height: 60px;
    width: 50px;
    padding: 15px 0;
    margin-top: 16px;
    margin-top: 0;
    margin-bottom: 16px;
    margin-bottom: 0;
    line-height: 22px;
    background-color: transparent;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 0;
    cursor: pointer;
}

.navbar-default .navbar-toggle {
    color: #2a487d;
    border-color: transparent;
    margin: 0;
}

    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        color: #2a487d;
        background-color: #f4f6fb;
    }

.navbar-toolbar > li > a.navbar-avatar {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #2a487d;
}

.navbar-avatar .avatar {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    overflow: hidden;
    border-radius: 100%;
}

    .navbar-avatar .avatar img {
        width: 40px;
        height: 40px;
    }

.navbar-avatar .avatar-text,
.dropdown-menu .avatar .avatar-text {
    display: inline-block;
    white-space: nowrap;
    text-align: left;
    vertical-align: middle;
}

.dropdown-menu .avatar-wrapper {
    display: block;
    border-bottom: 1px solid #d7dde4;
    padding: 5px 10px;
    white-space: nowrap;
    text-align: center;
}

.dropdown-menu .avatar {
    display: inline-block;
    width: 80px;
    height: 80px;
}

    .dropdown-menu .avatar img {
        width: 80px;
        height: 80px;
    }

.dropdown-menu .avatar-text {
    padding: 5px 0 0;
    display: block;
}

    .navbar-avatar .avatar-text label,
    .dropdown-menu .avatar-text label {
        font-size: 14px;
        font-weight: 400;
        display: block;
        padding: 0 10px;
        line-height: 18px;
        margin: 0;
        cursor: pointer;
        overflow: hidden;
    }

        .navbar-avatar .avatar-text label + label, .dropdown-menu .avatar-text label + label {
            font-size: 11px;
            line-height: 14px;
        }

@media (max-width: 767px) {
    .navbar-toolbar .open {
        position: static;
    }
}

@media (max-width: 767px) {
    .navbar-toolbar .open .dropdown-menu {
        right: 0;
        left: 0;
        float: none;
        width: auto;
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

.navbar-collapse-toolbar.in {
    overflow-y: visible;
}

.role-dropdown {
    padding: 13px 5px 0;
    width: 160px;
}

.language-dropdown {
}

    .language-dropdown .dropdown-menu li.active a {
        color: #ffffff;
        background: #2a487d;
    }

.header-bg {
    position: relative;
}

    .header-bg:before,
    .header-bg:after {
        position: absolute;
        top: 0;
        left: 290px;
        right: 290px;
        height: 60px;
        content: '';
        display: block;
    }

    .header-bg:before {
        z-index: -1;
        /*background: url(../images/header-bg.jpg) center right no-repeat;*/
        background: var(--HeaderImage) center right no-repeat;
        background-size: cover;
        opacity: 0.8;
        border-radius:5px;
    }

    .header-bg:after {
        z-index: -2;
        background: #2a487d;
        border-radius: 5px;
    }

@media (max-width: 768px) {
    .header-bg:before,
    .header-bg:after {
        right: 50px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx HEADER END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx HEADER LEAD STATS END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.navbar-lead-stats {
    padding: 0;
    margin: 0;
    text-align: center;
}

    .navbar-lead-stats li {
        display: inline-block;
        vertical-align: top;
        margin: 5px 0 0;
        list-style: none;
        border: 2px solid rgba(255, 255, 255, 0.5);
        background: rgba(0, 0, 0, 0.02);
        box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        min-width: 75px;
    }

        .navbar-lead-stats li:hover {
            background: rgba(255, 255, 255, 0.05);
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        .navbar-lead-stats li:last-child {
        }

    .navbar-lead-stats .lead-stats {
        padding: 4px 4px;
        position: relative;
        display: block;
        overflow: hidden;
        color: #fff;
        text-decoration: none;
        text-align: center;
    }

        .navbar-lead-stats .lead-stats:hover {
            text-decoration: none;
        }

        .navbar-lead-stats .lead-stats .stats-number {
            font-size: 24px;
            line-height: 26px;
            display: inline-block;
            font-weight: 400;
            vertical-align: middle;
            height: 26px;
        }

        .navbar-lead-stats .lead-stats h5 {
            color: #fff;
            font-size: 10px;
            font-weight: 500;
            text-align: center;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

@media screen and (max-width:991px) {
    .navbar-lead-stats {
        display: none;
    }
}

@media screen and (max-width:480px) {
    .page-heading-top {
        font-size: 14px;
    }
}



.navbar-lead-stats .dropdown-menu {
    margin-top: 10px;
    overflow: inherit !important;
    width: 450px;
    z-index: 1060;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    padding: 0;
    left: 50%;
    margin-left: -225px;
}

    .navbar-lead-stats .dropdown-menu .dropdown-title {
        padding: 8px 14px;
        margin: 0;
        font-size: 14px;
        background-color: #f4f6fb;
        border-bottom: 1px solid #d7dde4;
        border-radius: 5px 5px 0 0;
    }

    .navbar-lead-stats .dropdown-menu .dropdown-content {
        padding: 10px;
    }

    .navbar-lead-stats .dropdown-menu .arrow,
    .navbar-lead-stats .dropdown-menu .arrow:after {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }

    .navbar-lead-stats .dropdown-menu .arrow {
        border-width: 11px;
    }

    .navbar-lead-stats .dropdown-menu .arrow {
        top: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-width: 0;
        border-bottom-color: rgba(0,0,0,.2);
    }

        .navbar-lead-stats .dropdown-menu .arrow:after {
            border-width: 10px;
            top: 1px;
            margin-left: -10px;
            content: '';
            border-top-width: 0;
            border-bottom-color: #f4f6fb;
        }

        .navbar-lead-stats .dropdown-menu .arrow.arrow-permit:after {
            border-bottom-color: #11c26d;
        }
        .navbar-lead-stats .dropdown-menu .arrow.arrow-is:after {
            border-bottom-color: #03a9f4;
        }
        .navbar-lead-stats .dropdown-menu .arrow.arrow-cs:after {
            border-bottom-color: #ff5e00;
        }
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx HEADER LEAD STATS END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx PAGE START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.layout-full {
    padding-top: 0;
}

    .layout-full:before {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -2;
        width: 100%;
        height: 100%;
        content: "";
        background-position: center top;
        -webkit-background-size: cover;
        background-size: cover;
    }

    .layout-full:before {
        background-image: var(--LoginLogo);
    }

    .layout-full:after {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        content: "";
        background: #2a487d;
        background: -moz-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0, 33, 163, 0.6) 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.3)), color-stop(100%,rgba(0, 33, 163, 0.6)));
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0, 33, 163, 0.6) 100%);
        background: -o-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0, 33, 163, 0.6) 100%);
        background: -ms-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0, 33, 163, 0.6) 100%);
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%,rgba(0, 33, 163, 0.6) 100%);
    }

    .layout-full .page-container {
        height: 100%;
        padding: 0;
    }

.vertical-align-bottom, .vertical-align-middle {
    display: inline-block;
    max-width: 100%;
    font-size: 12px;
}

.vertical-align:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    content: "";
}

.vertical-align-middle {
    vertical-align: middle;
}

.vertical-align {
    font-size: 0;
}

.page-login.layout-full {
    height: 100%;
}

    .page-login.layout-full .vertical-align-middle {
        padding: 40px;
    }

/* PAGE 
-----------------------*/
.page-container {
    min-height: 100vh;
    padding-left: 50px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.is-collapsed .page-container {
    padding-left: 240px;
}

@media screen and (max-width: 1439px) and (min-width: 992px) {
    .page-container {
        padding-left: 50px;
    }
}

@media screen and (max-width: 991px) {
    .page-container {
        padding-left: 0;
    }

    .is-collapsed .page-container {
        padding-left: 0;
    }
}

.main-content {
    padding: 70px 20px 20px;
    min-height: 100vh;
    position: relative;
    z-index: 0;
}

@media (max-width: 480px) {
    .main-content {
        padding-top: 80px;
    }
}
/* PAGE TITLE
-----------------------*/
.page-title {
    font-weight: 400;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 14px;
    color: #000000;
}

    .page-title i {
        font-size: 20px;
        background: #2a487d;
        padding: 0;
        margin-right: 10px;
        border-radius: 100%;
        color: #fff;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 38px;
        top: 0;
        vertical-align: middle;
        border: 1px solid #2a487d;
        display: inline-block;
    }
        .page-title i img {
            height: 20px;
            width: 20px;
            margin-top: -1px;
            filter: brightness(100);
        }
/* PAGE FOOTER 
-----------------------*/
#wrapper .sidebar .footer {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 10px;
    background: #eeeeee;
    border-top: 1px solid #d7dde4;
    z-index: 1;
}

    #wrapper .sidebar .footer h2 {
        font-size: 12px;
        padding: 0 0 5px 0;
        margin: 0;
        font-weight: 600;
    }

    #wrapper .sidebar .footer p {
        margin: 0;
    }

    #wrapper .sidebar .footer i {
        margin-right: 10px;
        font-size: 24px;
        vertical-align: middle;
        font-size: 16px;
    }

    #wrapper .sidebar .footer span {
        position: relative;
        top: 2px;
    }
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx PAGE END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SIDEBAR START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.sidebar {
    background-color: #ffffff;
    bottom: 0;
    overflow: hidden;
    position: fixed;
    top: 60px;
    width: 240px;
    z-index: 998;
    padding: 0px 0 0;
    box-shadow: 0 1px 5px rgba(79, 95, 112, 0.3);
    -webkit-box-shadow: 0 1px 5px rgba(79, 95, 112, 0.3);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.sidebar-inner {
    position: relative;
    /*height: 100%;*/
    height: calc(100% - 95px);
    overflow: auto;
}

.sidebar-support {
    padding: 10px 10px;
    border-top: 1px solid #d7dde4;
    background: #f4f6fb;
    height: 95px;
}

    .sidebar-support h2 {
        margin: 0;
        padding: 0;
        font-size: 12px;
        font-weight: 500;
        min-height: 26px;
    }

    .sidebar-support p {
        margin: 0;
        padding: 5px 0 0;
        font-size: 12px;
    }

        .sidebar-support p i.fa {
            vertical-align: middle;
        }

        .sidebar-support p a {
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
        }

@media screen and (min-width: 992px) {
    .sidebar {
        width: 50px;
    }

        .sidebar .sidebar-support {
            display: none;
        }

    .is-collapsed .sidebar {
        width: 271px;
    }

        .is-collapsed .sidebar .sidebar-support {
            display: block;
        }

    .sidebar:hover {
        width: 272px;
    }

        .sidebar:hover .sidebar-support {
            display: block;
        }
}

@media screen and (max-width: 991px) {
    .sidebar {
        left: -250px;
        width: 240px;
    }

    .is-collapsed .sidebar {
        left: 0;
    }
}
/* SIDEBAR NAVIGATION 
-----------------------*/
.sidebar .nav > li {
    border-bottom: 1px solid #f4f6fb;
}

.sidebar .nav .nav > li {
    border-top: 1px solid #ffffff;
    border-bottom: 0px solid #ffffff;
}

.sidebar .nav > li > a {
    color: #4f5f6f;
    border-left: 4px solid transparent;
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 10px;
    position: relative;
    white-space: nowrap;
}

    /*.sidebar .nav>li>a.active i, .sidebar .nav>li>a:hover i {
  color: #2a487d;
}

.sidebar .nav>li>a:hover, .sidebar .nav>li>a:focus, .sidebar .nav>li>a.active {
  color: #2a487d;
  background-color: #f4f6fb;
  border-left-color: #2a487d;
}*/
    .sidebar .nav > li > a.active i, .sidebar .nav > li > a:hover i {
        color: #ffffff;
    }

    .sidebar .nav > li > a:hover, .sidebar .nav > li > a:focus, .sidebar .nav > li > a.active {
        color: #ffffff;
        background-color: #2a487d;
        border-left-color: #2a487d;
    }

        .sidebar .nav > li > a:hover img, .sidebar .nav > li > a:focus img, .sidebar .nav > li > a.active img {
            filter: brightness(100);
        }
/*
Submenu */
/*.sidebar .nav .nav > li > a {
    padding-left: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
    white-space: normal;
}

    .sidebar .nav .nav > li > a:hover,
    .sidebar .nav .nav > li > a:focus {
        color: #2a487d;
        background-color: #f9fbfd;
        border-left-color: transparent;
    }

    .sidebar .nav .nav > li > a.active {
        color: #2a487d;
        background-color: #f4f6fb;
        border-left-color: transparent;
    }

.sidebar .nav .nav > li::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 23px;
    top: 0;
    bottom: -1px;
    border-left: 1px solid #d7dde4;
}

.sidebar .nav .nav > li::after {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    left: 24px;
    top: 18px;
    border-top: 1px solid #d7dde4;
    z-index: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.sidebar .nav .nav > li:hover::after,
.sidebar .nav .nav > li:focus::after {
    border-top: 1px solid #2a487d;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}*/

/*SECOND LEVEL*/
.sidebar .nav .nav > li.dropdown > a {
    padding-left: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
    white-space: normal;
}

    .sidebar .nav .nav > li.dropdown > a:hover,
    .sidebar .nav .nav > li.dropdown > a:focus {
        color: #ffffff;
        background-color: #4f5f6f;
        border-left-color: transparent;
    }

    .sidebar .nav .nav > li.dropdown > a.active {
        color: #ffffff;
        background-color: #4f5f6f;
        border-left-color: transparent;
    }
/*
.sidebar .nav .nav > li::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 23px;
    top: 0;
    bottom: -1px;
    border-left: 1px solid #d7dde4;
}

.sidebar .nav .nav > li::after {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    left: 24px;
    top: 18px;
    border-top: 1px solid #d7dde4;
    z-index: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.sidebar .nav .nav > li:hover::after,
.sidebar .nav .nav > li:focus::after {
    border-top: 1px solid #2a487d;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}*/

/*THIRD LEVEL*/
.sidebar .nav .nav > li > a {
    padding-left: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
    white-space: normal;
}

    .sidebar .nav .nav > li > a:hover,
    .sidebar .nav .nav .nav > li > a:focus {
        color: #2a487d;
        background-color: #f9fbfd;
        border-left-color: transparent;
    }

    .sidebar .nav .nav > li > a.active {
        color: #2a487d;
        background-color: #f4f6fb;
        border-left-color: transparent;
    }

.sidebar .nav .nav > li::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 23px;
    top: 0;
    bottom: -1px;
    border-left: 1px solid #d7dde4;
}

.sidebar .nav .nav > li::after {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    left: 24px;
    top: 18px;
    border-top: 1px solid #d7dde4;
    z-index: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.sidebar .nav .nav > li:hover::after,
.sidebar .nav .nav > li:focus::after {
    border-top: 1px solid #2a487d;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}








.sidebar .nav > li > a .icon-holder {
    display: inline-block;
    height: 26px;
    left: 0;
    line-height: 26px;
    margin-right: 5px;
    position: relative;
    text-align: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 25px;
    vertical-align: middle;
    font-size: 20px;
}

    .sidebar .nav > li > a .icon-holder img {
        height: 20px !important;
        width: 20px !important;
    }

.sidebar .nav > li > a .title {
    display: inline-block;
    vertical-align: middle;
    /*letter-spacing: 0.5px;*/
}

@media screen and (min-width: 992px) {
    .sidebar .nav > li > a .title {
        display: none;
    }

    .sidebar:hover .nav > li > a .title {
        display: inline-block;
    }

    .is-collapsed .sidebar .nav > li > a .title {
        display: inline-block;
    }
}

.sidebar .nav li a span.arrow {
    font-size: 10px;
    line-height: 35px;
    position: absolute;
    right: 10px;
    top: 0;
    -webkit-transition: all .05s ease-in;
    -o-transition: all .05s ease-in;
    transition: all .05s ease-in;
}

.sidebar .nav li a.active span.arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media screen and (min-width: 992px) {
    .sidebar .nav li.dropdown .arrow {
        opacity: 0;
    }

    .sidebar:hover .nav li.dropdown .arrow {
        opacity: 1;
    }

    .is-collapsed .sidebar .nav li.dropdown .arrow {
        opacity: 1;
    }

    .sidebar .nav li .collapse.in {
        display: none !important;
    }

    .sidebar:hover .nav li .collapse.in {
        display: block !important;
    }

    .is-collapsed .sidebar .nav li .collapse.in {
        display: block !important;
    }
}

.sidebar .nav li a .badge {
    padding: 1px 3px;
    font-size: 11px;
    background-color: #293508;
    border-radius: 0px 0 0px 4px;
    font-weight: normal;
    position: absolute;
    right: 0;
    top: 0;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 997;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SIDEBAR START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.toast-title {
    font-weight: 500;
    font-size: 14px;
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

    .toast-message a, .toast-message label {
        color: #fff;
    }

        .toast-message a:hover {
            color: #ccc;
            text-decoration: none;
        }

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
}

    .toast-close-button:focus, .toast-close-button:hover {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        opacity: .4;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
        filter: alpha(opacity=40);
    }

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-left {
    top: 12px;
    left: 12px;
}

.toast-top-right {
    top: 12px;
    right: 12px;
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}

#toast-container {
    position: fixed;
    z-index: 999999;
}

    #toast-container * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    #toast-container > div {
        position: relative;
        overflow: hidden;
        margin: 0 3px 3px;
        padding: 10px 15px 10px 50px;
        width: 300px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        background-position: 15px center;
        background-repeat: no-repeat;
        color: #fff;
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    }

        #toast-container > div:hover {
            opacity: 1;
            -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
            filter: alpha(opacity=100);
            cursor: pointer;
        }

    #toast-container > .toast-info {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
    }

    #toast-container > .toast-error {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
    }

    #toast-container > .toast-success {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
    }

    #toast-container > .toast-warning {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
    }

    #toast-container.toast-bottom-center > div, #toast-container.toast-top-center > div {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    #toast-container.toast-bottom-full-width > div, #toast-container.toast-top-full-width > div {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

.toast {
    background-color: #030303;
}

.toast-error {
    background-color: #bd362f;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: .4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}

@media all and (max-width:240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em;
    }
}

@media all and (min-width:241px)and (max-width:480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em;
    }
}

@media all and (min-width:481px)and (max-width:768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
}
/*------------------ Notification ------------------*/
.notification-item .dot {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    content: '';
    margin-right: 8px;
}

ul.notifications > li {
    border-bottom: 1px solid #F0F0F0;
}

    .panel.panel-headline .panel-heading,
    ul.notifications > li:last-child {
        border-bottom: none;
    }

    ul.notifications > li > .more {
        padding: 8px 12px;
        text-align: center;
        text-decoration: underline;
        font-weight: 600;
    }

        ul.notifications > li > .more:focus, ul.notifications > li > .more:hover {
            text-decoration: none;
        }
/*------------------ Dropdown Menu ------------------*/
.dropdown-menu {
    font-size: 13px;
    min-width: auto;
    overflow: auto !important;
    z-index: 99999;
    border: 1px solid #d7dde4;
    box-shadow: 0 1px 3px rgba(33,33,33,.2);
    -webkit-box-shadow: 0 1px 3px rgba(33,33,33,.2);
}

    .dropdown-menu > li > a {
        color: #4f5f6f;
        padding: 8px 15px;
    }

        .dropdown-menu > li > a:focus,
        .dropdown-menu > li > a:hover {
            color: #2a487d;
            background-color: #f4f6fb;
        }

    .dropdown-menu > li i {
        margin-right: 6px;
    }
/*------------------ Form Controls ------------------*/
.form-control {
    border-color: #d7dde4;
    font-size: 12px;
    color: #333333;
    padding: 5px 5px;
    border-radius: 2px;
    /*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);*/
    box-shadow: none;
    -webkit-box-shadow: none;
}

textarea.form-control {
    resize: none;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.form-control[disabled], .form-control[readonly] {
    background-color: #f9fbfd;
}

.form-control-static {
    min-height: 34px;
    padding-top: 0px;
    padding-bottom: 7px;
    margin-bottom: 0;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    padding-left: 5px;
    padding-right: 5px;
}
/*------------------ Buttons ------------------*/
.btn {
    border-radius: 2px;
}

.btn-sm.btn-icon i {
    font-size: 15px;
}

.input-group-addon {
    color: #4f5f6f;
    border: 1px solid #d7dde4;
    background-color: #f4f6fb;
}

.btn-default {
    color: #4f5f6f;
    background-color: #ffffff;
    border-color: #d7dde4;
}

    .btn-default.focus, .btn-default:focus,
    .btn-default:hover, .btn-default.active,
    .btn-default:active, .btn-default:active:focus,
    .btn-default.active:focus, .btn-default.active:hover {
        color: #4f5f6f;
        background-color: #f4f6fb;
        border-color: #b9c3cf;
    }

.btn-primary {
    background-color: #2a487d;
    border-color: #2a487d;
}

    .btn-primary.focus, .btn-primary:focus,
    .btn-primary:hover, .btn-primary.active,
    .btn-primary:active, .btn-primary:active:focus,
    .btn-primary.active:focus, .btn-primary.active:hover {
        background-color: #4167c5;
        border-color: #4167c5;
    }

.btn-secondary {
    color: #fff;
    background-color: #64798d;
    border-color: #64798d;
}

    .btn-secondary.focus, .btn-secondary:focus,
    .btn-secondary:hover, .btn-secondary.active,
    .btn-secondary:active, .btn-secondary:active:focus,
    .btn-secondary.active:focus, .btn-secondary.active:hover {
        color: #fff;
        background-color: #4f5f6f;
        border-color: #4f5f6f;
    }

.btn-info {
    background-color: #00BCD4;
    border-color: #00BCD4;
}

    .btn-info.focus, .btn-info:focus,
    .btn-info:hover, .btn-info.active,
    .btn-info:active, .btn-info:active:focus,
    .btn-info.active:focus, .btn-info.active:hover {
        background-color: #08cbe4;
        border-color: #08cbe4;
    }

.btn-success {
    background-color: #11c26d;
    border-color: #11c26d;
}

    .btn-success.focus, .btn-success:focus,
    .btn-success:hover, .btn-success.active,
    .btn-success:active, .btn-success:active:focus,
    .btn-success.active:focus, .btn-success.active:hover {
        background-color: #17ce76;
        border-color: #17ce76;
    }

.btn-warning {
    background-color: #ffa500;
    border-color: #ffa500;
}

    .btn-warning.focus, .btn-warning:focus,
    .btn-warning:hover, .btn-warning.active,
    .btn-warning:active, .btn-warning:active:focus,
    .btn-warning.active:focus, .btn-warning.active:hover {
        background-color: #f57d1b;
        border-color: #f57d1b;
    }

.btn-danger {
    background-color: #f25e5c;
    border-color: #f25e5c;
}

    .btn-danger.focus, .btn-danger:focus,
    .btn-danger:hover, .btn-danger.active,
    .btn-danger:active, .btn-danger:active:focus,
    .btn-danger.active:focus, .btn-danger.active:hover {
        background-color: #ff666b;
        border-color: #ff666b;
    }

.btn-link {
    color: #2a487d;
}

    .btn-link.focus, .btn-link:focus,
    .btn-link:hover, .btn-link.active,
    .btn-link:active, .btn-link:active:focus,
    .btn-link.active:focus, .btn-link.active:hover {
        color: #2196F3;
    }

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    filter: alpha(Opacity=40);
    opacity: .4;
}

.btn-primary-outline {
    color: #2a487d;
    background-color: #fff;
    border-color: #2a487d;
}

    .btn-primary-outline.focus, .btn-primary-outline:focus,
    .btn-primary-outline:hover, .btn-primary-outline.active,
    .btn-primary-outline:active, .btn-primary-outline:active:focus,
    .btn-primary-outline.active:focus, .btn-primary-outline.active:hover {
        color: #fff;
        background-color: #2a487d;
        border-color: #2a487d;
    }

/*------------------ Panel ------------------*/
.panel {
    background-color: #fff;
    margin-bottom: 0;
    box-shadow: 0 1px 5px rgba(79, 95, 112, 0.3);
    -webkit-box-shadow: 0 1px 5px rgba(79, 95, 112, 0.3);
}

    .panel .panel-heading {
        padding-top: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .panel .panel-heading .panel-title {
            margin: 0;
            font-size: 18px;
            font-weight: 300;
        }

        .panel .panel-heading button {
            padding: 0;
            margin-left: 5px;
            background-color: transparent;
            border: none;
            outline: 0;
        }

            .panel .panel-heading button i {
                font-size: 14px;
            }

.panel-body {
    padding: 10px;
}

.panel .panel-note {
    font-size: 12px;
    line-height: 2.6;
    color: #777;
}

    .panel .panel-note i {
        font-size: 16px;
        margin-right: 3px;
    }
/*.panel .right { position: absolute; right: 20px; top: 32% }*/
.panel.panel-headline .panel-heading .panel-title {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 400;
}

.panel.panel-headline .panel-heading .panel-subtitle {
    margin-bottom: 0;
    font-size: 14px;
    color: #8D99A8;
}

.metric, .panel.panel-scrolling .btn-bottom {
    margin-bottom: 30px;
}

.panel .table > tbody > tr > td:first-child,
.panel .table > tbody > tr > td:last-child,
.panel .table > tbody > tr > th:first-child,
.panel .table > tbody > tr > th:last-child,
.panel .table > tfoot > tr > td:first-child,
.panel .table > tfoot > tr > td:last-child,
.panel .table > tfoot > tr > th:first-child,
.panel .table > tfoot > tr > th:last-child,
.panel .table > thead > tr > td:first-child,
.panel .table > thead > tr > td:last-child,
.panel .table > thead > tr > th:first-child,
.panel .table > thead > tr > th:last-child {
    padding-left: 10px;
}

.panel-footer {
    background-color: #fafafa;
}
/*------------------ Collapse ------------------*/
.collapsing {
    -webkit-transition: all .2s ease-out;
}
/*------------------ Metric ------------------*/
.metric {
    padding: 20px;
    border: 1px solid #DCE6EB;
}

    .metric .icon {
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        float: left;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background-color: #0081c2;
        text-align: center;
    }

        .metric .icon i {
            font-size: 18px;
            color: #fff;
        }

    .metric p {
        margin-bottom: 0;
        line-height: 1.2;
        text-align: right;
    }

    .metric .number {
        display: block;
        font-size: 28px;
        font-weight: 300;
    }

    .metric .title {
        font-size: 16px;
    }
/*------------------ Activity ------------------*/
ul.activity-list > li {
    padding: 25px 0;
}

    ul.activity-list > li:not(:last-child) {
        border-bottom: 1px solid #F0F0F0;
    }

    ul.activity-list > li .avatar {
        width: 40px;
    }

    ul.activity-list > li > p {
        margin-bottom: 0;
        padding-left: 3.5em;
    }

    ul.activity-list > li .timestamp {
        display: block;
        font-size: 12px;
        color: #a3a3a3;
    }
/*------------------ Task ------------------*/
.task-list > li {
    margin-bottom: 32px;
}

.task-list p {
    position: relative;
}

    .task-list p .label-percent {
        position: absolute;
        right: 0;
    }
/*------------------ List ------------------*/
ul.list-justify > li {
    margin-bottom: 5px;
}

    ul.list-justify > li span {
        float: right;
    }
/*------------------ Progress ------------------*/
.progress, .progress .progress-bar {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.progress {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
    background-color: #f1f1f1;
}

    .progress.wide {
        width: 60px;
    }

    .progress .progress-bar {
        -moz-transition-property: width;
        -o-transition-property: width;
        -webkit-transition-property: width;
        transition-property: width;
        -moz-transition-duration: 3s;
        -o-transition-duration: 3s;
        -webkit-transition-duration: 3s;
        transition-duration: 3s;
        -moz-transition-timing-function: ease;
        -o-transition-timing-function: ease;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
        box-shadow: none;
    }

    .progress.progress-sm {
        height: 12px;
    }

    .progress.progress-xs {
        height: 5px;
    }

        .progress.progress-sm .progress-bar, .progress.progress-xs .progress-bar {
            text-indent: -9999px;
        }

.progress-bar-success {
    background-color: #41B314;
}

.progress-bar-warning {
    background-color: #e4cb10;
}

.progress-bar-danger {
    background-color: #F9354C;
}

/*------------------ TO DO List ------------------*/
.todo-list > li {
    border-top: 1px solid #F0F0F0;
    position: relative;
}

    .todo-list > li:first-child {
        border-top: none;
    }

    .todo-list > li .fancy-checkbox {
        position: absolute;
        top: 50%;
        margin-top: -11px;
    }

        .todo-list > li .fancy-checkbox input[type=checkbox] + span {
            margin-right: 0;
        }

    .todo-list > li p {
        display: inline-block;
        vertical-align: middle;
        width: 90%;
        margin: 0;
        padding: 20px 0 20px 35px;
    }

    .todo-list > li.completed .date, .todo-list > li.completed p {
        text-decoration: line-through;
        color: #b4b6b9;
    }

.todo-list .title {
    font-size: 16px;
    font-weight: 600;
}

.todo-list .short-description {
    display: block;
    margin-top: 5px;
}

.todo-list .date {
    font-size: 12px;
    color: #a3a3a3;
}

.todo-list .controls {
    float: right;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -11px;
}

    .todo-list .controls a {
        margin-left: 5px;
    }
/*------------------ Toaster ------------------*/
#toast-container > div {
    filter: alpha(Opacity=90);
    opacity: .9;
}

    #toast-container > div, #toast-container > div:hover {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

#toast-container .toast-close-button {
    /*top: -.9em*/
    ;
}

.toast a {
    text-decoration: underline;
}

    .toast a:focus, .toast a:hover {
        text-decoration: none;
        color: #fff;
    }

.toast .toast-message {
    font-size: 13px;
}

.toast-info {
    background-color: #0AF;
}

.toast-success {
    background-color: #41B314;
}

.toast-warning {
    background-color: #e4cb10;
}

.toast-danger {
    background-color: #F9354C;
}
/*------------------ Custom Tabs ------------------*/
.custom-tabs-line ul {
    display: inline-block;
    vertical-align: middle;
}

    .custom-tabs-line ul > li {
        float: left;
    }

        .custom-tabs-line ul > li a {
            color: #8d9093;
            font-weight: 400;
        }

            .custom-tabs-line ul > li a:focus, .custom-tabs-line ul > li a:hover {
                color: #676a6d;
                background-color: transparent;
            }

            .custom-tabs-line ul > li a:focus {
                outline: 0;
            }

    .custom-tabs-line ul.nav-pills a:focus, .custom-tabs-line ul.nav-pills a:hover {
        color: #fff;
        background-color: #0AF;
    }

.custom-tabs-line.tabs-line-bottom {
    border-bottom: 1px solid #eaeaea;
}

    .custom-tabs-line.tabs-line-bottom ul > li {
        margin-bottom: -1px;
    }

    .custom-tabs-line.tabs-line-bottom a {
        border-bottom: 1px solid transparent;
    }

    .custom-tabs-line.tabs-line-bottom .active a {
        border-bottom: 2px solid #0AF;
    }

.custom-tabs-line.left-aligned {
    text-align: left;
}

.custom-tabs-line.right-aligned {
    text-align: right;
}

@media screen and (max-width:768px) {
    .custom-tabs-line ul li.active > a {
        margin-bottom: -1px;
    }
}
/*------------------ Tabs ------------------*/
.nav-tabs > li {
    float: left;
    margin-bottom: -2px;
}

.nav-tabs {
    border-bottom: none;
}

.tab-pane {
    padding: 10px 10px;
    border: 1px solid #ddd;
}
/*------------------ Easy Pie Chart ------------------*/
.easy-pie-chart {
    position: relative;
    width: 110px;
    margin: 0 auto 15px;
    text-align: center;
}

    .easy-pie-chart canvas {
        position: absolute;
        top: 0;
        left: 0;
    }

    .easy-pie-chart .percent {
        display: inline-block;
        vertical-align: middle;
        line-height: 110px;
        z-index: 2;
    }

        .easy-pie-chart .percent:after {
            content: '%';
            margin-left: .1em;
            font-size: .8em;
        }

    .easy-pie-chart#system-load {
        width: 130px;
    }

        .easy-pie-chart#system-load .percent {
            line-height: 128px;
        }
/*------------------ Profile ------------------*/
.panel-profile {
    position: relative;
}

.profile-left {
    padding-left: 0;
    float: left;
    width: 35%;
    height: 100%;
    position: absolute;
    background-color: #F8F8F8;
}

.profile-right {
    float: right;
    width: 65%;
    padding: 20px 25px;
}

    .profile-right .heading {
        margin-top: 0;
    }

@media screen and (max-width:992px) {
    .profile-left, .profile-right {
        float: none;
        width: 100%;
    }

    .profile-left {
        position: relative;
        margin-bottom: 30px;
    }
}

.profile-header {
    position: relative;
    text-align: center;
    color: #fff;
}

    .profile-header .overlay {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.2);
    }

    .profile-header .profile-main {
        position: relative;
        padding: 20px;
        background-image: url(../img/profile-bg.png?1480069110);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .profile-header .name {
        margin: 8px 0 0;
        font-size: 22px;
    }

    .profile-header .online-status {
        font-size: 12px;
        position: relative;
        top: -2px;
    }

        .profile-header .online-status:before {
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            display: inline-block;
            vertical-align: middle;
            content: '';
            width: 8px;
            height: 8px;
            margin-right: 3px;
        }

    .ct-double-octave:after, .ct-double-octave:before, .ct-golden-section:after, .ct-golden-section:before, .ct-major-eleventh:after, .ct-major-eleventh:before, .ct-major-second:after, .ct-major-second:before, .ct-major-seventh:after, .ct-major-seventh:before, .ct-major-sixth:after, .ct-major-sixth:before, .ct-major-tenth:after, .ct-major-tenth:before, .ct-major-third:after, .ct-major-third:before, .ct-major-twelfth:after, .ct-major-twelfth:before, .ct-minor-second:after, .ct-minor-second:before, .ct-minor-seventh:after, .ct-minor-seventh:before, .ct-minor-sixth:after, .ct-minor-third:after, .ct-minor-third:before, .ct-octave:after, .ct-octave:before, .ct-perfect-fifth:after, .ct-perfect-fifth:before, .ct-perfect-fourth:after, .ct-perfect-fourth:before, .ct-square:after, .ct-square:before, .hexagon:after, .hexagon:before, .profile-header .profile-stat .stat-item:after, ul.activity-timeline > li:after {
        content: "";
    }

    .profile-header .online-status.status-available:before {
        background-color: #41B314;
    }

    .profile-header .profile-stat {
        position: relative;
        background-color: #0AF;
    }

        .profile-header .profile-stat .stat-item {
            padding: 20px;
            position: relative;
        }

            .profile-header .profile-stat .stat-item:after {
                display: block;
                position: absolute;
                top: 0;
                right: 0;
                width: 1px;
                height: 100%;
                background-color: #3bf;
            }

            .profile-header .profile-stat .stat-item:last-child:after {
                display: none;
            }

            .profile-header .profile-stat .stat-item span {
                display: block;
            }

@media screen and (max-width:1023px) {
    .profile-header .profile-stat .stat-item:after {
        display: none;
    }
}

.profile-detail {
    padding-bottom: 30px;
}

.profile-info {
    padding: 0 20px;
    margin: 40px 0;
}

    .profile-info .heading {
        margin: 0 0 10px;
        font-weight: 600;
    }

    .profile-info ul > li {
        margin-bottom: 8px;
    }

/*------------------ Social ------------------*/
.social-icons {
    margin-bottom: 0;
}

    .social-icons > li {
        padding: 0 2px 5px;
    }

        .social-icons > li > a {
            display: inline-block;
            vertical-align: middle;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            width: 40px;
            height: 40px;
            line-height: 42px;
            text-align: center;
            background-color: #4d4d4d;
            color: #fff;
        }

            .social-icons > li > a i {
                font-size: 18px;
            }

            .social-icons > li > a:focus, .social-icons > li > a:hover {
                background-color: #404040;
            }

.profile-right .heading {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}
/*------------------ Error 404 - 500 ------------------*/
.error-box {
    text-align: center;
}

    .error-box .error-heading {
        color: #f25e5c;
        font-size: 120px;
        margin-top: 10%;
    }

    .error-box .error-sub-heading {
        text-transform: uppercase;
        color: #f25e5c;
        font-size: 40px;
        margin-bottom: 15px;
    }

    .error-box .error-sub-heading-2 {
        text-transform: uppercase;
        color: #333333;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .error-box .error-description {
        font-size: 13px;
    }

    .error-box .error-button {
        margin-top: 10px;
    }
/*------------------ Table ------------------*/
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.table-bordered {
    border: 1px solid #d7dde4;
}

table {
    border-collapse: collapse;
    background-color: transparent;
}

.table > thead > tr > th {
    color: #4f5f6f;
    border-bottom: 1px solid #d7dde4;
    outline: none !important;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #d7dde4;
    background: #f4f6fb;
    text-align: left;
}

.table > tbody > tr > td, .table > thead > tr > th {
    border-color: #d7dde4;
}

.table > tbody > tr > td, .table > thead > tr > th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #d7dde4;
}

.table.table-striped tbody tr:nth-of-type(even), .table .thead-default th {
    background: #f4f6fb;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: rgba(0,0,0,.05);
}

.table.table-striped tbody tr:nth-of-type(odd), .table .thead-default th {
    background: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.table.table-hover tbody tr:hover, .table th.active, .table tr.active {
    background: #eaedf6;
}

.table-active, .table-active > td, .table-active > th, .table-hover .table-active:hover, .table-hover .table-active:hover > td, .table-hover .table-active:hover > th, .table-hover tbody tr:hover {
    background-color: rgba(0,0,0,.075);
}

/*------------------ Pagination ------------------*/
.pagination {
    margin: 2px 0;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

    .pagination .page-item.disabled .page-link {
        background: #f2f4f8;
    }

.page-item.disabled .page-link {
    color: #636c72;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem;
}

.pagination .page-link {
    border-color: #e4e9f0;
    color: #74708d;
    outline: none;
    margin-bottom: .71rem;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #0275d8;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination .page-link:focus, .pagination .page-link:hover {
    background: #acb7bf;
    color: #fff;
    border-color: #acb7bf;
}

.page-link:focus, .page-link:hover {
    color: #014c8c;
    text-decoration: none;
    background-color: #eceeef;
    border-color: #ddd;
}

.pagination .page-item.active .page-link {
    background: #0190fe;
    border-color: #0190fe;
}

.page-item.active .page-link {
    z-index: 2;
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8;
}
/*------------------ Login ------------------*/
.login-brand {
    padding: 30px 0 0;
    text-align: center;
}

    .login-brand img {
        max-height: 55px;
        max-width: 320px;
        display: inline-block;
    }

.login_block_inner {
    min-width: 360px;
    max-width: 360px;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    border: 0px solid #d7dde4;
    -webkit-box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    margin: 0 0 15px;
}

.login_block_form {
    padding: 25px 30px;
}

.permit-text {
    padding: 5px 0px 5px 0px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 12px;
    background-color: #f4f6fb;
    border-top: 1px solid #d7dde4;
}

@media (max-width: 425px) {
    .login_block_inner {
        min-width: 300px;
        max-width: 300px;
    }

    .page-login.layout-full .vertical-align-middle {
        padding: 0;
    }
}

.page-login.layout-full footer {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.3);
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    line-height: normal;
    color: #ffffff;
}

/*------------------ Accordian ------------------*/
.accordian-common {
    background: #fff;
    margin-bottom: 10px;
}

.accordian-heading {
    padding: 8px 10px;
    background: #f4f6fb;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #d7dde4;
    border-left: 3px solid #2a487d;
    font-weight: 500;
}

.accordian-body {
    padding: 10px 10px;
    border-right: 1px solid #d7dde4;
    border-bottom: 1px solid #d7dde4;
    border-left: 1px solid #d7dde4;
    border-top: none;
}

.fonter-link {
    width: 18px;
    display: block;
    margin-top: 7px;
}

.fonter-t {
    font-size: 20px;
    font-weight: bold !important;
    margin: 5px;
}

.avatar-tp {
    float: right;
    padding-top: 16px;
    margin-left: 5px;
    margin-right: 5px;
}

.avatar-label {
    margin-right: 10px;
    margin-left: 10px;
}

.avatar-tp img {
}

@media screen and (max-width:380px) {
    .avatar-label {
        display: none;
    }
}
/*------------------ File Upload ------------------*/
.custom_file_upload {
    position: relative;
}

    .custom_file_upload input.file {
        border: 1px solid #e4eaec;
        border-right: 0;
        color: #888;
        padding: 6px 12px 6px;
        outline: none;
        width: 100%;
        border-bottom-left-radius: 2px;
        border-top-left-radius: 2px;
        height: 34px;
    }

.file_upload {
    display: inline-block;
    overflow: hidden;
    font-weight: normal;
    text-align: center;
    padding: 7px 12px 7px;
    line-height: 18px;
    cursor: pointer;
    vertical-align: top;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 2px 2px 0px;
    height: 34px;
}

    .file_upload input {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 999px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        background: red;
        cursor: inherit;
        display: block;
        z-index: 99;
    }

.custom_file_upload input.file[disabled] {
    background: #f9fbfd;
}

.onlyupload {
    padding: 1px 5px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    border-radius: 2px;
    height: auto;
    position: relative;
}

.filename-limit {
    width: 125px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    text-decoration: underline;
    vertical-align: middle;
}

/*--------- Progress Bar ---------------------*/
.progress {
    -webkit-box-shadow: none !important;
    background-color: transparent;
    box-shadow: none !important;
    height: auto;
    margin-bottom: 0px;
    overflow: hidden;
    border-radius: 5px;
    padding: 0px 0px;
}

.progress-bar {
    font-size: 8px;
    line-height: 10px;
    width: 100%;
}

.progress-bar {
    background-color: #11c26d;
}

/*------------------ Step ------------------*/
.step-group-ptw {
    padding: 10px 10px 10px 10px;
    margin: -10px -10px 10px;
    background-color: #f4f6fb;
    border-bottom: 1px solid #d7dde4;
    border-radius: 4px 4px 0 0;
}

.line {
    height: 2px;
    margin: 10px 0;
    font-size: 0;
    overflow: hidden;
}

.time_cmnt {
    font-size: 12px;
    color: #4390df;
}

.commentdiv {
    color: #000;
}

.commentdiv {
    padding: 10px 10px 0px;
    background: #fff;
    border: 1px solid #d5d7dd;
    font-size: 14px;
    font-weight: 600;
}

.commentdiv {
    margin-bottom: 2px;
}

.cu-pointer {
    cursor: pointer;
}

/*------------------ Datepicker ------------------*/
.datetimepicker {
    border-radius: 4px;
    direction: ltr;
    display: block;
    margin-top: 1px;
    user-select: none;
    width: 320px;
}

    .datetimepicker > div {
        display: none;
    }

    .datetimepicker .hour, .datetimepicker .minute {
        height: 34px;
        line-height: 34px;
        margin: 0;
        width: 25%;
    }

    .datetimepicker .table {
        margin: 0;
    }

        .datetimepicker .table td, .datetimepicker .table th {
            border: 0;
            border-radius: 4px;
            height: 20px;
            text-align: center;
        }

    .datetimepicker .minute:hover, .datetimepicker .hour:hover, .datetimepicker .day:hover, .datetimepicker .switch:hover, .datetimepicker .left:hover, .datetimepicker .right:hover {
        background: #eee;
        cursor: pointer;
    }

    .datetimepicker .disabled, .datetimepicker .disabled:hover {
        background: none;
        color: #ebebeb;
        cursor: default;
    }

    .datetimepicker .active, .datetimepicker .active:hover, .datetimepicker .active.disabled, .datetimepicker .active.disabled:hover {
        background-color: #04c;
        background-image: linear-gradient(to bottom, #08c, #04c);
        background-repeat: repeat-x;
        border-color: #04c #04c #002a80;
        color: #fff;
        filter: progid:dximagetransform.microsoft.gradient(startColorstr='#08c', endColorstr='#04c', GradientType=0);
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    }

    .datetimepicker .current, .datetimepicker .current:hover, .datetimepicker .current.disabled, .datetimepicker .current.disabled:hover {
        background-color: #d7dde4;
    }

    .datetimepicker .active:hover, .datetimepicker .active:hover:hover, .datetimepicker .active.disabled:hover, .datetimepicker .active.disabled:hover:hover, .datetimepicker .active:active, .datetimepicker .active:hover:active, .datetimepicker .active.disabled:active, .datetimepicker .active.disabled:hover:active, .datetimepicker .active.active, .datetimepicker .active:hover.active, .datetimepicker .active.disabled.active, .datetimepicker .active.disabled:hover.active, .datetimepicker .active.disabled, .datetimepicker .active:hover.disabled, .datetimepicker .active.disabled.disabled, .datetimepicker .active.disabled:hover.disabled, .datetimepicker td.active[disabled], .datetimepicker td.active:hover[disabled], .datetimepicker td.active.disabled[disabled], .datetimepicker td.active.disabled:hover[disabled], .datetimepicker span.active[disabled], .datetimepicker span.active:hover[disabled], .datetimepicker span.active.disabled[disabled], .datetimepicker span.active.disabled:hover[disabled] {
        background-color: #04c;
    }

    .datetimepicker span {
        border-radius: 4px;
        cursor: pointer;
        display: block;
        float: left;
        height: 54px;
        line-height: 54px;
        margin: 1%;
        width: 23%;
    }

        .datetimepicker span:hover {
            background: #eee;
        }

    .datetimepicker .past, .datetimepicker .future {
        color: #999;
    }

/*------------------ Common Calendar ------------------*/
.common-calendar .dropdown-menu {
    padding: 10px;
}

    .common-calendar .dropdown-menu > li i {
        margin-right: 0px;
    }

    .common-calendar .dropdown-menu > li table tbody {
    }

    .common-calendar .dropdown-menu > li table thead tr th button {
        margin: 0px;
    }

    .common-calendar .dropdown-menu > li table tbody tr td button {
        border: none;
    }

    .common-calendar .dropdown-menu table tbody tr td button {
        display: block;
        width: 100%;
    }

    .common-calendar .dropdown-menu > li table thead tr:first-child th:first-child {
        text-align: left;
    }

    .common-calendar .dropdown-menu > li table thead tr:first-child th:nth-child(2) {
        text-align: center;
    }

        .common-calendar .dropdown-menu > li table thead tr:first-child th:nth-child(2) button {
            width: 100%;
        }

    .common-calendar .dropdown-menu > li table thead tr:first-child th:last-child {
        text-align: right;
    }

.common-calendar button.btn-info,
.common-calendar button.btn-info .text-info {
    color: #fff !important;
}

    .common-calendar button.btn-info.active .text-info {
        color: #fff !important;
    }

/*------------------ Timepicker ------------------*/
timepicker-pop .dropdown-menu {
    padding: 0 10px;
}

    timepicker-pop .dropdown-menu > table tbody tr td input {
        width: 100% !important;
    }

/*------------------ Badge ------------------*/
div.clean_rounded-horizontal .badge {
    padding: 1px 2px 1px 2px;
    font-size: 10px;
    background-color: #2a487d;
    border-radius: 0px 0 0px 4px;
    font-weight: normal;
    position: absolute;
    right: 0;
    top: 0;
    letter-spacing: 0;
}

div.clean_rounded-horizontal > div.st_tabs ul li .badge {
    background: linear-gradient(to bottom, #2196f3, #2a487d);
}

/*div.clean_rounded-horizontal >div.st_tabs ul li .badge.yellow {
  background: linear-gradient(to top, #fccf04, #f4e207);
  color: #4f5f6f;
}

div.clean_rounded-horizontal >div.st_tabs ul li.st_li_active .badge.yellow {
  color: #fff;
}

div.clean_rounded-horizontal >div.st_tabs ul li .badge.orange {
  background: linear-gradient(to bottom, #ffa500, #c58812);
}

div.clean_rounded-horizontal >div.st_tabs ul li .badge.red {
  background: linear-gradient(to bottom, #f25e5c, #b93c36);
}
*/
div.clean_rounded-horizontal > div.st_tabs ul li.st_li_active .badge {
    background: rgba(0, 0, 0, 0.50);
}

.badge_red {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #d3140f;
    border-radius: 5px;
    font-weight: initial;
    vertical-align: inherit;
}

.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 1px solid #d7dde4;
}

.dropdown-menu > li > a > span {
    font-size: 16px;
    margin-right: 5px;
    margin-top: 0;
    display: inline-block;
    vertical-align: top;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx DASHBOARD START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.dashboard-lead-stats {
    padding: 0 10px;
    margin-bottom: 0px;
}

    .dashboard-lead-stats .panel {
        margin-bottom: 10px;
    }

    .dashboard-lead-stats .lead-stats {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        overflow: hidden;
        color: #333333;
        text-decoration: none;
    }

        .dashboard-lead-stats .lead-stats:hover {
            color: #2a487d;
            text-decoration: none;
        }

        .dashboard-lead-stats .lead-stats .stats-number {
            font-size: 24px;
            line-height: 24px;
            font-weight: bold;
            display: inline-block;
            font-weight: 500;
        }

        .dashboard-lead-stats .lead-stats .stats-icon {
            position: absolute;
            right: 0;
            top: 0;
        }

            .dashboard-lead-stats .lead-stats .stats-icon i {
                font-size: 28px;
                color: rgba(79, 95, 111, 0.5);
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
            }

        .dashboard-lead-stats .lead-stats:hover .stats-icon i, .dashboard-lead-stats .lead-stats:focus .stats-icon i {
            color: #2a487d;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        .dashboard-lead-stats .lead-stats h5 {
            font-size: 12px;
            margin: 5px 0 0;
            padding: 0;
            line-height: 16px;
            font-weight: 400;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .dashboard-lead-stats .col-lg-2, .dashboard-lead-stats .col-lg-12 {
        padding-left: 5px;
        padding-right: 5px;
    }
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx DASHBOARD END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SELECT MAJOR AREA MAP LOCATION START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*.select-major-area-map-page {
}

    .select-major-area-map-page .choose-major-area-map {
    }

        .select-major-area-map-page .choose-major-area-map img {
            margin-left: 5px;
            height: 30px;
            width: 30px;
            cursor: pointer;
            border: 1px solid #d7dde4;
        }

    .select-major-area-map-page .select-major-area-map-location {
    }

        .select-major-area-map-page .select-major-area-map-location .button {
        }

        .select-major-area-map-page .select-major-area-map-location .major-area-map {
            overflow: auto;
            display: none;
        }

            .select-major-area-map-page .select-major-area-map-location .major-area-map.open {
                display: block;
                border: 1px solid #d7dde4;
            }

            .select-major-area-map-page .select-major-area-map-location .major-area-map .map {
                background-repeat: no-repeat;
                background-size: 1600px 800px;
                width: 1600px;
                height: 800px;
                margin: 0 auto;
                position: relative;
            }*/

/*------------------ Image Area Select Plugin ------------------*/
/*.imgareaselect-border1 {
    background: url(../images/border-anim-v.gif) repeat-y left top;
}

.imgareaselect-border2 {
    background: url(../images/border-anim-h.gif) repeat-x left top;
}

.imgareaselect-border3 {
    background: url(../images/border-anim-v.gif) repeat-y right top;
}

.imgareaselect-border4 {
    background: url(../images/border-anim-h.gif) repeat-x left bottom;
}

.imgareaselect-border1, .imgareaselect-border2, .imgareaselect-border3, .imgareaselect-border4 {
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.imgareaselect-handle {
    background-color: #fff;
    border: solid 1px #000;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.imgareaselect-outer {
    background-color: #f25e5c;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.imgareaselect-selection {
}*/
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SELECT MAJOR AREA MAP LOCATION END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx UNIT AREA MAP START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.unit-area-map {
}

    .unit-area-map .unit-map {
        overflow: auto;
        position: relative;
    }

        .unit-area-map .unit-map .map {
            width: 1600px;
            height: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 0;
        }

            .unit-area-map .unit-map .map .map-img {
                position: absolute;
                width: 1600px;
                height: 800px;
                z-index: 0;
            }

            .unit-area-map .unit-map .map .map-pins {
                position: absolute;
                width: 1600px;
                height: 800px;
                z-index: 1;
            }
    /* LEGENDS */
    .unit-area-map .filter {
        padding: 10px 10px 0 10px;
        background-color: #f4f6fb;
        border-bottom: 1px solid #d7dde4;
        border-radius: 4px 4px 0 0;
    }

        .unit-area-map .filter .legend {
        }

            .unit-area-map .filter .legend h5 {
                font-size: 14px;
                padding: 0 0 10px;
                margin: 0;
            }

            .unit-area-map .filter .legend span {
                display: inline-block;
                text-align: center;
                vertical-align: top;
                padding: 0 25px;
            }

                .unit-area-map .filter .legend span img {
                    display: inline-block;
                    margin: 0 5px 0 0;
                }
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx UNIT AREA MAP END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SELECT AREA MAP START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.select-area-map {
}

    .select-area-map .area-map {
        overflow: auto;
        position: relative;
    }

        .select-area-map .area-map .map {
            width: 1600px;
            height: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 0;
        }

            .select-area-map .area-map .map .area-map-img {
                width: 1600px;
                height: 800px;
            }
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SELECT AREA MAP END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx VIEW AREA MAP START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.view-area-map {
}

    .view-area-map .area-map {
        overflow: auto;
        position: relative;
    }

        .view-area-map .area-map .map {
            width: 1600px;
            height: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 0;
        }

            .view-area-map .area-map .map .area-map-img {
                width: 1600px;
                height: 800px;
            }
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx VIEW AREA MAP END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*------------------ Popover ------------------*/
/*div.popover {
    font-family: inherit;
    font-size: 12px;
    max-width: 450px !important;
    width: 450px !important;
    word-break: break-all;
}*/

.popover-content {
    font-size: 12px;
    line-height: 1.5;
}

/*------------------ RADIO / CHECKBOX / TOGGLE SWITCH ------------------*/
.radio, .checkbox {
    margin-top: 0px;
    margin-bottom: 0px;
}

    .radio input[type=radio], .checkbox input[type=checkbox] {
        margin: 4px 0 0;
        margin-top: 1px \9;
        line-height: normal;
    }

    .radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
        position: absolute;
        margin-top: 4px \9;
        margin-left: -20px;
    }

    .radio input[type=radio], .checkbox input[type=checkbox] {
        /*	display: none;*/
        opacity: 0;
    }

.radio, .checkbox {
    padding-left: 20px;
}

    .radio label, .checkbox label {
        display: inline-block;
        position: relative;
        padding-left: 5px;
        min-height: 22px;
        margin-bottom: 0;
        cursor: pointer;
        line-height: 22px;
        color: #333333;
    }

        .radio label:before, .checkbox label:before {
            font-family: FontAwesome;
            font-size: 21px;
            display: inline-block;
            vertical-align: middle;
            /*letter-spacing: 10px;*/
            color: #c8d0da;
            position: absolute;
            left: 0;
            top: 0;
            line-height: 19px;
            margin-left: -20px;
            height: 20px;
            width: 20px;
            overflow: hidden;
        }

    .radio input[type="radio"]:checked + label:before, .checkbox input[type="checkbox"]:checked + label:before {
        color: #2a487d;
    }

    .radio input[type="radio"]:disabled + label:before, .checkbox input[type="checkbox"]:disabled + label:before {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .radio input[type="radio"]:checked:disabled + label:before, .checkbox input[type="checkbox"]:checked:disabled + label:before {
        color: #2a487d;
    }

    .checkbox label:before {
        content: "\f0c8";
    }

    .checkbox input[type="checkbox"]:checked + label:before {
        content: "\f14a";
    }

    .radio label:before {
        content: "\f111";
    }

    .radio input[type="radio"]:checked + label:before {
        content: "\f192";
    }

    .radio input[type="radio"]:focus + label::before, .checkbox input[type="checkbox"]:focus + label::before {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .checkbox.indeterminate {
    }

        .checkbox.indeterminate input[type="checkbox"] + label:before {
            content: "\f146";
        }

        .checkbox.indeterminate input[type="checkbox"] + label:before {
            color: #2a487d;
        }

/*
Checkbox Group -----*/
.checkbox-group {
    display: inline-block;
}

    .checkbox-group .checkbox {
        padding: 5px 10px 2px 30px;
        border: 1px solid #d7dde4;
    }

    .checkbox-group .checkbox-inline + .checkbox-inline {
        margin-left: 0;
    }

/*
Toggle Switch -----*/
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 16px;
    vertical-align: middle;
    margin: 0 5px;
}

    .switch input {
        opacity: 0;
    }

    .switch label {
        position: absolute;
        cursor: pointer;
        margin-bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #d7dde4;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 75px;
    }

        .switch label:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 0px;
            bottom: -3px;
            background-color: #ffffff;
            -webkit-transition: .4s;
            transition: .4s;
            box-shadow: 0 1px 5px rgba(79, 95, 112, 0.5);
            -webkit-box-shadow: 0 1px 5px rgba(79, 95, 112, 0.5);
            border: 1px solid #d8dee5;
            border-radius: 50%;
        }

    .switch input:checked + label {
        background-color: #d7dde4;
    }

    .switch inputfocus + label {
        box-shadow: 0 0 1px #7ca900;
    }

    .switch input:checked + label:before {
        -webkit-transform: translateX(22px);
        -ms-transform: translateX(22px);
        transform: translateX(22px);
        box-shadow: 0 0px 0px 4px rgba(123, 168, 0, 0.2);
        -webkit-box-shadow: 0 0px 0px 4px rgba(123, 168, 0, 0.2);
        background-color: #2a487d;
        border: 1px solid #2a487d;
    }

    .switch input[type="checkbox"]:focus + label::before {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

/*------------------ Pagination ------------------*/
.pagination > li > a, .pagination > li > span {
    color: #2a487d;
    border: 1px solid #d7dde4;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    color: #fff;
    background-color: #2a487d;
    border-color: #2a487d;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    color: #2a487d;
    background-color: #f4f6fb;
    border-color: #d7dde4;
}

/*------------------ Modal ------------------*/
.modal-content {
    border: none;
    box-shadow: 0 5px 15px rgba(33,33,33,.5);
    -webkit-box-shadow: 0 5px 15px rgba(33,33,33,.5);
}

.modal-header {
    padding: 10px 15px;
    border-bottom: none;
}

.modal-header {
    background-color: #2a487d;
    border-radius: 4px 4px 0 0;
}

    .modal-header .close {
        margin-top: 1px;
    }

    .modal-header * {
        color: #ffffff;
    }

    .modal-header .close {
        opacity: 0.8;
        color: #fff;
    }

.modal-body {
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    border-top: none;
}

.modal-center {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    height: 100%;
    margin: 0 auto;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: center;
    align-content: center;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SEARCH PANEL START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.search-panel {
}

    .search-panel .search-panel-buttons {
    }

        .search-panel .search-panel-buttons .viewfilterLink {
            padding: 0 10px;
        }

@media (min-width: 992px) {
    .search-panel .search-panel-buttons {
        padding-top: 23px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx SEARCH PANEL END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*------------------ Multi Select Dropdown ------------------*/
.ml-select {
    position: absolute;
    z-index: 9999;
    right: 0px;
    top: 29px;
    overflow: auto;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #d7dde4;
    box-shadow: 0 1px 3px rgba(33,33,33,.2);
    -webkit-box-shadow: 0 1px 3px rgba(33,33,33,.2);
}

    .ml-select .dropdown-menu, .ml-select .dropdown-menu-form {
        display: block !important;
    }

    .ml-select .dropdown-toggle {
        display: none !important;
    }

    .ml-select .dropdown-menu {
        position: relative;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        overflow: auto !important;
        width: 100%;
        max-height: 250px;
    }

    .ml-select .BtnApply {
        padding: 10px;
    }

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx RESPONSIVE TABLE CARD START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.panel.responsive-table-card-list {
}

.responsive-card-table-overflow {
    overflow: auto;
}

table.table.responsive-card-table {
}

    table.table.responsive-card-table tbody > tr > td.no-records {
        padding-left: 10px;
        text-align: center;
    }

@media screen and (max-width: 600px) {
    .responsive-table-card-list.panel {
        margin-bottom: 20px;
        background-color: transparent;
        border: 1px solid transparent;
        border-radius: 4px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .responsive-table-card-list.panel .panel-body {
            padding: 0;
        }

    .responsive-card-table-overflow {
        overflow: inherit;
        height: auto !important;
    }

    table.table.responsive-card-table {
        border: 0;
    }

        table.table.responsive-card-table thead {
            display: none;
        }

        table.table.responsive-card-table tbody > tr {
            background: #FFF;
            padding: 10px 0;
            margin-bottom: 5px;
            display: block;
            border: 1px solid #d7dde4;
            box-shadow: 0 1px 5px rgba(79, 95, 112, 0.3);
            -webkit-box-shadow: 0 1px 5px rgba(79, 95, 112, 0.3);
            border-radius: 4px;
        }

            table.table.responsive-card-table tbody > tr > td, table.table.responsive-card-table tbody > tr > td:first-child, table.table.responsive-card-table tbody > tr > td:last-child {
                display: block !important;
                text-align: left;
                border: 0;
                padding: 3px 10px 3px 40%;
                position: relative;
                white-space: normal !important;
                word-break: break-all !important;
            }

                table.table.responsive-card-table tbody > tr > td:before {
                    content: attr(data-label);
                    font-weight: 500;
                    display: table-cell;
                    height: 100%;
                    left: 15px;
                    margin: auto;
                    position: absolute;
                    vertical-align: middle;
                    white-space: nowrap;
                    width: 40%;
                }

                table.table.responsive-card-table tbody > tr > td.sm-hide {
                    display: none !important;
                }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx RESPONSIVE TABLE CARD END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Type of Permit START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.type-of-permit {
}

    .type-of-permit .type {
        display: block;
        width: 0;
        border-top: 10px solid;
        border-right: 10px solid transparent;
        border-bottom: 0 solid transparent;
        border-left: 0 solid transparent;
        margin: -6px 0 -4px -6px;
    }

    .type-of-permit > a,
    .type-of-permit > label {
        display: block;
        margin: -5px 0 0 0;
    }

.type-of-permit-legend {
}

    .type-of-permit-legend ul {
        margin: 0;
        padding: 0;
    }

    .type-of-permit-legend li {
        position: relative;
        display: inline-block;
        padding: 10px 10px 0;
    }

        .type-of-permit-legend li label {
            color: #999;
        }

td.action select {
    height: 31px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Type of Permit End xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx PROGRESS STEPS START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.progress-steps > ul.step-anchor {
    border-radius: 4px;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    height: 14px;
    padding-right: 10px;
}

.progress-steps > span {
    font-size: 11px;
    margin-right: 3px;
    color: #64798d;
    background: #f0f3f5;
    padding: 0 3px 0 3px;
    width: auto;
    text-align: center;
}

.progress-steps > ul.step-anchor li + li:before {
    padding: 0;
}

.progress-steps > ul.step-anchor > li {
    position: relative;
    display: block;
    float: left;
}

    .progress-steps > ul.step-anchor > li > a {
        color: #ffffff;
        text-decoration: none;
        padding: 0 0 0 15px;
        position: relative;
        display: block;
        float: left;
        border-radius: 0;
        outline-style: none;
        background: #a7afb7;
        height: 14px;
        font-size: 11px;
        font-weight: 400;
    }

        .progress-steps > ul.step-anchor > li > a:after {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #a7afb7;
            position: absolute;
            top: 50%;
            margin-top: -10px;
            left: 100%;
            z-index: 2;
        }

        .progress-steps > ul.step-anchor > li > a:before {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #ffffff;
            position: absolute;
            top: 50%;
            margin-top: -10px;
            margin-left: 1px;
            left: 100%;
            z-index: 1;
        }

    .progress-steps > ul.step-anchor > li:first-child > a {
        padding-left: 6px;
    }

    .progress-steps > ul.step-anchor > li.active > a {
        border-color: #4f5f6f !important;
        color: #fff !important;
        background: #4f5f6f !important;
    }

        .progress-steps > ul.step-anchor > li.active > a:after {
            border-left: 10px solid #4f5f6f !important;
        }

    .progress-steps > ul.step-anchor > li.done > a {
        border-color: #11c26d !important;
        color: #fff !important;
        background: #11c26d !important;
    }

        .progress-steps > ul.step-anchor > li.done > a:after {
            border-left: 10px solid #11c26d;
        }

    .progress-steps > ul.step-anchor > li.danger > a {
        border-color: #f25e5c !important;
        color: #fff !important;
        background: #f25e5c !important;
    }

        .progress-steps > ul.step-anchor > li.danger > a:after {
            border-left: 10px solid #f25e5c;
        }

    .progress-steps > ul.step-anchor > li.disabled > a, .progress-steps > ul.step-anchor > li.disabled > a:hover {
        color: #eee !important;
    }
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx PROGRESS STEPS END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/


/*------------------ Table Tree ------------------*/
.table-tree {
}

    .table-tree .table > tbody + tbody {
        border-top: 1px solid #cecece;
    }

    .table-tree .table > thead > tr > th {
        white-space: nowrap;
    }

    .table-tree .table > tbody > tr > td {
        padding: 6px 10px;
    }

    .table-tree .table tbody > tr > td:first-child,
    .table-tree .table table > tbody > tr > td:first-child {
        width: 30px;
    }

    .table-tree .table table table > tbody > tr > td:first-child {
        width: auto;
    }

    .table-tree .table > tbody > tr > td.innerEmptyCell {
        border-right-color: transparent;
    }

    .table-tree .table > tbody > tr > td.innerTableCell {
        border-left-color: transparent;
        padding: 15px 15px 15px 0;
    }

    .table-tree .table-tree-expand-btn.btn-default {
    }

    .table-tree .table-tree-expand-btn.btn-default {
        color: #FFFFFF;
        background-color: #f3912e;
        border-color: #f3912e;
        height: 20px;
        width: 20px;
        padding: 0;
        position: relative;
    }

    .table-tree .table-tree-collapse-ico.btn-default {
        color: #f3912e;
        background-color: #ffffff;
        border-color: #f3912e;
    }

.table-tree-expand-btn.table-tree-expand-ico:after {
    content: "\f105";
    text-align: center;
    font-family: FontAwesome;
    position: absolute;
    left: 7px;
    top: -1px;
    font-weight: bold;
}

.table-tree-expand-btn.table-tree-collapse-ico:after {
    content: "\f107";
    text-align: center;
    font-family: FontAwesome;
    position: absolute;
    left: 5px;
    top: 0px;
    font-weight: bold;
}

.table-tree table table .table-tree-expand-btn.btn-default {
    color: #FFFFFF;
    background-color: #666666;
    border-color: #666666;
}

.table-tree table table .table-tree-collapse-ico.btn-default {
    color: #666666;
    background-color: #ffffff;
    border-color: #cccccc;
}

/*------------------ Comments ------------------*/
.comments {
}

    .comments .comment-item {
        padding: 10px 10px;
        border: 1px solid #d7dde4;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        border-left: 3px solid #2a487d;
    }

        .comments .comment-item + .comment-item {
            margin-top: 10px;
        }

        .comments .comment-item .comment-title {
        }

            .comments .comment-item .comment-title label {
                margin-bottom: 0;
                color: #2a487d;
            }

            .comments .comment-item .comment-title .badge {
                background-color: #4f5f70;
                font-weight: 400;
            }

            .comments .comment-item .comment-title .author {
                color: #4f5f70;
                font-weight: 500;
            }

            .comments .comment-item .comment-title .date {
                font-weight: 500;
            }

        .comments .comment-item .comment-body {
            margin: 5px 0 0 0;
        }

        .comments .comment-item p {
            margin: 10px 0 0 0;
        }

/*------------------ Sections and Sub-Sections ------------------*/
.sub-section {
    background-color: #f4f6fb;
    border: 1px solid #d7dde4;
    border-radius: 4px;
}

    .sub-section .sub-section-heading {
        padding: 15px 15px;
    }

        .sub-section .sub-section-heading i {
            margin-right: 5px;
        }

        .sub-section .sub-section-heading h2 {
            font-size: 16px;
            margin: 0;
            padding: 0;
            font-weight: 400;
            text-transform: uppercase;
        }

    .sub-section .sub-section-body {
        padding: 15px 15px;
    }

    .sub-section .sub-section-heading + .sub-section-body {
        padding-top: 0;
    }

/*------------------ Organization Chart ------------------*/
.chart {
    border: 1px solid #d7dde4;
}

.chart-title {
    padding: 6px 10px;
}

.chart-body {
    padding: 10px;
}

.orgChart td span {
    display: block;
    vertical-align: top;
}

    .orgChart td span span {
        display: inline;
        vertical-align: top;
    }

.orgChart td > span > label {
    font-size: 16px;
    margin: 0 5px 0 0;
    line-height: normal;
    vertical-align: top;
}

/*------------------ Helper Classes ------------------*/
.no-padding {
    padding: 0 !important;
}

.mtop5 {
    margin-top: 5px;
}

.mb20px {
    margin-bottom: 20px;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}

.p-0 {
    padding: 0px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-l-0 {
    padding-left: 0px !important;
}

.p-r-0 {
    padding-right: 0px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-t-10 {
    padding-top: 10px !important;
}

.p-b-10 {
    padding-bottom: 10px !important;
}

.p-t-b-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.p-b-115 {
    padding-top: 115px !important;
}

.p-l-r-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.m-0 {
    margin: 0px !important;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-r-10 {
    margin-right: 10px !important;
}

.m-r-15 {
    margin-right: 15px !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

.m-l-10 {
    margin-left: 10px !important;
}

.m-l-15 {
    margin-left: 15px !important;
}

.m-l-20 {
    margin-left: 20px !important;
}

.m-t-2 {
    margin-top: 2px !important;
}

.m-t-5 {
    margin-top: 5px !important;
}

.m-t-0 {
    margin-top: 0px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-t-25 {
    margin-top: 25px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-t-40 {
    margin-top: 40px !important;
}

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

.m-b-25 {
    margin-bottom: 25px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.w-md {
    min-width: 110px;
}

/*------------------ Filter All ------------------*/
.filter-all {
    background: #f4f6fb;
    border: 1px solid #d7dde4;
    padding: 5px;
}

/*------------------ Daterange Picker ------------------*/
.datepicker {
    padding: 8px;
}

    .datepicker th {
        font-size: 14px !important;
    }

    .datepicker table tr td.today,
    .datepicker table tr td.today:hover,
    .datepicker table tr td.today.disabled,
    .datepicker table tr td.today.disabled:hover,
    .datepicker table tr td.selected,
    .datepicker table tr td.selected:hover,
    .datepicker table tr td.selected.disabled,
    .datepicker table tr td.selected.disabled:hover,
    .datepicker table tr td span.active,
    .datepicker table tr td span.active:hover,
    .datepicker table tr td span.active.disabled,
    .datepicker table tr td span.active.disabled:hover {
        background-image: none;
    }

        .datepicker table tr td span.active:hover,
        .datepicker table tr td span.active:hover:hover,
        .datepicker table tr td span.active.disabled:hover,
        .datepicker table tr td span.active.disabled:hover:hover,
        .datepicker table tr td span.active:active,
        .datepicker table tr td span.active:hover:active,
        .datepicker table tr td span.active.disabled:active,
        .datepicker table tr td span.active.disabled:hover:active,
        .datepicker table tr td span.active.active,
        .datepicker table tr td span.active:hover.active,
        .datepicker table tr td span.active.disabled.active,
        .datepicker table tr td span.active.disabled:hover.active,
        .datepicker table tr td span.active.disabled,
        .datepicker table tr td span.active:hover.disabled,
        .datepicker table tr td span.active.disabled.disabled,
        .datepicker table tr td span.active.disabled:hover.disabled,
        .datepicker table tr td span.active[disabled],
        .datepicker table tr td span.active:hover[disabled],
        .datepicker table tr td span.active.disabled[disabled],
        .datepicker table tr td span.active.disabled:hover[disabled] {
            background-color: #71b6f9;
        }

    .datepicker table tr td.active,
    .datepicker table tr td.active:hover,
    .datepicker table tr td.active.disabled,
    .datepicker table tr td.active.disabled:hover {
        background-color: #71b6f9 !important;
        background-image: none;
        box-shadow: none;
        text-shadow: none;
    }

    .datepicker thead tr:first-child th:hover,
    .datepicker tfoot tr th:hover {
        background-color: #f4f6fb;
    }

.daterangepicker .input-mini.active {
    border: 1px solid #AAAAAA;
}

.daterangepicker .ranges li {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    background-clip: padding-box;
    color: #435966;
    font-weight: 600;
    font-size: 12px;
    background: #f4f6fb;
    border: 1px solid #d7dde4;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    border: 1px solid #e3e3e3;
    padding: 2px;
    width: 60px;
}

.daterangepicker .ranges li.active,
.daterangepicker .ranges li:hover {
    background-color: #2a487d;
    border: 1px solid #2a487d;
}

.daterangepicker td.in-range {
    background: #f4f6fb;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background: #d7dde4;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #2a487d;
    border-color: #2a487d;
}

/* Page Sections 
-----------------------*/
.section-title {
    display: block;
    margin: 0 0 10px 0;
    border-bottom: 2px solid #2a487d;
}

    .section-title h3 {
        color: #333333;
        font-size: 16px;
        font-weight: normal;
        margin: 0 0 0 0;
        padding-bottom: 5px;
        display: inline-block;
    }

        .section-title h3 > span {
            display: inline-block;
        }

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #e4eaec;
}

/*---------Multi-select--------------*/
.dropdown-multiselect {
    width: 100%;
}

    .dropdown-multiselect .btn-default-multi {
        text-align: left;
        display: block;
        width: 100%;
        height: 34px;
        padding: 6px 12px;
        font-size: 12px;
        line-height: 1.42857143;
        color: #76838f;
        background-color: #fff;
        border: 1px solid #d7dde4;
        border-radius: 3px;
        -webkit-box-shadow: none;
        box-shadow: none;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .dropdown-multiselect .btn-default-multi:focus {
            background-color: #FFFFFF;
            border: 1px solid #71B6F9;
            -webkit-box-shadow: none;
            box-shadow: none;
            outline: 0 !important;
            color: #333333;
        }

.dropdown-multiselect-sm .dropdown-multiselect .btn-default-multi {
    height: 30px;
    padding: 5px 8px;
}

.dropdown-multiselect .dropdown-menu {
    min-width: 210px;
}

    .dropdown-multiselect .dropdown-menu .dropdown-header {
        padding: 0px 10px;
    }

    .dropdown-multiselect .dropdown-menu > li > a {
        white-space: normal;
        color: #333333;
        font-weight: 500;
        padding: 2px 10px;
    }

        .dropdown-multiselect .dropdown-menu > li > a:hover {
            text-decoration: none;
            color: #000000;
            background-color: #f4f6fb;
        }

        .dropdown-multiselect .dropdown-menu > li > a .checkbox-custom, .dropdown-multiselect .dropdown-menu > li > a .radio-custom {
            margin-top: 0px;
            margin-bottom: 0px;
        }

/* .dropdown-multiselect .dropdown-menu > li .dropdown-header {
  padding: 10px 20px;
  margin-bottom: 0;
  font-size: inherit;
  color: inherit;
} */

.dropdown-multiselect .btn-default-multi .caret {
    /*display: none;*/
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -2px;
}

.dropdown-multiselect .dropdown-toggle:after {
    margin-right: 0;
    margin-left: .3em;
    right: 15px;
    position: absolute;
    top: 15px;
}

.single-checkbox .checkbox, .single-checkbox .radio {
    position: relative;
    display: block;
    margin-top: 0px;
    margin-bottom: -8px;
}

    .single-checkbox .checkbox.checkbox-single label {
        height: 12px;
    }

    .single-checkbox .checkbox label {
        padding-left: 0;
    }

.custom-multiselect-site {
    font-size: 13px;
    line-height: normal !important;
    padding-top: 2px;
}

    .custom-multiselect-site > span {
        display: block;
        font-size: 11px;
        color: #76838f;
    }

/*----------------------Angucomplete Dropdown-------------------------*/
.angucomplete-dropdown {
    font-size: 13px;
    border: 1px solid #d7dde4;
    box-shadow: 0 1px 3px rgba(33,33,33,.2);
    -webkit-box-shadow: 0 1px 3px rgba(33,33,33,.2);
    border-radius: 4px;
}

.angucomplete-row {
    color: inherit;
}

.angucomplete-selected-row {
    color: #fff;
}

/*----------------------NEW-MENU-------------------------*/

.table > tbody + tbody {
    border-top: 1px solid #ddd;
}


/*--------- Max Character Limit ---------------------*/
.textarea-char-limit {
    float: right;
    padding: 1px 5px;
    font-size: 11px;
    background: #f4f6fb;
    border: 1px solid #d7dde4;
    border-radius: 0 0 3px 3px;
    margin-top: -1px;
}

/*--------- Risk Assessment Page ---------------------*/
.risk-ranking {
    text-align: center;
}

    .risk-ranking label {
        font-size: 14px;
        font-weight: 500;
        display: inline-block;
        padding: 0 0 5px;
    }

/*--------- Page Profile ---------------------*/
.avatar-photograph {
    border: 1px solid #d7dde4;
    padding: 3px;
    text-align: center;
    display: inline-block;
    border-radius: 2px;
    vertical-align: top;
    position: relative;
}

/*--------- Page Application Configuration ---------------------*/
.application-conf-logo {
    border: 1px solid #d7dde4;
    text-align: center;
    display: inline-block;
    border-radius: 2px;
    vertical-align: top;
    position: relative;
    padding: 10px;
}

/*--------- Signatures ---------------------*/
.upload-signature {
    border: 1px solid #d7dde4;
    padding: 3px;
    text-align: center;
    display: inline-block;
    border-radius: 2px;
    vertical-align: top;
    position: relative;
}

    .upload-signature .delete-signature {
        position: absolute;
        top: 2px;
        right: 2px;
        cursor: pointer;
    }

/*.signature-img {
  border: 4px double #d7dde4;
  text-align: center;
  display: inline-block;
  border-radius: 2px;
  vertical-align:top;
}
.signature-img img {
  height:25px;
  width: 53px;
}*/

/*--------- Project Logo ---------------------*/
.upload-project-logo {
    border: 1px solid #d7dde4;
    padding: 3px;
    text-align: center;
    display: inline-block;
    border-radius: 2px;
    vertical-align: top;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx UI GRID START xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.ui-grid {
    border: 1px solid #d7dde4;
}

.ui-grid-header {
    border-bottom: 1px solid #d7dde4;
}

.ui-grid-top-panel {
    font-weight: 500;
    background-color: #f4f6fb;
}

.ui-grid-header-cell {
    border-color: #d7dde4;
    color: #4f5f6f;
}

.ui-grid-canvas {
    padding-top: 0px;
}

.ui-grid-cell {
    border-color: #d7dde4;
}

.ui-grid-cell-contents {
    padding: 6px;
}

.ui-grid-row:nth-child(odd) .ui-grid-cell {
    background-color: #ffffff;
}

.ui-grid-row:nth-child(even) .ui-grid-cell {
    background-color: #f4f6fb;
}

.ui-grid-row:last-child .ui-grid-cell {
    border-bottom-color: #d7dde4;
}

.ui-grid-row .ui-grid-cell {
    border-bottom: 1px solid #d7dde4;
}

.ui-grid-row:hover > [ui-grid-row] > .ui-grid-cell:hover .ui-grid-cell,
.ui-grid-row:nth-child(odd):hover .ui-grid-cell,
.ui-grid-row:nth-child(even):hover .ui-grid-cell {
    background-color: #eaedf6;
}

/* UI Grid Menu */
.ui-grid-menu-button {
    background: #f4f6fb;
    border-left: 1px solid #d7dde4;
    border-bottom: 1px solid #d7dde4;
    height: 30px;
    color: #2a487d;
}

    .ui-grid-menu-button .ui-grid-icon-container {
        margin-top: 7px;
    }

.ui-grid-menu .ui-grid-menu-inner {
    border: 1px solid #d7dde4;
}

    .ui-grid-menu .ui-grid-menu-inner ul li .ui-grid-menu-item {
        color: inherit;
    }

    .ui-grid-menu .ui-grid-menu-inner ul li:not(:last-child) > .ui-grid-menu-item {
        border-bottom: 1px solid #d7dde4;
    }

    .ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item:hover,
    .ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item:focus {
        background-color: #eaedf6;
    }

/* UI Grid Expandable */
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child {
    border-right-color: #d7dde4;
}

.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
    border-bottom-color: #d7dde4;
}

.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell:last-child {
    border-right-color: #d7dde4;
}

.ui-grid-expandable-buttons-cell i {
    color: #2a487d;
}

.scrollFiller {
    border: 0px solid #d7dde4;
    border-bottom: 1px solid #d7dde4;
}

.expandableRow .ui-grid-row:nth-child(odd) .ui-grid-cell {
    background-color: #ffffff;
}

.expandableRow .ui-grid-row:nth-child(even) .ui-grid-cell {
    background-color: #f4f6fb;
}

.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-header-cell:first-child {
    border-left-color: #d7dde4;
}

.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-cell:first-child {
    border-left-color: #d7dde4;
}

/* UI Grid Pager */
.ui-grid-pager-control button {
    background: #f4f6fb;
    border: 1px solid #d7dde4;
    border-radius: 2px;
    color: #eee;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .ui-grid-pager-control button:hover {
        border-color: #d7dde4;
    }

    .ui-grid-pager-control button:focus {
        border-color: #d7dde4;
    }

    .ui-grid-pager-control button:active {
        border-color: #d7dde4;
    }

        .ui-grid-pager-control button:active:hover,
        .ui-grid-pager-control button:active:focus {
            background-color: #eaedf6;
            border-color: #d7dde4;
        }

    .ui-grid-pager-control button:hover,
    .ui-grid-pager-control button:focus,
    .ui-grid-pager-control button:active {
        color: #eee;
        background: #eaedf6;
    }

    .ui-grid-pager-control button[disabled]:hover,
    .ui-grid-pager-control button[disabled]:focus {
        background-color: #f3f3f3;
        border-color: #d7dde4;
    }

.ui-grid-pager-control input {
    background: #fff;
    border: 1px solid #d7dde4;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
}

    .ui-grid-pager-control input:focus {
        border-color: #66afe9;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .ui-grid-pager-control input::-moz-placeholder,
    .ui-grid-pager-control input:-ms-input-placeholder,
    .ui-grid-pager-control input::-webkit-input-placeholder {
        color: #999;
    }

    .ui-grid-pager-control input[disabled],
    .ui-grid-pager-control input[readonly] {
        background-color: #eeeeee;
    }

.ui-grid-pager-control .first-bar {
    border-left-color: #2a487d;
}

.ui-grid-pager-control .first-bar-rtl {
    border-left-color: #2a487d;
}

.ui-grid-pager-control .first-triangle {
    border-color: transparent #2a487d transparent transparent;
}

.ui-grid-pager-control .last-triangle {
    border-color: transparent transparent transparent #2a487d;
}

.ui-grid-pager-control .last-bar {
    border-left-color: #2a487d;
}

.ui-grid-pager-control .last-bar-rtl {
    border-left-color: #2a487d;
}

.ui-grid-pager-row-count-picker select {
    color: #333333;
    background: #fff;
    border: 1px solid #d7dde4;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
}

    .ui-grid-pager-row-count-picker select:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .ui-grid-pager-row-count-picker select::-moz-placeholder,
    .ui-grid-pager-row-count-picker select:-ms-input-placeholder,
    .ui-grid-pager-row-count-picker select::-webkit-input-placeholder {
        color: #999;
    }

    .ui-grid-pager-row-count-picker select[disabled],
    .ui-grid-pager-row-count-picker select[readonly] {
        background-color: #eeeeee;
    }

/*CUSTOM UI Grid Auto Height Fix */
.ui-grid-autoh .ui-grid-row,
.ui-grid-autoh .ui-grid-cell {
    height: auto !important;
}

    .ui-grid-autoh .ui-grid-row div[role=row] {
        display: flex;
        align-content: stretch;
    }

    .ui-grid-autoh .ui-grid-row,
    .ui-grid-autoh .ui-grid-cell .input-group {
        z-index: 0;
    }

.ui-grid-autoh .ui-grid-viewport .ui-grid-cell-contents {
    word-wrap: break-word;
    white-space: normal !important;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx UI GRID END xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/* Panel Filter */
.panel-filter {
    padding: 10px;
    background-color: #f4f6fb;
    border-bottom: 1px solid #d7dde4;
    border-radius: 4px 4px 0 0;
}

.has-error label {
    color: #a94442 !important;
}

.has-error .form-control {
    border-color: #a94442 !important;
}

.has-gas-test-warning .form-control {
    border-bottom: 3px solid #e22323 !important;
    /*border-color: #d7dde4 !important;*/
}


/*-----------*/
.language-row .form-control {
    height: 20px;
    line-height: 20px;
    padding: 1px;
    /*position: absolute;*/
    right: 0;
    top: -10px;
    width: 70px;
}

.pin-style {
    font-size: 20px;
    color: #2a487d;
}

.has-error .input-group-btn .btn-default {
    border-color: #a94442 !important;
}

.has-error .dropdown-multiselect .btn-default-multi {
    border-color: #a94442 !important;
}

.alignRight {
    text-align: right !important;
}

.alignCenter {
    text-align: center !important;
}

.dropdown-menu > li > a {
    display: inline-block !important;
}


/* CS Inpsection */
.CS-inspection-PPT-checkbox-list {
}

    .CS-inspection-PPT-checkbox-list .PPT-list-label {
        width: calc(100% - 100px);
        display: inline-block;
        vertical-align: top;
    }

    .CS-inspection-PPT-checkbox-list .yes-no-na {
        float: right;
    }

        .CS-inspection-PPT-checkbox-list .yes-no-na label {
            width: 30px;
        }

    .CS-inspection-PPT-checkbox-list .yes-no-na-checkbox {
        float: right;
    }

        .CS-inspection-PPT-checkbox-list .yes-no-na-checkbox .checkbox {
            width: 30px;
        }

        .CS-inspection-PPT-checkbox-list .yes-no-na-checkbox .checkbox-inline + .checkbox-inline {
            margin-left: 0;
        }

@media (max-width: 991px) {
    .CS-inspection-PPT-checkbox-list .PPT-list-label {
        width: 100%;
    }

    .CS-inspection-PPT-checkbox-list .yes-no-na-checkbox {
        float: none;
        text-align: right;
    }
}


.ui-grid-cell-contents .dropdown-menu {
    margin-top: 10px;
    overflow: inherit !important;
    width: 450px;
    z-index: 1060;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    padding: 0;
    left: 50%;
    margin-left: -225px;
}

    .ui-grid-cell-contents .dropdown-menu .dropdown-title {
        padding: 8px 14px;
        margin: 0;
        font-size: 14px;
        background-color: #f4f6fb;
        border-bottom: 1px solid #d7dde4;
        border-radius: 5px 5px 0 0;
    }

    .ui-grid-cell-contents .dropdown-menu .dropdown-content {
        padding: 10px;
    }

    .ui-grid-cell-contents .dropdown-menu .arrow,
    .ui-grid-cell-contents .dropdown-menu .arrow:after {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }

    .ui-grid-cell-contents .dropdown-menu .arrow {
        border-width: 11px;
    }

    .ui-grid-cell-contents .dropdown-menu .arrow {
        top: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-width: 0;
        border-bottom-color: rgba(0,0,0,.2);
    }

        .ui-grid-cell-contents .dropdown-menu .arrow:after {
            border-width: 10px;
            top: 1px;
            margin-left: -10px;
            content: '';
            border-top-width: 0;
            border-bottom-color: #f4f6fb;
        }


#notes {
    top: 30%;
    position: absolute;
    z-index: 900;
    margin: 0 auto;
}

.sticky-note {
    width: 50%;
    color: #7f6c04;
    background: #f9dd45;
    border-radius: 10px;
    border: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    overflow: hidden;
    margin: 0 auto;
}

.contents {
    margin: 20px;
    outline: none;
}

.handle {
    cursor: move;
    color: #f9dd45;
    background: #7f6c04;
    border-radius: 8px 8px 0px 0px;
    padding: 10px;
}

.contents .close {
    cursor: pointer;
    margin-bottom: 10px;
    float: right;
    color: #7f6c04;
    opacity: 1;
    text-shadow: none;
    font-size: 19px;
    font-weight: 100;
}

    .contents .close:hover {
        background-color: #17ce76;
        border-color: #17ce76;
    }

html body .sticky-notes div.close {
    color: #f9dd45;
    opacity: 1;
    text-shadow: 1px 0px 1px #a08805;
    padding: 2px;
}


#reminders {
    top: 30%;
    width: 50%;
    position: absolute;
    z-index: 900;
    margin: 0 auto;
}

.handleReminder {
    cursor: move;
    color: #fffef6;
    background: #de0808;
    border-radius: 8px 8px 0px 0px;
    padding: 10px;
}

.sticky-note-reminder {
    width: 50%;
    color: #0c0c0b;
    background: white;
    border-radius: 10px;
    border: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    overflow: hidden;
    margin: 0 auto;
}

.table-responsive.alpha {
    overflow: scroll;
}

    .table-responsive.alpha .dropdown-menu {
        overflow: inherit;
    }


    .table-responsive.alpha .dropdown-multiselect .dropdown-menu {
        position: static;
        margin: 10px 0px;
    }

    .table-responsive.alpha .dropdown-multiselect .btn-default-multi .caret {
        top: auto;
        right: 20px;
        margin-top: 6px;
    }


.table-responsive.bita {
    overflow: scroll;
}

    .table-responsive.bita .dropdown-menu {
        overflow: inherit;
    }


    .table-responsive.bita .dropdown-multiselect .dropdown-menu {
        position: static;
        margin: 10px 0px;
    }

    .table-responsive.bita .dropdown-multiselect .btn-default-multi .caret {
        top: auto;
        right: 20px;
        margin-top: 6px;
    }

.role-badge {
    position: relative;
    padding: 4px 36px;
    margin-right: 10px;
    display: inline-block;
    height: 33px;
    background-color: #ededed;
    border-radius: 20px;
}

.ui-grid-row:first-of-type:has(div > div.fixed-table-row) {
    position: fixed;
    background: #fff;
    z-index: 99;
    top: 30px;
}

.ui-grid-canvas:has(div > div > div.fixed-table-row){
    padding-top: 45px;
}

.download-button-android, .download-button-apple {
    cursor: default !important;
    padding: 3px 6px 5px 31px;
    position: relative;
    text-align: left;
    background-image: linear-gradient(to bottom, #506ddf, #2a487d);
    border-radius: 6px;
    border: 0;
    color: #fff;
}

.download-button-android .button-get-it-on, .download-button-apple .button-get-it-on {
    font-size: 10px;
    display: block !important;
    color: rgba(255, 255, 255, 0.85);
}

.download-button-android .download-store-text, .download-button-apple .download-store-text {
    line-height: 13px;
    font-family: sans-serif;
    font-size: 15px;
}

    .download-button-android::before {
        content: "\f17b";
        position: absolute;
        font-family: "FontAwesome";
        left: 8px;
        font-size: 19px;
        top: 4px;
    }

    .download-button-apple.prod-apple::before, .non-prod-apple::before {
        content: "\f179 ";
        position: absolute;
        font-family: "FontAwesome";
        left: 9px;
        font-size: 26px;
        top: -2px;
    }

.bordered-form {
    border-bottom: 1px solid #ddd;
    margin-bottom: 18px;
}

.group-label {
    border-radius: 8px;
    font-size: 100%;
    padding: 11px 8px;
    min-width: 95px;
    display: inline-block;
    margin-top: 0;
}
.group-label:not(:first-of-type):not(:last-of-type) {
    border-radius: 0px;
}

.group-label:first-of-type {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.group-label:last-of-type {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

  