body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mb-18 {
    margin-bottom: 18px;
}

.bg-light-orange {
    background-color: #FFE4AE !important;
}

.top-header {
    width: 100%;
    background-color: #000000;
    padding: 15px;
}

    .top-header .header-container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }

        .top-header .header-container .contact-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: Arial;
            font-weight: 400;
            font-size: 16px;
            line-height: 18px;
            color: #FFFFFF;
            background-color: #1F1F1F;
            padding: 6px 10px;
            border-radius: 3px;
            margin-bottom: 6px;
        }

            .top-header .header-container .contact-bar .contact-box {
                display: flex;
                flex-direction: row;
                gap: 20px;
            }

                .top-header .header-container .contact-bar .contact-box > div {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }

                .top-header .header-container .contact-bar .contact-box .white-link {
                    font-family: Arial;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 18px;
                    color: #FFFFFF;
                    text-decoration: none;
                    cursor: pointer;
                }

    .top-header .logo-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

        .top-header .logo-bar > div {
            flex: 1 0 0%;
        }

        .top-header .logo-bar .desktop-logo {
            text-align: center;
        }

        .top-header .logo-bar .mobile-logo {
            display: none;
        }

            .top-header .logo-bar .mobile-logo .navbar-toggle-btn {
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: transparent;
                border: none;
                padding: 0;
            }

        .top-header .logo-bar .header-title {
            font-family: Arial;
            font-weight: 700;
            font-size: 26px;
            color: #F9A000;
            margin-bottom: 0;
        }

        .top-header .logo-bar .long-header-text {
            font-family: Arial;
            font-weight: 700;
            font-size: 20px;
            line-height: 24px;
            color: #F9A000;
            margin-bottom: 0;
            max-width: 250px;
        }

        .top-header .logo-bar .header-link {
            display: flex;
            align-items: center;
            justify-content: end;
            gap: 32px;
        }

            .top-header .logo-bar .header-link a {
                color: #3F51B5;
                text-decoration: underline;
                font-family: Arial;
                font-weight: 700;
                font-size: 16px;
                line-height: 18px;
                white-space: nowrap;
            }

                .top-header .logo-bar .header-link a.cart-link {
                    color: #FFFFFF;
                    font-weight: 400;
                    text-decoration: none;
                }

.bottom-footer {
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px;
}

.main-content-area {
    padding: 25px 15px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 1310px;
    margin: 0 auto;
    gap: 15px;
}

    .main-content-area .sidebar {
        width: 150px;
        min-width: 150px;
    }

        .main-content-area .sidebar .close-sidebar {
            width: 32px;
            height: 32px;
            display: none;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            cursor: pointer;
        }

        .main-content-area .sidebar .sidebar-menu {
            padding: 0;
            margin: 0;
            list-style: none;
        }

            .main-content-area .sidebar .sidebar-menu > li {
                padding: 6px 8px;
                font-weight: 500;
                font-size: 12px;
                background-color: #FBFBFB;
                border: 1px solid #D9D9D9;
                border-radius: 5px;
                color: #000000;
                line-height: 20px;
                margin-bottom: 6px;
            }

                .main-content-area .sidebar .sidebar-menu > li > .menu-text {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    position: relative;
                }

                    .main-content-area .sidebar .sidebar-menu > li > .menu-text.active::before {
                        content: "";
                        position: absolute;
                        left: -4px;
                        top: -3px;
                        z-index: 1;
                        width: calc(100% + 8px);
                        height: calc(100% + 6px);
                        background-color: #f9a000;
                        border-radius: 3px;
                    }

                    .main-content-area .sidebar .sidebar-menu > li > .menu-text .menu-link {
                        font-size: 12px;
                        text-decoration: none;
                        color: #000000;
                        z-index: 2;
                    }

                .main-content-area .sidebar .sidebar-menu > li .menu-icon {
                    width: 14px;
                    height: 14px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 2;
                }

                    .main-content-area .sidebar .sidebar-menu > li .menu-icon[aria-expanded="true"] .minus-icon {
                        display: block;
                    }

                    .main-content-area .sidebar .sidebar-menu > li .menu-icon[aria-expanded="true"] .plus-icon {
                        display: none;
                    }

                    .main-content-area .sidebar .sidebar-menu > li .menu-icon[aria-expanded="false"] .minus-icon {
                        display: none;
                    }

                    .main-content-area .sidebar .sidebar-menu > li .menu-icon[aria-expanded="false"] .plus-icon {
                        display: block;
                    }

                .main-content-area .sidebar .sidebar-menu > li .submenu {
                    list-style: none;
                    padding: 0;
                    margin-top: 8px;
                }

                    .main-content-area .sidebar .sidebar-menu > li .submenu > li {
                        margin-bottom: 8px;
                        width: 100%;
                    }

                    .main-content-area .sidebar .sidebar-menu > li .submenu .menu-link {
                        padding: 4px 10px;
                        width: 100%;
                        display: flex;
                        text-decoration: none;
                        background-color: #F0F0F0;
                        border-radius: 4px;
                        color: #777777;
                        font-size: 12px;
                        line-height: 20px;
                        cursor: pointer;
                    }

                        .main-content-area .sidebar .sidebar-menu > li .submenu .menu-link.active {
                            background-color: #f9a000;
                            color: #000000;
                        }

    .main-content-area .content-area {
        width: calc(100% - 180px);
    }

