@font-face {
    font-family: "FontAwesome";
    src: url("../css/webfonts/fontawesome-webfont.eot") format("embedded-opentype"), url("../css/webfonts/fontawesome-webfont.woff2") format("woff2"), url("../css/webfonts/fontawesome-webfont.woff") format("woff"), url("../css/webfonts/fontawesome-webfont.ttf") format("truetype"), url("../css/webfonts/fontawesome-webfont.svg") format("svg");
}


:root {
    --primary: #053784;
    --primarylight: #d2ecf7;
    --primarydark: rgb(16 23 38);
    --secondary: #525252;
    --white: #ffffff;
    --orange: #FC5404;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 18px;
    background-color: #d5d5d5;
}

::-webkit-scrollbar-thumb {
    background-color: #263047;
    border: 2px solid #263047;
}



body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--ltext);
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
}

.shadow {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

.cstmbg-grey {
    background-color: #74a8bd !important;
}

.cstmdbluebg {
    background-color: #053784 !important;
}

.mainheading {
    color: var(--primary);
}

    .mainheading::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 98%;
        height: 4px;
        background-color: #e9e9e9;
    }

    .mainheading span {
        background-color: var(--white);
        padding: 5px 7px;
    }

.buttonarea {
    z-index: 1;
}

/* button style */

/* CSS */
.savebtn {
    background-color: initial;
    background-image: linear-gradient(-180deg, #00D775, #00BD68);
}

    .savebtn:hover {
        background: #00bd68;
    }

.cancelbtn {
    background-color: initial;
    background-image: linear-gradient(-180deg, #f52f50, #e62143);
}

    .cancelbtn:hover {
        background: #e62143;
    }

.bg-darkblue {
    background-color: var(--primary) !important;
}

/* CSS */
.cstm-button {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    height: 44px;
    line-height: 44px;
    outline: 0;
    overflow: hidden;
    padding: 0 20px;
    pointer-events: auto;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: top;
    white-space: nowrap;
    width: 100%;
    z-index: 9;
    border: 0;
    width: max-content;
    margin-top: 16px;
}

    .cstm-button:not(:last-child) {
        margin-right: 8px;
    }

.multiselect-container > li > a > label {
    padding: 3px 15px 3px 15px;
    width: 100%;
}

.dropdown-toggle::after {
    display: none;
}

.btn-group {
    width: 100%;
}

sup {
    color: #FF512F;
}

.card .card-header {
    background-color: var(--grey);
    position: relative;
}

.btn {
    margin-top: 7px;
}

.actionbtn .btn {
    padding: 5px 9px;
    font-size: 14px;
}

    .actionbtn .btn:not(:last-child) {
        margin-right: 5px;
    }

.datepicker td,
.datepicker th {
    padding: 5px;
}

.datepicker .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* datatable css */
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 20px;
}

    .dataTables_wrapper .dataTables_filter input:focus-visible {
        outline: none;
    }

    .dataTables_wrapper .dataTables_filter input:focus {
        box-shadow: none;
        outline: none;
        border: 1px solid var(--primarylight);
    }

table.dataTable thead th {
    color: var(--white);
    font-weight: 500;
    background-color: var(--primary) !important;
}

table tr td {
    padding: .5rem .5rem;
    border: 1px solid #dee2e6;
    vertical-align: top;
}

table tr th {
    padding: .5rem .5rem;
    vertical-align: middle;
}

table tbody th {
    vertical-align: top;
}

table tr thead th:not(:last-child) {
    border-right: 1px solid var(--white);
}

.largewidth {
    width: 25%;
}

.mediumwidth {
    width: 20%;
}

.smallwidth {
    width: 8%;
}

table.dataTable td ul li {
    list-style: lower-roman;
}

/* accordion style */
.accordion-button {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    justify-content: space-between;
}

    .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: var(--primary);
    }

