/*
 Author: pius prajapti
 @GIPL
*/
/*@import url(https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800;900&display=swap');*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css);

:root {
    --p-color: #25958e;
    --p2-color: #136e68;
    /* --p-color: #880068;
    --p2-color: #ba6ba7; */
    /*--p-color: #f26b35;*/
    /*--p2-color: #f5926a;*/
    /*--p-color: #124D6F;*/
    /*--p-color: #081c41;*/
    --s-color: #6c757d;
    /*--s-color: #d49700;*/
    /* --teal-color: #448faf; */
    /* --y-color: #fec32b; */
    --g-color: #637e32;
    /* --s-color: #666; */
    --grey-color: #6c6c6c;
    --tb-color: #111;
    --blue: #209ADA;
    --light-blue: #8ab6d1;
}

[data-theme="blue"] {
    --p-color: #3581f2;
    --p2-color: #acc5ea;
}

[data-theme="green"] {
    --p-color: #0e770d;
    --p2-color: #82b881;
}

body .switch-theme {
    /*position: fixed;
    display: flex;
    flex-direction: column;
    right: 0;
    background: #efefef;
    padding: 10px;
    top: 40%;
    border-radius: 10px;*/
    padding: 10px;
    text-align: center;
}

    body .switch-theme :last-child {
        margin-bottom: 0;
    }

    body .switch-theme button {
        height: 20px;
        width: 20px;
        padding: 0;
        /*margin-bottom: 8px;*/
        /*border-radius: 50%;*/
    }

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    /*font-family: "Source Sans Pro", sans-serif;*/
    /*font-family: 'Open Sans', sans-serif;*/
    /* font-family: 'Nunito', sans-serif; */
    font-weight: 400;
    background: white;
    font-size: 14px;
    color: var(--tb-color);
    line-height: 1.5;
}

a {
    transition: 0.2s all ease;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
/*-Common Style-*/
.f-400 {
    font-weight: 400;
}

.f-600 {
    font-weight: 600;
}

.f-700 {
    font-weight: 700;
}

.bg-primary {
    background: var(--p-color) !important;
}

.bg-secondary {
    background: var(--s-color) !important;
    color: #0b0b0b !important;
}

.bg-teal {
    background: var(--teal-color) !important;
}

.bg-green {
    background: var(--g-color) !important;
}

.bg-yellow {
    background: var(--y-color) !important;
}

.text-primary {
    color: var(--p-color) !important;
}

.text-secondary {
    color: var(--s-color) !important;
}

.text-teal {
    color: var(--teal-color) !important;
}

.text-green {
    color: var(--g-color) !important;
}

.text-yellow {
    color: var(--y-color) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.bg-blue {
    background: var(--blue) !important;
}

.border-primary {
    border-color: var(--p-color) !important;
}

.text-light-blue {
    color: var(--light-blue) !important;
}

.filter-img-white {
    filter: brightness(0) invert(1);
}

.btn {
    padding: 6px 14px;
    font-weight: 400;
    font-size: 14px;
    /*border-radius: 0 !important;*/
    line-height: 1.2;
}

.btn-primary,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:hover {
    color: #fff;
    background: var(--p-color);
    border-color: var(--p-color);
}



    .btn-primary:hover,
    .btn-outline-primary {
        background: #fff;
        color: var(--p-color);
        border-color: var(--p-color);
    }

.btn-secondary {
    color: #fff;
    background-color: var(--s-color);
    border-color: var(--s-color);
}

    .btn-secondary:hover {
        background: #0b0b0b;
        color: var(--s-color);
        border-color: var(--s-color);
    }

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem #44a1bb7e;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0d7b99;
    border-color: #0d7b99;
}

    .btn-primary:not(:disabled):not(.disabled).active:focus,
    .btn-primary:not(:disabled):not(.disabled):active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem #44a1bb7e;
    }

.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 0.12rem #f3800d79;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #d6720f;
    border-color: #d6720f;
}

    .btn-secondary:not(:disabled):not(.disabled).active:focus,
    .btn-secondary:not(:disabled):not(.disabled):active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem #f3800d79;
    }

label {
    font-weight: 600;
    margin-bottom: 2px;
}

.custom-control-label {
    font-weight: 400;
}

.form-control {
    font-size: 13px;
    border-color: #bbbbbb;
    /* height: calc(1.2em + 0.50rem + 0px); */
    height: calc(1.2em + 1rem + 0px);
    padding: 0rem 0.5rem;
    /*border-radius: 0;*/
    transition: 0.15s all ease-in-out;
    background: #f9f9f9;
}