.table-theme {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0;
}

    .table-theme thead tr th,
    .table-theme tbody tr.rowheadcolor th {
        padding: 16px 2px 16px 24px;
        color: #757575;
        font-weight: 700;
        font-size: 14px;
        line-height: 28px;
        /*border: 1px solid #2121211F;*/
        border-bottom: none;
        border-right: none;
        border-left: none;
        white-space: nowrap;
    }
        /*.table-theme thead tr th:first-child {
			border-left: 1px solid #2121211F;
		}*/

        .table-theme thead tr th a,
        .table-theme tbody tr.rowheadcolor th a {
            color: #212121;
            text-decoration: none;
        }

            .table-theme thead tr th a[title="Sort"],
            .table-theme tbody tr.rowheadcolor th a[title="Sort"] {
                padding-right: 20px;
                background-image: url("../images/sort-icon.svg");
                background-repeat: no-repeat;
                background-position: top right;
            }

            .table-theme thead tr th a.arrow-direction-asc-sort[title="Sort"],
            .table-theme thead tr.rowheadcolor th a.arrow-direction-asc-sort[title="Sort"] {
                background-image: url("../images//sort-icon-down.svg");
            }

        .table-theme thead tr th:first-child {
            border-radius: 8px 0 0 0;
        }

        .table-theme thead tr th:last-child {
            border-radius: 0 8px 0 0;
            /*border-right: 1px solid #2121211F;*/
            border-left: none;
        }

    .table-theme tbody tr td {
        padding: 8px 24px;
        font-size: 14px;
        line-height: 28px;
        border-top: 1px solid #2121211F;
    }

        .table-theme tbody tr td:has(.down-arrow-btn) {
            padding: 8.5px !important;
        }

        /*.table-theme tbody tr td:first-child {
			border-left: 1px solid #2121211F;
		}

		.table-theme tbody tr td:last-child {
			border-right: 1px solid #2121211F;
		}*/

        .table-theme tbody tr td .form-control.qty-dd {
            height: 32px;
            min-width: 74px;
            max-width: 74px;
            font-size: 14px;
            border: 1px solid #e8e8e8;
        }

    .table-theme tr.pgr > td {
        padding: 23px 24px 20px;
        /*border-bottom: 1px solid #2121211F;*/
    }

    .table-theme tr.pgr td:first-child {
        border-radius: 0 0 0 8px;
    }

    .table-theme tr.pgr td:last-child {
        border-radius: 0 0 8px 8px;
        text-align: right;
    }

    .table-theme tr.gridFooter {
        height: 75px;
    }

        .table-theme tr.gridFooter td {
            border-bottom: 1px solid #2121211F;
        }

            .table-theme tr.gridFooter td:first-child {
                border-radius: 0 0 0 8px;
            }

            .table-theme tr.gridFooter td:last-child {
                border-radius: 0 0 8px 0;
            }

    .table-theme tr.pgr td > table {
        border-collapse: separate;
        margin-left: auto;
        border-color: #2121211F;
    }

    .table-theme tr.pgr td table > tbody > tr > td {
        padding: 3px 8px;
        border-radius: 4px !important;
        border: 1px solid #E5D2AD !important;
        min-width: 28px;
        height: 28px;
        font-size: 14px;
        line-height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        color: #10781F;
    }

        .table-theme tr.pgr td table > tbody > tr > td:has(span.active) {
            background-color: #FFEBC5;
            border: 1px solid #FFEBC5 !important;
            color: #10781F;
        }

        .table-theme tr.pgr td table > tbody > tr > td > span.active {
            background-color: transparent !important;
            color: #10781F !important;
        }

    .table-theme tr.pgr table tbody tr td > a {
        text-decoration: none;
        color: #10781F;
        font-weight: 500;
    }

    .table-theme tbody tr.expandable-row > td {
        padding: 0px;
        border-top: none;
    }

        .table-theme tbody tr.expandable-row > td:has(.collapsible-row.show),
        .table-theme tbody tr.expandable-row > td:has(.collapsible-row.collapsing) {
            border-top: 1px solid #2121211F;
        }

    .table-theme tbody tr.expandable-row .collapsible-row {
        padding: 15px;
        background-color: #F9F9F9;
    }

    .table-theme .expandable-row .form-label {
        font-size: 14px;
        font-weight: 700;
        line-height: 28px;
        margin-bottom: 2px;
        color: #212121;
    }

        .table-theme .expandable-row .form-label.pricing-label {
            margin-bottom: 16px;
        }

.mobile-field {
    display: none;
}

