body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    font-size: 14px
}
:root {
    --themewhite: #fff;
    --themegray: #f4f4f4;
    --themeblack: #000;
    --themecolor: #03a9f4;
    --themecolor1: var(--themecolor);
    --themecolor2: #016491;
    --themecolor3: #ff7b2a;
}

@font-face {
    font-family: 'Oswald';
    src: url('../Fonts/Oswald-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    src: url('../Fonts/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Exo';
    src: url('../Fonts/Exo-VariableFont_wght.ttf') format('truetype');
}

    .top_header {
    height: 115px;
    background: #f2f2f2;
    border: 1px solid #f4f4f4;
    box-shadow: 0 0 15px rgba(0, 0, 0, .06);
    background-image: url('../../img/New_UI/crd_bg.jpg');
}

.logo_head {
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Main_title {
    font-family: 'Oswald' !important;
    font-size: 25px;
    color: var(--themecolor3);
    font-weight: 500;
    padding: 0 2%;
}

    .Main_title span {
        display: block;
        font-size: 18px;
        margin-top: -7px;
        color: #555555;
    }

.logo_head img {
    width: 185px;
}
img.upneda_logo {
    width: 130px;
}

.card_section {
    position: relative;
    padding: 40px 0;
    background-repeat: no-repeat;
    background-image: url('../../img/New_UI/landing_img.jpg');
    background-size: 100%;
    height: 645px;
}

.card_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
    margin-top: 3%;
}

.deprt_crd {
    border-radius: 100%;
    position: relative;
    z-index: 9;
    transition: 0.3s;
}

    .deprt_crd::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        background-image: url('../../img/New_UI/shape.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: 0.5s all;
        z-index: -1;
    }

    .deprt_crd:hover:after {
        transform: rotate(90deg);
    }

    .deprt_crd .crd_dtls {
        position: relative;
        padding: 20px;
        margin: 20px;
        background: #fff;
        height: 175px;
        width: 175px;
        border-radius: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        box-shadow: 0 0 15px rgba(0, 0, 0, .06);
        background-image: url(../../img/New_UI/crd_bg.jpg);
    }


.crd_dtls img {
    width: 75px;
    display: block;
    margin-bottom: 7px
}

.crd_dtls a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Oswald';
    display: flex;
    justify-content: center;
    color: #ff7d2d;
    flex-wrap: wrap;
    line-height: 19px;
}

.deprt_crd:hover a {
    color: #2e961b;
}

.main_btn {
    visibility: visible;
    opacity: 1;
    transform: none;
    overflow: hidden;
    perspective: 0dvh;
    transition: 0.4s ease-in-out;
    background-color: #0893f7;
    border: 1px solid #047ed5;
    color: #fff !important;
    position: relative;
    z-index: 0;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    line-height: 20px;
    padding: 5px 13px;
    border-radius: 5px;
    display: block;
    min-width: 100px;
}

   /* .main_btn:before,
    .main_btn:after {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #2e961b;
        z-index: -1;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
        border-radius: 99px;
        -webkit-transform: scaleY(1.1);
        -ms-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    .main_btn:before {
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
    }

    .main_btn:after {
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
    }

    .main_btn:hover::before,
    .main_btn:hover:after {
        border-radius: 0;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }*/

    .main_btn:hover {
        background: #2e961b;
        border: 1px solid #2e961b;
    }