.form-check-inline {
    padding-top: 5px;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #333 !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #333 !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #333 !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #333 !important;
}

.custom-file {
    height: calc(1.5em + 0.50rem + 0px);
    border-radius: 0 !important;
}

.custom-file-input {
    height: calc(1.5em + 0.50rem + 0px);
    border-radius: 0 !important;
}

.custom-file-label {
    height: calc(1.5em + 0.50rem + 0px);
    padding: 0.25rem 0.5rem;
    background: #f9f9f9;
}

    .custom-file-label::after {
        height: calc(1.5em + 0.50rem + 0px);
        padding: 0.25rem 0.5rem;
        background: var(--s-color);
        color: #fff;
        border-radius: 0;
    }

.input-group-text {
    padding: 0.25rem 0.5rem;
    line-height: 1;
    border: 1px solid #ccc;
    /* border-radius: 0; */
    color: var(--p-color) !important;
    background: #eee;
    font-size: 14px;
}

    .input-group-text i {
        font-size: 15px;
    }

.form-control:focus,
.custom-file-input:focus {
    /*box-shadow: none;
  outline: 0;
  border-color: var(--p-color);*/
    box-shadow: 0 0 13px #6b6b6b;
    outline: 0;
    border-color: var(--p-color);
    background: #fff5e3;
}
/*textarea {
  resize: auto !important;
}*/
.table td,
.table th {
    padding: 0.25rem;
}

.table thead th {
    font-weight: 700;
}

.card {
    margin-bottom: 0.75rem;
    border-radius: 0;
    box-shadow: 0 1px 15px 1px rgba(123, 123, 123, 0.09);
}

.card-header {
    padding: 0.35rem 0.75rem;
    position: relative;
    border-radius: 0;
}

    .card-header:first-child {
        border-radius: 0;
    }

.card-body,
.card-footer {
    padding: 0.75rem;
}

.card-footer {
    background: #fff;
}

.card-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.card-head-bg {
    /*background: var(--s-color);*/
    background: var(--p2-color);
}

    .card-head-bg .card-title {
        color: #fff;
    }

.header-element {
    position: absolute;
    right: 0.75rem;
    top: 3px;
}

    .header-element a {
        margin: 0;
    }

.card-head-bg .header-element > a {
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
}

a i,
button i {
    margin-right: 4px;
}
/* Custom Checkbox */
.c-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
}

    .c-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid var(--p-color);
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
}

