:root {
    --bs-font-sans-serif : 'Gilroy';
    --secondary-fonts: 'Samsung Sharp Sans';
    --login-fonts: 'Inter', sans-serif;
    --error-color: #FF0000;
    --btn-secondary: #EC4A2A;
    --btn-primary: #0E144A;
    --scrollbar: #ffa18e;
}

/* Fonts S */
    @font-face {
        font-family: 'Gilroy';
        src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
            url('../fonts/Gilroy-Bold.woff') format('woff');
        font-weight: bold;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Gilroy';
        src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
            url('../fonts/Gilroy-Medium.woff') format('woff');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Gilroy';
        src: url('../fonts/Gilroy-Light.woff2') format('woff2'),
            url('../fonts/Gilroy-Light.woff') format('woff');
        font-weight: 300;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Gilroy';
        src: url('../fonts/Gilroy-Heavy.woff2') format('woff2'),
            url('../fonts/Gilroy-Heavy.woff') format('woff');
        font-weight: 900;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Gilroy';
        src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
            url('../fonts/Gilroy-Regular.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Samsung Sharp Sans';
        src: url('../fonts/SamsungSharpSans.woff2') format('woff2'),
            url('../fonts/SamsungSharpSans.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Samsung Sharp Sans';
        src: url('../fonts/SamsungSharpSans-Medium.woff2') format('woff2'),
            url('../fonts/SamsungSharpSans-Medium.woff') format('woff');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Samsung Sharp Sans';
        src: url('../fonts/SamsungSharpSans-Bold.woff2') format('woff2'),
            url('../fonts/SamsungSharpSans-Bold.woff') format('woff');
        font-weight: bold;
        font-style: normal;
        font-display: swap;
    }
/* Fonts E */

/* Global S */
    .font-primary {color: var(--btn-primary);}
    .font-secondary {color: var(--btn-secondary);}
    body {
        background-color: #F9F9F9;
    }
    body, body p {
        color: #898A8D;
    }
    h1, h2, h3, h4, h5, h6 {color: #ffffff;font-family: var(--secondary-fonts);}
    h1 {font-weight: 700;}
    .form-control:focus {border-color: #EC4A2A;}
    .form-control::-webkit-input-placeholder {
        color: rgb(0 0 0 / 50%);
    }
    .form-control:-ms-input-placeholder {
        color: rgb(0 0 0 / 50%);
    }
    .form-control::placeholder {
        color: rgb(0 0 0 / 50%);
    }
    a {text-decoration: none;}
    .btn {
        padding: 15px 34px;
        display: inline-block;
        font-size: 16px;
        line-height: 20px;
        font-family: var(--login-fonts);
        transition: all 0.3s ease-in-out;
        box-shadow: none;
    }
    .btn-shadow {
        box-shadow: 0px 14px 34px rgba(236, 74, 42, 0.5);
    }
    .btn-secondary {
        background-color: var(--btn-secondary);
        color: #ffffff;
        border-radius: 36px;
        border: 1px solid var(--btn-secondary);
    }
    .btn-secondary:hover {background-color: var(--btn-primary); border-color: var(--btn-primary);}
    .btn-primary {
        background-color: var(--btn-primary);
        color: #ffffff;
        border-radius: 16px;
        border: 1px solid var(--btn-primary);
    }
    .btn-primary:hover {background-color: var(--btn-secondary); border-color: var(--btn-secondary);}
    .btn:focus {box-shadow: none;}
    img {max-width: 100%;}
    ul {
        padding: 0px;
        margin: 0px;
    }
    ul li, ol li {
        list-style-type: none;
    }
    .icn-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .profImgSc {
        overflow: hidden;
        border-radius: 50%;
    }
    .profImgSc img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ad-checkbox input {
        position: absolute;
        opacity: 0;
    }
    .ad-checkbox input + label {
        position: relative;
        cursor: pointer;
        padding: 0;
    }
    .ad-checkbox input + label:before {
        content: "";
        margin-right: 10px;
        display: inline-block;
        vertical-align: text-top;
        width: 20px;
        height: 20px;
        background: #ffffff;
        border: 2px solid #898A8D;
        border-radius: 4px;
    }
    .ad-checkbox input:checked + label:before {
        background: #f35429;
        border-color: #f35429;
    }
    .ad-checkbox input:checked + label:after {
        content: "✓";
        position: absolute;
        left: 5px;
        top: 2px;
        color: #ffffff;
        font-weight: 600;
    }   
    
    .status {
        border-radius: 16.5px;
        min-width: 110px;
        padding: 11px 20px;
        background-color: #f4f4f4;
        font-weight: 600;
        font-size: 12px;
        line-height: 12px;
        text-align: center;
        letter-spacing: 0.5px;
        text-transform: capitalize;
        color: var(--btn-primary);
        display: inline-block;
    }
    .status.complete {background-color: #B3F0CB;color: #00CC52;}
    .status.cancel {background-color: #FFC1D3;color: #FF2F6D;}
    .status.pending {background-color: #FFDEA5;color: #FFA620;}

    select.form-control {
        background-image: url(../images/select-arrow.svg) !important;
        background-repeat: no-repeat !important;
        background-position: calc(100% - 15px) 20px !important;
    }
    @media (max-width: 991.98px) {
        select.form-control {
            background-position: calc(100% - 15px) 15px !important;
        }
    }

    .form-group {position: relative;}
    .table>:not(:last-child)>:last-child>* {border-bottom-color: #DCDCDC;}

    /* Switch S */
        .switch {
            position: relative;
            display: inline-block;
            width: 46px;
            height: 18px;
            margin-top: 4px;
        }
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #E1E1E1;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 34px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            bottom: -4px;
            background-color: #ffffff;
            border: 1px solid #B4B4B4;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 50%;
        }
        input:checked + .slider {
            background-color: #FFB8B8;
        }
        input:focus + .slider {
            box-shadow: 0 0 1px #FFB8B8;
        }
        input:checked + .slider:before {
            -webkit-transform: translateX(20px);
            -ms-transform: translateX(20px);
            transform: translateX(20px);
            border-color: var(--btn-secondary);
        }
    /* Switch E */
    :focus-visible {outline: var(--btn-secondary) auto 1px;outline-offset: -1px;}
/* Global E */

/* SignIn S */
    .signMain {
        /*background-image: url(../images/sign-in-bg.png);*/
        /* background-size: 80% auto; */
        background: linear-gradient(#060d25, #000000);
        background-size: cover;
        background-position: bottom left;
        background-repeat: no-repeat;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-items: center;
        background-color: #ffffff;
    }
    .signMain * {
        font-family: var(--login-fonts);
    }
    .signFormSection {
        max-width: 450px;
        margin-left: 65%;
        padding: 50px 0;
    }
    .signFormBox {
        padding: 50px 0px;
    }
    .signTitleSc .signMainTitle {
        font-weight: 600;
        font-size: 46px;
        line-height: 40px;
        margin-top: 0px;
        margin-bottom: 20px;
    }
    .signTitleSc .signSubTitle {
        font-weight: 600;
        font-size: 22px;
        line-height: 35px;
        margin-top: 0px;
        margin-bottom: 50px;
    }
    .signFormSection .form-group {
        margin-bottom: 20px;
        position: relative;
    }
    .signFormSection .form-group .form-label {
        color: #ffffff;
        font-weight: 500;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 0px;
    }
    .signFormSection .form-group .form-control {
        background-color: rgb(247 247 248);
        border-radius: 10px;
        padding: 8px 20px;
        height: 50px;
    }
    .signFormSection .form-group .form-control:focus {
        box-shadow: none;
        z-index: 0;
    }
    .signFormSection .form-group span.error:not(.form-label),
    .signFormSection .form-group label.error:not(.form-label) {
        color: var(--error-color);
        font-weight: 400;
        font-size: 18px;
        line-height: 35px;
        /* position: absolute; */
        bottom: -30px;
        left: 0px;
    }
    .signFormSection .form-group .form-control.error {
        border-color: var(--error-color);
    }
    .signFormSection .form-group .input-group .input-group-text {
        position: absolute;
        left: 0px;
        top: 0;
        border: 0;
        background: transparent;
        height: 100%;
        width: 55px;
        z-index: 1;
        justify-content: center;
    }
    .signFormSection .form-group .input-group .form-control {
        margin-left: 0px !important;
        border-top-left-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
        padding-left: 53px;
    }
    .signFormSection .form-group .forget-link {
        position: absolute;
        right: 0px;
        top: 5px;
        color: var(--error-color);
    }
    .signFormSection .btn {
        width: 100%;
    }

    .resetPopupMain {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        padding: 50px 60px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .resetPopupMain .popupDropbox {
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
        bottom: 0;
        right: 0;
    }
    .resetPopupMain .resetPopupSection {
        background: #C4C4C4;
        border-radius: 10px;
        z-index: 2;
        max-width: 365px;
        padding: 30px;
        text-align: center;
        position: relative;
        transform: translate(0, 100px);
    }
    .resetPopupMain .resetPopupSection .close {
        position: absolute;
        right: 20px;
        top: 20px;
        color: #000;
        font-weight: 600;
        font-size: 16px;
    }
    .resetPopupMain .resetPopupSection p {
        font-weight: 400;
        font-size: 22px;
        line-height: 27px;
        color: #000;
        margin: 0px;
        margin-top: 10px;
    }
    .resetPopupMain.open .resetPopupSection {
        animation: slideUp 0.3s;
        transform: translate(0, 0px);
    }
    @keyframes slideUp {
        from {transform: translate(0, 100px);}
        to {transform: translate(0, 0px);}
    }
    .resetPopupMain.close .resetPopupSection {
        animation: slideDown 0.3s;
    }
    @keyframes slideDown {
        from {transform: translate(0, 0px);}
        to {transform: translate(0, 100px);}
    }

    @media (max-width: 991px) {
        .signFormSection {
            max-width: 450px;
            margin-left: auto;
            padding: 50px 30px;
            margin-right: auto;
        }
        .signFormBox {
            padding: 30px 0px 0;
        }
        .signTitleSc .signMainTitle {
            font-size: 36px;
            line-height: 30px;
        }
        .signTitleSc .signSubTitle {
            font-size: 22px;
            line-height: 25px;
            margin-bottom: 30px;
        }
    }
    @media (max-width: 767px) {
        .signFormSection {
            padding: 30px 15px;
        }
    }
/* SignIn E */

/* Sidebar S */
    .sidebarMain {
        background: #FFFFFF;
        border-radius: 36px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        height: 100vh;
        padding: 15px 0px;
        padding-top: 50px;
        width: 270px;
        position: fixed;
        left: 0;
        top: 0;
    }
    .sidebarMain .sidebarLogoSc {
        padding: 0 15px;
        padding-bottom: 50px;
    }
    .sidebarNav {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        padding: 0 15px;
    }
    .sidebarNav::-webkit-scrollbar {
        width: 5px;
        border-radius: 5px;
    }
    .sidebarNav::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgb(0 0 0 / 12%);
        border-radius: 5px;
    }
    .sidebarNav::-webkit-scrollbar-thumb {
        background-color: var(--scrollbar);
        border-radius: 5px;
    }
    .sidebarNav .navList .navItem {
        padding: 18px 22px;
        border-radius: 16px;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        color: #8E8E8E;
        display: flex;
        align-items: center;
        justify-self: flex-start;
        margin-bottom: 5px;
    }
    .sidebarNav .navList .navItem span {
        display: block;
        margin-left: 18px;
        /* transition: all 0.1s ease-in-out; */
        width: calc(100% - 40px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .sidebarNav .navList .navItem svg {
        fill: #8E8E8E;
        width: 20px !important;
    }
    .sidebarNav .navList .navItem svg.strokSvg {
        fill: transparent;
        stroke: #8E8E8E;
    }
    /* .sidebarNav .navList .navItem:hover span {
        margin-left: 20px;
    } */
    .sidebarNav .navList.active .navItem,
    .sidebarNav .navList .navItem:hover {
        background: linear-gradient(270deg, #EC4723 0%, #EF6E6E 100%);
        background-color: var(--btn-secondary);
        color: #FFFFFF;
        text-decoration: none;
    }
    .sidebarNav .navList.active .navItem svg,
    .sidebarNav .navList .navItem:hover svg {
        fill: #ffffff;
    }
    .sidebarNav .navList.active .navItem svg.strokSvg,
    .sidebarNav .navList .navItem:hover svg.strokSvg {
        fill: transparent;
        stroke: #ffffff;
    }
    .mainSection {
        width: 100%;
        padding: 50px 70px;
        padding-left: 340px;
    }
    .sidebarDropbox {
        display: none;
    }
    @media (max-width: 1400px) {
        .mainSection {
            padding: 50px 40px;
            padding-left: 310px;
        }
    }
    @media (max-width: 1199.98px) {
        .sidebarMain {
            transform: translate(-280px, 0);
            opacity: 0;
            transition: all 0.3s ease-in-out;
            z-index: 9;
        }
        .sidebarDropbox {
            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: rgb(0 0 0 / 50%);
            width: 100%;
            z-index: 1;
        }
        .mainSection {
            padding: 30px 15px;
            transition: all 0.3s ease-in-out;
        }
        .openSidebarBody .sidebarMain {
            transform: translate(0px, 0);
            opacity: 1;
        }
        .openSidebarBody .sidebarDropbox {
            display: block;
        }
    }
    @media (max-width: 767.98px) {
        .sidebarMain {
            padding-top: 30px;
            width: 230px;
        }
        .sidebarNav {
            min-height: calc(100vh - 160px);
        }
        .sidebarNav .navList .navItem {
            padding: 12px 15px;
            margin-bottom: 10px;
        }
        .sidebarMain .sidebarLogoSc {
            padding-bottom: 30px;
        }
        .mainSection {
            padding: 30px 15px;
            padding-left: 15px;
        }
    }
/* Sidebar E */

/* Header Section S */
    .headerMain .headerRow {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .headerMain .headerRow > * {
        width: 50%;
    }
    .headerMain .headerRow .headerTitleCol {
        overflow: hidden;
    }
    .headerMain .headerRow .headerTitleCol > * {
        color: #000000;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin: 0;
    }
    .headerMain .headerMainTitle {
        font-size: 50px;
        line-height: 63px;
    }
    .headerMain .headerSubTitle {
        font-weight: 500;
        font-size: 18px;
        line-height: 21px;
        color: var(--btn-primary);
    }
    .headerMain .headerProfCol {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .headerMain .headerProfCol .headerProfBox + .headerProfBox {
        margin-left: 34px;
    }

    .headerProfBox .input-group {
        max-width: 280px;
    }
    .headerProfBox .input-group .input-group-text {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 1;
        background-color: transparent;
        border: 0;
        width: 65px;
        justify-content: center;
    }
    .headerProfBox .input-group .form-control {
        background: #FFFFFF;
        border: 1px solid #E6F1F8;
        border-radius: 16px !important;
        z-index: 0;
        margin-left: 0 !important;
        padding: 14px 15px;
        padding-left: 60px;
        height: 50px;
    }
    .headerProfBox .input-group .form-control:focus {
        box-shadow: none;
    }
    .headerProfBox .form-control::-webkit-input-placeholder {
        font-weight: 600;
    }
    .headerProfBox .form-control:-ms-input-placeholder {
        font-weight: 600;
    }
    .headerProfBox .form-control::placeholder {
        font-weight: 600;
    }
    
    .headerProfBox .notiBox {
        background: #FFFFFF;
        border: 1px solid #E6F1F8;
        border-radius: 16px;
        width: 50px;
        height: 50px;
        position: relative;
        cursor: pointer;
    }
    .headerProfBox .notiBox .badge {
        position: absolute;
        top: -6px;
        right: -9px;
        width: 24px;
        height: 24px;
        background-color: var(--error-color);
        color: #ffffff;
        border-radius: 50%;
    }

    .headerProfBox .profileBox {
        width: 42px;
        height: 40px;
        cursor: pointer;
    }

    .headerBars {
        background: #FFFFFF;
        border: 1px solid #E6F1F8;
        border-radius: 16px;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

    .headerProfBox .btn-sc .btn {
        height: 50px;
        display: flex;
        align-items: center;
    }
    .headerProfBox .btn-sc .btn img {
        margin-right: 15px;
    }

    .form-group.input-group.search-group.searchPopup {
        position: fixed;
        top: 30px;
        left: 50%;
        transform: translate(-50%, -200%);
        z-index: 9;
        max-width: 280px;
        opacity: 0;
    }
    .searchDropBox {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgb(0 0 0 / 50%);
        width: 100%;
        z-index: 1;
        display: none;
    }
    .searchPopup .close {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 25px;
        color: #898A8D;
    }

    .searchPopupOpenBody .form-group.input-group.search-group.searchPopup {
        transform: translate(-50%, 0%);
        opacity: 1; 
        animation: popupSlideDown 0.3s;
    }
    @keyframes popupSlideDown {
        from {transform: translate(-50%, -200%);}
        to {transform: translate(-50%, 0%);}
    }
    .searchPopupOpenBody .searchDropBox {
        display: block;
    }

    @media (min-width: 1199.99px) {
        .headerBars {
            display: none;
        }
    }
    @media (max-width: 1400px) {
        .headerMain .headerMainTitle {
            font-size: 40px;
            line-height: 53px;
        }
        .headerMain .headerSubTitle {
            font-size: 16px;
            line-height: 18px;
        }
        .headerMain .headerProfCol .headerProfBox + .headerProfBox {
            margin-left: 30px;
        }
    }
    @media (max-width: 1199.98px) {
        .headerMain .headerProfCol .headerProfBox + .headerProfBox {
            margin-left: 20px;
        }
    }
    @media (max-width: 991.98px) {
        .headerMain .headerRow .headerTitleCol {
            padding-right: 20px;
        }
        .headerMain .headerMainTitle {
            font-size: 28px;
            line-height: 34px;
        }
        .headerMain .headerSubTitle {
            font-size: 14px;
            line-height: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            white-space: normal !important;
        }
        .headerProfBox .input-group {
            max-width: 180px;
        }
        .headerProfBox .input-group .input-group-text {
            width: 45px;
        }
        .headerProfBox .input-group .input-group-text img {
            width: 15px;
        }
        .headerProfBox .input-group .form-control {
            padding-left: 40px;
            height: 40px;
        }
        .headerMain .headerProfCol .headerProfBox + .headerProfBox {
            margin-left: 15px;
        }
        .headerProfBox .notiBox,
        .headerBars {
            width: 40px;
            height: 40px;
        }
        .headerProfBox .notiBox img {
            width: 15px;
        }
        .headerProfBox .profileBox {
            width: 30px;
            height: 30px;
        }
        .headerProfBox .notiBox .badge {
            top: -3px;
            right: -6px;
            width: 14px;
            height: 14px;
            font-size: 10px;
        }
        .headerProfBox .btn-sc .btn {
            height: 40px;
            font-size: 14px;
            padding: 0px 14px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            display: block;
            line-height: 36px;
        }
        .headerProfBox .btn-sc .btn img {margin-right: 10px;}
    }
    @media (max-width: 767.98px) {
        .headerMain .headerRow {
            flex-direction: column;
        }
        .headerMain .headerRow > * {
            width: 100%;
        }
        .headerMain .headerRow .headerTitleCol {
            padding-right: 0;
        }
        .headerMain .headerProfCol {
            margin-top: 15px;
        }
    }
/* Header Section E */

/* Product Listing S */
    .mainCardSection {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 35px;
        margin-top: 50px;
    }

    .tableListingHeader {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    .tableListingHeader.noLeftSection {
        justify-content: flex-end;
    }
    .tableListingHeader .leftSection {
        display: flex;
        align-items: center;
    } 
    .search-group.input-group .input-group-text {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 1;
        background-color: transparent;
        border: 0;
        width: 65px;
        justify-content: center;
    }
    .tableListingHeader .form-control,
    .search-group.input-group .form-control {
        background: #FFFFFF;
        border: 1px solid #E6F1F8;
        border-radius: 16px !important;
        z-index: 0;
        margin-left: 0 !important;
        padding: 14px 15px;
        padding-left: 60px;
        height: 50px;
    }
    .tableListingHeader .form-control,
    .search-group.input-group .form-control:focus {
        box-shadow: none;
    }
    .tableListingHeader .form-control {
        padding-left: 15px;
    }
    .tableListingHeader .form-group {
        width: 235px;
    }
    .tableListingHeader .search-group {
        width: 340px;
    }
    .tableListingHeader .form-group + .form-group {
        margin-left: 15px;
    }
    .tableListingHeader .rightSection {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .tableListingHeader .rightCol + .rightCol {
        margin-left: 30px;
    }
    .tableListingHeader .link-btn {
        display: flex;
        align-items: center;
        font-size: 14px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
    }
    .tableListingHeader .link-btn img {
        margin-left: 10px;
    }
    .tableListingHeader .icn-btn {
        width: 40px;
        height: 40px;
        background: #F9F9F9;
        border: 1px solid #E6F1F8;
        border-radius: 10px;
    }
    .tableMainSection th {
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        color: #898A8D;
    }
    .tableMainSection td {
        color: #898A8D;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
    }
    .tableMainSection .table {
        min-width: 900px;
    }
    .productTable::-webkit-scrollbar {
        width: 5px;
        height: 8px;
        border-radius: 5px;
    }
    .productTable::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgb(0 0 0 / 12%);
        border-radius: 5px;
    }
    .productTable::-webkit-scrollbar-thumb {
        background-color: var(--scrollbar);
        border-radius: 5px;
    }
    .productTable .table th,
    .productTable .table td {
        border-bottom-color: #DCDCDC !important;
        padding: 25px;
        vertical-align: middle;
    }
    .productTable .table td:first-child {
        padding-left: 0px;
    }
    .tableMainSection .checkboxSection {
        display: flex;
        align-items: center;
    }
    .tableMainSection .checkboxSection .profImgSc {
        width: 100px;
        height: 100px;
        border-radius: 10px;
    }
    .productTable .table td,
    .productTable .table td p {
        font-size: 14px;
        line-height: 177.9%;
        color: var(--btn-primary);
        font-weight: 500;
    }
    .productTable .table td strong {
        line-height: 117.9%;
        font-size: 14px;
    }
    .tableBtnSection {
        padding-top: 15px;
    }
    .tableBtnSection .btn {
        width: 300px;
    }
    
    @media (max-width: 1199.98px) {
        .mainCardSection {
            margin-top: 30px;
            padding: 25px 15px;
        }
    }
    @media (max-width: 991.98px) {
        .tableListingHeader .form-group,
        .tableListingHeader .search-group {
            width: 210px;
        }
        .search-group.input-group .input-group-text {
            width: 45px;
        }
        .search-group.input-group .input-group-text img {
            width: 15px;
        }
        .search-group.input-group .form-control {
            padding-left: 40px;
            height: 40px;
        }
        .tableListingHeader .form-control {
            height: 40px;
            padding: 8px 15px;
        }
        .tableListingHeader {
            margin-bottom: 10px;
        }
        .productTable .table th, .productTable .table td {
            padding: 15px;
        }
    }
    @media (max-width: 767.98px) {
        .tableListingHeader,
        .tableListingHeader .leftSection {
            flex-wrap: wrap;
        }
        .tableListingHeader > * {
            width: 100%;
        }
        .tableListingHeader .leftSection .form-group {
            width: 50%;
        }
        .tableListingHeader .form-group + .form-group {
            margin-left: 0;
        }
        .tableListingHeader .form-group:nth-child(2n + 0) {
            width: calc(50% - 10px);
            margin-left: 10px;
        }
        .tableListingHeader .form-group {
            margin-top: 10px;
        }
        .tableListingHeader .form-group:nth-child(1), 
        .tableListingHeader .form-group:nth-child(2) {
            margin-top: 0px;
        }
        .tableListingHeader:not(.noRightSection) .leftSection {
            margin-bottom: 15px;
        }
        .tableListingHeader .leftSection.onlySearchBar .form-group {
            width: 100%;
        }
    }
/* Product Listing E */

/* Product Popup S */
    .modal .modal-content {
        border-radius: 30px;
    }
    .modal .modal-header .modal-title {
        font-weight: 700;
        font-size: 24px;
        line-height: 117.9%;
        color: var(--btn-primary);
    }
    .modal .modal-header .btn-close {
        color: #000000;
        opacity: 1;
    }
    .productModal .modal-header {
        padding: 30px 50px;
        border: 0;
    }
    .productModal .modal-body {
        padding: 0 130px 40px;
    }
    .productFormSc .row {
        margin-left: -23px;
        margin-right: -25px;
    }
    .productFormSc .row > [class*=col-] {
        padding-left: 23px;
        padding-right: 23px;
    }
    .productFormSc .form-group {
        margin-bottom: 50px;
        position: relative;
    }
    .productFormSc .form-group .form-label {
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 28px;
    }
    .productFormSc .form-group .form-control {
        border: 1px solid #DCDCDC;
        border-radius: 8.62791px;
        padding: 12px 23px;
        color: var(--btn-primary);
        font-weight: 500;
    }
    .productFormSc .form-group input.form-control {
        height: 50px;
    }
    /*.productFormSc .form-group input.form-control {
        height: 40px;
    }*/
    .productFormSc .form-group .form-control:focus {
        border-color: var(--btn-primary);
        box-shadow: none;
    }
    .productFormSc .form-group span.error:not(.form-label),
    .productFormSc .form-group label.error:not(.form-label) {
        color: var(--error-color);
        font-weight: 500;
        font-size: 13px;
        line-height: 120%;
        position: absolute;
        bottom: -20px;
        left: 0px;
    }
    .productFormSc .form-group .form-control.error {
        border-color: var(--error-color);
    }
    .productFormSc .form-group .qtyInputSc {
        display: flex;
        align-items: center;
    }
    .productFormSc .form-group .qtyInputSc .qtyIcn {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        font-weight: 400;
        color: var(--btn-secondary);
    }
    .productFormSc .form-group .qtyInputSc .form-control {
        width: calc(100% - 60px);
        margin: 0 10px;
        text-align: center;
    }
    .productFormSc .uploadImgBox {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .productFormSc .uploadImgBox .uploadImg {
        width: 100px;
        height: 100px;
        position: relative;
        border-radius: 10px;
        margin: 7.5px 0px;
        margin-right: 15px;
    }
    .productFormSc .uploadImgBox .uploadImg .fa {
        position: absolute;
        right: 5px;
        top: 5px;
        background-color: #ffffff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--btn-secondary);
    }
    .productFormSc .uploadImgBox .upload__btn {
        width: 100px;
        height: 100px;
        background: #FBFBFB;
        border: 1px dashed #A7A7A7;
        border-radius: 10px;
        cursor: pointer;
    }
    .productFormSc .uploadImgBox .upload__inputfile {
        position: absolute;
        width: 0;
        opacity: 0;
    }
    .productFormSc .btn-sc .btn {
        padding: 10px 34px;
    }

    @media (max-width: 1199.98px) {
        .productModal .modal-body {
            padding: 0 20px 30px;
        }
        .productModal .modal-header {
            padding: 30px 20px 20px;
        }
        .productFormSc .form-group .form-label {
            margin-bottom: 10px;
        }
        .productFormSc .row {
            margin-left: -5px;
            margin-right: -5px;
        }
        .productFormSc .row > [class*=col-] {
            padding-left: 5px;
            padding-right: 5px;
        }
        .productFormSc .form-group {
            margin-bottom: 20px;
        }
        .productFormSc .form-group .form-control {
            padding: 12px 15px;
        }
    }
    @media (max-width: 991.98px) {
        .productFormSc .uploadImgBox .uploadImg,
        .productFormSc .uploadImgBox .upload__btn {
            width: 70px;
            height: 70px;
        }
        .modal .modal-header .modal-title {
            font-size: 18px;
        }
    }
    @media (max-width: 575.98px) {
        .modal .modal-dialog {
            padding: 0;
            margin: 0;
            min-height: 100%;
        }
        .modal .modal-content {
            min-height: 100%;
            border-radius: 0;
        }
        .productModal .modal-header {
            padding: 20px 15px 20px;
        }
        .productModal .modal-body {
            padding: 0 15px 30px;
        }
    }
/* Product Popup E */

/* Orders Placed S */
    .orderTable th, .orderTable td {
        padding: 20px;
    }
    .orderTable th:nth-child(1), .orderTable td:nth-child(1) {
        padding-left: 0px;
    }
    .tableMainSection .proMedia {
        display: flex;
        align-items: center;
    }
    .tableMainSection .proMedia .media-left {
        min-width: 30px;
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .tableMainSection .proMedia .media-heading {
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        text-transform: capitalize;
        color: #18243C;
        margin: 0;
    }
/* Orders Placed E */

/* Estimated Delivery S */  
    .tableMainSection.estTable .table {
        min-width: 550px;
    }
    .selectAllTab tr:nth-child(1) th {
        padding-left: 0;
        padding-top: 0px;
        border-bottom: 0;
        padding-bottom: 0;
    }
    .selectAllTab .select-all-sc {
        display: flex;
        align-items: center;
    }

    .form-single-border .form-group {
        margin-bottom: 50px;
    }
    .form-single-border .form-group .form-label {
        font-weight: 500;
        font-size: 14px;
        line-height: 157.9%;
        color: var(--btn-primary);
        margin-bottom: 5px;
    }
    .form-single-border .form-group .form-control {
        border: 0px;
        border-bottom: 1px solid #E2E9FF;
        padding: 0 0 16px 0;
        border-radius: 0px;
        font-size: 18px;
        line-height: 117.9%;
    }
    .form-single-border .form-group .form-control:focus {
        box-shadow: none;
        border-color: var(--btn-primary);
    }
    .form-single-border .form-group select.form-control {
        background-position: calc(100% - 0px) 0px !important;
    }
    .form-single-border .form-group span.error:not(.form-label),
    .form-single-border .form-group label.error:not(.form-label) {
        color: var(--error-color);
        font-weight: 500;
        font-size: 13px;
        line-height: 120%;
        position: absolute;
        bottom: -20px;
        left: 0px;
    }
    .form-single-border .form-group .form-control.error {
        border-color: var(--error-color);
    }
    .form-single-border .btn-sc {
        padding-bottom: 20px ;
    }
    .form-single-border .btn-sc .btn {
        border-radius: 14px;
        width: 230px;
    }
    @media (max-width: 991.98px) {
        .selectAllTab tr:nth-child(1) th {
            padding-top: 20px;
            padding-bottom: 20px;
        }
    }
    @media (max-width: 575.98px) {
        .form-single-border .form-group .form-control {
            font-size: 16px;
            padding: 0 0 10px 0;
        }
        .form-single-border .form-group {
            margin-bottom: 20px;
        }
    }
/* Estimated Delivery E */  

/* Dashboard S */
    .headerProfBox ul.dropdown-menu {
        border: 1px solid #E6F1F8;
        border-radius: 16px;
    }
    .headerProfBox ul.dropdown-menu .dropdown-item {
        font-size: 14px;
        font-weight: 500;
    }
    .headerProfBox ul.dropdown-menu .dropdown-item:focus {
        background-color: var(--btn-secondary);
    }
/* Dashboard E */

/* Order Details S */
    .orderDetailsMain {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .orderDetailsMain .orderDetailsCol {
        max-width: 430px;
        width: 50%;
    }
    .orderDetailsMain .orderDetailsCol + .orderDetailsCol {
        margin-left: 260px;
    }

    .orDtProfileSc {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .orDtProfileSc .profImgSc {
        width: 58px;
        height: 58px;
        margin-right: 15px;
    }
    .orDtProfileSc .proCntSc {
        width: calc(100% - 75px);
    }
    .orDtProfileSc .proCntSc .title {
        font-weight: 500;
        font-size: 27.0667px;
        line-height: 100%;
        text-transform: capitalize;
        color: var(--btn-primary);
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .productBox {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-left: -25px;
        margin-right: -25px;
    }
    .productBox .productCol {
        width: 50%;
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 30px;
    }
    .productBox .productCol .prodImg {
        border-radius: 10px;
    }
    .productBox .productCol .prodTitle {
        font-weight: 700;
        font-size: 16.352px;
        line-height: 117.9%;
        color: #1C2323;
        display: block;
        margin: 10px 0 0px;
    }
    .productBox .productCol .prodInfo {
        font-weight: 500;
        font-size: 13.0816px;
        line-height: 21px;
        color: rgba(39, 53, 76, 0.5);
    }
    .orderDetailsCol .form-single-border {
        padding-top: 20px;
    }
    .orderDetailsCol .form-single-border .form-group {
        margin-bottom: 30px;
    }

    .totalTableSc .totalTableRow {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding: 16px 0;
    }
    .totalTableSc .totalTableRow:nth-child(1) {
        padding-top: 0;
    }
    .totalTableSc .totalTableRow:last-child {
        border-top: 1px solid #DCDCDC;
    }
    .totalTableSc .totalTableRow .ttCol {
        width: 25%;
        text-align: center;
        font-weight: 700;
        font-size: 15px;
        line-height: 117.9%;
        color: var(--btn-primary);
    }
    .totalTableSc .totalTableRow .ttCol:nth-child(3) {
        width: 50%;
        text-align: left;
    }

    .updateFormGroup {
        padding: 50px 0 50px;
    }
    .updateFormGroup .form-label {
        font-weight: 600;
        font-size: 15px;
        line-height: 16px;
        margin-bottom: 15px;
    }
    .updateFormGroup .form-control {
        border: 1px solid #DCDCDC;
        border-radius: 8.62791px;
    }
    .updateFormGroup .form-control:focus {
        box-shadow: none;
        border-color: var(--btn-primary);
    }
    .updateFormGroup .btn-sc {
        padding-top: 30px;
        text-align: right;
    }
    .updateFormGroup .btn-sc .btn {
        padding: 9px 27px;
        font-weight: 700;
        font-size: 11.9538px;
        line-height: 14px;
        letter-spacing: -0.01em;
    }

    .orderHistory li {
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 30px;
    }
    .orderHistory li span {
        width: 40%;
        padding: 0 10px;
        display: block;
    }
    .orderHistory li span.date {
        font-weight: 700;
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 0.5px;
        text-transform: capitalize;
        color: var(--btn-primary);
    }
    .orderHistory li span.info {
        width: 60%;
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 0.5px;
        color: var(--btn-primary);
    }

    @media (max-width: 1599.99px) {
        .orderDetailsMain .orderDetailsCol + .orderDetailsCol {
            margin-left: 160px;
        }
    }
    @media (max-width: 1499.99px) {
        .orderDetailsMain .orderDetailsCol {
            width: 50%;
        }
        .orderDetailsMain .orderDetailsCol + .orderDetailsCol {
            margin-left: 60px;
            width: calc(50% - 60px);
        }
    }
    @media (max-width: 767.99px) {
        .orderDetailsMain .orderDetailsCol {
            width: 100%;
        }
        .orderDetailsMain .orderDetailsCol + .orderDetailsCol {
            width: 100%;
            margin-left: 0;
        }
        .orDtProfileSc .proCntSc .title {
            font-size: 20px;
        }
        .productBox .productCol {
            margin-bottom: 10px;
        }
        .orderDetailsCol .form-single-border .form-group {
            margin-bottom: 15px;
        }
        .updateFormGroup {
            padding: 10px 0 30px;
        }
    }
/* Order Details E */

/* Delete Popup S */
    .deleteModal .modal-body {
        text-align: center;
        padding: 0 70px 60px;
    }
    .deleteModal .deleteTtl {
        font-weight: 700;
        font-size: 16px;
        line-height: 147.9%;
        margin: 30px 0 60px;
    }
    .deleteModal .btn-sc {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .deleteModal .btn-sc .btn {
        width: 100%;
        border-radius: 16px;
    }
    .deleteModal .btn-sc .btn + .btn {
        margin-top: 15px;
    }
    .deleteModal .btn-sc .btn-primary:not(:hover) {
        background-color: #ECEEF0;
        color: var(--btn-secondary);
        border-color: #ECEEF0;
    }
    @media (max-width: 575.98px) {
        .deleteModal .modal-body {
            padding: 0 15px 60px;
        }
        .tableBtnSection .btn {
            width: auto;
        }
    }
/* Delete Popup E */

/* User Table S */
    .userTable.selectAllTab tr td {
        padding: 40px 20px;
        padding-left: 0;
    }
    .userTable.tableMainSection .checkboxSection .profImgSc {
        width: 48px;
        height: 48px;
    }
    .userTable.tableMainSection td .ad-checkbox input + label:before {
        margin-right: 40px;
    }
    .userTable .title, .userTable .info {
        display: block;
        font-weight: 600;
    }
    .userTable .info {
        margin-top: 5px;
    }
    @media (max-width: 991.98px) {
        .userTable.selectAllTab tr td {
            padding: 20px 20px 20px 0;
        }
        .userTable.tableMainSection td .ad-checkbox input + label:before {
            margin-right: 10px;
        }
    }
/* User Table E */

/* Vendor Popup S */
    @media (min-width: 991.99px) {
        .vendorModal.productModal .modal-header {
            padding: 30px 40px;
        }
        .vendorModal.productModal .modal-body {
            padding: 0 40px 40px;
        }
    }
    @media (min-width: 767.99px) {
        .vendorModal .productFormSc .form-group {margin-bottom: 40px;}
    }
    .vendorModal .productFormSc .form-group .form-label {
        margin-bottom: 10px;
    }
    .vendorModal .productFormSc .row {margin-left: -15px;margin-right: -15px;}
    .vendorModal .productFormSc .row > [class*=col-] {padding-left: 15px;padding-right: 15px;}
    .vendorModal .productFormSc .btn-sc .btn {padding: 14px 34px; width: 100%; max-width: 300px;}
    @media (max-width: 767.98px) {
        .vendorModal .productFormSc .btn-sc {
            text-align: center;
        }
    }
/* Vendor Popup E */

/* Create Category Popup S */
    @media (min-width: 767.99px) {.vendorModal.categoryModal .btn-sc {padding-top: 200px;}}
    @media (max-width: 767.98px) {.vendorModal.categoryModal .btn-sc {padding-top: 20px;}}
/* Create Category Popup E */

/* Category S */
    .categoryMain .tableListingHeader {
        padding: 40px 0 15px;
        margin-bottom: 0;
    }
    .categoryRow {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
    .categoryBox {
        background-color: #FFFFFF;
        padding: 30px;
        border-radius: 20px;
        /* aspect-ratio: 1.5 / 1; */
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .categoryBox .catTitle {
        color: var(--btn-primary);
        font-size: 19px;
        line-height: 117.9%;
        font-weight: 500;
    }
    .categoryBox .icn-sc {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .categoryBox .icn-sc .icn + .icn {
        margin-left: 25px;
    }
    .categoryBox .icn-sc .icn-edit svg {stroke: var(--btn-primary); transition: 0.3s;}
    .categoryBox .icn-sc .icn-dlt svg {fill: var(--btn-secondary); transition: 0.3s;}
    .categoryBox .icn-sc .icn-edit:hover svg {stroke: var(--btn-secondary);}
    .categoryBox .icn-sc .icn-dlt:hover svg {fill: var(--btn-primary);}
    @media (max-width: 1400px) {
        .categoryRow {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    @media (max-width: 767.98px) {
        .categoryRow {grid-template-columns: repeat(3, 1fr);}
        .categoryBox {padding: 20px;}
    }
    @media (max-width: 575.98px) {
        .categoryRow {grid-template-columns: repeat(2, 1fr); gap: 10px;}
        .categoryBox {min-height: 150px;}
        .categoryBox .catTitle {font-size: 16px;}
        .categoryBox .icn-sc .icn + .icn {margin-left: 15px;}
        .categoryBox .icn-sc svg {
            width: 18px;
            height: 18px;
        }
    }
/* Category E */

/* Account Info Popup S */
    .accInfoModal.productModal .modal-body {padding: 0 50px 40px;}
    .accInfoModal .accInfoform .row {
        margin-left: -25px;
        margin-right: -25px;
        align-items: center;
    }
    .accInfoModal .accInfoform .row > [class*=col-] {
        padding-left: 25px;
        padding-right: 25px;
    }
    .accInfoModal .accImgSc .profimgSc {
        width: 184px;
        height: 184px;
        margin: auto;
    }
    .accInfoModal .accImgSc .profName {
        font-weight: 500;
        font-size: 20px;
        line-height: 18px;
        display: block;
        margin-top: 30px;
    }
    .accInfoform .form-control {
        color: rgb(0 0 0 / 40%);
        font-weight: 500;
    }
    .accInfoform .loginkey-group .form-control {
        font-weight: 700;
        letter-spacing: 2px;
    }
/* Account Info Popup E */


/* Maulik Start */

#pass-error{
    position: absolute;
}

.signFormSection .form-group .input-group .password-text{
    border-radius:10px !important;
}

.signFormSection .btn{
    margin-top: 30px !important;
}

.signFormSection .new-form-group{
    margin-bottom:0px !important;
}

.sidebarMain
{
    background: linear-gradient(132deg, #000000 , #0077a5) !important
}

.sidebarNav .navList .navItem
{
    color : #ffffff !important;
}

/* Pagination Styling */
.pagination {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-item .page-link {
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 5px;
    border: 1px solid #E6F1F8;
    color: #0E144A;
    background-color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: #0E144A;
    color: #FFFFFF;
    border-color: #0E144A;
}

.pagination .page-item .page-link:hover {
    background: #0E144A;
    color: #FFFFFF;
    border-color: #0E144A;
}

.pagination .page-item.disabled .page-link {
    background-color: #F9F9F9;
    border-color: #E6F1F8;
    color: #8E8E8E;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Previous/Next buttons */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    color: #8E8E8E;
}

/* Pagination Wrapper */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.showing-results {
    color: #898A8D;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

/* Stats Cards */
.stats-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stats-number {
    font-family: var(--login-fonts);
}

@media (max-width: 767.98px) {
    .stats-card {
        margin-bottom: 15px;
    }
}
/* button code for link status */
/* Link Checker Button Styles */

/* Maulik End */