/* accordion style */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    border-radius: 6px;
    min-height: 35px;
    font-size: 14px;
}
/* form style */
.form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-control,
.form-select {
    height: 35px;
    font-size: 14px;
}

    .form-control:focus,
    .form-select:focus {
        box-shadow: none;
        outline: none;
        border: 1px solid var(--primary);
    }

.multiselect-container li {
    list-style: none !important;
}

.companyfooter {
    border-top: 1px solid #dee2e6;
}

    .companyfooter label {
        font-weight: 500;
    }

/* headerarea */
/* brand-logo style */
#mainNav {
    display: flex;
    align-items: center;
    background-color: var(--secondary);
}

    #mainNav .brand-logo a h1 i {
        color: var(--secondary);
    }

    #mainNav .brand-logo a h1 {
        margin-left: 0.6em;
        font-size: 1.5rem;
        margin-bottom: 0;
        transition: all .5s;
    }

        #mainNav .brand-logo a h1:hover {
            color: var(--white);
        }

    #mainNav .account {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--text-color);
        height: 53px;
        width: 3.7rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s 0s, color 0.3s 0s;
    }

        #mainNav .account:hover {
            color: var(--white);
        }

    #mainNav .admin-user {
        display: flex;
        align-items: center;
    }

    #mainNav .admin-profile {
        white-space: nowrap;
        max-width: 100%;
        transition: opacity 0.3s 0.2s, max-width 0.7s 0s ease-in-out;
        display: flex;
        align-items: center;
        flex: 1;
        overflow: hidden;
    }

    #mainNav .admin-user img {
        width: 40px;
        border-radius: 50%;
        margin: 0 0.4rem 0 0;
    }

    #mainNav .admin-info {
        padding-left: 0.3rem;
    }

        #mainNav .admin-info h3 {
            font-weight: 500;
            font-size: 14px;
            line-height: 1;
        }

        #mainNav .admin-info h5 {
            font-weight: 400;
            font-size: 0.75rem;
            color: #033405;
            margin-top: 0.3rem;
            margin-bottom: 0;
            line-height: 1;
        }

    #mainNav .dropdown-menu {
        width: 290px;
        border: none;
        right: 0 !important;
        left: auto !important;
        box-shadow: 0 10px 10px rgba(141, 127, 127, 0.322);
    }

        #mainNav .dropdown-menu .notifyarea {
            height: 200px;
            overflow-y: auto;
        }

    #mainNav .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        color: var(--white);
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }

    #mainNav .admin-user .dropdown-menu {
        width: max-content !important;
    }

        #mainNav .admin-user .dropdown-menu .dropdown-item {
            font-size: 14px;
        }

            #mainNav .admin-user .dropdown-menu .dropdown-item i {
                color: #525252;
            }

    #mainNav .navbar-collapse .navbar-nav {
        flex: 2;
        justify-content: flex-end;
    }

        #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link {
            position: relative;
            min-width: 45px;
        }

            #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link:after {
                float: right;
                width: auto;
                content: '\f105';
                border: none;
                font-family: 'FontAwesome';
            }

            #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link .indicator {
                position: absolute;
                top: 0px;
                left: 19px;
                font-size: 10px;
                width: 18px;
                display: flex !important;
                justify-content: center;
                align-items: center;
                height: 18px;
                border-radius: 20px;
                color: var(--white) !important;
                background-color: var(--orange);
            }

        #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown.show > .nav-link:after {
            content: '\f107';
        }

        #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown .dropdown-menu .dropdown-item .dropdown-message {
            white-space: pre-wrap;
        }

