@font-face {
    font-family: 'ClashGrotesk-Extralight';
    src: url('../../newstyle/fonts/ClashGrotesk-Extralight.woff2') format('woff2'), url('../fonts/ClashGrotesk-Extralight.woff') format('woff'), url('../fonts/ClashGrotesk-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk-Light';
    src: url('../../newstyle/fonts/ClashGrotesk-Light.woff2') format('woff2'), url('../fonts/ClashGrotesk-Light.woff') format('woff'), url('../fonts/ClashGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk-Regular';
    src: url('../../newstyle/fonts/ClashGrotesk-Regular.woff2') format('woff2'), url('../fonts/ClashGrotesk-Regular.woff') format('woff'), url('../fonts/ClashGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk-Medium';
    src: url('../../newstyle/fonts/ClashGrotesk-Medium.woff2') format('woff2'), url('../fonts/ClashGrotesk-Medium.woff') format('woff'), url('../fonts/ClashGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk-Semibold';
    src: url('../../newstyle/fonts/ClashGrotesk-Semibold.woff2') format('woff2'), url('../fonts/ClashGrotesk-Semibold.woff') format('woff'), url('../fonts/ClashGrotesk-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk-Bold';
    src: url('../../newstyle/fonts/ClashGrotesk-Bold.woff2') format('woff2'), url('../fonts/ClashGrotesk-Bold.woff') format('woff'), url('../fonts/ClashGrotesk-Bold.ttf') format('truetype');
    font-weight: bold;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../../newstyle/fonts/ClashGrotesk-Variable.woff2') format('woff2'), url('../fonts/ClashGrotesk-Variable.woff') format('woff'), url('../fonts/ClashGrotesk-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ClashGrotesk' !important;
    font-size: 1rem;
    color: #424141;
    background: #F6F6F6;
    overflow-x: hidden;
}

.table-layout-fixed {
    table-layout: fixed !important;
}

.loading {
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    background-color: #ffffffcc;
    z-index: 999;
    backdrop-filter: blur(3px);
}

    .loading .loading-text-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

a {
    color: #e16b23;
    text-decoration: none;
}

.accordsuffix {
    display: block;
}

/*modified by vishal 15-07-25*/
.title {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    padding: 0 0 0.7rem;
    border-bottom: 1px solid #eaeaea;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
/*modified by vishal 15-07-25*/

.panel.panel-default #Tabs .nav.nav-tabs li a.active {
    color: #ae5530;
}

.panel.panel-default #Tabs .nav.nav-tabs li a {
    color: #000;
}

.fw-500 {
    font-weight: 500;
}

.content-border-end {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

    .content-border-end::after {
        content: "";
        width: 1px;
        height: 60%;
        display: flex;
        background-color: #dee2e6;
    }


/*header css*/
/* mega menu dropdown - Starts */
.mega-menu .section-title h3 {
    color: var(--color);
    font-size: 2rem;
    padding-bottom: .8rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgb(199 199 199 / 67%);
}

.mega-menu {
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    width: 98%;
    margin: 0 auto;
    z-index: 10;
    background-color: #fff;
    padding: 1.5rem 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
    visibility: hidden;
}

    .mega-menu.show-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
        overflow-y: scroll;
        height: 425px;
    }

.reportleft-content {
    position: relative;
}

    .reportleft-content:after {
        position: absolute;
        content: "";
        right: 0px;
        top: 2px;
        width: 1px;
        height: 100%;
        background-color: #ededed;
    }

.mega-menu .dropdown-multicol {
    /*        column-count: 2;*/
    column-gap: 1rem;
    /*        width: 66%;*/
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
}

    .mega-menu .dropdown-multicol li {
        margin-bottom: 1.6rem;
        position: relative;
    }

        .mega-menu .dropdown-multicol li:hover {
            color: #BC4A0B;
        }

        .mega-menu .dropdown-multicol li::before {
            position: absolute;
            content: "\F134";
            font-family: bootstrap-icons !important;
            left: 0;
            top: 2px;
        }

.mega-menu-overlay {
    position: fixed;
    top: 6.9rem;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

    .mega-menu-overlay.show-overlay {
        opacity: 1;
        visibility: visible;
    }

.mega-menu .card {
    box-shadow: 0px 3px 10px #00000023;
    border: 0;
    border-radius: 10px;
    min-height: 19rem;
}

    .mega-menu .card .card-body {
        padding: 1.8rem 1.8rem 1.2rem;
    }

.mega-menu .nav {
    margin-bottom: .5rem;
}

.mega-menu .nav-item {
    /*    border-right: 1px solid #ccc;*/
    padding-right: 2rem;
}

    .mega-menu .nav-item .nav-link {
        color: #505050;
        padding: 1rem 1rem;
        border-radius: 10px;
        position: relative;
        font-size: 1.325rem;
        font-weight: 500;
        border: none;
    }

        .mega-menu .nav-item .nav-link:after {
            content: "\F285";
            font-family: "bootstrap-icons" !important;
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
        }

        .mega-menu .nav-item .nav-link:hover {
            background-color: #bc4a0b17;
            color: #BC4A0B;
            border: none;
        }

        .mega-menu .nav-item .nav-link.active {
            background-color: #bc4a0b17;
            color: #BC4A0B;
            border: none;
        }

body.no-scroll {
    overflow: hidden;
}

.mega-menu .tab-content {
}

header .mega-menu .nav-item:nth-child(2)::after {
    display: none;
}

header .mega-menu .nav-item::after {
    display: none;
}
/* mega menu dropdown - Ends */
/*Mega menu*/
.animated-box {
    width: 300px;
    box-shadow: 0px 10px 19px 1px rgb(199 199 199 / 67%);
    transition: 0.6s ease;
    border: none;
}

.notify {
    position: relative;
}

    .notify .point {
        width: 10px;
        height: 10px;
        border-radius: 30px;
        background-color: #e85359;
        position: absolute;
        right: 4px;
        top: -1px;
    }

.animated-box {
    width: 300px;
    box-shadow: 0px 10px 19px 1px rgb(199 199 199 / 67%);
    transition: 0.6s ease;
    border: none;
    padding: 1rem 0;
    margin-top: 0.1rem !important;
}

.navbar .setings-ico .round-bg {
    background: #e1e1e1;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    line-height: 20px;
}

.msg {
    font-size: 1rem;
    font-weight: 500;
    display: block;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #ffe9eb;
    --bs-alert-border-color: #fcd5d9;
}

.notification__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #dddd;
    background: #5a3323;
    color: #fff;
}

    .notification__header h5 {
        font-size: 1.15rem;
        margin-bottom: 0;
    }

    .notification__header .view-all {
        background: #9b7363;
        outline: none;
        border: 0;
        border-radius: 0.25rem;
        color: #fff;
        padding: 0 0.5rem;
        font-size: 90%;
        transition: 0.3s;
    }

.notification__list ul {
    padding: 0.6rem 1rem;
    height: 250px;
    overflow-y: auto;
    list-style: none;
}


    .notification__list ul li a {
        display: flex;
        color: inherit;
        text-decoration: none;
    }

.notification__count {
    display: flex;
    width: 37px;
    height: 28px;
    background: #e9e9e9;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: 500;
}

.notification__list ul li .date {
    font-size: 0.9rem;
    color: #565656;
    font-style: italic;
    display: block;
}

::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
    border-radius: 2rem;
}

::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 0.25rem;
}

header .nav-link {
    background-color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    color: #333333;
    font-size: 1.2rem;
}

    header .nav-link.dropdown-toggle.megaMenuToggle::after {
        content: '';
        position: absolute;
        bottom: -53px;
        left: 50%;
        transform: translate(-50%, -10px);
        transition: all 0.3s ease;
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-bottom: 14px solid #fff;
        z-index: 999999;
        opacity: 0;
        visibility: hidden;
    }

    header .nav-link.dropdown-toggle.megaMenuToggle.active::after {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

header ul li {
    padding: 0px 6px;
}

header ul.noti-fication li {
    padding: 0px 6px 9px;
    font-size: 1.2rem;
    border-bottom: 1px dashed #ccc !important;
    margin: 0.6rem 0rem 1rem 0rem;
}

    header ul.noti-fication li:last-child {
        border-bottom: 1px solid transparent !important;
    }

.notification-table tr td {
    position: relative;
}

    .notification-table tr td:before {
        position: absolute;
        content: "\F280";
        left: -2px;
        bottom: 21px;
        font-family: bootstrap-icons !important;
        color: #c3623a;
    }

.notification-table tr td {
    padding: .5rem 1.2rem;
}
/* header #sidebarToggle.btn {left: 0;} */
/* header ul li a{ width: 40px; height: 40px;} */
.sidebarToggle-btn .btn-sm, .btn-group-sm > .btn {
    padding: 0;
    line-height: 0;
}

.sidebarToggle-btn {
    margin-right: .8rem;
}

    .sidebarToggle-btn .btn-check:focus + .btn, .btn:focus {
        box-shadow: none;
    }

.user-image {
    width: 28px;
    height: 28px;
}

.menu-list {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.4rem 0.5rem 1.4rem;
    font-size: 1.125rem;
}

.navbar .navbar-nav .nav-item .nav-link i {
    color: #222222;
    font-size: 1.8rem;
}

    .navbar .navbar-nav .nav-item .nav-link i.report {
        color: #222222;
        font-size: 1.2rem;
        margin-right: 0.3rem;
    }

.no-caret {
    display: none !importan;
}

.navbar .dropdown-toggle::after {
    border-top-color: #222222;
    border-top: 0.5em solid;
    border-right: 0.5em solid transparent;
    border-bottom: 0;
    border-left: 0.5em solid transparent;
}

.no-caret.dropdown-toggle::after {
    border: 0px;
    margin: 0px;
}

header .nav-item:nth-child(2)::after {
    top: 2px;
    height: 42px;
}

header .nav-item:nth-child(3)::after {
    top: 2px;
    height: 42px;
}

.clock-details {
    font-size: 0.9rem;
    line-height: 1.3;
    letter-spacing: 1;
    color: #333333;
    text-align: right;
    opacity: 1;
    margin-bottom: 0;
    text-decoration: none;
}

header ul li {
    padding: 0px 8px;
}

.user-details {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.user__header {
    font-size: 1rem;
}

    .user__header span {
        font-weight: 500;
        font-size: 1.1rem;
        color: #333333;
        text-decoration: none;
    }

    .user__header small {
        font-size: 1rem;
        color: #333333;
        font-weight: 400;
    }

.user-details {
    text-decoration: none;
}

header .nav-item {
    position: relative;
}

    header .nav-item::after {
        position: absolute;
        content: "";
        background-color: #d3cfcd;
        top: 0px;
        right: -2px;
        width: 1px;
        opacity: 0.7;
        height: 38px;
    }

    header .nav-item:last-child::after {
        display: none;
    }

header.admin-header {
    padding: 1rem 1.6rem;
    box-shadow: 0px 3px 10px #00000014;
    background: #fff;
    border-bottom: none !important;
    height: 110px;
}

.logo-content {
    color: #212121;
    line-height: 1;
}

    .logo-content span {
        font-size: 1.1rem;
    }

.login-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .login-logo img {
        height: 60px;
    }

.logo-text {
    font-size: 1.475rem;
    font-weight: 500;
    margin-bottom: 0;
}

.login-heading {
    font-size: 1.5rem;
    margin-top: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    color: #fff;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0 1rem;
    clear: both;
    font-weight: 400;
    color: #505050;
    font-size: 1.325rem;
    text-align: inherit;
    text-decoration: none;
    white-space: normal;
    background-color: transparent;
    border: 0;
}

.navbar .setings-ico .round-bg {
    background: #e1e1e1;
    padding: 6.1px 0.6px;
    border-radius: 50%;
    width: 29px;
    height: 29px;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    line-height: 6px;
}

.main-logo {
    display: flex;
    align-items: center;
}

.closemenu-icon svg {
    width: 20px;
    height: 20px;
    fill: #
}
/*header css*/

/*Dashboard Css*/
.mainlayout {
    display: flex;
    justify-content: center; /* or space-between/around depending on layout */
}

#midbg {
    flex: 1;
}

.layoutSidenav_content {
    padding: 0 2rem 0 0;
    width: 100%;
    margin: 0 auto;
}

.inner-layout {
    box-shadow: 0px 3px 10px #0000000F;
    border-radius: 15px;
    background: #fff;
    padding: 2rem;
}
/*Dashboard Css*/

/*Left menu css*/
.glossymenu {
}

#LeftMenu {
    /* width: 888px!important; */
    background-color: transparent;
    color: #FFF;
    padding: 0 1.5rem 0 0;
    border-radius: 0px 20px 20px 0px;
    height: 100vh;
    margin-right: 54rem;
}


    #LeftMenu ul {
        list-style-type: none;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-top: 2px;
        padding: 0px;
    }

.glossymenu a.menuitem {
    display: flex;
    position: relative;
    align-items: center;
    text-decoration: none;
    OVERFLOW: hidden;
    color: #ffffff;
    font-size: 1.125rem;
    width: 99%;
    padding: 0rem 1.1rem 0 0.1rem;
}

.menu-list a.menuitem.active {
    background: linear-gradient(90deg, rgba(252, 186, 36, 0.3) 0%, rgba(90, 51, 35, 0.3) 100%);
}

/*.menu-list .menuitem:active {
    background: linear-gradient(90deg, rgba(252, 186, 36, 0.3) 0%, rgba(90, 51, 35, 0.3) 100%);
    color: #fff;
    margin-left: 1px;
    background-color: #A44242;
    margin-bottom: 1px;
}*/

/*    .menu-list .menuitem:active:hover {
        color: #fff;
        background: linear-gradient(90deg, rgba(252, 186, 36, 0.3) 0%, rgba(90, 51, 35, 0.3) 100%);
    }*/

.glossymenu a.menuitem .statusicon { /*CSS for icon image that gets dynamically added to headers*/
    position: absolute;
    top: 6px;
    right: 0;
    border: none;
}

.menu-list:hover {
    color: #fff;
    background: linear-gradient(90deg, rgba(252, 186, 36, 0.3) 0%, rgba(90, 51, 35, 0.3) 100%);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.menu-list.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(252, 186, 36, 0.3) 0%, rgba(90, 51, 35, 0.3) 100%);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.menu-list div.submenu {
    background-color: #5A3323;
}

    .menu-list div.submenu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

.glossymenu .submenu ul li {
    position: relative;
}

.glossymenu div.submenu ul li:after {
    position: absolute;
    content: "";
    background-color: #d3cfcd;
    top: 20px;
    left: 30px;
    width: 11px;
    height: 1px;
}

.glossymenu div.submenu ul li:hover::after {
    position: absolute;
    content: "";
    background-color: #FCBA24;
    width: 11px;
    height: 1px;
    top: 20px;
    left: 30px;
}

.glossymenu div.submenu ul li a {
    display: block;
    font-size: 1.125rem;
    text-decoration: none;
    color: #ffffff;
    padding: 0.5rem 1rem 0.7rem 3.5rem;
    /* background: url(../Images/menuRhtArrowWhite.png) no-repeat 8px 8px; */
}

    .glossymenu div.submenu ul li a:hover, .glossymenu div.submenu ul li a.actives {
        color: #FCBA24;
    }

#LeftPannel {
    /* border-radius: 0px 20px 20px 0px; */
    /* background: #5A3323; */
    height: 861px;
    max-height: 858px;
    overflow-x: auto;
}