.c-checkbox input:checked ~ .checkmark {
    background: var(--p-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.c-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.c-checkbox .checkmark:after {
    left: 5px;
    top: 0;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.error-text {
    font-size: 11px;
    font-weight: 600;
    display: none;
}
/*-Header-*/
header {
    height: 60px;
}

.logo-text {
    font-size: 20px;
}

    .logo-text small {
        font-size: 13px;
    }
/* .top-header {
  margin-bottom: 20px;
} */
.navbar-toggler {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
}

.navbar-light .navbar-toggler {
    border-color: var(--s-color);
}

.c-navbar {
    padding: 0.3rem 1rem;
    /*background: var(--p-color);
  border-bottom: 1px solid var(--p-color);
  background-image: url(https://www.transparenttextures.com/patterns/rough-cloth-light.png);*/
    background-color: var(--p-color);
    /* background-image: linear-gradient(to right, white, var(--p-color)); */
    background-image: linear-gradient(to right, white, rgb(19 110 104 / 18%), var(--p-color));
    /*border-bottom: 1px solid var(--p-color);*/
}
/* .c-navbar .navbar-collapse {
  border-bottom: 2px solid var(--p-color);
} */
.c-logo {
    color: var(--tb-color);
    z-index: 10000;
}

    .c-logo p {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
    }

        .c-logo p > small {
            position: relative;
        }

.c-navbar .nav-item > .nav-link {
    padding: 0.25rem 7px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    color: white;
    text-transform: uppercase;
    /*margin-right: 2px;*/
    margin-left: 1rem;
    /* border-right: 1px solid #d5d5d5; */
}

.c-navbar .nav-item:last-child > .nav-link {
    margin-right: 0 !important;
}

.c-navbar .nav-item > .nav-link i {
    font-size: 16px;
    margin-right: 0;
}

.c-navbar .nav-item {
    /* border-top: 2px solid transparent; */
    transition: 0.3s all linear;
}
    /* .c-navbar .nav-item.active,
.c-navbar .nav-item:hover {
  border-top: 2px solid #fff;
  background: #fff;
} */

    .c-navbar .nav-item.active > .nav-link,
    .c-navbar .nav-item > .nav-link:hover,
    .c-navbar .nav-item > .nav-link:focus,
    .c-navbar .nav-item > .nav-link:active {
        color: white;
        background: var(--p2-color);
        border-radius: 4px;
    }

    .c-navbar .nav-item.dropdown > .nav-link.profile-dropdown,
    .c-navbar .nav-item.dropdown > .nav-link.profile-dropdown:hover,
    .c-navbar .nav-item.dropdown > .nav-link.profile-dropdown:focus,
    .c-navbar .nav-item.dropdown > .nav-link.profile-dropdown:active {
        color: #000000 !important;
        background: none !important;
        border: none !important;
    }

.nav-link.profile-dropdown {
    padding: 13px 0 !important;
}

.avatar {
    margin-right: 5px;
    width: 35px;
    white-space: nowrap;
    border-radius: 100%;
    vertical-align: middle;
    display: inline-block;
    position: relative;
}

    .avatar i {
        position: absolute;
        right: 0px;
        bottom: 2px;
        width: 10px;
        height: 10px;
        border-radius: 100%;
    }

    .avatar img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 1000px;
        filter: invert(1);
    }

.profile-dropdown .user-name {
    display: inline-block;
    margin-bottom: 0.4rem;
    margin-left: 0;
    font-weight: 600;
}

.dropdown-menu {
    font-size: 14px;
    padding: 0;
    /*border-radius: 0;*/
    margin-top: -1px;
    box-shadow: 0 0 10px #827f7f;
    left: auto;
    right: 0;
}

.dropdown-item {
    padding: 0.25rem 1rem;
}

    .dropdown-item.active,
    .dropdown-item:active,
    .dropdown-item:hover {
        background: var(--p-color);
        color: #fff;
    }

.dropdown-divider {
    margin: 0;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.3em;
    vertical-align: 0.2em;
    content: "";
    border-top: 0.4em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
/*--navbar-custom-bg--*/
.bg-custom {
    overflow: hidden;
}

    .bg-custom:after {
        content: "";
        width: 51%;
        height: 60px;
        position: absolute;
        left: -40%;
        top: 0;
        background: #fefefe;
        z-index: 0;
    }

    .bg-custom:before {
        content: "";
        border-width: 60px 60px 0 0;
        border-style: solid;
        border-color: #fefefe transparent transparent transparent;
        height: 0;
        width: 0;
        position: absolute;
        left: 11%;
        top: 0;
    }

.front-logo {
    position: relative;
    z-index: 9;
}
/*--Some New--*/
.c-logo {
    position: relative;
    z-index: 1000;
}

    .c-logo span.text-white {
        color: var(--p-color) !important;
    }

.bg-custom {
    overflow: hidden;
}

    .bg-custom:after {
        content: "";
        width: 50%;
        height: 70px;
        position: absolute;
        left: -36%;
        top: 0;
        background: #fefefe;
        z-index: 0;
    }

    .bg-custom:before {
        content: "";
        border-width: 70px 70px 0 0;
        border-style: solid;
        border-color: #fefefe transparent transparent transparent;
        height: 0;
        width: 0;
        position: absolute;
        left: 14%;
        top: 0;
    }
/* .bg-custom:before {
  content: "";
  background: url("https://i.ibb.co/zrN1sr3/header-white-trangle.png") no-repeat
    center left;
  height: 70px;
  width: 75px;
  position: absolute;
  left: 18%;
  top: 0;
} */

.front-logo {
    position: relative;
    z-index: 9;
}
/*--Login Page--*/
.login-image {
    /*padding: 15px;
  margin: -22px -22px 22px -22px;
  border-radius: 0;*/
    /*background: var(--p-color);*/
    margin-bottom: 20px;
}

    .login-image span {
        font-size: 1.6rem !important;
        display: inline-flex;
        position: relative;
    }

        .login-image span > small {
            position: absolute;
            top: 35px;
            font-size: 13px;
            left: 15px;
            width: auto;
            text-align: center;
            text-shadow: none;
            font-weight: 600;
            padding-top: 3px;
        }

#login {
    /*margin-top: -70px;*/
    border-radius: 16px;
}

.login-card .login-image + .card-body {
    /* background: #fefefe; */
    padding-bottom: 1.5rem;
    margin: 0 1rem;
}

#login .card-body {
    /*padding: 1.3rem;*/
    padding: 2rem;
    box-shadow: 2px 5px 16px 2px rgba(16, 16, 16, 0.48);
    border-radius: 16px;
    /* border: 2px solid var(--p-color); */
    /*border-bottom: solid 6px var(--p-color);*/
    /*border-top-left-radius: 0;
    border-bottom-right-radius: 0;*/
}

.login-title {
    border-bottom: 1px solid #d6d6d6;
    line-height: 0;
    text-align: center;
    margin-bottom: 30px;
}

    .login-title span {
        font-size: 16px;
        color: var(--p-color);
        font-weight: 600;
        background: #fff;
        padding: 0 10px;
        vertical-align: middle;
    }

.login-card {
    border: 2px solid var(--teal-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 14px 1px rgba(9, 9, 9, 0.2);
}

.login-form .input-group .input-group-text {
    /*border-radius: 0;*/
    background: none;
    border-color: var(--p-color);
}

    .login-form .input-group .input-group-text i {
        color: var(--p-color);
        font-size: 14px;
        vertical-align: middle;
    }

.login-form .input-group input {
    /* border-radius: 0 1rem 1rem 0; */
    border-left: 0;
    border-color: var(--p-color);
}

.login-form .c-checkbox .checkmark {
    border-radius: 0;
    height: 17px;
    width: 17px;
    top: 3px;
}

    .login-form .c-checkbox .checkmark:after {
        top: 1px;
    }

.login-body {
    background: url("../images/bg.jpg") no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

    .login-body::before {
        content: "";
        /*background: rgba(15, 15, 15, 0.4);*/
        background: rgba(255, 255, 255, 1);
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        min-height: 100vh;
    }

.flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 88vh;
}

.login-title {
    position: relative;
}

.login-form .c-input-group > .input-group-prepend .input-group-prepend {
    background: var(--p-color);
}

#login + p.text-center {
    font-size: 14px;
}

.forgot-pwd {
    font-size: 14px;
    font-weight: 400;
}

.loginBg {
    height:100%;
    background: linear-gradient(rgb(19 110 104 / 58%), rgb(33 161 154)), url(/images/login.jpg) !important;
    background-repeat: no-repeat !important;
    background-position: right !important;
}
/*-Main Content-*/
.form-wrapper {
    min-height: calc(100% - 91px);
    /* background: #fff; */
    /* background: url(../../assets/images/bg_content.png);*/
    /*background-size: cover;*/
}

.main-wrapper {
    padding: 0.5rem 0;
}

.dashboard-status {
    cursor: pointer;
    margin-bottom: 20px;
}

    .dashboard-status .card {
        box-shadow: 0 1px 15px 1px rgba(62, 57, 107, 0.07);
    }

        .dashboard-status .card:hover {
            text-decoration: none;
        }

.pull-up {
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .pull-up:hover {
        -webkit-transform: translateY(-4px) scale(1.02);
        -moz-transform: translateY(-4px) scale(1.02);
        -ms-transform: translateY(-4px) scale(1.02);
        -o-transform: translateY(-4px) scale(1.02);
        transform: translateY(-4px) scale(1.02);
        -webkit-box-shadow: 0 14px 24px rgba(62, 57, 107, 0.2);
        box-shadow: 0 14px 24px rgba(62, 57, 107, 0.2);
        z-index: 30;
    }

.dashboard-count {
    /*padding: 0.75rem;*/
    padding: 1.25rem;
}

.count {
    font-size: 26px;
    font-weight: 600;
}

.desc {
    font-size: 16px;
    /* font-weight: 700; */
    margin-bottom: 0;
    color: #fefefe;
    text-align: right;
    /* margin-left:8px; */
    /* letter-spacing: .4px; */
    /*text-transform: uppercase;*/
}

    .desc i {
        position: absolute;
        right: -18px;
        font-size: 32px;
        opacity: .2;
        bottom: -15px;
    }

.media-right-icon {
    font-size: 28px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.5);
    transition: 0.8s all ease;
    -webkit-transition: 0.8s all ease;
    -moz-transition: 0.8s all ease;
    -ms-transition: 0.8s all ease;
    -o-transition: 0.8s all ease;
}

.pull-up:hover > .card-content > .card-body > .media > .media-right-icon {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
}

.progress.progress-sm {
    height: 0.5em;
}

.dashboard-count .progress {
    background: rgba(0, 0, 0, 0.5);
}

.dashboard-count .progress-bar {
    background: rgba(226, 226, 226);
}
/* Background colors */
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black {
    color: #f9f9f9 !important;
}

.bg-primary2 {
    background: var(--p-color) !important;
}

.bg-gray {
    background-color: #eaeaec !important;
}

.bg-black {
    background-color: #222222 !important;
}

.bg-red {
    background-color: #f56954 !important;
}

.bg-yellow {
    background-color: #f39c12 !important;
}

.bg-aqua {
    background-color: #00c0ef !important;
}

.bg-blue {
    background-color: #0073b7 !important;
}

.bg-light-blue {
    background-color: #3c8dbc !important;
}

.bg-green {
    background-color: #00a65a !important;
}

.bg-navy {
    background-color: #001f3f !important;
}

.bg-olive {
    background-color: #3d9970 !important;
}

.bg-orange {
    background-color: #ff851b !important;
}

.bg-purple {
    background-color: #932ab6 !important;
}

.bg-maroon {
    background-color: #85144b !important;
}
/* Text colors */
.text-red {
    color: #f56954 !important;
}

.text-yellow {
    color: #f39c12 !important;
}

.text-aqua {
    color: #00c0ef !important;
}

.text-blue {
    color: #0073b7 !important;
}

.text-light-blue {
    color: #3c8dbc !important;
}

.text-green {
    color: #00a65a !important;
}

.text-navy {
    color: #001f3f !important;
}

.text-olive {
    color: #3d9970 !important;
}

.text-orange {
    color: #ff851b !important;
}

.text-purple {
    color: #932ab6 !important;
}

.text-maroon {
    color: #85144b !important;
}
/* Border colors */
.border-teal {
    border-color: #1c8ea1;
}

.border-red {
    border-color: #f56954 !important;
}

.border-yellow {
    border-color: #f39c12 !important;
}

.border-aqua {
    border-color: #00c0ef !important;
}

.base-aqua {
    background: #00c0ef !important;
}

.border-blue {
    border-color: #0073b7 !important;
}

.border-light-blue {
    border-color: #3c8dbc !important;
}

.border-green {
    border-color: #00a65a !important;
}

.border-navy {
    border-color: #001f3f !important;
}

.border-olive {
    border-color: #3d9970 !important;
}

.border-orange {
    border-color: #ff851b !important;
}

.border-purple {
    border-color: #932ab6 !important;
}

.border-maroon {
    border-color: #85144b !important;
}
/*-Footer-*/
.footer-content {
    background: var(--p2-color);
    color: #fefefe;
    padding: 5px 1rem;
}

    .footer-content p {
        margin: 0;
    }

        .footer-content p > a {
            color: #fff;
        }

    .footer-content strong {
        font-weight: 600;
    }
/*----Fieldset----*/
.custom-fieldset {
    border: 1px solid var(--p-color) !important;
    padding: 0.5rem 1rem 1rem !important;
    margin: 0 0 15px 0;
    border-radius: 0;
    background: #fff;
}

    .custom-fieldset legend {
        font-size: 20px !important;
        font-weight: 600 !important;
        text-align: left !important;
        width: auto;
        padding: 0 10px;
        border-bottom: none;
        color: var(--p-color);
        margin: 0;
    }

.verticle-hr {
    border-left: 1px solid #fff;
    margin: 0 10px;
}

.fieldset-body {
    padding: 0;
}

.fieldset-footer {
    padding: 1rem 0 0 0;
}
/*----Components----*/
.collapse-title.collapsed::after {
    content: "\f067";
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
}

.collapse-title::after {
    content: "\f068";
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
}
/*--Datatable--*/
div#DataTables_Table_0_filter {
    margin-bottom: 10px;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin-top: 10px;
}