.sidebar {
    height: 100%;
    width: 53px;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    background-color: #111111;
    transition: 0.5s;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 65px;
    white-space: nowrap;
}

    .sidebar a {
        padding: 8px 20px 8px 15px;
        text-decoration: none;
        font-size: 16px;
        transition: all .5s;
        color: #818181;
        display: block;
        text-transform: capitalize;
    }

        .sidebar a:hover {
            color: #f1f1f1;
        }

    .sidebar .icon-text {
        padding-left: 19px;
        white-space: pre-wrap;
        display: none;
    }

    .sidebar.expandedsidearea .icon-text {
        display: block;
    }

    .sidebar ul {
        background: #1b1b1b;
        width: 100%;
        list-style: none;
        padding-left: 0;
    }

        .sidebar ul.main_side {
            height: 100%;
        }

        .sidebar ul li {
            line-height: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 0;
        }

            .sidebar ul li a {
                position: relative;
                color: var(--white);
                text-decoration: none;
                font-size: 13px;
                padding-left: 14px;
                font-weight: 500;
                display: block;
                width: 100%;
                display: flex;
                line-height: 15px;
                border-left: 3px solid transparent;
            }

            .sidebar ul li.active a {
                color: var(--orange);
                background: #1e1e1e;
                border-left-color: var(--orange);
            }

            .sidebar ul li a:hover {
                background: #1e1e1e;
            }

.feat-show {
    transition: all 0.5s;
}

.sidebar ul li.active ul {
    transition: all 0.5s;
}

.sidebar ul ul {
    position: static;
    display: none;
}

.sidebar ul.show {
    display: block;
    transition: all 0.5s;
}

.sidebar ul ul li {
    line-height: 42px;
    border-top: none;
}

    .sidebar ul ul li a {
        font-size: 12px;
        text-transform: capitalize;
        color: var(--white);
        display: flex;
        align-items: flex-start;
        line-height: 17px;
    }

        .sidebar ul ul li a span {
            white-space: pre-wrap;
            display: none;
        }

.sidebar.expandedsidearea ul ul li a span {
    display: block;
}

.sidebar ul li.active ul li a {
    color: var(--white);
    background: #1b1b1b;
    border-left-color: transparent;
}

.sidebar a:hover {
    color: var(--orange) !important;
}

.sidebar ul ul li a:hover {
    color: var(--orange) !important;
    background: #1e1e1e !important;
}

.sidebar ul li a span.arrowicon {
    font-size: 15px;
    display: none;
    transition: transform 0.4s;
}

.sidebar.expandedsidearea ul li a span.arrowicon {
    display: block;
}

.sidebar ul li a span.arrowicon.rotate {
    transform: rotate(-180deg);
}

#mainNav.navbar-dark .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link:after {
    color: var(--main-color);
}

#mainNav.navbar-light .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link:after {
    color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }

        .sidebar a {
            font-size: 16px;
        }
}

@media (min-width: 992px) {
    #mainNav .navbar-brand {
        width: 250px;
    }

    #mainNav .navbar-collapse {
        overflow: visible;
        max-height: none;
    }

        #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link {
            min-width: 0;
        }

            #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link:after {
                width: 24px;
                text-align: center;
            }

        #mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown .dropdown-menu > .dropdown-item > .dropdown-message {
            max-width: 300px;
        }
}

/* mainarea */
.wrapper {
    width: 100%;
    position: relative;
    padding-top: 15px;
    padding-left: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.1s;
}

.wrapperinner {
    position: relative;
    width: 100%;
    padding-bottom: 35px;
}

    .wrapperinner .tablearea {
        position: relative;
        width: 100%;
    }

        .wrapperinner .tablearea .card {
            border: none;
        }

            .wrapperinner .tablearea .card .card-header {
                background-color: var(--primarylight);
                padding: 15px;
                border-bottom: none;
            }

                .wrapperinner .tablearea .card .card-header h2 {
                    font-size: 18px;
                    margin-bottom: 0;
                    font-weight: bold;
                    /* background: url('../../assets/img/uparrow.png') no-repeat calc(100% - 10px) center;
  background-size: 20px;
    cursor: pointer; */
                }

                    .wrapperinner .tablearea .card .card-header h2.collapsed {
                        /* background-image: url('../../assets/img/downarrow.png'); */
                    }

/* List styles */

@media (min-width: 1200px) {
    .customwidth {
        max-width: 1240px;
    }
}

@media (min-width: 1400px) {
    .customwidth {
        max-width: 1450px;
    }
}