.modified-leftmenu.active {
    background: #5A3323;
    border-radius: 0px 20px 20px 0px;
    padding: 1.3rem 0.5rem 1.3rem 0;
    height: 100%;
}

.modified-leftmenu {
    padding: 0;
}

#MnCtr {
    position: absolute;
    width: 21px;
    /* height: 20px; */
    /* background: #FFFFFF; */
    /* box-shadow: 0px 2px 2px #00000029; */
    /* border-radius: 10px; */
    margin-top: 11px;
    z-index: 15;
}

    #MnCtr a {
        display: block;
        background: #fff;
        width: 38px;
        height: 38px;
        box-shadow: 0px 2px 2px #00000029;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #MnCtr a:hover {
            background-position: 0px -27px;
        }

        #MnCtr a.closed {
            background-position: 0px -54px;
        }

            #MnCtr a.closed:hover {
                background-position: 0px -81px;
            }
/*Left menu css*/


/*content css*/

#img1 {
    display: none;
}

.addTable.coustme-innertable tbody tr td {
    padding: 0.6rem 8px;
}

.note {
    background: #c4bfbf2b;
    padding: 1rem;
    border-radius: 6px;
}

    .note ul {
        padding-left: 0;
        margin-bottom: 0;
    }

        .note ul li {
            display: flex;
            align-items: center;
        }

            .note ul li i {
                font-size: 1.7rem;
                margin-top: 1px;
                display: flex;
            }