.back_btn {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.footer_sec {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #fff;
    padding: 19px 40px;
}

.copyright {
    text-align: center;
    font-size: 14px;
    font-family: Poppins;
    color: #000;
}
.overflow-hidden {
    overflow: hidden
}

.login_crd {
    position: relative;
    width: 340px;
    height: 320px;
    background: #fff;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    box-shadow: 8px 5px 20px 0px #00000057;
}

    .login_crd::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 340px;
        height: 320px;
        background: linear-gradient(0deg, transparent, #47af34, #47af34);
        transform-origin: bottom right;
        animation: animate 6s linear infinite;
    }

    .login_crd::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 340px;
        height: 320px;
        background: linear-gradient(0deg, transparent, #9b1fe8, #9b1fe8);
        transform-origin: bottom right;
        animation: animate 6s linear infinite;
        animation-delay: -3s;
    }

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login_crd_inr {
    position: absolute;
    inset: 3px;
    border-radius: 8px 0 0 8px;
    background: #ffffff;
    z-index: 10;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
}

    .login_crd_inr h2 {
        color: #9b1fe8;
        font-weight: 700;
        font-size: 18px;
        text-align: center;
        letter-spacing: 0.1em;
    }

    .login_crd_inr h3 {
        color: #47af34;
        font-weight: 600;
        font-size: 15px;
        text-align: center;
        letter-spacing: 0.1em;
    }

.input_box {
    width: auto;
    height: auto;
    position: relative;
}

    .input_box label {
        font-size: 14px;
        color: #47af34;
        padding: 3px 8px;
        position: absolute;
        font-weight: 600;
        top: -14px;
        font-family: 'Oswald';
        left: 8px;
        background: #fff;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
        pointer-events: none;
    }

.drpdown {
    outline: none;
    border-radius: 3px;
    height: 36px;
    width: 100%;
    padding-left: 5px;
    padding-top: 3px;
    color: #000;
    font-size: 14px;
    box-shadow: none;
    outline: none;
    background: #fff;
    border: 1px solid #47af34;
}

.District_img {
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    box-shadow: -8px 5px 20px 0px #00000057;
}

.login_crd_box, .District_img {
    overflow: hidden;
    margin-top: 25px;
}





.input_box {
    position: relative;
    margin: 10px 0;
}

    .input_box input {
        position: relative;
        width: 100%;
        padding: 10px;
        height: 35px;
        background: transparent;
        border: none;
        outline: none;
        color: #23242a;
        z-index: 9
    }

    .input_box span {
        position: absolute;
        left: 6px;
        top: 7px;
        font-size: 1em;
        color: #4e4c4c;
        pointer-events: none;
        letter-spacing: 0.05em;
        transition: 0.5s;
    }

    .input_box input:valid ~ span,
    .input_box input:focus ~ span {
        color: #ff7d2d;
        transform: translateX(0px) translateY(-34px);
        font-size: 15px;
        top: 21px;
        left: 5px;
        padding: 0 5px;
        z-index: 99;
        background: #fff;
    }

    .input_box i {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: #ffffff;
        border: 1px solid #ff7d2d;
        border-radius: 3px;
        transition: 0.5s;
        pointer-events: none;
    }

    .input_box input:valid ~ i,
    .input_box input:focus ~ i {
        height: 35px;
    }

    .input_box .alert_span {
        position: absolute;
        font-size: 10px;
        color: red;
        right: 0;
        left: auto;
        top: auto;
        bottom: 3px;
    }

    .input_box input:valid ~ .alert_span,
    .input_box input:focus ~ .alert_span {
        position: absolute;
        font-size: 10px;
        color: red;
        right: 6px;
        left: auto;
        background: antiquewhite;
        top: 24px;
        height: 18px;
        bottom: 3px;
        border-radius: 8px;
        z-index: 999;
    }

.alert_msg {
    position: absolute;
    bottom: 109px;
    right: 30px;
}

    .alert_msg span {
        font-size: 12px;
        color: red;
    }

.login_checkbox {
    margin-top: 14px;
    font-size: 13px;
    display: flex;
    gap: 0 3px;
    align-items: center;
    margin-bottom: 20px;
    color: #9b1fe8;
}

.user_log {
    position: absolute;
    right: 15px;
}

    .user_log h1 {
        font-size: 17px;
        font-weight: 600;
        color: #0f8ae3;
    }
.Logot_btn input {
    background: #ff7d2d;
    color: #ffffff;
    font-size: 14px;
    border-radius: 5px;
    line-height: 12px;
    padding: 5px 10px;
    float: right;
    border: 1px solid #fc7928;
}
    .Logot_btn input:hover {
        border-color: #9b1fe8;
        background: #9b1fe8;
    }
nav.navbar.navbar-default {
    width: 100%;
    background: var(--themecolor);
    padding: 0 60px;
}
.page_heading {
    color: #ff7d2d;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 25px;
    font-family: 'Exo';
    z-index: -1;
    margin-bottom: 15px;
    margin-top: 30px;
}

    .page_heading:before {
        content: "";
        background-image: url(../../img/New_UI/solarpanel.png);
        background-size: contain;
        display: inline-block;
        width: 30px;
        height: 30px;
        top: 6px;
        position: relative;
        margin-right: 1px;
        margin-left: -20px;
    }

.sub_heading {
    color: var(--themecolor1);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-left: 21px;
    font-family: 'Exo';
    margin-bottom: 15px;
    margin-top: 15px;
}

    .sub_heading:before {
        content: "";
        background-image: url(../../MediaGallery/Icons/sub_head.png);
        background-size: contain;
        display: inline-block;
        width: 28px;
        height: 28px;
        position: relative;
        top: 4px;
        margin-right: 4px;
        margin-left: -30px;
    }

.page_li {
    list-style: none;
    padding-left: 5px;
}

    .page_li li {
        position: relative;
        padding-left: 10px;
    }

        .page_li li:last-child {
            border-bottom: none
        }

    .page_li li {
        font-size: 15px;
        padding: 7px 5px;
        padding-left: 27px;
        width: fit-content;
        text-align: justify;
        border-bottom: 1px dashed #dfdfdf;
        line-height: 24px;
    }

        .page_li li::before {
            content: "";
            background-image: url(../../MediaGallery/Icons/li_1.png);
            background-size: contain;
            display: inline-block;
            width: 23px;
            height: 23px;
            position: relative;
            top: 7px;
            margin-left: -26px;
            margin-right: 5px;
        }

        .page_li li .page_li li::before {
            background-image: url(../../MediaGallery/Icons/li_2.png);
            width: 22px;
            top: 6px;
            height: 22px;
        }

        .page_li li li .page_li li:before {
            background-image: url(../../MediaGallery/Icons/li_3.png);
            width: 20px;
            top: 5px;
            height: 20px;
        }


ol li {
    padding: 3px;
}
.footer_box .footer_sec {
    border-top: 1px solid #ffd7be;
    background: #ffe7d8;
    position: relative;
    margin-top: 60px;
}
.main_page {
    padding: 20px 60px;
    min-height: 550px;
    position:relative;
}
.main-inner {
    position: relative;
}
.dropdown_display3 {
    display: flex;
    align-items: center;
    justify-content: end;
    color: #000;
    margin-left: 10px;
    line-height: 28px;
    padding-right: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Oswald' !important;
}

    .dropdown_display3 span {
        font-weight: 400;
        font-size: 15px;
        margin-right: 6px;
        font-family: 'Oswald' !important;
    }

    .dropdown_display3 select, .dropdown_display3 INPUT {
        border: 1px solid #dee2e6;
        padding: 3px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 15px;
        height: 30px;
        font-family: 'Oswald' !important;
    }
span.success_alrt {
    color: green;
    position: absolute;
    right: 15px;
    top: 35px;
}
span.success_alrt span{
    color: green;
    position: absolute;
    right: 15px;
    top: 35px;
}

@media only screen and (max-width: 1501px) and (min-width: 510px) {
    .login_crd_box, .District_img, .login_crd {
        width: 300px;
        height: 280px;
    }

    .login_crd_inr {
        padding: 15px 30px;
    }

    .card_section {
        position: relative;
        padding: 1px 0;
    }

    .alert_msg {
        position: absolute;
        bottom: 85px;
        right: 30px;
    }

        .alert_msg span {
            font-size: 11px;
        }

    .back_btn {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .login_checkbox {
        margin-bottom: 10px;
    }
}


.common_container {
    padding: 0 40px;
}
.main_page {
    padding: 20px 60px;
    min-height: 650px;
    position: relative;
}

.main-inner {
    position: relative;
}

.dropdown_display3 {
    display: flex;
    align-items: center;
    justify-content: end;
    color: #000;
    margin-left: 10px;
    line-height: 28px;
    padding-right: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Oswald' !important;
}

    .dropdown_display3 span {
        font-weight: 400;
        font-size: 15px;
        margin-right: 6px;
        font-family: 'Oswald' !important;
    }

    .dropdown_display3 select, .dropdown_display3 INPUT {
        border: 1px solid #dee2e6;
        padding: 3px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 15px;
        height: 30px;
        font-family: 'Oswald' !important;
    }

span.success_alrt {
    color: green;
    position: absolute;
    right: 15px;
    top: 35px;
}

.serc_flter {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0 8px;
    margin-bottom: -19px;
    margin-top: 20px;
}

    .serc_flter label {
        color: #000;
        font-family: 'Oswald';
        font-weight: 400;
        font-size: 14px;
    }

    .serc_flter .text_box {
        background: transparent;
        border: 1px solid #ff7d2d;
        box-shadow: none;
        border-radius: 4px;
        font-size: 14px;
    }

        .serc_flter .text_box:focus-visible {
            outline: none;
        }

    .serc_flter .btn-success {
        padding: 0 9px;
    }

    .serc_flter .refrsh_btn {
        height: 25px;
        border: 1px solid var(--themecolor);
        border-radius: 2px;
    }


span.TotalRecord {
    position: absolute;
    color: #000;
    margin-bottom: 3px;
    right: 4px;
}

table.table.clr_table {
    position: relative;
    border-color: #ffccac !important
}

.clr_table tr th {
    background-color: #ff741b !important;
    color: #fff !important;
    text-align: center;
    border-color: #ff9551 !important;
    border-top: 1px solid;
    font-weight: 600;
}

    .clr_table tr th:hover {
        background-color: #ff741b !important;
    }


.wth_3 {
    width: 3%;
}

.wth_4 {
    width: 4%;
}

.wth_5 {
    width: 5%;
}

.wth_6 {
    width: 6%;
}

.wth_7 {
    width: 7%;
}

.wth_8 {
    width: 8%;
}

.wth_9 {
    width: 9%;
}

.wth_10 {
    width: 10%;
}

.wth_12 {
    width: 12%;
}

.wth_13 {
    width: 13%;
}

.wth_15 {
    width: 15%;
}

.wth_20 {
    width: 20%;
}

.wth_25 {
    width: 25%;
    min-width: 25%;
    max-width: 25%;
}

.wth_27 {
    width: 27%;
}

.wth_30 {
    width: 30%;
}

.wth_35 {
    width: 35%;
    min-width: 35%;
    max-width: 35%;
}

.wth_40 {
    width: 40%;
}

.wth_45 {
    width: 45%;
}

.wth_50 {
    width: 50%;
}

.wth_55 {
    width: 55%;
}

.wth_70px {
    width: 70px
}

tr.custom-pager {
    position: absolute;
    display: flex;
    right: -5px;
    bottom: -45px;
}

    tr.custom-pager, tr.custom-pager td {
        border: none;
        background: transparent;
    }


        tr.custom-pager a, tr.custom-pager span {
            display: table;
            margin: 0 2px;
            text-decoration: none;
            background-color: var(--themecolor);
            color: white;
            border-radius: 5px;
            width: 25px;
            min-width: 25px;
            height: 25px;
            line-height: 25px;
            text-align: center;
            font-size: 13px;
        }


        tr.custom-pager span {
            background-color: #ff741b;
            font-weight: bold;
        }

/* Optional: hover effect */
        tr.custom-pager a:hover {
            background-color: #ff741b;
        }



.table-hover > tbody > tr.custom-pager:hover > *, .table-hover > tbody > tr:hover > th {
    --bs-table-color-state: var(--bs-table-hover-color);
    --bs-table-bg-state: none;
}


table.table.clr_table > tbody > tr:nth-child(even) > * {
    background: #fff8f4 !important;
}


.table-hover > tbody > tr:hover > * {
    --bs-table-color-state: var(--bs-table-hover-color);
    --bs-table-bg-state: rgb(253 230 217 / 73%);
}
td, th{
    vertical-align:middle
}

    input.del_icon:hover, input.edit_icon:hover, a.view_copy:hover{
        animation: shake 0.5s;
    }
a.view_copy {
    text-align: center;
    display: block;
}
    a.view_copy img {
         width: 25px;
}
    @keyframes shake {
        0% {
            transform: translateX(0);
        }

        20% {
            transform: translateX(-3px);
        }

        40% {
            transform: translateX(3px);
        }

        60% {
            transform: translateX(-3px);
        }

        80% {
            transform: translateX(3px);
        }

        100% {
            transform: translateX(0);
        }
    }

.drpdown {
    outline: none;
    border-radius: 3px;
    height: 36px;
    width: 100%;
    padding-top: 9px;
    font-weight: 300;
    color: #000000;
    font-size: 14px;
    padding-left: 20px;
    box-shadow: none;
    outline: none;
    background: #fff;
    border: 1px solid #b5b5b5;
}


.input_boxs input {
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    height: 40px;
    width: 100%;
    color: #000000;
    background: #fff;
    font-size: 14px;
    padding-left: 20px;
    padding-top: 10px;
    box-shadow: none;
}

.input_boxs textarea {
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    height: 40px;
    width: 100%;
    color: #000000;
    font-size: 14px;
    padding-left: 20px;
    box-shadow: none;
}
 

.input_boxs {
    width: auto;
    height: auto;
    position: relative;
}

    .input_boxs label {
        font-size: 15px;
        color: #4e4e4e;
        font-weight: 600;
        top: -12px;
        left: 10px;
        background: #fff;
        position: absolute;
        padding: 0px 5px 0px 5px;
    }
        .alert_textbox {
    float: right;
    font-size: 12px !important;
    margin-right: 11px;
    margin-top: -12px;
    position: relative;
    line-height: 20px;
    z-index: 999;
    background: bisque;
    border-radius: 5px;
    padding: 0px 8px;
}

    .alert_textbox:before {
        font-family: 'FontAwesome';
        content: "\f071";
        /* content: "\f06a";   For Circle */
        color: red;
        margin-right: 2px;
    }

.input_boxs.clndr::before {
    content: "\f073";
    font-family: 'FontAwesome';
    font-weight: 500;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #7d7d7d;
    pointer-events: none;
    font-size: 18px;
}
.input_boxs.clndr input{
    padding-right: 30px; 
}
.ajax__calendar .ajax__calendar_container {
    border: 1px solid #cdcdcd;
    background-color: #ffffff;
    color: #000000;
    border-radius: 4px;
    margin-top: 2px;
    padding: 8px;
    cursor: default;
    width: 250px;
    font-size: 15px;
    text-align: center;
    font-family: 'Poppins-Regular';
}
.ajax__calendar_prev, .ajax__calendar_next {
    transform: scale(1.5);
}
.ajax__calendar_body, .ajax__calendar_days, .ajax__calendar_months, .ajax__calendar_years {
    height: 170px !important;
    width: 230px !important;
    margin-top: 5px !important;
}
.ajax__calendar_container TD {
    font-size: 15px !important;
}
.ajax__calendar_dayname, .ajax__calendar_day {
    height: 22px !important;
    width: 30px !important;
    text-align: center !important;
}
.ajax__calendar .ajax__calendar_dayname {
    border-bottom: 1px solid #d3cfcf;
    margin-bottom: 4px;
}
.ajax__calendar_day {
    border-radius: 2px !important;
}
.ajax__calendar_footer {
    height: 25px !important;
}
.ajax__calendar_footer {
    height: 25px;
}
.ajax__calendar .ajax__calendar_hover .ajax__calendar_day {
    background-color: #ffc099 !important;
    border-color: #ffb282 !important;
    color: #000000 !important;
}
.ajax__calendar .ajax__calendar_active .ajax__calendar_day {
    background-color: #ffc099 !important;
    border-color: #fb7725 !important;
    color: #000000 !important;
}
.input_boxs.choose_file label {
    left: auto;
    right: 10px;
}
.input_boxs span#content1_lblUpload {
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    top: -12px;
    left: auto;
    right: 10px;
    background: #fff;
    position: absolute;
    padding: 0px 5px 0px 5px;
}
.input_boxs.choose_file input {
      padding: 5px;
}
.fincyear {
    float: right;
    padding-top: 9px;
}
    .fincyear h3 {
        font-size: 18px;
        }
    .fincyear select {
      border-radius: 3px;
    padding: 3px 5px;
    font-size: 15px;
    font-weight: 600;
    border-color: #b7b7b6;
}
.alert_red {
    float: right;
    color: red;
    font-size: 12px;
    padding-top: 13px;
}
.rdio_frm {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
span.aspNetDisabled {
    display: flex;
    align-items: center;
    gap: 2px;
}
input:disabled {
    background-color: #f7f7f7;
    color: #3a3939;
    border: 1px solid #ebebeb;
}

input:disabled + label{
    background-color:transparent
}
.ajax__calendar {
    z-index: 99999;
}
.ajax__calendar_month, .ajax__calendar_year {
    height: 40px;
    line-height: 13px;
}
    .rdio_frm .radio_text{
    display: flex;
    align-items: center;
    gap: 2px;
    margin:0 2%;
}
/*.ajax__calendar_days, .ajax__calendar_months, .ajax__calendar_years{
    background:#fff
}*/
.clr_table a, .tbl_a {
    background: #0893f7;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    min-width: 50px;
    line-height: 13px;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    border: none;
}
    .clr_table a:hover, .tbl_a:hover {
        background: #ff741b;
    }
table.table.clr_table > tbody > tr.custom-pager:nth-child(even) > * {
    background: #fff !important;
}
a.img_anc {
    background: no-repeat;
    padding: 0;
    width: 100%;
    text-align: center;
}
a.img_anc:hover {
    background: no-repeat;
}


#dvDetails {
    display: none;
    z-index: 1000;
    position: fixed;
    /*top: 230px;*/
    top: 25px;
    left: 0;
    background-color: White;
    height: 550px;
    width: 600px;
    padding: 5px;
    border: solid 1px black; /*overflow-y: auto;*/
    border-radius: 7px 7px 7px 7px;
    -moz-border-radius: 7px 7px 7px 7px;
    -webkit-border-radius: 7px 7px 7px 7px;
    transition: opacity 0.5s ease-in-out;
}

.popScroll {
    width: 590px;
    height: 540px;
    padding: 5px 5px 5px 5px;
    overflow-x: auto;
}

.close {
    position: absolute;
    top: -0.75em;
    right: -0.75em;
    display: block;
    width: 1em;
    height: 1em;
    font: bold large/1 arial, sans-serif;
    text-align: center;
    text-decoration: none;
    background: #000;
    border: 3px solid #fff;
    color: #fff;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;
    -moz-box-shadow: 0 0 1px 1px #3a3a3a;
    -webkit-box-shadow: 0 0 1px 1px #3a3a3a;
    box-shadow: 0 0 1px 1px #3a3a3a;
}

    .close:before {
        content: "X";
    }

    .close:hover {
        box-shadow: 0 0 1px 1px #c00;
        background: #c00;
    }

    .close span {
        text-indent: -200em;
        display: block;
    }
.tolt_text {
    text-align: right;
    font-weight: 600;
    line-height: 57px;
    font-size: 14px;
}
    .tolt_text #lbltotalRecords {
        display: none
    }