.listarea {
    position: relative;
    flex: 0 0 50%;
}

    .listarea h3 {
        position: relative;
        color: var(--primary);
    }

        .listarea h3:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 50px;
            height: 4px;
            background-color: #f3a002;
        }

        .listarea h3 span {
            position: relative;
            background-color: var(--white);
            padding: 0 8px;
            margin-left: 15px;
        }

    .listarea .list-bullets {
        list-style: none;
    }

        .listarea .list-bullets li {
            display: flex;
            font-weight: 600;
            font-size: 20px;
            align-items: center;
            transition: all .5s;
        }

            .listarea .list-bullets li a {
                transition: all .5s;
            }

            .listarea .list-bullets li:not(:last-child) {
                margin-bottom: 10px;
            }

            .listarea .list-bullets li i {
                margin-left: 7px;
                color: #5784d7;
            }

            .listarea .list-bullets li::before {
                content: '';
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: #8d8d8d;
                border: 2px solid #cbcbcb;
                display: block;
                margin-right: 1rem;
            }

/* footer style */
footer {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-top: auto;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 1;
}

    footer p {
        font-size: 14px;
    }


/***** Sidebar section start *****/

.sidebarsearch {
    width: 0px;
    height: calc(500px - 65px);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    /* background: rgba(10, 10, 10, .65); */
    box-shadow: 0 8px 32px rgb(2, 4, 24);
    border-right: 2px solid rgba(255, 255, 255, .09);
    transition: .4s ease-in-out;
    right: -2px;
    float: right;
    position: fixed;
    z-index: 2;
    top: calc(50% - 200px);
    border-radius: 6px;
}

.wrapperinner .tablearea .card {
    border: none;
    /*height: 435px;*/
}


.sidebarsearch .card {
    height: 100%;
}

    .sidebarsearch .card .card-body {
        height: 100%;
        overflow: auto;
    }

.sidebarsearch.open {
    width: 260px;
}

.sidebarsearch .logo img {
    width: 56px;
    transition: .4s;
}

.sidebarsearch.open .logo img {
    width: 96px;
}


.sidebarsearch .nav-title {
    color: #dadada;
    margin: 20px 0 10px;
    pointer-events: none;
    opacity: 0;
}

.sidebarsearch.open .nav-title {
    opacity: 1;
    transition: .4s;
    transition-delay: .2s;
}

.sidebarsearch nav {
    padding: 0 15px 0 30px;
}

.sidebarsearch .card .card-body ul {
    padding-left: 0;
}

    .sidebarsearch .card .card-body ul a {
        border-bottom: solid 1px #ccc;
    }

.sidebarsearch .nav-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 2px;
    width: 100%;
    height: 36px;
    padding: 0 8px;
    margin: 8px 0;
    color: #000;
    transition: .3s;
    border-bottom: solid 1px #ccc;
}

    .sidebarsearch .nav-item.active {
        background: #eb6501 !important;
        color: #fff;
    }

    .sidebarsearch .nav-item:hover {
        background: rgba(0, 0, 0, .2);
    }


    .sidebarsearch .nav-item i {
        font-size: 23px;
    }

    .sidebarsearch .nav-item span {
        font-size: 16px;
        margin-left: 8px;
        opacity: 0;
        pointer-events: none;
    }

.sidebarsearch.open .nav-item span {
    opacity: 1;
    pointer-events: visible;
    transition: .4s;
    transition-delay: .2s;
}

.sidebarsearch hr {
    width: 100%;
    height: 2px;
    border-radius: 3px;
    margin: 10px 0 10px;
    background: rgba(255, 255, 255, .1);
    opacity: 0;
}

.sidebarsearch.open hr {
    opacity: 1;
    transition: .4s;
}