.dataTables_filter input,
.dataTables_length select {
    padding: 0;
    border-bottom: 3px solid var(--p-color) !important;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    font-size: 14px;
    outline: none;
}

.mytable.table.dataTable {
    margin: 15px 0 !important;
}

.dataTables_paginate .pagination > .active > a,
.dataTables_paginate .pagination > .active > a:focus,
.dataTables_paginate .pagination > .active > a:hover,
.dataTables_paginate .pagination > .active > span,
.dataTables_paginate .pagination > .active > span:focus,
.dataTables_paginate .pagination > .active > span:hover {
    background: var(--p-color);
    color: #fff;
    border-color: var(--p-color);
}

.dataTables_paginate .pagination > li > a,
.pagination > li > span {
    color: var(--p-color);
    padding: 0.3rem 0.65rem;
}

div.dataTables_wrapper div.dataTables_length select {
    width: 50px;
}

.paginate_button.previous > a,
.paginate_button.next > a {
    border: 0;
    font-weight: 600;
    color: #222 !important;
    background: transparent !important;
    box-shadow: none;
}

.dataTables_paginate .pagination > .active > a,
.dataTables_paginate .pagination > .active > a:focus,
.dataTables_paginate .pagination > .active > a:hover,
.dataTables_paginate .pagination > .active > span,
.dataTables_paginate .pagination > .active > span:focus,
.dataTables_paginate .pagination > .active > span:hover {
    border-radius: 0;
}
/*---*/
.form-horizontal.form-bordered {
    border: 1px solid rgba(0, 0, 0, 0.27);
}