.mandatory {
    font-size: 17px;
    font-weight: normal;
    color: #f00;
    text-decoration: none;
}

.form-select {
    padding: 0.56rem 0.75rem;
    font-weight: 400;
    width: 100% !important;
}

.form-control {
    padding: 0.56rem 0.75rem;
    font-weight: 400;
}

#myButton ul {
    list-style: none;
    padding: 0.5rem 0.6rem;
    margin-bottom: -1.3rem;
}

    #myButton ul li a {
        border-radius: 6px;
        margin-bottom: 0;
        border: 1px solid #933434;
        list-style: none;
        color: #933434;
        padding: 0.5rem 1rem;
    }

        #myButton ul li a:hover {
            background: #933434;
            color: #fff;
        }

.right-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

/*modified by vishal 15-07-25*/
.navigation-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 26px 2px 26px;
    padding-left: 1.2rem;
}
/*modified by vishal 15-07-25*/


.sub-heading {
    margin: 2rem 0 1.5rem;
    border-left: 3px solid #bf9a10;
    padding: 0 0.6rem;
    color: #b08d09;
}

.viewTable table th .mandatory {
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}

/*modified by vishal 15-07-25*/
.navigation {
    color: #333333;
    display: flex;
    /*    font-size: 1.2rem;*/
    gap: 1.9rem;
    align-items: center;
}
    /*modified by vishal 15-07-25*/

    .navigation span {
        position: relative;
        line-height: 1.4;
    }

        .navigation span:after {
            position: absolute;
            content: "/";
            font-family: bootstrap-icons !important;
            right: -18px;
            top: -6px;
            font-size: 1.6rem;
            color: #999999;
        }

        .navigation span:last-child:after {
            display: none;
        }

    .navigation ul {
        display: flex;
        list-style: none;
        gap: 1.3rem;
        align-items: center;
        padding-left: 0;
        margin-bottom: 0;
    }

        .navigation ul li {
            position: relative;
            line-height: 1.1;
        }

            .navigation ul li:after {
                position: absolute;
                content: "/";
                font-family: bootstrap-icons !important;
                right: -18px;
                top: -8px;
                font-size: 1.6rem;
                color: #999999;
            }

    .navigation a {
        color: #999999;
        /*        font-size: 1.2rem;*/
        text-decoration: none;
        margin-left: 5px;
    }

        .navigation a.home img {
            height: 16px;
        }

        .navigation a:hover {
            text-decoration: none;
            color: #000;
        }