.loder_sec {
    z-index: 9999999999;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.multi-spinner-container {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 30px auto;
    overflow: hidden;
}

.multi-spinner {
    position: absolute;
    width: calc(100% - 9.9px);
    height: calc(100% - 9.9px);
    border: 3px solid transparent;
    border-top-color: #9ce727;
    border-radius: 50%;
    -webkit-animation: spin 5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
    animation: spin 5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
body.drk_bdy {
    overflow: hidden;
}
    body.drk_bdy::after {
        content: '';
        background: #00000099;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999999;
        width: 100vw;
        height: 100vh;
    }
input.del_icon, input.edit_icon {
    width: 19px;
    border: none;
    background: none;
}
.fs-8{
    font-size:12px
}
span.notes {
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
    color: red;
}
.reprt_img {
    width: 120px;
    height: 120px;
    border: 2px solid #ccc;
    border-radius:5px;
}
.alrt_txt span {
    font-weight: 700;
    color: #000099;
    float:left;
    margin:0 15px;
   }
.modalPopup {
    background: #fff;
    border: 1px solid #e3e3e3;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 0 5px 1px #00000026;
    text-align: left;
}
span.TotalWorkRecord {
    float: right;
    font-weight: 600;
    color: #0f8fe6;
    margin-right: 6px;
    margin-bottom: 3px;
}

@media only screen and (max-width: 1501px) and (min-width: 510px) {

    span#lblLoginName {
        width: 120px;
        display: block;
    }
}
.main_menu {
    position: relative;
}
.user_icon {
    position: absolute;
    right: 20px;
    top: 4px;
}

.adminDropdown {
    position: relative;
    display: inline-block;
}
.dropdown_toggle {
    cursor: pointer;
    user-select: none;
    padding: 3px;
    border: 2px solid #fff;
    width: 33px;
    height: 33px;
    border-radius: 34px;
}
    .dropdown_toggle img {
    width:100%
    }
    .dropdown_menu {
    position: absolute;
    top: 100%;
    right: -10px;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 4px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.adminDropdown.active .dropdown_menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Triangle */
.dropdown_menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #f1f1f1 transparent;
}

.dropdown_menu a {
    color: black;
    padding: 7px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #d1cccc;
}
.dropdown_menu p {
    padding: 7px;
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #d1cccc;
    margin-bottom: 0;
    color: #03a9f4;
    font-weight: 700;
}

    .dropdown_menu a:last-child {
        border-radius:0 0 4px 4px;
        border:none
    }
.dropdown_menu a:hover {
    background-color: #ffffff;
    color: #03a9f4;
    
}