.table-theme .expandable-row {
    background-color: #F9F9F9;
}

    .table-theme .expandable-row table.table.table-sm.desktop-table tr td:first-child {
        font-weight: 700;
        color: #757575;
        border-left: 1px solid #2121211F;
    }

    .table-theme .expandable-row table.table.table-sm.desktop-table tr td:last-child {
        border-right: 1px solid #2121211F;
    }

    .table-theme .expandable-row table.table.table-sm.mobile-table {
        display: none;
    }

        .table-theme .expandable-row table.table.table-sm.mobile-table tr th {
            font-weight: 700;
            font-family: 'Roboto';
            color: #757575;
            padding: 6px 24px;
            line-height: 28px;
            background: transparent;
        }

        .table-theme .expandable-row table.table.table-sm.mobile-table tr td {
            padding: 2px 24px;
            line-height: 28px;
            font-family: 'Roboto';
            color: #212121;
            font-weight: 400;
            border-top: 1px solid #EEEEEE;
            background: transparent;
        }


    .table-theme .expandable-row .form-data {
        font-size: 14px;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 0px;
        color: #212121;
    }

.down-arrow-btn {
    background: #FFFFFF;
    display: flex;
    align-content: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    min-width: 32px;
    border-radius: 6px;
    border: 1px solid #E4E4E4;
    cursor: pointer;
}

    .down-arrow-btn img {
        transition: transform 0.3s ease-in;
        transform-origin: center;
    }

.table-theme tbody tr:has(>td .down-arrow-btn[aria-expanded="true"]) {
    background-color: #21212114;
}

.table-theme tbody tr.active-tr-open {
    background-color: #21212114;
}

    .table-theme tbody tr.active-tr-open .down-arrow-btn img {
        transform: rotate(180deg);
    }

.add-cart-btn {
    background: transparent;
    display: flex;
    align-content: center;
    justify-content: center;
    height: 28px;
    width: 32px;
    min-width: 32px;
    border-radius: 6px;
    border: none;
}

.filter-content {
    position: relative;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

    .filter-content .refine-filter-btn {
        padding: 6px;
        border: 1px solid #FFE4AE;
        border-radius: 6px;
        background-color: #FFF7E7;
        cursor: pointer;
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        height: 38px;
    }

    .filter-content .filter-label {
        font-family: Arial;
        font-size: 14px;
        font-weight: 700;
        color: #6B6B6B;
        line-height: 20px;
        margin-bottom: 8px;
    }

    .filter-content .for-dash {
        position: relative;
    }

        .filter-content .for-dash::before {
            content: "-";
            font-size: 14px;
            font-weight: bold;
            color: #000000;
            position: absolute;
            left: -11px;
            top: 50%;
            transform: translateY(-50%);
        }

    .filter-content .search-btn-wrap {
        border-top: 1px solid #DBDBDB;
        padding-top: 20px;
        text-align: right;
    }

        .filter-content .search-btn-wrap .refine-search-btn {
            min-width: 250px;
            color: #000000;
            text-decoration: none;
            background-color: #F9A605;
            border: 1px solid #F9A605;
            height: 42px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
        }

        .filter-content .search-btn-wrap .refine-cancel-btn {
            min-width: 250px;
            color: #000000;
            text-decoration: none;
            background-color: #EBEBEB;
            border: 1px solid #EBEBEB;
            height: 38px;
            border-radius: 8px;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
        }

.filter-main-box {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 111;
    width: 100%;
    padding: 24px;
    background-color: #F9F9F9;
    border-radius: 12px;
    box-shadow: 0px 14px 64px 0px #00000026;
}

    .filter-main-box .form-control {
        border: 1px solid #21212170;
        padding: 0.265rem 0.75rem;
        color: #212121;
        border-radius: 4px;
    }

        .filter-main-box .form-control:focus {
            box-shadow: none;
            border: 1px solid #D16603;
        }

        .filter-main-box .form-control::placeholder {
            color: #757575;
        }

.filter-result-tab {
    margin-bottom: 18px;
    display: flex;
    align-items: start;
    gap: 20px;
}

    .filter-result-tab .filter-matching {
        color: #000000;
        font-weight: 600;
        font-size: 16px;
        line-height: 34px;
    }

    .filter-result-tab .filter-pill-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: start;
        gap: 10px;
    }

        .filter-result-tab .filter-pill-wrap .filter-pill {
            padding: 8px 5px;
            background-color: #E5E7EB;
            border-radius: 4px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-width: 104px;
            height: 34px;
            font-weight: 400;
        }

            .filter-result-tab .filter-pill-wrap .filter-pill .pill-text {
                padding: 0 4px;
                font-size: 14px;
                line-height: 18px;
                white-space: nowrap;
                color: #212121;
                font-weight: 400;
                letter-spacing: 0.25px;
            }

            .filter-result-tab .filter-pill-wrap .filter-pill .remove-filter {
                display: flex;
            }

                .filter-result-tab .filter-pill-wrap .filter-pill .remove-filter:hover {
                    cursor: pointer;
                }

.informative-sentence {
    font-family: Arial;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 15px;
}