/*modified by vishal 15-07-25*/
#myTab {
    display: flex;
    justify-content: end;
    margin-top: 0;
    align-items: center;
}
    /*modified by vishal 15-07-25*/


    #myTab span {
        background-image: url(../images/tblHd.gif);
        background-repeat: repeat-x;
        background-position: left top;
        float: left;
        padding-top: 6px;
        padding-right: 15px;
        padding-bottom: 6px;
        padding-left: 15px;
        font-weight: bold;
        color: #fff;
    }

    #myTab ul {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }

.AnsCCE {
    background-color: #efefef;
    padding: 5px;
    border: 1px solid #e3e3e3;
}

#myTab ul li {
    margin: 0px;
    float: left;
    padding-top: 0px;
    padding-right: 2px;
    padding-bottom: 0px;
    padding-left: 0px;
}

    #myTab ul li a {
        padding: 0.5rem 1rem;
        background-color: #721A1A;
        color: #fff;
        border-radius: 6px;
        border: 1px solid #721A1A;
        text-decoration: none;
    }

        #myTab ul li a:hover {
            background-color: #721A1A;
            color: #fff;
            /*background-image:none;*/
        }

    #myTab ul li.active a {
        color: #fff;
        background-color: #933434;
        border: 1px solid #721A1A;
    }

.util {
    display: flex;
    margin-top: 0px;
    align-items: center;
    gap: 0.6rem;
}