.sidebarsearch .toggle {
    cursor: pointer;
    position: absolute;
    color: #fff;
    top: 180px;
    left: -36px;
    font-size: 26px;
    line-height: 50%;
    text-align: center;
    border-radius: 50%;
    padding: 2px 0px 2px 8px;
    background: linear-gradient(-90deg, transparent 50%, rgb(235 101 1) 50%);
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.sidebarsearch.open .toggle {
    transform: translateY(0px);
}

.sidebarsearch .toggle i {
    transition: .4s linear;
}

.sidebarsearch.open .toggle i {
    transform: rotateY(180deg);
}

/***** Sidebar section end *****/
.reg-latter-format-three {
    margin: auto;
}

    .reg-latter-format-three input {
        border: none;
        border-bottom: solid 1px #000;
        width: 300px;
    }

        .reg-latter-format-three input:focus, .reg-latter-format-three input:focus-visible {
            border: none;
            border-bottom: solid 1px #000;
            outline: none;
        }




/***** alert section start *****/

.alert {
    display: none;
    position: fixed;
    top: 70px !important;
    right: 0px !important;
}

    .alert .close {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 1em;
    }

    .alert .fa {
        margin-right: .3em;
    }

    .alert .fa {
        margin-right: .3em;
    }

.disableSection {
    pointer-events: none;
}

#toast-container {
    margin-top: 65px;
}

/*.select2-container {
    width : 60% !important;
}*/

.resume-upload-btn-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 7px;
    width: 100%;
}

    .resume-upload-btn-section p {
        width: calc(100% - 25px);
        margin-right: 5px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 0;
        font-size: 14px;
    }

    .resume-upload-btn-section button {
        font-size: 20px;
        color: #ac0000;
        outline: none;
        border: none;
    }

        .resume-upload-btn-section button i {
            font-size: 20px;
            color: red;
        }
/*    07/07/23*/
.note-primary {
    background-color: #cfe2ff;
    border-left: 6px solid #74a8bd;
    border-radius: 5px;
    border-right: 1px solid #74a8bd;
    border-top: 1px solid #74a8bd;
    border-bottom: 1px solid #74a8bd;
}

.blockquote p, .blockquote li {
    font-size: 16px;
}

.blockquote ol, .blockquote ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #d8eaf2;
}

    .blockquote ol li, .blockquote ul li {
        flex: 0 0 50%;
        border: 0;
        border-radius: 0 !important;
        background-color: #d8eaf2;
    }

@media(max-width:1024px) {
    .blockquote ol li, .blockquote ul li {
        flex: 0 0 100% !important;
    }
}

.blockquote ol li, .blockquote ul li {
    flex: 0 0 50%;
    border: 0;
    border-radius: 0 !important;
    background-color: #d8eaf2;
}

.addbtn {
    transition: all .5s;
}

    .addbtn:hover {
        background-color: #007c42 !important;
    }

.typeoptions span {
    margin-right: 5px;
}


.dashboardinner canvas {
    height: 300px !important;
    object-fit: contain;
}

.dashboardinner .chartsarea .card-header {
    background-color: #eeeeee !important;
}
/*breadcrumb style  if required*/
.breadcrumb {
    position: sticky;
    top: 77px;
    z-index: 1;
    background: #d2ecf7;
    padding: 10px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    border-radius: 0.375rem;
}

    .breadcrumb li, .breadcrumb li.active {
        color: #000000;
    }

#toast-container {
    margin-top: 65px;
}

.listinner li {
    list-style: none;
}

.listhead {
    position: relative;
    font-weight: 700;
    padding-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap;
}

    .listhead:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #51c1cd;
        bottom: 0;
        left: 0;
    }

table tr td, table tr th {
    border: 1px solid #dee2e6;
}

.table-bordered > :not(caption) > * {
    border: 1px solid #dee2e6;
}

.textareaincident {
    height: 100px !important;
    resize: none;
}

/*27/07/23*/
.section_name_field input {
    width: 500px;
}

.btn-danger {
    background-color: #be0000 !important;
}
/*28/07/23*/
.cstmdbluebg:hover th {
    color: #ffffff !important;
}

.accordion .accordion-item, .accordion-header {
    width: max-content;
}