div.form-horizontal > .form-group.row, div.form-horizontal2 > .form-group.row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.27);
    margin: 0;
    align-items: stretch;
    /* background: #f7f7f7; */
}

.form-horizontal .form-group.row:last-child {
    border-bottom: none;
}

.control-label {
    text-align: left !important;
    margin: 0;
    padding: 0px 8px !important;
    /*border-right: 0px solid rgba(0, 0, 0, 0.27);*/
    border-left: 0px solid rgba(0, 0, 0, 0.27);
    font-weight: 600;
    /*background: #f6f6f6;*/
    background: #e3f1f0;
    font-size: 13px;
    border-right: 1px solid rgba(0, 0, 0, 0.27);
    display: flex;
    align-items: center;
}

    .control-label span {
        font-size: 18px !important;
        font-weight: 600;
        vertical-align: middle;
    }

.control-form {
    line-height: 1;
    padding: 3px 8px;
    background: #fff;
    /*border-left: 1px solid rgba(0, 0, 0, 0.27);*/
}

.control-error {
    padding: 5px 15px;
}

    .control-error span {
        vertical-align: middle;
    }

.checkbox-inline {
    padding: 5px 0;
}

div.form-horizontal.form-bordered .form-control {
    background: #fcfcfc;
}

div.form-horizontal.form-bordered .custom-file-input,
div.form-horizontal.form-bordered .custom-file-label {
    background: #fcfcfc;
}