/*modified by vishal 15-07-25*/
.required {
    color: #cd3030;
    /* float: right; */
    /* margin-left: 4px; */
}
/*modified by vishal 15-07-25*/

.util a {
    margin-right: .5rem;
    /*margin-bottom: -24px;*/
    display: flex;
    font-size: 18px;
    height: 37px;
    color: #3B3B3B;
    width: 38px;
    text-align: center;
    justify-content: center;
    line-height: 20px;
    padding: 0.6rem 0.4rem 1.3rem 0.5rem;
    box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
    text-align: center;
    border-radius: 6px;
    vertical-align: middle;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .util a:hover {
        color: #333333;
        background-color: #e6e6e6;
        text-decoration: none;
    }

/*modified by vishal 15-07-25*/
.content-body {
    padding: 0 1.3rem 0 0rem;
}

.main-content {
    background: #fff;
    box-shadow: 0px 3px 10px #0000000F;
    border-radius: 15px;
    margin-top: 1.3rem;
    padding: 1.2rem;
}
/*modified by vishal 15-07-25*/

/*Search css*/
/*modified by vishal 16-07-25*/
.searchTable {
    margin: 5px 0 15px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 1rem;
}
    /*modified by vishal 16-07-25*/

    .searchTable td {
        padding: 4px;
        font-weight: 500;
    }
/*Search css*/

/*table css*/

/*.responsive-width {
    width: 93vw;
}*/

.tdgraybg {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    width: 80px;
    height: 20px;
    background-color: #eeeeee;
    color: #bbbbbb;
    border: solid 1px #dddddd;
}

.viewTable {
    position: relative;
    z-index: 1;
    border: none;
}

    .viewTable table {
        border-collapse: collapse;
        border: 1px solid #dee2e6;
        color: #000000;
        width: 100%;
        margin-bottom: 5px;
        padding: 2px;
        word-wrap: break-word !important;
        table-layout: fixed;
    }

        .viewTable table td {
            border-collapse: collapse;
            border: 1px solid #e4e0e0;
            font-weight: normal;
            padding: 5px;
        }

        .viewTable table th, .viewTablenewd td .viewTable table th {
            border-collapse: collapse;
            border: 1px solid #e4e0e0;
            color: #333333;
            text-align: left;
            font-weight: 500;
            padding: 5px;
            background-color: #e8e8e891;
            background-image: none;
        }

        /*.viewTable table.custom-column-width th:first-child {
            width: 60px;
        }*/

        /*.viewTable table.custom-column-width th:not(:first-child) {*/
        .viewTable table.custom-column-width th {
            width: 200px;
        }

        /*.viewTable table.custom-column-width-chk th:nth-child(1),
        .viewTable table.custom-column-width-chk th:nth-child(2) {
            width: 60px;
        }*/

        /*.viewTable table.custom-column-width-chk th:not(:first-child):not(:nth-child(2)) {
            width: 200px;
        }*/

        .viewTable table th a {
            color: #2C2C2C;
            text-decoration: underline;
        }

            .viewTable table th a:hover {
                color: #00609F;
                text-decoration: none;
            }

        .viewTable table a {
            /*color: #00F;
text-decoration: none;*/
        }

            .viewTable table a:hover {
                /* color: #FF0000; 
text-decoration: underline;*/
            }

        .viewTable table td table.noBorder, .viewTable table td table.noBorder td {
            border: 0px;
        }

    .viewTable tbody tr:first-child tr:last-child, .viewTable tbody tr:first-child th:last-child {
        /* border-top-right-radius: 15px; */
    }

.viewTableds table {
    border-collapse: collapse;
    border: 1px solid #CCC;
    color: #000000;
    width: 100%;
    margin-bottom: 0px;
    padding: 2px;
}

    .viewTableds table td {
        font-size: 12px;
        border-right-width: 1px;
        border-right-style: solid;
        border-right-color: #CCC;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: #CCC;
        border-bottom-color: #CCC;
        border-left-color: #CCC;
        font-weight: normal;
        padding-top: 4px;
        padding-right: 0px;
        padding-bottom: 4px;
        padding-left: 2px;
    }

    .viewTableds table th {
        font-size: 12px;
        text-align: left;
        padding-top: 4px;
        padding-right: 3px;
        padding-bottom: 4px;
        padding-left: 3px;
        /*color:#2C2C2C;
border: 1px solid #CCC;
background-color: #eaf3f7;*/
        color: #fff;
        border: 1px solid #a04545;
        background-color: #B85656;
    }

        .viewTableds table th a {
            color: #2C2C2C;
            text-decoration: none;
        }

            .viewTableds table th a:hover {
                color: #00609F;
                text-decoration: none;
            }

    .viewTableds table a {
        color: #00F;
        text-decoration: none;
    }

        .viewTableds table a:hover {
            /* color: #FF0000; */
            text-decoration: underline;
        }
/*table css*/

/*Page result css*/
.paging {
    background-color: #FFFFFF;
    width: 613px;
}

    .paging span {
        /* margin-top: 1rem; */
        text-decoration: none;
        color: #fff;
        float: left;
        padding: 0.1rem 0.6rem;
        border: 1px solid #616161;
        background-color: #616161;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        /* margin-right: 0.6rem; */
    }

.viewTable .paging td {
    border: 1px solid transparent;
    padding-top: 1.5rem;
}

    .viewTable .paging td table {
        float: right;
        border: none;
        width: auto;
        margin: 0px;
        padding: 0px;
    }

        .viewTable .paging td table td {
            margin: 0px;
            padding: 1px;
        }

.new-pagination {
    display: flex;
    justify-content: end;
    gap: 5px;
}

    .new-pagination .pagination a {
        color: black;
        float: left;
        padding: 2px 9px;
        text-decoration: none;
        border: none;
    }

.viewTable .paging a {
    text-decoration: none;
    color: #333333;
    float: left;
    padding: 0.16rem 0.7rem;
    margin: 0 0.1rem;
}

    .viewTable .paging a:hover, .paging a:hover {
        background-color: #616161;
        display: block;
        text-decoration: none;
        border-radius: 5px;
        color: #fff;
        padding: 0.16rem 0.7rem;
    }

.paging a.active {
    color: #015f9b;
    background-color: #e7e7e7;
    display: block;
    text-decoration: none;
}


.pageResult {
    margin: 20px 0;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.pageResult a {
    text-decoration: none;
    color: #c59f0e;
    font-weight: 500;
}

    .pageResult a:hover {
        color: #000;
        text-decoration: underline;
    }

.legendBox {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

    .legendBox .legend-list {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-weight: 500;
    }

        .legendBox .legend-list .legend-item {
            border-radius: 4px;
            border: 1px solid #dbdbdb;
        }

.legend-color {
    width: 16px;
    display: table-cell;
    vertical-align: middle;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: #bbbbbb solid 1px;
}

.legend-text {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 20px 0px 8px;
}

.legend-yellow {
    background-color: #FCF8E3;
}

.legend-blue {
    background-color: #D9EDF7;
}

.legend-green {
    background-color: #e5ffed;
}

.legand-pink {
    background-color: #FFEFFF;
}

.legend-white {
    background-color: #fff;
    border: 1px solid #ccc;
}

.legend-red {
    background-color: #FFCACA;
}

.legend-list .legend-item {
    width: 17px;
    height: 17px;
}
/*Page result css*/
/*form css*/
.form-label {
    margin-bottom: .5rem;
    /*    font-size: 1.1rem;*/
    font-weight: 500;
}

.form-group {
    margin-bottom: 1rem;
}

.table thead tr:first-child th:first-child, table thead tr:first-child th:first-child {
    border-top-left-radius: 15px;
}
/*form css*/


/*button css*/
.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.3rem;
}

.btn.btn-outline-warning {
    background-color: #f8f1d8 !important;
    border-color: #ffcb08 !important;
    color: #333333 !important;
    box-shadow: 0px 3px 10px #0000000F;
}

.btn {
    padding: 0.36rem 1.2rem;
}

    .btn.btn-primary,
    .btn.btn-primary:focus {
        background-color: #487ab7;
        border-color: #487ab7 !important;
        color: #fff;
    }

        .btn.btn-primary:focus {
            box-shadow: 0 0 0 .25rem rgb(53 101 160 / 40%);
        }

            .btn.btn-primary:hover,
            .btn.btn-primary:focus:hover {
                background-color: #3565a0 !important;
                border-color: #3565a0 !important;
            }

    .btn.btn-success,
    .btn.btn-success:focus {
        background-color: #2d942d;
        border-color: #2d942d !important;
        color: #fff;
    }

        .btn.btn-success:focus {
            box-shadow: 0 0 0 .25rem rgb(45 148 45 / 40%);
        }

            .btn.btn-success:hover,
            .btn.btn-success:focus:hover {
                background-color: #227922 !important;
                border-color: #227922 !important;
            }

    .btn.btn-danger,
    .btn.btn-danger:focus {
        background-color: #c45660;
        border-color: #c45660 !important;
        color: #fff;
    }

        .btn.btn-danger:focus {
            box-shadow: 0 0 0 .25rem rgb(154 55 64 / 40%);
        }

            .btn.btn-danger:hover,
            .btn.btn-danger:focus:hover {
                background-color: #9a3740 !important;
                border-color: #9a3740 !important;
            }

    .btn.btn-outline-primary,
    .btn.btn-outline-primary:focus {
        background-color: #fff;
        border-color: #487ab7 !important;
        color: #487ab7 !important;
    }

        .btn.btn-outline-primary:focus {
            box-shadow: 0 0 0 .25rem rgb(72 122 183 / 40%);
        }

            .btn.btn-outline-primary:hover,
            .btn.btn-outline-primary:focus:hover {
                background-color: #487ab7 !important;
                border-color: #487ab7 !important;
                color: #fff !important;
            }

    .btn.btn-secondary:focus {
        box-shadow: 0 0 0 .25rem rgb(108 117 125 / 40%);
    }
/*button css*/




/*Additional Pages css*/

.tbl-box td {
    padding: 15px;
    border: none !important;
}

.no-border1 {
    border-right: 0;
    border-bottom: 0;
    border: none !important;
}
/*    .no-border1 tr td{
        border:none!important;
    }*/
.tab-table h5 {
    padding: 1rem 1.1rem 1rem;
    border-bottom: 1px dashed #ccc;
}

.subHd {
    background: #f8f0e6;
    border-radius: 15px 15px 0 0;
    padding: 1rem 1.1rem;
    color: #000;
    font-size: 1.3rem;
    font-weight: 500;
}

.new-table {
    border: 1px solid #e4e0e0 !important;
}

select {
    word-wrap: normal;
    border: 1px solid #ced4da;
    padding: 0.56rem 0.75rem;
    border-radius: .375rem;
    font-weight: 400;
}

    select:disabled {
        padding: 0.56rem 0.75rem !important;
        background-color: #e9ecef;
    }

input[type="text"],
input[type="password"],
textarea {
    padding: 0.6rem 0.75rem;
    line-height: 1.4;
}

.input-group-text {
    border-top-right-radius: .375rem !important;
    border-bottom-right-radius: .375rem !important
}

input[type="file"] {
    padding: 0.26rem 0.45rem;
    /*height: 40px;*/
}

.dd_chk_select {
    height: 35px !important;
    font-size: 14px !important;
    padding: 0.36rem 0.75rem !important;
}

input[type="file"]::-webkit-file-upload-button {
    height: 30px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 0 10px;
    /*font-size: .8rem;*/
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
    /*top: 8px;*/
    left: -2px;
    margin-top: 0px;
}

/* Checkbox button css - added by vishal 17-07-2025 */
input[type="checkbox"] {
    margin-right: 5px;
}
/*input[type="checkbox"] {
    width: 1.1em;
    height: 1.1em;
    border: 1px solid #d2d2d2; 
    border-radius: 0.25em;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
    margin-right: 5px;
}

input[type="checkbox"]:checked {
  background-color: #5a3323; 
  border-color: #5a3323;
}

input[type="checkbox"]:checked::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus {
  box-shadow: 0 0 0 4px rgb(90 51 35 / 25%);
  border-color: #5a3323;
}*/
/* Checkbox button css - added by vishal 17-07-2025 */


/* Radio button css - added by vishal 17-07-2025 */
input[type="radio"] {
    margin-right: 5px;
}
/*input[type="radio"] {
    width: 1.1em;
    height: 1.1em;
    border: 1px solid #d2d2d2;
    border-radius: 50%;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
    margin-right: 5px;
}

    input[type="radio"]:checked {
        background-color: #fff;
        border-color: #5a3323;
    }

        input[type="radio"]:checked::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 4px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #5a3323;
        }

    input[type="radio"]:focus {
        box-shadow: 0 0 0 4px rgb(90 51 35 / 25%);
        border-color: #5a3323;
    }*/
/* Radio button css ends - added by vishal 17-07-2025 */
legend {
    border-left: 3px solid #bf9a10;
    padding: 0 0.6rem;
    color: #b08d09;
    margin: 2rem 0 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.form-control[type=file] {
    overflow: hidden;
    padding: 0.4rem 1.45rem 0.5rem;
}

input, textarea {
    border: 1px solid #ced4da;
    /* font-size: 1rem; */
    border-radius: .375rem;
    font-weight: 400;
}
/*Additional Pages css*/
/*content css*/
/*footer Css*/
#footer {
    text-decoration: none;
    padding: 0 10px;
    bottom: 0;
    /* z-index: 1; */
    width: 100%;
    left: 1.5rem;
    right: 0;
    background-color: #f6f6f6;
}

    #footer p {
        text-align: center;
        font-size: 1rem;
        opacity: 0.8;
        color: #574B49;
        margin: 8px 0;
    }

    #footer a {
        text-decoration: none;
    }

        #footer a:hover {
            color: #5a3323;
        }