.accordion-button, .accordion-header, .accordion .accordion-item {
    border-radius: 0.375rem;
}

    .accordion-button:focus {
        box-shadow: none;
    }
    /* Custom style */
    .accordion-button::after {
        background-image: url("../assets/img/accplus.png");
        transform: scale(.7) !important;
        margin-left: 8px;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHAAAACACAYAAADTcu1SAAAAAXNSR0IArs4c6QAAAxNJREFUeF7tmTFuE1EURe+roIfd0IcCBDuAirACWASsAKhgByAoQs9uSB+qQZGIZMCxDVfKnWud1Hny+efMszUzI/6qDUw1PfAiYPlFQEAClhsox2cDCVhuoByfDSRguYFyfDaQgOUGyvHZQAKWGyjHZwMJWG6gHJ8NJGC5gXJ8NpCA5QbK8dlAApYbKMdnAwlYbqAcnw0kYLmBcnw2kIDlBsrx2UAClhsox2cDCVhuoByfDSRguYFyfDaQgOUGyvHZQAKWGyjHZwMJWG6gHJ8NJGC5gXJ8NpCA5QbK8dlAApYbKMdnAwlYbqAcnw0kYLmBcnw2kIDlBsrx2UAClhsox2cDCVhuoByfDTz2gMuy3JL0RNJDSfck3Sk/89rxzyV9k/RF0vuZ+bELeOcGLsvyQtKrtZ/4yPlezszr6854bcBlWc4knRy5nJbjfZ2Z+9tgtwZk81bZdesm/hXw12/exSqPANTtP38TtwU8lfQGV6s0cDoz7zbJtgX8KOnRKvGB+jQzj/cF/M6twmqvlPOZuUvA1fbZC3ZQQL5C93qM/cNBX6HPJL2NIfLBuww8n5nf2nAb0XXB7L+NuDwPN/KrrHrYjfwVOo/SVhXx3x6lbUTkYXa+4/89zN6IePk66amkB7xOupGaV6+TPkv6YL1OuhFcPsQywBt5S19+mID5BhYBAS19+WEC5htYBAS09OWHCZhvYBEQ0NKXHyZgvoFFQEBLX36YgPkGFgEBLX35YQLmG1gEBLT05YcJmG9gERDQ0pcfJmC+gUVAQEtffpiA+QYWAQEtfflhAuYbWAQEtPTlhwmYb2ARENDSlx8mYL6BRUBAS19+mID5BhYBAS19+WEC5htYBAS09OWHCZhvYBEQ0NKXHyZgvoFFQEBLX36YgPkGFgEBLX35YQLmG1gEBLT05YcJmG9gERDQ0pcfJmC+gUVAQEtffpiA+QYWAQEtfflhAuYbWAQEtPTlhwmYb2ARENDSlx8mYL6BRUBAS19+mID5BhYBAS19+WEC5htYBAS09OWHCZhvYBEQ0NKXH/4JvU9WgVIWVCEAAAAASUVORK5CYII=");
    }


.cstmdbluebg:hover th {
    color: #ffffff !important;
}

.rounded-nav {
    border-radius: 50rem;
}

.tabarea .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #029ebd;
    border: none;
}

.tabarea .rounded-nav .nav-link {
    border-radius: 50rem;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
}

    .tabarea .rounded-nav .nav-link:hover {
        border: none;
    }

.tabarea {
    border: 1px solid #dee2e6;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

    .tabarea ul li:not(:last-child) {
        padding-right: 15px;
    }

.sec1-innerarea ul {
    background-color: #a5f0ff;
    padding: 10px;
}

    .sec1-innerarea ul li {
        font-size: 16px;
        list-style: disc !important;
        padding-left: 15px;
        position: relative;
    }

        .sec1-innerarea ul li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            border-radius: 20px;
            background-color: red;
        }

/* 22/9/23 */
.form-check-label {
    font-weight: normal !important;
}