div.form-horizontal.form-bordered .select2-container--default .select2-selection--single {
    background: #fcfcfc;
}
/*--Select2--*/
.select2-container {
    width: 100% !important;
}

.select2-container--default
.select2-results__option--highlighted[aria-selected] {
    background-color: var(--p-color);
    color: white;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: 0 !important;
}

.select2-container .select2-selection--single {
    height: calc(1.5em + 0.49rem + 0px) !important;
    border: 1px solid #bbbbbb;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    color: #333;
    line-height: calc(1.5em + 0.49rem + 0px);
    font-size: 14px;
}

.select2-results__option {
    font-size: 14px;
    color: #333;
    padding: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    font-size: 12px;
    font-weight: bold;
}
/*-DatePicker-*/
.bootstrap-datetimepicker-widget {
    font-size: 14px !important;
}

    .bootstrap-datetimepicker-widget table th {
        line-height: 25px;
        height: 25px;
    }

    .bootstrap-datetimepicker-widget table td {
        padding: 3px;
    }

        .bootstrap-datetimepicker-widget table td span {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            margin: 2px 2.5px;
            cursor: pointer;
            border-radius: 0;
        }

    .bootstrap-datetimepicker-widget.dropdown-menu {
        display: block;
        margin: 2px 0;
        padding: 5px;
        width: auto;
        min-width: 12rem;
    }

    .bootstrap-datetimepicker-widget table td.active,
    .bootstrap-datetimepicker-widget table td.active:hover,
    .bootstrap-datetimepicker-widget table td span.active {
        background: var(--p-color);
    }

    .bootstrap-datetimepicker-widget table td,
    .bootstrap-datetimepicker-widget table th {
        border: 1px solid #dee2e6;
    }

    .bootstrap-datetimepicker-widget .timepicker table td,
    .bootstrap-datetimepicker-widget .timepicker table th {
        border: 0 !important;
    }

    .bootstrap-datetimepicker-widget .timepicker table td {
        padding: 0;
    }