/*footer css*/







#myButton {
    margin-top: 1.6rem;
    display: flex;
    justify-content: end;
    margin-top: 0rem;
    align-items: center;
}


    #myButton span {
        background-image: url(../images/tblHd.gif);
        background-repeat: repeat-x;
        background-position: left top;
        float: left;
        padding-top: 6px;
        padding-right: 15px;
        padding-bottom: 6px;
        padding-left: 15px;
        font-weight: bold;
        color: #fff;
    }

    #myButton ul {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }


        #myButton ul li {
            margin: 0px;
            float: left;
            padding-top: 0px;
            padding-right: 2px;
            padding-bottom: 0px;
            padding-left: 0px;
        }

            #myButton ul li a {
                padding: 0.5rem 1rem;
                background-color: #721A1A;
                color: #fff;
                border-radius: 6px;
                border: 1px solid #721A1A;
                text-decoration: none;
            }

                #myButton ul li a:hover {
                    background-color: #721A1A;
                    color: #fff;
                    /*background-image:none;*/
                }

            #myButton ul li.active a {
                color: #fff;
                background-color: #933434;
                border: 1px solid #721A1A;
            }

.form-file-img {
    width: 25px;
    height: 25px;
}

.th-bg {
    background: #9334340f !important;
}

    .th-bg td span {
        font-weight: 500 !important;
    }

