
@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);
    /*nitish--secondary: #525252;*/
    --secondary: #004883;
    --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: 6px;
    background-color: #d5d5d5;
}

::-webkit-scrollbar-thumb {
    background-color: #263047;
    border: 2px solid #263047;
}
*/

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    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);
}

table tr td {
    padding: 0.5rem 0.5rem;
    border: 1px solid #dee2e6;
    vertical-align: top;
}

table tr th {
    padding: 0.5rem 0.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);
}

    .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 0.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;
        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 {
                /* nitish color: #525252;*/
                color: #004883;
            }

    #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: 2;
    top: 0;
    left: 0;
    /*nitishbackground-color: #111111;*/
    background-color: #004883;
    transition: 0.5s;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 65px;
    white-space: nowrap;
    margin-top:30px;
}

    .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 {
        /*nitish background: #1b1b1b;*/
        background: #004883;
        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;*/
    background: #004883;
    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: 58px;
    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 {
                /*nitish background-color: var(--primarylight);*/
                background-color: #55ACEE;
                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 0.5s;
        }

            .listarea .list-bullets li a {
                transition: all 0.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, 0.09);
    transition: 0.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: 0.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: 0.4s;
    transition-delay: 0.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: 0.3s;
    border-bottom: solid 1px #ccc;
}

    .sidebarsearch .nav-item.active {
        background: #eb6501 !important;
        color: #fff;
    }

    .sidebarsearch .nav-item:hover {
        background: rgba(0, 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: 0.4s;
    transition-delay: 0.2s;
}

.sidebarsearch hr {
    width: 100%;
    height: 2px;
    border-radius: 3px;
    margin: 10px 0 10px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.sidebarsearch.open hr {
    opacity: 1;
    transition: 0.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: 0.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;
        }

/*  Toastr start */

#toast-container {
    margin-top: 65px;
}

/* 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;
    }

/* 1/11/23 */

.cstm-button.disabled {
    background-color: #cdcdcd !important;
    cursor: not-allowed;
}
/* 2/11/23 */
.profilepicupload {
    position: relative;
    width: 100%;
    height: 100%;
}

    .profilepicupload .profile-pic {
        width: 100%;
        object-fit: contain;
        background-position: center;
        height: 172px;
        display: inline-block;
    }

    .profilepicupload .file-upload {
        display: none;
    }

    .profilepicupload .circle {
        border-radius: 4px !important;
        overflow: hidden;
        width: 100%;
        height: 90%;
        border: 2px solid rgb(229 229 229);
        position: relative;
        background: #e4e6e7;
    }

    .profilepicupload .p-image {
        position: absolute;
        bottom: 30px;
        right: 10px;
        color: #666666;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: #ffffff;
        box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .profilepicupload .p-image:hover {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

    .profilepicupload .upload-button {
        font-size: 18px;
    }

        .profilepicupload .upload-button:hover {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: #999;
        }

.seperatorline {
    position: relative;
}

    .seperatorline:before {
        content: "";
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #cdcdcd;
        height: 1px;
        width: 100%;
    }

    .seperatorline span {
        background-color: #f8f9fa;
        position: relative;
        z-index: 1;
        width: max-content;
        margin: 0 auto;
        text-align: center;
        padding: 0 25px;
    }
/* 3/11/23 */
.bottom-tab-area .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #146518;
    border-radius: 0;
}

.bottom-tab-area .nav-tabs .nav-link {
    color: #000000;
    text-transform: uppercase;
}

.bottom-tab-area .nav-tabs .nav-item {
    border-right: 1px solid #cdcdcd;
    border-top: 1px solid #cdcdcd;
    text-transform: capitalize;
}

    .bottom-tab-area .nav-tabs .nav-item:last-child {
        flex: 1;
    }

    .bottom-tab-area .nav-tabs .nav-item:first-child {
        border-left: 1px solid #cdcdcd;
    }

.bottom-tab-area .nav-tabs {
    background-color: #e9e9e9;
}

.case-fill-menu a.nav-link {
    display: flex;
    align-items: center;
}

.case-fill-menu a span {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 6px;
    font-size: 14px;
}
/* 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;
}

/*12/1/23*/
button.savebtn[type="button"]:disabled {
    background: #cdcdcd;
    cursor: not-allowed;
}
/*5/12/23*/
.textareaheight{height:88px;}


#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;}

.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;
}

table.table-bordered.dataTable{width:100% !important;}
#example1 thead {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    border-top: solid 1px #ccc;
    /*background-color: #51c1cd;*/
    background-color: #66757F;
    color: #fff;
    font-size: 15px;
}

.no-data-message {
    text-align: center;
    padding: 10px;
}



#eye{
    float: right;
    top: -25px;
    right: 10px;
    position: relative;
    cursor: pointer;
}


.login__field {
    padding: 15px 0px;
    position: relative;
}

    .login__field i.fa.fa-refresh {
        visibility: hidden;
    }

    .login__field.rbtn {
        padding: 10px 0px;
        position: relative;
    }

.login__icon {
    position: absolute;
    top: 30px;
    color: #7875B5;
}
.login__input {
    /* border: none; */
    border: 1px solid #D1D1D4;
    background: none;
    padding: .375rem 2.25rem .375rem .75rem;
    padding-left: 10px;
    font-weight: 500;
    width: 93%;
    transition: .2s;
    border-radius: 26px;
    /* background-color: #fff; */
}

    .login__input:active,
    .login__input:focus,
    .login__input:hover {
        outline: none;
        border-color: #6A679E;
    }
.bg-light {
    background-color: #deeaee !important;
}
#example1 {
    /*background-color: #87bdd8;*/
    /*background-image: radial-gradient(to bottom right, #f0efef, #87bdd8);*/
    background-image: radial-gradient(#f0efef, #ddeedd, #d9ecd0);
}
#repondentUserList {
    /*background-color: #87bdd8;*/
    /*background-image: radial-gradient(to bottom right, #f0efef, #87bdd8);*/
    background-image: radial-gradient(#f0efef, #ddeedd, #d9ecd0);
}
#example {
    /*background-color: #F5F5F1;*/
    background-image: radial-gradient(#f0efef, #ddeedd, #d9ecd0);
}
.card-body {
    background-color: #f0efef;
}