/*--Progress Bar--*/
.progress {
    margin-bottom: 1rem;
    height: 0.75rem;
}

    .progress:last-child {
        margin-bottom: 0;
    }
/*-----Media Query-----*/
/*for inline logo menu*/
/*@media (max-width: 1100px) and (min-width: 992px) {
    .c-navbar .nav-item > .nav-link{
        padding:3px;
        font-size:10px;
    }
    .navbar-brand img {
        height: 30px !important;
    }
    .navbar-brand h4 span {
        font-size: 9px !important;
        font-weight: 600;
    }
}
@media (max-width: 1200px) and (min-width: 1101px) {
    .c-navbar .nav-item > .nav-link {
        padding: 2px;
        font-size: 12px;
    }
    .navbar-brand img {
        height: 30px !important;
    }
    .navbar-brand h4 span {
        font-size: 12px !important;
        font-weight: 600;
    }
}
@media (max-width: 1455px) and (min-width: 1201px) {
    .c-navbar .nav-item > .nav-link {
        padding: 2px;
        font-size: 12.5px;
    }
    .navbar-brand img {
        height: 30px !important;
    }
    .navbar-brand h4 span {
        font-size: 12px !important;
        font-weight: 600;
    }
}*/
/*for inline logo menu*/

@media (max-width: 1365px) and (min-width: 992px) {
    .bg-custom::before {
        left: 20%;
    }

    .bg-custom::after {
        left: -30%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .bg-custom::before {
        left: 25%;
    }

    .bg-custom::after {
        left: -25%;
    }

    .system-title {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .bg-custom {
        display: none;
    }

    .c-logo span.text-white {
        color: #fff !important;
        font-size: 1.1rem;
    }

    .system-title {
        font-size: 1rem;
    }

    .profile-dropdown .user-name {
        font-size: 14px;
    }

    .flex-container2 {
        height: auto;
        padding: 30px 0px;
    }

    .login-title span {
        font-size: 13px;
    }

    .login-title {
        line-height: 0.1em;
    }

    .dashboard-block .col {
        flex-basis: auto;
    }

    .app-form .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
        font-size: 12px;
        font-weight: normal !important;
        letter-spacing: normal !important;
    }

    .navbar-light .navbar-toggler {
        background: white;
    }
}

@media (max-width: 696px) {
    .system-title {
        display: none;
    }
}

@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block !important;
        padding: 8px;
    }

    .dropdown > .dropdown-toggle:active {
        /*Without this, clicking will make it sticky*/
        pointer-events: none;
    }

    .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
        /*align-items:flex-start;
     flex-direction:column;*/
    }
}

@media (max-width: 606px) and (min-width: 360px) {
    .navbar-brand h4 span {
        font-size: 13px;
        font-weight: 600;
    }

    .navbar-brand img {
        height: 22px !important;
    }

    header {
        height: 44px;
    }
}

@media (max-width: 991px) {
    .c-navbar {
        padding: 0.3rem 1rem !important;
    }

        .c-navbar .nav-item > .nav-link {
            border-right: 0;
            color: black;
        }

    .logo-list2 {
        margin-bottom: 60px !important;
    }

        .logo-list2 li {
            border-right: none !important;
            padding: 2px !important;
        }

    .login-box {
        background: url("../images/bg-login.jpg") no-repeat;
        background-size: cover;
        height: 100vh;
        background-position: center center;
        width: 100%;
        background-attachment: fixed;
        padding: 0;
        position: relative;
        z-index: 100000;
    }

        .login-box::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: rgb(4, 4, 4);
            opacity: 0.4;
            z-index: -1;
        }

        .login-box .card {
            position: relative;
            padding: 35px;
            margin: 0 15%;
            top: 50%;
            transform: translateY(-50%);
        }

    .login-card .login-image + .card-body {
        margin: 0;
    }

    #login .card-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .login-box .card {
        position: relative;
        padding: 15px;
        margin: 0 5%;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        box-shadow: 0 0 12px 5px rgba(4, 4, 4, 0.6);
    }
}

@media (max-width: 400px) {
    .login-logo .c-logo img {
        height: 70px !important;
    }

    .c-logo h4 {
        font-size: 1.4rem;
        /*line-height: 20px;
    padding-left: 0;*/
    }
}

@media (min-width: 300px) {
    .top-header .navbar-nav .dropdown-menu {
        position: absolute !important;
        z-index: 100000;
    }
}
/*------*/