.back-btn {
    background: #6c757d;
    padding: 0.5rem 0.6rem;
    color: #fff;
    border-radius: 6px;
    border: 1px solid #6c757d;
}

    .back-btn:hover {
        color: #fff;
        background: #474f56;
    }

.pay-btn {
    background: transparent !important;
    border: none;
    font-weight: 500 !important;
    color: #933434 !important;
    /*    border-radius: 6px;*/
    /*    padding: 0.2rem 1rem;*/
    text-decoration: underline;
}

    .pay-btn:hover {
        text-decoration: underline;
        color: #bc4a4a !important;
    }

.clerarence-list {
    border: 1px solid transparent;
    margin: 5px 0;
    background: #f7f7f79e;
    border-radius: 0px 0px 15px 15px;
    padding: 1rem;
}

.addTable {
    border: 1px solid #ccc;
}

    .addTable table td {
        border-collapse: collapse;
        /* border: 1px solid #e4e0e0; */
        font-weight: normal;
        padding: 5px 7px;
    }

.clearence .tblheader {
    /* font-size: 1.3rem; */
    padding: 9px 13px;
    font-weight: 500;
    border-bottom: 1px dashed #dfdfdf;
}

.clearence {
    box-shadow: 0 0px 11px 0 rgb(0 0 0 / 10%);
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 1rem;
    background: #fff;
}