.top-grid-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

    .top-grid-header .cat-name-text {
        margin-bottom: 6px;
        font-family: Arial;
        font-weight: 700;
        font-size: 36px;
        line-height: 41px;
        letter-spacing: 0;
        color: #000000;
    }

    .top-grid-header .more-qty {
        margin-bottom: 0;
        font-family: Arial;
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0;
        color: #000000;
    }

    .top-grid-header .item-qty-dd {
        margin-left: auto;
    }

        .top-grid-header .item-qty-dd .btn.btn-light {
            height: 65px;
            padding: 20px 21px;
            background: linear-gradient(147.17deg, #F7F7F7 25.76%, #EDEDED 64.91%);
            border: 0.5px solid #B6B6B6;
            color: #000000;
            font-size: 16px;
            border-radius: 11px;
        }

    .top-grid-header .cart-graybox {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 236px;
        border-radius: 11px;
        height: 65px;
        padding: 12px 12px;
        background: linear-gradient(147.17deg, #F7F7F7 25.76%, #EDEDED 64.91%);
        border: 0.5px solid #B6B6B6;
        color: #000000;
        font-size: 16px;
    }

        .top-grid-header .cart-graybox .cart-info-box {
            display: flex;
            flex-direction: column;
        }

            .top-grid-header .cart-graybox .cart-info-box .product-count {
                margin-bottom: 0;
                font-size: 14px;
                line-height: 20px;
                color: #000000;
            }

            .top-grid-header .cart-graybox .cart-info-box .total-product {
                margin-bottom: 0;
                font-size: 14px;
                line-height: 20px;
                color: #000000;
                font-weight: 700;
            }

.note-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

    .note-label .note-title {
        color: #F31700;
        font-family: Arial;
    }

    .note-label .note-pill {
        font-family: Arial;
        padding: 2px 4px;
        border-radius: 5px;
        border: 1px solid #E0E0E0;
        background-color: #EAEAEA;
        color: #555555;
        font-size: 12px;
        line-height: 20px;
    }

    .note-label .note-fulltext {
        color: #969696;
        font-size: 12px;
        line-height: 20px;
        font-family: Arial;
    }

.paging-info {
    position: absolute;
    left: 24px;
    bottom: 27px;
    font-size: 14px;
    line-height: 20px;
    color: #757575;
    font-weight: 400;
}

.return-policy-box {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 4px;
    max-width: 1170px;
    margin: 15px auto;
}

    .return-policy-box .return-policy-title {
        font-family: Arial;
        font-weight: 700;
        font-size: 16px;
        line-height: 18px;
        color: #000000;
        margin-bottom: 10px;
    }

    .return-policy-box .return-policy-para {
        font-family: Arial;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #333333;
    }

        .return-policy-box .return-policy-para:last-child {
            margin-bottom: 0;
        }

.modalBackground {
    background-color: rgba(0, 0, 0, 0.5);
}

.error-body {
    padding: 20px;
    text-align: center;
}

    .error-body .error-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e74c3c;
        margin-bottom: 20px;
    }

    .error-body .error-msg-text {
        margin-bottom: 20px;
    }

    .error-body .error-action-btn {
        background-color: #000000;
        border-radius: 4px;
        border: none;
        padding: 6px 12px;
        color: #FFFFFF;
        outline: none;
    }

.modalPopup {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    margin: 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

    .modalPopup .modal-action-btn {
        background-color: #000000;
        border-radius: 4px;
        border: none;
        padding: 6px 12px;
        color: #FFFFFF;
        outline: none;
    }

        .modalPopup .modal-action-btn:hover {
            cursor: pointer;
        }

.policy-box {
    background-color: #F5F5F5;
    padding: 20px 20px 4px 20px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 20px;
}

    .policy-box .policy-title {
        font-family: Arial;
        font-weight: 700;
        font-size: 16px;
        line-height: 18px;
        color: #000000;
        margin-bottom: 10px;
    }

    .policy-box .policy-para {
        font-family: Arial;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #333333;
        margin-bottom: 16px;
    }

.policy-main-title {
    color: #D16603;
}

.policy-tagline {
    font-size: 22px;
    color: #000000;
    margin-bottom: 20px;
}

div#MainContent_pnlComplex > div:has(>.table-theme) {
    overflow-x: auto;
    max-width: auto;
    border: 1px solid #2121211F;
    border-radius: 8px;
}

div#MainContent_pnlCartGrid > div:has(>.table-theme) {
    overflow-x: auto;
    max-width: auto;
    border: 1px solid #2121211F;
    border-radius: 8px;
}

div#MainContent_pnlSimple > div:has(>.table-theme) {
    overflow-x: auto;
    max-width: auto;
    border: 1px solid #2121211F;
    border-radius: 8px;
}

.hiddencol {
    display: none;
}

.policy-point {
    background-color: #F5F5F5;
    padding: 8px 8px 8px 30px;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 4px;
}

    .policy-point::before {
        content: "\21D2";
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 1;
        font-size: 18px;
        color: #333333;
    }