/*--Widget Sidebar--*/
.fixed-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    font-size: 22px;
    color: #fff;
    background: var(--p-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100% 0 0 100%;
}

    .fixed-sidebar i,
    .fixed-sidebar-close i {
        margin: 0 !important;
        color: #fff !important;
        transform: rotate(90deg);
    }

.fixed-sidebar-close {
    background: var(--p-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100% 0 0 100%;
    position: fixed;
    top: 50%;
    right: 350px;
    font-size: 22px;
    color: #fff;
    z-index: 100000;
    margin: 0 auto;
}

#widget-sidebar {
    width: 350px;
    position: fixed;
    top: 0;
    right: -350px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    transition: all 0.3s;
    overflow-y: scroll;
    z-index: 10000;
    background: #fefefe;
}

    #widget-sidebar.active {
        right: 0;
    }

#dismiss-2 {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 20px;
    /* background: #2565d6; */
    position: absolute;
    top: 12px;
    right: 8px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    #dismiss-2:hover {
        background: #fff;
        color: #0b013f;
        border-radius: 100%;
    }

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

#widget-sidebar .widget-sidebar-content {
    padding: 15px;
    margin-top: 1rem;
}

.widget-description {
    margin-top: 1rem;
}

    .widget-description + hr {
        border-color: #fff !important;
    }

/* fieldset {
  padding: 0px 6px;
  padding-top: 0px;
  margin-bottom: 16px;
  border: solid 1px #ccc;
}

legend {
    color: var(--p-color);
    padding: 0 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
} */

/* .dashboard-block .media-body{
    padding-left:12px;
    text-align:right;
} */
.dashboard-block .dashboard-count .media {
    /*flex-direction:row-reverse;*/
    flex-direction: column;
    align-items: center;
}

.dashboard-block .dashboard-status .card {
    /*height: 100%;
    margin-bottom: 0;*/
    /*border-top-left-radius: 0;
    border-bottom-right-radius: 0;*/
    border-radius: 16px;
    height: 100%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.app-form .tab-content {
    padding: 8px;
    border: solid 1px #ccc;
}

.app-form .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--p-color);
    border-color: #dee2e6 #dee2e6 #fff;
}

.app-form .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    color: var(--p-color);
    font-weight: 600;
    letter-spacing: .5px;
    border: none;
}

.logo-list {
    text-align: center;
}

    .logo-list li {
        transition: .3s all;
    }

        .logo-list li:hover {
            transform: scale(1.1);
            border-radius: 0;
        }

        .logo-list li img {
            /*height: 60px;*/
            height: 46px;
        }

    .logo-list li {
        /*display: inline-block;
    box-shadow: 0 0 6px #c5b9b9;
    padding: 2px 10px;
    margin: 6px;
    border-radius: 10px;*/
    }

.logo-list2 li {
    /*background: #fff;*/
    border-right: 1px solid #ccc;
    font-weight: 600;
    padding: 10px 15px;
    text-align: center;
    padding-top: 16px;
    transition: all .3s cubic-bezier(.25,.8,.25,1);
}

    .logo-list2 li:hover {
        background: white;
        box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
        transform: scale(1.05);
        border-radius: 10px;
    }

    .logo-list2 li span {
        font-size: 18px;
        display: block;
        font-weight: 600;
        color: #E65A23;
        margin-top: 6px;
    }

.dropdown-item {
    color: #000000;
}

.f-900 {
    font-weight: 900;
}

.navbar-brand img {
    /*height:50px;*/
}

.navbar-brand h4 small {
    margin-left: -22px;
    color: black;
    transform: rotate(-20deg);
}

.navbar-brand h4 span {
    color: black;
    /*font-size:14px;*/
}

.login-form .form-control {
    /*height: auto;*/
    font-size: 1.1rem;
    padding: .6rem;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
    top: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.03);
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075);
}

fieldset {
    padding: 4px 14px 14px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    position: relative;
}

/*legend {
    display: block;
    width: auto;
    padding: 0 8px;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: none;
    letter-spacing: 1px;
    font-weight: bold;
}*/
legend {
    display: block;
    width: auto;
    padding: 0 8px;
    margin-bottom: 0px;
    font-size: 1.3rem;
    line-height: inherit;
    border: 0;
    border-bottom: none;
}


.tblRadio table tbody {
    display: flex;
}

input[type=checkbox], input[type=radio] {
    transform: scale(1.2);
    margin-left: 6px;
    margin-right: 4px;
}

.dt-buttons {
    float: left;
}