.border-table tr th, .border-table tr td {
    border: 1px solid #efeeee !important;
    padding: 0.3rem !important;
}

.border-table tr th {
    background: #f0f0f0;
    border: 1px solid #dcdcdc !important;
}

.clearence tr td {
    padding: 0.5rem;
}



.sub-heading-new {
    margin: 0.5rem 0 0.5rem;
    border-left: 3px solid #bf9a10;
    padding: 0 0.6rem;
    color: #bf9a10;
}

@media screen and (max-width: 1366px) {
    .tab-table h5 {
        padding: 0.7rem 0.2rem 0.7rem;
        font-size: 0.9rem;
    }

    .mega-menu .dropdown-multicol li {
        margin-bottom: 1rem;
        position: relative;
    }

    legend {
        font-size: 1.2rem;
    }

    #LeftMenu {
        padding: 0 1.3rem 0 0;
    }

    .clearence .tblheader {
        font-size: 1.1rem;
    }

    /*    select:disabled {
        padding: 0.36rem 0.75rem !important;
    }*/



    .sub-heading {
        font-size: 1.2rem;
    }

    .subHd {
        padding: 0.5rem 1.1rem;
        font-size: 1.2rem;
    }

    body {
        font-size: 0.85rem;
    }

    .content-body {
        padding: 0 1.2rem 0 0rem;
    }
    /*added by vishal 15-07-25*/
    .title {
        font-size: 1.5rem;
    }
    /*added by vishal 15-07-25*/
    input[type="text"],
    input[type="password"],
    textarea {
        padding: 0.6rem 0.2rem;
    }

    .form-select, select {
        padding: 0.6rem 0.2rem;
    }

    .btn {
        padding: 0.45rem 1.2rem;
        font-size: .85rem;
    }

    .glossymenu div.submenu ul li a {
        font-size: 1.025rem;
        padding: 0.2rem 1rem 0.3rem 3rem;
    }

    .mega-menu {
        top: 105px;
        width: 97%;
    }

        .mega-menu .section-title h3 {
            font-size: 1.5rem;
        }

    .mega-menu-overlay {
        top: 5.2rem;
    }

    .mega-menu .dropdown-multicol {
        width: 100%;
    }

    .dropdown-item {
        font-size: 1.1rem;
    }

    header.admin-header {
        height: 83px;
    }

    header .nav-link.dropdown-toggle.megaMenuToggle::after {
        content: '';
        position: absolute;
        bottom: -42px;
    }

    .mega-menu .nav-item .nav-link {
        font-size: 1.1rem;
    }

    .menu-list {
        font-size: 1.025rem;
        padding: 0.3rem 1.4rem 0.5rem 1.4rem;
    }

    .glossymenu div.submenu ul li:after {
        top: 14px;
    }

    .glossymenu div.submenu ul li:hover::after {
        top: 14px;
    }

    header.admin-header {
        padding: 0.5rem 1.6rem;
    }

    .user__header span {
        font-size: 0.8rem;
    }

    .login-logo img {
        height: 56px;
    }

    .logo-text {
        font-size: 1.375rem;
        text-wrap-mode: nowrap;
    }

    .navigation {
        gap: 1.1rem;
    }

        .navigation ul li:after {
            right: -13px;
            font-size: 1.3rem;
            top: -4px;
        }

        .navigation span:after {
            right: -12px;
            font-size: 1.3rem;
            /* top: -6px; */
        }

    #myTab ul li a {
        padding: 0.5rem 0.6rem;
    }

    .pay-btn {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 991px) {
    .viewTable table th, .viewTablenewd td .viewTable table th {
        font-size: 0.85rem;
    }

    header .nav-item {
        position: relative;
        text-wrap-mode: nowrap;
    }

    header .nav-link {
        padding: 0.2rem 0.2rem !important;
    }

    .logo-text {
        font-size: 1.275rem;
    }

    .row > * {
        width: inherit;
    }

    .mega-menu-overlay {
        top: 4.6rem;
    }

    .mega-menu {
        top: 94px;
        width: 97%;
    }
}

/* start added by aditya kumar  on 30-07-2025 for searchable dropdown*/
.searchable-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.searchable-input {
    width: 100%;
    width: inherit;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    border: none;
    color: inherit;
    z-index: 5;
}
/* end added by aditya kumar  on 30-07-2025 for searchable dropdown*/