.help-box {
    background-color: #f5f5f5;
    padding-top: 1rem;
    border-radius: 5px;
}

    .help-box .label {
        position: relative;
        color: #000000;
        font-size: 14px;
        display: inline-block;
        line-height: 18px;
        margin-bottom: 4px;
    }

        .help-box .label .required {
            position: absolute;
            top: 0;
            right: -9px;
            color: #FF0000;
        }

    .help-box .form-control:focus {
        box-shadow: none;
        border: 1px solid #D16603;
    }

    .help-box .errorText {
        color: #FF0000;
        font-size: 14px;
    }

.select2-container--default .select2-results > .select2-results__options {
    max-height: 360px;
    overflow-y: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #212121 transparent transparent transparent;
    border-width: 7px 4px 0 4px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #212121 transparent;
    border-width: 0 4px 7px 4px
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none;
    border-radius: 0.25rem;
}

.select2-dropdown {
    background-color: #f9f9f9;
    border: 1px solid #dedede;
    border-radius: 12px !important;
    box-sizing: border-box;
    box-shadow: 0px 14px 64px 0px #00000026;
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 0px;
}

.select2-container--default .select2-results > .select2-results__options .select2-results__option:first-child {
    border-top: none;
}

.select2-results__option {
    padding: 4px 6px;
    font-size: 14px;
    border-top: 1px solid #dedede;
}

.qty-dd + .select2-container .select2-selection--single {
    height: 32px;
    border: 1px solid #E8E8E8;
    border-radius: 4px !important;
}

.qty-dd + .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
    color: #212121;
}

.qty-dd + .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
}

.item-qty-dropdown + .select2-container--default .select2-selection--single {
    background: linear-gradient(147.17deg, #F7F7F7 25.76%, #EDEDED 64.91%);
    border: 1px solid #B6B6B6;
    border-radius: 11px !important;
    height: 65px;
}

    .item-qty-dropdown + .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 65px;
        color: #212121;
        padding-left: 12px;
        padding-right: 30px;
    }

    .item-qty-dropdown + .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 63px;
        right: 12px;
    }

.mob-id-filter + .select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #E8E8E8;
}

.mob-id-filter + .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    color: #D88E00;
    padding-left: 68px;
    padding-right: 20px;
}

.mob-id-filter + .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.mob-id-filter + .select2-container--default .select2-selection--single .select2-selection__rendered::before {
    content: "Sort By:";
    position: absolute;
    color: #212121;
    left: 8px;
}

.mob-asc-filter + .select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #E8E8E8;
}

.mob-asc-filter + .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    color: #212121;
    padding-left: 12px;
    padding-right: 20px;
}

.mob-asc-filter + .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.mob-sorting-drp {
    display: none;
}

#MainContent_pnlSimple .table-theme tbody tr.rowheadcolor th:nth-child(6) {
    min-width: 300px;
}

#MainContent_pnlSimple .table-theme tbody tr td:nth-child(3) {
    white-space: nowrap;
}

.mobile-grid-data-info {
    display: none;
}
/* Orderinfo new page css start*/
.white-outline-card {
    background-color: #FBFBFB;
    border: 1px solid #D9D9D9;
    padding: 20px;
    border-radius: 11px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
    margin-bottom: 16px;
}

    .white-outline-card .white-card-tital {
        font-size: 20px;
        color: #212121;
        font-family: "Roboto";
        margin-bottom: 12px;
    }

.order-price-detail {
    display: flex;
    width: 100%;
    flex-direction: column;
}

    .order-price-detail .order-price-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-size: 14px;
        color: #757575;
        margin: 4px 0;
    }

        .order-price-detail .order-price-item .amount {
            color: #000000;
            font-weight: 500;
        }

        .order-price-detail .order-price-item.total-text {
            font-size: 16px;
            font-weight: 500;
            color: #000000;
        }

.white-outline-card .label-box {
    min-width: 200px;
    text-align: right;
}

    .white-outline-card .label-box .col-form-label {
        font-size: 14px;
        color: #212121;
        position: relative;
        display: inline-flex;
        margin-left: auto;
    }

        .white-outline-card .label-box .col-form-label .required {
            position: absolute;
            top: 0;
            left: -9px;
            color: #FF0000;
        }

.white-outline-card select.form-control {
    appearance: auto;
}

.white-outline-card .form-control:focus {
    box-shadow: none;
    border: 1px solid #D16603;
}

.white-outline-card .errorText {
    color: #FF0000;
    font-size: 14px;
}

.astict-sign {
    position: absolute;
    right: -12px;
    top: 5px;
}

.form-check.custom-select-box,
.aspNetDisabled:has(input[type="radio"]) {
    padding: 4px 16px 4px 38px;
    background: #f2f2f2;
    border-radius: 5px;
    display: inline-flex;
    gap: 8px;
    border: 1px solid transparent;
    width: fit-content;
}

.aspNetDisabled.radio-wrap-box:has(input[type="radio"]) {
    padding: 0;
    background: transparent;
}