.case-fill-menu .nav-link.active {
    background-color: #f8f9fa;
    border-bottom: 1px solid #f8f9fa;
    color: #053784;
    text-transform: capitalize;
}

.lightbg {
    background-color: rgba(63, 81, 181, 0.122) !important;
    font-size: 16px;
    margin-top: 10px;
}

.select2.select2-container {
    width: 100% !important;
}

.filldetails .bg-check {
    padding: 10px;
}

    .filldetails .bg-check:nth-child(odd) {
        background-color: #f2f2f2;
    }

    .filldetails .bg-check:nth-child(even) {
        background-color: #e5e5e5;
    }

    .filldetails .bg-check .form-label {
        margin-bottom: 0;
    }

.comment-section {
    border: 1px solid var(--borderbg);
    padding: 10px;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

    .comment-section .date, .comment-section .time {
        font-size: 11px
    }

    .comment-section .time {
        border-left: 1px solid var(--ltext);
    }

    .comment-section .comment-text {
        font-size: 12px;
        margin-bottom: 0;
    }

    .comment-section .fs-12 {
        font-size: 12px
    }

    .comment-section .shadow-none {
        box-shadow: none
    }

    .comment-section .name {
       /* color: var(--primary)*/
       color: #000;
    }

    .comment-section .reply {
        color: var(--primary);
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .comment-section .usernamearea {
        flex: 2;
    }

    .comment-section .commentinner:not(:last-child) {
        border-bottom: 1px solid var(--borderbg);
    }

.textcomment {
    flex: 2;
}

.customtablehozscroll table {
    display: block;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 450px;
}

    .customtablehozscroll table thead {
        position: sticky;
        top: 0;
    }

.customtablehozscroll .largewidth {
    min-width: 319px;
}


.fileDownload {
    display: flex;
    word-break: break-all;
}

    .fileDownload i {
        margin-top: 6px;
    }


/* 6/11/23 */
.input-group .btn {
    z-index: 1;
}

.tableWrap {
    height: 358px;
    overflow: auto;
}
    /* Set header to stick to the top of the container. */
    .tableWrap thead {
        position: sticky;
        top: 0;
    }

.cstm-button {
    z-index: 1 !important;
}
/* 20/nov/23 */
/* .verticalTabArea .nav-pills {
  position: sticky;
  position: -webkit-sticky;
  top: 12%;
} */
.verticalTabArea .nav button.nav-link {
    position: relative;
    font-weight: 600;
    color: #00bcd4;
    width: 100%;
    text-align: left;
}

    .verticalTabArea .nav button.nav-link.active {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        background-color: #00bcd4;
        color: #ffffff;
    }

        .verticalTabArea .nav button.nav-link.active::after {
            content: "";
            border-right: 4px solid #038fa1;
            height: 100%;
            position: absolute;
            right: -1px;
            top: 0;
            border-radius: 5px 0 0 5px;
        }

.verticalTabArea .tab-content {
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 8px;
    /* overflow-y: auto !important;

  padding-right: 8px; */
}

.imagearea {
    position: relative;
    overflow: hidden;
    padding: 5px;
    height: 400px;
    width: 100%;
    background-color: #eeeeee;
}

    .imagearea img {
        height: 400px;
        width: 100%;
        object-fit: contain;
    }

/*.dataTables_scrollHeadInner {
    width: 100% !important;
}*/

.dataTables_scrollBody thead {
    position: sticky;
    top: 0;
}
/* .scrollBody {
  height: 100vh;
  overflow-y: auto;
  padding-right: 5px;
} */
footer.bg-light {
    background-color: #d3d3d3 !important;
}

div.dataTables_wrapper div.dataTables_paginate {
    position: relative;
    margin-top: 15px;
    z-index: 1;
}

tbody td .form-check.checkinputbtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 11%;
}

.monitoringareatableWrap {
    overflow: auto;
    /*height: 300px;*/
    height: auto;
}
    /* Set header to stick to the top of the container. */
    .monitoringareatableWrap thead {
        position: sticky;
        top: 0;
        z-index: 1;
    }

.textareaheight {
    height: 80px;
}

.audittypeinnercontent {
    border: 1px solid #cdcdcd !important;
}

    .audittypeinnercontent .accordion-button::after {
        margin-left: 0;
    }

    .audittypeinnercontent .accordion-button {
        background-color: #84b4c8 !important;
        border-radius: 0;
    }

    .audittypeinnercontent .accordion-header h2 {
        font-size: 18px;
        margin-top: 3px;
    }

    .audittypeinnercontent .accordion-body {
        height: 330px;
        overflow-y: auto;
    }

    .audittypeinnercontent .form-check {
        display: flex;
        align-items: center;
    }

    .audittypeinnercontent .form-check-label {
        margin-left: 6px;
        margin-top: 5px;
    }

/*26/dec/23*/
.accordion-button:hover {
    z-index: 1 !important;
}

.btn.removeSector, .btn.removeManPower {
    width: 40px;
}

.sub-button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 16%;
    z-index: 99;
    right: 3%;
    overflow: hidden;
    height: 68px;
    border: 2px solid #ffffff;
    width: 68px;
    background-image: linear-gradient(135deg, rgb(40, 199, 111) 0%, rgb(0 211 191) 100%);
    box-shadow: 0 20px 30px -6px rgba(60, 211, 128, 0.5);
    border-radius: 20%;
    color: #ffffff;
    transition: all .3s ease-in-out;
}

    .sub-button .btn {
        border: 0;
        background: transparent;
        color: #ffffff;
        font-size: 15px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
        font-weight: 500;
    }

    .sub-button:hover {
        cursor: pointer;
        z-index: 99;
        box-shadow: none;
        transform: translateY(10px);
        background-image: linear-gradient(135deg, rgb(0 211 191) 0%, rgb(40, 199, 111) 100%);
    }

    .sub-button i {
        color: white;
        padding-top: 0;
        margin-bottom: 2px;
    }
/*siderbar inner submenu style*/
.sidebar ul li.active .innersubmenu {
    background-color: #2a2a2a;
}

    .sidebar ul li.active .innersubmenu li {
        transition: all 0.5s;
    }

    .sidebar ul li.active .innersubmenu li {
        color: #fff9ef !important;
        background: #2e2e2e !important;
    }

        .sidebar ul li.active .innersubmenu li ul li {
            color: #fff9ef !important;
            background: rgba(78, 78, 78, 0.78) !important;
        }
            .sidebar ul li.active .innersubmenu li ul li:hover a,
            .sidebar ul li.active .innersubmenu li ul li.active a {
                color: #fca104 !important;
            }
            .sidebar ul li.active .innersubmenu li ul li a {
                color: #fff9ef !important;
            }

.sidebar ul li .innersubmenu li a {
    background-color: transparent !important;
    color: #fff9ef !important;
}

.sidebar ul li .innersubmenu li:hover {
    background-color: #2a2a2a !important;
    color: #fca104 !important;
}

#spinloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(94 94 94 / 56%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

    #spinloader img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }
.innercontenttab.nav button.nav-link {color:#ffffff !important; border-radius:50rem !important;}
.innercontenttab.nav button.nav-link.active::after {
        display: none !important;
    }
.innercontenttabcontent.tab-content{height:100% !important;}
/*.dataTable {
    width: 100% !important;
}*/


.onlyNumbers {
    text-align: right;
}


.onlyInteger {
    text-align: right;
}

.only6Decimal {
    text-align: right;
}

.required::after {
    content: "*";
    color: red;
    margin-left: 3px; /* Add some spacing between the label text and the asterisk */
}

.input-comb {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .375rem;
}
.HideSection{
    display:none;
}


.email {
    text-transform: lowercase;
}

.url {
    text-transform: lowercase;
}

.phone {
    text-transform: lowercase;
}
.uppercase {
    text-transform: uppercase;
}


.lowercase {
    text-transform: lowercase;
}
.capitalize {
    text-transform: capitalize;
}