.form-check.custom-select-box:has(input:checked) {
    border: 1px solid #cce1ff;
    background-color: #edfbff;
}

.has-icon {
    position: relative;
}

    .has-icon .hint-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #787878;
    }

.fs-14 {
    font-size: 14px;
}

.clear:has(>.return-policy-box) {
    padding: 0 15px;
}

.radio-wrap-box .aspNetDisabled input[type="radio"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.aspNetDisabled input[type="radio"]:checked {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.radio-wrap-box input[type="radio"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.radio-wrap-box input[type="radio"]:checked {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.radio-wrap-box input[type="radio"] {
    border-radius: 50%;
    float: left;
    margin-left: -1.5em;
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

select.custom-yes-no {
    border-radius: 4px;
    border: 1px solid #aeaeae;
    margin: 0 8px;
    height: 26px;
}

.city-state-dropdown + .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    height: 31px;
}

    .city-state-dropdown + .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #212529;
        line-height: 31px;
        font-size: 14px;
    }

    .city-state-dropdown + .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 29px;
    }

.city-state-dropdown + .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-radius: 0.25rem !important;
}

.sub-cat-wrap {
    background-color: #FFF;
    display: inline-block;
    position: relative;
}

    .sub-cat-wrap:after {
        content: "";
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 5;
        border-style: solid;
        border-width: 7px 4px 0 4px;
        border-color: #212121 transparent transparent transparent;
        pointer-events: none;
        transform-origin: center;
    }

    .sub-cat-wrap:has(.sub-cat-dropdown:focus-visible):after {
        border-width: 0 4px 7px 4px;
        border-color: transparent transparent #212121 transparent;
    }

    .sub-cat-wrap:not(:has(.sub-cat-dropdown)) {
        display: none;
    }

    .sub-cat-wrap select.sub-cat-dropdown {
        position: relative;
        min-width: 120px;
        height: 65px;
        border-radius: 11px;
        border: 1px solid #B6B6B6;
        padding: 20px 35px 20px 21px;
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        background: linear-gradient(147.17deg, #F7F7F7 25.76%, #EDEDED 64.91%);
    }

select.sub-cat-dropdown:focus,
select.sub-cat-dropdown:focus-visible {
    box-shadow: none;
    border: 1px solid #B6B6B6;
    outline: none;
}

.mob-filter-wrap {
    position: relative;
}

    .mob-filter-wrap .mobile-asc-select {
        height: 38px;
        border: 1px solid #E8E8E8;
        border-radius: 4px;
        background-color: #FFFFFF;
        font-size: 16px;
        color: #212121;
        padding-left: 10px;
        padding-right: 20px;
        outline: none;
        -webkit-appearance: none;
        appearance: none;
    }

select.mobile-asc-select:focus,
select.mobile-asc-select:focus-visible {
    box-shadow: none;
    outline: none;
}

.mob-filter-wrap:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 10px;
    z-index: 5;
    border-style: solid;
    border-width: 7px 4px 0 4px;
    border-color: #212121 transparent transparent transparent;
    pointer-events: none;
    transform-origin: center;
}

.mob-filter-wrap:has(.mobile-asc-select:focus-visible):after {
    border-width: 0 4px 7px 4px;
    border-color: transparent transparent #212121 transparent;
}

.mob-id-wrap {
    position: relative;
}

.mobile-id-select {
    height: 38px;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    background-color: #FFFFFF;
    font-size: 16px;
    color: #D88E00;
    padding-left: 10px;
    text-indent: 60px;
    padding-right: 20px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    width: 140px;
}

    .mobile-id-select option {
        color: #212121;
        padding-left: 10px;
    }

.mob-id-wrap:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 10px;
    z-index: 5;
    border-style: solid;
    border-width: 7px 4px 0 4px;
    border-color: #212121 transparent transparent transparent;
    pointer-events: none;
    transform-origin: center;
}

.mob-id-wrap:before {
    content: "Sort By:";
    position: absolute;
    top: 6px;
    left: 10px;
    z-index: 5;
    font-size: 16px;
    color: #212121;
    pointer-events: none;
}

.mob-id-wrap:has(.mobile-id-select:focus-visible):after {
    border-width: 0 4px 7px 4px;
    border-color: transparent transparent #212121 transparent;
}

.productsGrid .table-theme thead tr th:first-child, .productsGrid .table-theme tbody tr td:first-child {
    position: sticky;
    left: 0;
    background: #ffffff;
    z-index: 1;
}

.productsGrid .table-theme tbody tr.active-tr-open td:first-child {
    background-color: #eeeeee;
}


@media (max-width: 992px) {
    .top-header .logo-bar .header-title {
        font-size: 24px;
    }

    .top-header .logo-bar .header-link {
        gap: 15px;
    }

    .top-grid-header .cart-wrapper {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-header .logo-bar .desktop-logo {
        display: none;
    }

    .top-header .header-container .contact-bar {
        margin-bottom: 22px;
    }

    .top-header .logo-bar {
        padding: 0;
    }

    .top-header .header-container .contact-bar .contact-box {
        width: 100%;
        justify-content: space-between;
    }

    .top-header .logo-bar .mobile-logo {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .top-header {
        padding: 9px 15px 15px;
    }

        .top-header .logo-bar .header-title {
            font-size: 16px;
            line-height: 18px;
            text-align: center;
        }

        .top-header .header-container .contact-bar .contact-box:nth-child(2) {
            display: none;
        }

        .top-header .logo-bar .header-link > div:first-child,
        .top-header .logo-bar .header-link > div:nth-child(2) {
            display: none;
        }

    .main-content-area .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        width: 260px;
        height: 100dvh;
        overflow-y: auto;
        background: #FFFFFF;
        padding: 8px 20px 20px;
        z-index: 1000;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.25);
        transition: left 0.3s ease-in;
    }

        .main-content-area .sidebar.active {
            left: 0;
        }

    .main-content-area .content-area {
        width: 100%;
    }

    .main-content-area .sidebar .close-sidebar {
        display: flex;
        margin-bottom: 8px;
    }

    .top-grid-header .cart-graybox {
        display: none;
    }

    .top-header .logo-bar .header-link a.cart-link {
        display: flex;
        min-width: 99px;
        padding: 6px 0;
    }

    .note-label .note-title {
        display: flex;
        width: 100%;
    }

    .filter-content .search-btn-wrap .refine-search-btn {
        min-width: 100%;
    }

    .filter-content .search-btn-wrap .refine-cancel-btn {
        display: flex;
        margin-top: 10px;
        min-width: 100%;
    }

    body:has(.sidebar.active) {
        overflow: hidden;
    }

    .sidebar-backdrop {
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.25);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-in;
    }

    .sidebar.active + .sidebar-backdrop {
        opacity: 1;
        pointer-events: all;
    }

    .top-header .logo-bar .mobile-logo .navbar-toggle-btn.active {
        background: #3d3d3d;
        border-radius: 4px;
    }

    .informative-sentence {
        font-size: 14px;
        line-height: 20px;
    }

    .top-grid-header {
        margin-bottom: 10px;
    }

        .top-grid-header .cat-name-text {
            font-size: 20px;
            line-height: 23px;
            padding-right: 110px;
        }

        .top-grid-header .more-qty {
            font-size: 14px;
            line-height: 20px;
        }

    .main-content-area {
        padding: 20px 15px;
    }

    .filter-main-box {
        padding: 15px 30px;
        box-shadow: 0px 14px 64px 0px #00000040;
        top: calc(100% + 10px);
    }

    .filter-result-tab {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
        padding-top: 4px;
    }

        .filter-result-tab .filter-matching {
            line-height: 18px;
        }

    .paging-info {
        left: 6px;
        bottom: 72px;
    }

    .productsGrid .table-theme tr.pgr > td,
    #MainContent_pnlSimple .table-theme tr.pgr > td {
        padding: 40px 6px 20px;
        border: none;
    }

    .table-theme tr.pgr td > table {
        margin-left: 0;
        position: sticky;
        left: 6px;
    }

    .table-theme tr.pgr td table > tbody > tr > td:first-child {
        margin-left: 0;
    }

    .productsGrid .table-theme tr.gridFooter > td {
        padding: 40px 6px 20px;
        border: none;
    }

    .top-grid-header .item-qty-dd {
        margin-left: auto;
        position: absolute;
        top: -10px;
        right: 0;
    }

    .table-theme tbody tr td .form-control.qty-dd {
        margin-left: 32px;
    }

    .item-qty-dropdown + .select2-container {
        width: 100px !important;
    }

    .item-qty-dropdown + .select2-container--default .select2-selection--single {
        background: linear-gradient(147.17deg, #F7F7F7 25.76%, #EDEDED 64.91%);
        border: 1px solid #B6B6B6;
        border-radius: 8px !important;
        height: 38px;
    }

        .item-qty-dropdown + .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 38px;
            color: #212121;
            padding-left: 12px;
            padding-right: 30px;
        }

        .item-qty-dropdown + .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 36px;
            right: 12px;
        }

    .sub-cat-wrap > select.sub-cat-dropdown {
        /*width: 100px !important;*/
        min-width: 100px;
        background: linear-gradient(147.17deg, #F7F7F7 25.76%, #EDEDED 64.91%);
        border: 1px solid #B6B6B6;
        border-radius: 8px !important;
        height: 38px;
        line-height: 38px;
        padding: 0 26px 0 12px;
    }

    .sub-cat-wrap:after {
        top: 17px;
        right: 10px;
    }

    .table-theme .expandable-row table.table.table-sm.mobile-table {
        display: table;
        width: 100%;
    }

    .table-theme .expandable-row table.table.table-sm.desktop-table {
        display: none;
    }

    .table-theme tbody tr.expandable-row .collapsible-row > .p-3 {
        padding: 4px 8px 12px !important;
        background-color: #F6F6F6;
    }

    .table-theme tbody tr.expandable-row .collapsible-row .row.mb-3 {
        margin-right: 44px;
    }

    .table-theme tbody tr.expandable-row .collapsible-row .col-4 {
        margin-bottom: 20px;
    }

    .table-theme .expandable-row .form-label {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        color: #8C8C8C;
    }

    .mobile-field {
        display: block;
    }

    .table-theme .expandable-row .form-label.pricing-label {
        margin-bottom: 6px;
    }

    .productsGrid .table-theme thead tr th, .productsGrid .table-theme tbody tr.rowheadcolor th {
        display: none;
    }

    .productsGrid .table-theme > tbody > tr > td:nth-child(1n+3) {
        display: none;
    }

    div#MainContent_pnlComplex > div:has(>.table-theme) {
        border: none;
    }

    .productsGrid .table-theme tbody tr.expandable-row > td {
        border: none;
    }

    .table-theme tbody tr.expandable-row.active-div-open > td {
        border: 1px solid #e8e8e8;
        border-radius: 0 0 6px 6px;
        border-top: none;
        position: relative;
    }

        .table-theme tbody tr.expandable-row.active-div-open > td::before {
            content: "";
            position: absolute;
            top: -8px;
            z-index: -1;
            left: -1px;
            width: calc(100% + 2px);
            height: 10px;
            background-color: #f6f6f6;
            border-left: 1px solid #e8e8e8;
            border-right: 1px solid #e8e8e8;
        }

    .productsGrid .table-theme > tbody > tr > td {
        padding: 0;
        font-size: 14px;
        line-height: 28px;
        border: 1px solid #E8E8E8;
        margin-bottom: 6px;
        border-radius: 6px;
    }

        .productsGrid .table-theme > tbody > tr > td:has(>a.add-cart-btn) {
            display: none;
        }

    .productsGrid .table-theme > tbody > tr.active-tr-open > td {
        border-radius: 6px 6px 0 0;
        border-bottom: none;
    }

    .table-theme tbody tr.active-tr-open {
        background-color: #F6F6F6;
    }

    .productsGrid .table-theme {
        border-spacing: 0 8px;
    }

    div#MainContent_pnlComplex > div:has(>.table-theme) {
        overflow-x: auto;
        max-width: auto;
        border: none;
        border-radius: 0;
    }

    .mob-sorting-drp {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: end;
    }

    .mobile-grid-data-info {
        position: relative;
        display: flex;
        margin-top: 10px;
        border-top: 1px solid #F0F0F0;
        padding-top: 12px;
        width: 100%;
    }

        .mobile-grid-data-info .mob-qty-label {
            position: absolute;
            left: 0;
            top: -40px;
            color: #757575;
            font-weight: 700;
            font-size: 14px;
            line-height: 28px;
        }

        .mobile-grid-data-info .add-cart-btn.mob-cart-btn {
            position: absolute;
            right: 0;
            top: -40px;
        }

        .mobile-grid-data-info .mob-item {
            flex: 1 0 0%;
        }

            .mobile-grid-data-info .mob-item:last-child {
                flex: 0 0 auto;
                width: auto;
            }

            .mobile-grid-data-info .mob-item .mob-row-label {
                font-family: Arial;
                font-weight: 400;
                font-size: 12px;
                line-height: 18px;
                color: #8C8C8C;
            }

            .mobile-grid-data-info .mob-item .mob-row-data {
                font-family: Arial;
                font-weight: 400;
                font-size: 14px;
                line-height: 28px;
                color: #212121;
            }

    .productsGrid .table-theme .form-control.qty-dd + .select2.select2-container {
        margin-left: 32px;
        max-width: 74px;
    }

    .top-header .logo-bar .long-header-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .white-outline-card .label-box {
        text-align: left;
    }

        .white-outline-card .label-box .col-form-label {
            padding-bottom: 0;
        }

    .col-sm-auto.label-box + .col {
        margin-top: 4px;
    }

    .astict-sign {
        position: absolute;
        right: -4px;
        top: -5px;
    }

    .modalPopup .modal-action-btn {
        width: 100% !important;
    }

    #MainContent_pnlPopUp.modalPopup {
        left: 0 !important;
    }

    .top-header .logo-bar .header-link a.cart-link {
        min-width: 50px;
    }
}

@media (max-width: 360px) {
    .top-header .logo-bar .mobile-logo {
        gap: 3px;
    }

        .top-header .logo-bar .mobile-logo > a > img {
            height: 32px;
        }

    .top-header .header-container .contact-bar .contact-box {
        gap: 8px;
    }

    .filter-main-box {
        padding: 15px 15px;
    }

    .top-header .logo-bar {
        gap: 10px;
    }

        .top-header .logo-bar .header-link {
            flex: 0 0 auto;
            min-width: 60px;
        }
}

@media (max-width: 330px) {
    .top-header .header-container .contact-bar {
        font-size: 14px;
    }

    .top-header .logo-bar .header-link {
        min-width: 50px;
    }
}
