/* Base Styles - Mobile First */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');
*,
*:before,
*:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --border-main-color: #c0bebe;
    --input-border-color: #c0bebe;
    --dark-grey: #838181;
    --medium-grey: #636363;
    --light-grey: #e4e4e4;
    --light-grey: rgba(34, 48, 62, 0.08);
    --ash: #efeff0;
    --bg-grey: rgb(243, 243, 243);
    --body-bg: #f0f3f6;
    --light-ash: #fcfcfc;
    --primary-color: #0d95d1;
    --primary-color: #1580b9;
    --dark-primary: #233780;
    --dark-bg: #000021;
    --info: rgb(41, 173, 178);
    --light-info: #f7fcff;
    --bg-warning: #fff3d1;
    --bg-danger: #eb6d54;
    --bg-success: #498469;
    --text-success: #498469;
    --text-warning: #f3bc3a;
    --white: #fff;
    --border: 1px solid var(--ash);
    --box-shadow: 0 0.125rem 0.315rem 0 rgba(34, 48, 62, 0.08);
    --background-color: #f8f9fa;
    --card-background: #ffffff;
    --text-color: #343a40;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --fonts:  "Manrope", "TikTok Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

html,
body {
    font-size: 1rem;
    font-family: var(--fonts);
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100, "YTLC" 500;
    font-style: normal;
    background-color: #f8f8f8;
    letter-spacing: 0.054rem;
    color: #191716;
}

@media (max-width: 768px) {
    .container {
        padding-inline: .5rem;
    }
}

ol,
li,
a {
    list-style-type: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.btn.btn-primary {
    background: green;
    border-color: transparent;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    box-shadow: var(--box-shadow);
}

.bg-approved {
    background-color: green !important;
    color: #fff;
}

.bg-pended {
    background-color: #f6e663 !important;
    color: #47431d;
}

.bg-declined,
.bg-reject {
    background-color: #eb6d54 !important;
    color: #fff;
}

.border {
    border: 1px solid rgba(34, 62, 84, 0.1) !important;
    border-radius: 0.35rem !important;
}

span[data-target] {
    position: absolute;
    top: 25px;
    padding: 5px;
    font-size: 12px;
    right: 0%;
}

.hint {
    font-size: 11px;
    color: #3f413f;
    padding: 0.7rem 1rem;
    background-color: #e5ffe5;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.no-result {
    font-size: 11px;
    text-align: center;
    margin-block-end: 1rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.no-result img {
    width: 120px;
}

.page-separator {
    width: 100%;
    overflow: hidden;
}

.page-separator h3 {
    text-align: center;
    display: block;
    margin: 0;
}

.page-separator h3 span {
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    color: #171923;
}

.page-separator h3 span::before,
.page-separator h3 span::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    background: rgba(34, 48, 63, 0.1);
    width: 99999px;
}

.page-separator h3 span::before {
    left: 100%;
    margin-left: 10px;
}

.page-separator h3 span::after {
    right: 100%;
    margin-right: 10px;
}


/* * Start Mobile Menu */

.mobileMenu {
    width: 220px;
    background: #fff;
    position: fixed;
    top: 0;
    left: -220px;
    height: 100%;
    z-index: 99999;
    padding: 60px 20px;
    box-shadow: var(--box-shadow);
    transition: all 500ms ease-in-out;
}

.mobileMenu.active {
    left: 0;
    transition: left 500ms ease-in-out;
}

.mobileMenu .shades {
    position: fixed;
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    opacity: 0.78;
    transition: left 500ms ease-in-out;
}

.mobileMenu .shades.active {
    left: 0;
}

.mobileMenu>button {
    background: transparent;
    position: absolute;
    top: 15px;
    left: 15px;
    color: #1e632d;
    z-index: 99999;
}

.mobileMenu>button svg {
    width: 30px;
    height: 30px;
}

.mobileMenu>ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    position: absolute;
    z-index: 9;
    background-color: #fff;
    width: 100%;
    left: 0;
    top: 0;
    padding-block: 70px;
    padding-inline: 10px;
}

.mobileMenu>ol li {
    display: block;
    padding: 5px;
}

.mobileMenu>ol li.active {
    background-color: #d8e1d9;
    box-shadow: var(--box-shadow);
    border-radius: 3px;
}

.mobileMenu>ol li a {
    font-size: 12px;
    color: #1e632d;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}


/* * End Mobile Menu */

#header__bar,
#mainMenus {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: var(--box-shadow);
    background-color: #1c741d;
    z-index: 99;
}

#header__bar {
    height: 62px;
    right: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(34, 62, 84, 0.3);
    gap: 10px;
    padding-inline: 10px;
}

#menuTogglerBtn {
    background-color: transparent;
}

#menuTogglerBtn svg {
    width: 32px;
    height: 30px;
    color: #fff;
}

#cartHeader {
    margin-inline-start: auto;
    /*! margin-inline-end: 20px; */
    /* border-radius: .754rem; */
    /*! box-shadow: var(--box-shadow); */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
}

#cartHeaderContent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0.25rem;
    color: #171923;
    cursor: pointer;
    background-color: #439a46;
    box-shadow: var(--box-shadow);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(67, 154, 70, 0.75);
    position: relative;
    /*! padding-inline-end: .75rem; */
}

#cartHeaderContent svg {
    height: 24px;
    width: 24px;
    color: #fff;
}

#cartHeaderContent>#cartCounter {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 9;
    height: 24px;
    min-width: 24px;
    text-align: center;
    display: inline-block;
    background-color: #439a46;
    padding: 0.24rem;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bolder;
    box-shadow: var(--box-shadow);
    border: 2px solid rgb(67, 153, 70);
    color: #fff;
    line-height: calc(21px - 0.58rem);
}

#mainMenus {
    bottom: 0;
    max-height: 60px;
    top: unset;
    right: 0;
    width: unset;
    z-index: 1000;
    background-color: #1c741d;
    border: 1px solid rgba(34, 62, 84, 0.3);
    box-shadow: var(--box-shadow);
}

#menuLists {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
}

#menuLists li {
    position: relative;
    padding: 0px;
    height: 100%;
    margin-inline: auto;
}

#menuLists li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.1;
    height: 100%;
    gap: 5px;
    position: relative;
    padding: 10px;
}

#menuLists li a svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

#menuLists li a span {
    display: block;
    text-align: center;
    margin-top: auto;
    color: #fff;
    font-weight: normal;
}

/* #menuLists li a.active:before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    top: 100%;
    margin-top: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
} */

#brandArea {
    height: 100%;
    position: relative;
    z-index: 2;
    /*! width: 210px; */
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

#brandArea img {
    margin: 0;
    height: 36px;
    width: 36px;
    box-shadow: var(--box-shadow);
    border-radius: 50%;
    padding: 2px;
    background-color: #f8f8f8;
}

#brandArea span {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fdfdfd;
}

#pageContent {
    display: block;
    min-height: 100%;
    position: relative;
    padding-top: 62px;
    padding-bottom: 70px;
}

.analytics {
    position: relative;
}

.analytics .container {
    padding: 0;
}

.tilesWrapper {
    box-shadow: var(--box-shadow);
}

.tilesWrapperInner {
    background-color: #1c741d;
    border: 1px solid rgba(68, 89, 112, 0.18);
    box-shadow: var(--box-shadow);
    display: flex;
    padding-block: 10px;
    padding-inline: 0px;
    position: relative;
    overflow: hidden;
}

.floatIcons {
    position: absolute;
    bottom: 0%;
    color: #51a754bf;
    width: 60px;
    height: 80px;
}

.floatIcons.left {
    left: -15px;
    transform: rotate(20deg);
    bottom: -20px;
}

.floatIcons.right {
    right: -15px;
    bottom: -20px;
}

.tilesBox {
    position: relative;
    background-color: transparent;
    border-right: 1px solid rgba(157, 159, 175, 0.25);
}

.tilesWrapper .tilesBox:last-child {
    border: none;
}

.tilesBox .heading {
    display: block;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: #dcdcdc;
}

.tilesBox .contents {
    position: relative;
    margin: 0;
}

.tilesBox .contents .figure {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.market {
    padding-block: 20px;
}

.products--items {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-block: 20px;
}

.products--lists {
    width: 100%;
    position: relative;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(174, 171, 171, 0.28);
    cursor: grabbing;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.54rem;
}

.products--lists .products--img--holder {
    position: relative;
    max-height: 130px;
    max-width: 100%;
    /*! margin-inline: auto; */
    margin-bottom: .5rem;
}

.products--lists .products--img--holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.products--lists > .readMore {
    padding-inline: .7rem;
}
.products--lists > .readMore > .heading {
    text-align: start;
    margin-block-end: 0rem;
    font-size: 12px;
}
.products--lists > .readMore > p {
    padding: 0;
    margin-block: .3rem;
}
.products--lists > .readMore ~ .read-more__link-wrap {
    width: 100%;
    padding-inline: .7rem;
    margin-inline-start: auto;
    margin-block: .3rem;
}

/* * Horizontal prooduct listing */

.productWrapper.horizontal {
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.productWrapper.horizontal .products--lists {
    flex-direction: row;
    gap: 5px;
    align-items: start;
    justify-content: start;
}

.productWrapper.horizontal .products--lists .products--img--holder {
    margin: 0;
    padding: 0;
    border-radius: 5px;
    width: 160px;
}

.productWrapper.horizontal .products--lists .products--description {
    width: 100%;
    padding: .5rem;
}

.products--lists .heading {
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0;
    color: #0f3e10;
}

.products--lists p {
    font-size: 11px;
    margin-block: 10px;
}

.read-more__link {
    font-size: 11px;
    font-weight: 400;
    display: block;
    text-align: center;
    color: #0f3e10;
    background-color: #fff;
    padding: 0.4rem;
    box-shadow: var(--box-shadow);
    border: 1px solid #2b316147;
}

.product--footer {
    margin-block-start: auto;
}

.product--pricing {
    /*! margin-block: 0.75rem; */
    padding-inline: .7rem;
}

.products--lists .product--pricing--amount,
.products--lists .product--pricing--points {
    font-size: 12px;
}

.products--lists .product--pricing--amount .product--item--priceSpan,
.products--lists .product--pricing--points .product--item--priceSpan {
    font-size: 11px;
    display: inline-block;
    font-weight: normal;
}

.products--lists .product--pricing--amount strong,
.products--lists .product--pricing--points strong {
    font-size: 12px;
    display: inline-block;
    color: #0f3e10;
}

.products--lists .product--buttons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: .5rem .7rem;
}

.products--lists .product--buttons input {
    width: 100%;
    line-height: 40px;
    height: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(34, 48, 62, 0.08);
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    border: 1px solid rgba(34, 63, 73, 0.128);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
}

.controlBtns {
    padding: 0.45rem 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    height: 100%;
    background-color: #fff;
    border-radius: .5rem;
}

.quantity {
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

.controlBtns.increment {
    color: #0f3e10;
}

.controlBtns.decrement {
    color: #ff8e97;
}

.products--lists .product--buttons .product--btn {
    width: 100%;
    height: 40px;
    background-color: #1c741d;
    color: #fff;
    border: none;
    text-align: center;
    font-size: 12px;
    box-shadow: var(--box-shadow);
    padding: 0.5rem;
    border-radius: .5rem;
}

.products--lists.horizontal {
    display: flex;
}

.products--lists.horizontal .products--img--holder {
    width: 160px;
    height: 140px;
}

.products--lists.horizontal .product--buttons {
    margin-top: 0.754rem;
}

#carousel {
    overflow: hidden;
}

.productWrapper {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 0.5rem;
}

.swiper-wrapper {
    height: unset;
    display: flex;
    gap: 20px;
}

.swiper-slide {
    width: 240px !important;
    position: relative;
    /*! margin:  0px 15px 0 0 !important; */
}

.swiper-slide [class^="col-"] {
    width: 100%;
}

.hintingLayout .container {
    padding: 0;
}

.hintingLayout {
    background: #439a46;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    border: 1px solid rgba(34, 62, 84, 0.3);
}

.hinting_content {
    padding: 0.75rem;
}

.hinting_content .hinting_txt {
    font-size: 11px;
    margin: 0;
    align-self: center;
    color: #fff;
    font-weight: 500;
}

.downline__lists {
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--box-shadow);
    background-color: #ffffff;
    padding: 1.435rem 0.745rem;
    border-radius: 3px;
    margin-block-end: 1.027rem;
}

.downline__lists .downline__thumbnail {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    padding: 5px;
}

.downline__lists .downline__thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.downline__lists .downline__list__info {
    flex: 1 230px;
    position: relative;
}

.downline__lists .downline__list__info.right {
    flex: 1;
}

.downline__list__info:last-child {
    padding-inline-start: 10px;
    text-align: center;
}

.downline__list__info .heading {
    font-size: 12px;
    margin-bottom: 3px;
    font-weight: 600;
    color: #2b3161;
    text-transform: uppercase;
}

.downline__list__info span {
    font-size: 11px;
    color: #2b3161d4;
    font-weight: normal;
    display: block;
}


/* Rewards */
.rewardsBlock {
    display: flex;
    gap: 20px;
    position: relative;
    margin-block-end: 3rem;
    overflow-x: hidden;
    flex-wrap: nowrap;
}

.rewardsBlock .swiper-slide {
    min-width: 50% !important;
    max-width: 50%;
    height: 100%;
}

.rewardsBlockList {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 0.4rem;
    font-size: 11px;
    position: relative;
    height: 100%;
}

.rewardsBlockImgWrap {
    width: 100%;
    height: 120px;
    position: relative;
    padding: 0.457rem;
}

.rewardsBlockImgWrap img {
    height: 100%;
    width: 100%;
}

.rewardsBlockContents {
    padding: 0.45rem;
    font-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.rewardsBlockcontext {
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
}

.rewardsBlockstatus {
    display: inline-block;
    padding: 5px;
    font-size: 90%;
    box-shadow: var(--box-shadow);
    padding: 0.25rem 0.45rem;
    border-radius: 0.75rem;
    position: absolute;
    top: 10px;
    left: 10px;
}

.rewardsBlockstatus.approved {
    background-color: green;
    color: #fff;
}

.rewardsBlockstatus.pended {
    background-color: #f6e663;
    color: #47431d;
}

.rewards__lists {
    background-color: #fff;
    margin-bottom: 10px;
    box-shadow: var(--box-shadow);
    border-radius: 0.45rem;
    padding: 0.54rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.rewards__thumbnail {
    width: 130px;
    height: 130px;
    background-color: #0d95d1;
}

.rewards__thumbnail img {
    width: 100%;
    height: 100%;
}

.rewards__list__info {
    width: 70%;
}

.tbl-header {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
}

#claimsLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 0.7rem;
    background-color: #fff;
}

.claim_content {
    background-color: #fff;
    position: relative;
    padding: 0.75rem;
    display: flex;
    font-weight: normal;
    gap: 10px;
    justify-content: center;
    align-items: start;
    box-shadow: var(--box-shadow);
    flex: 1 1 45%;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
    /* border: 1px solid rgba(34, 62, 84, 0.1); */
    border-radius: 0.035rem;
}

.claim_content .contents {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.claim_content .contents .heading {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.claimImgHolder {
    max-height: 102px;
    max-width: 100%;
    margin-inline: auto;
}

.claim_content img {
    width: 100%;
    height: 100%;
    box-shadow: var(--box-shadow);
    object-fit: cover;
}

.claim_content .contents .points {
    font-size: 11px;
    margin-block-end: 10px;
}

.claim_content .claim_content_footer {
    margin-block-start: auto;
    font-weight: normal;
}

.claim_content .claimBtn {
    width: 100%;
}

.loginContainer {
    padding: 20px;
    border-radius: 10px;
    /*! width: 100%; */
    min-width: 340px;
    min-height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

#authBrandImg {
    max-width: 60px;
    max-height: 60px;
    border-radius: 100%;
    box-shadow: var(--box-shadow);
}

#authBrandImg>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.registerBtn {
    box-shadow: none !important;
    font-size: 11px;
    text-align: start;
    padding: 0;
}

.registerBtn span {
    font-weight: bold;
    font-size: 11px;
    text-decoration: underline;
    color: #1c741d;
    text-transform: capitalize;
}

.loginContainer>p {
    font-size: 12px;
    color: #040404;
}

.loginContainer>p strong {
    color: #1c741d;
}

.authForm {
    width: 100%;
    background-color: #fff;
    padding: 0.75rem;
    box-shadow: var(--box-shadow);
}

.authForm .form-floating>.form-control {
    border: 0;
    box-shadow: none !important;
    outline: 0 !important;
    border-color: #00800036;
    border-block-end-width: 1px;
    border-block-end-style: solid;
    border-block-end-color: #d9d9d9b0;
    padding-block-end: 0;
    padding-inline: 5px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.authForm .form-floating>#password.form-control {
    font-size: 9px;
    letter-spacing: 3px;
}

.authForm .form-floating>label {
    padding: 1.75rem 0rem;
    padding-inline-start: 5px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    color: #0a150a;
    width: 100%;
}

.authForm .form-floating>label svg {
    height: 20px;
    width: 20px;
    color: #5c5c5c;
}

.authForm .form-floating>.form-control:focus~label,
.authForm .form-floating>.form-control:not(:placeholder-shown)~label,
.authForm .form-floating>.form-select~label {
    opacity: 0.95;
    transform: scale(0.87) translateY(-1rem) translateX(0rem);
    font-weight: bold;
}

@media (max-width: 480px) {
    .loginContainer {
        min-width: 100%;
        box-shadow: none;
        margin: 0 auto;
    }
}

#cartDropdown {
    width: 300px;
    /* display: none; */
    position: fixed;
    top: 0;
    right: -300px;
    /* Start hidden off-screen */
    z-index: 9;
    /*! padding: 10px; */
    height: calc(100% - 60px);
    overflow: auto;
    background: #fff;
    transition: right 0.3s ease-in-out;
    box-shadow: var(--box-shadow);
}

#cartDropdown.active {
    right: 0;
    /* Slide into view */
}

#titleHeading {
    font-size: 12px;
    margin-block-start: 20px;
    padding-inline-start: 1rem;
    border-bottom: 1px solid rgba(34, 42, 62, 0.18);
    padding-block-end: 0.75rem;
}

.carts--items {
    border-bottom: 1px solid rgba(34, 64, 42, 0.1);
    font-size: 14px;
    position: relative;
    margin-block-start: 0.4rem;
    font-size: 11px;
    font-weight: 500;
    margin-block-start: 0.75rem;
    padding-block-end: 0.75rem;
    padding-inline: 1rem;
    color: #071f08;
    display: flex;
    align-items: start;
    gap: 15px;
}

.carts--items:last-child {
    border-bottom: none !important;
}

.carts--items img {
    width: 52px;
    padding: 10px;
    border: 1px solid rgba(32, 42, 64, 0.08);
    border-radius: 5px;
    /*! box-shadow: var(--box-shadow); */
}

.carts--items>div {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    gap: 20px;
}

.carts--items>div p {
    font-weight: 500;
}

.carts--items>p span,
.carts--items>div p span {
    color: #333;
}

.carts--items>div .remove-btn {
    background-color: whitesmoke;
    color: #f17171;
    padding: 5px;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
}

.carts--items>div .remove-btn svg {
    width: 16px;
    height: 16px;
}

#closeCartBtn {
    background: none;
    border: none;
    font-size: 17px;
    float: right;
    cursor: pointer;
    padding: 0.75rem;
    border-left: 1px solid rgba(34, 62, 84, 0.3);
    color: #1c7453;
}

#cartOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 8;
}

#checkoutBtnWrap {
    padding: 0.75rem;
}

#checkoutBtnWrap button {
    width: 100%;
    display: block;
    border: 1px solid rgba(32, 64, 82, 0.38);
    font-size: 14px;
    border-radius: 0;
    background-color: #1c741d;
    color: #fff;
    margin-block-start: 1rem;
    box-shadow: var(--box-shadow);
}

.grandTotal {
    font-size: 12px;
    color: #040404;
    text-transform: uppercase;
    font-weight: 500;
}

.grandTotal span {
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline #aaa;
    color: #1a1919;
    display: inline-block;
    margin-left: 5px;
}


/* checkout items list */

#cartList {
    position: relative;
}

.cartList_items {
    display: flex;
    gap: 30px;
    justify-content: start;
    position: relative;
    margin-block-end: 15px;
    box-shadow: var(--box-shadow);
    background-color: #fff;
    padding: 10px;
    align-items: center;
    border-radius: 0.4rem;
}

.cartList_items_img {
    max-width: 62px;
    max-height: 62px;
    overflow: hidden;
}

.cartList_items_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cartList_items_content {
    font-size: 11px;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    align-items: start;
}

.cartList_items_heading {
    font-size: 12px;
    font-weight: 600;
    margin-block-end: 0.4rem !important;
}

.cartList_items_split {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.status-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100%;
    padding: 2rem;
    color: #000;
    font-size: 11px;
}

.status-wrapper img {
    width: 220px;
    height: 200px;
    margin-block-end: 1rem;
}

.status-wrapper p {
    font-size: 12px;
    margin-block-end: 0.54rem;
    color: #000 !important;
}

.table {
    border-color: rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.table tr,
.table tr td,
.table rt th {
    border-color: rgba(0, 0, 0, 0.06);
    color: #040404;
}

.table tr td {
    vertical-align: top;
    font-size: 11px;
}

.bg_pend {
    background-color: #faffd4;
}

.bg_approved {
    background-color: #dbffd4;
}

.itemsTbl {
    font-size: 11px;
    border-block-end: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0.34rem 0rem;
    max-width: 320px;
}

.itemsTbl:first-child {
    padding-block-start: 0;
}

.itemsTbl:last-child {
    border: 0;
    padding-block-end: 0;
}

.itemsTbl>* {
    font-weight: normal;
}

.sticky-col {
    position: sticky;
    left: -1px;
    z-index: 1;
    background-color: rgb(255, 255, 255) !important;
    box-shadow: var(--box-shadow);
}

.profileHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    background: #1c741d;
    padding-block: 2rem;
    position: relative;
    overflow: hidden;
}

.profileHeader img {
    width: 82px;
    height: 82px;
}

.profileHeader h3 {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.profileHeader small {
    color: #ddd;
    font-size: 11px;
}

.copyToboard {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-wrap: nowrap;
    padding: 0.3rem;
    box-shadow: var(--box-shadow);
    background-color: #fff;
}

.copyToboard input {
    background: transparent !important;
    border: none;
    box-shadow: none;
    font-size: 12px;
    text-align: center;
}

.copyToboard .copy-btn {
    padding: 0.3rem;
    font-size: 12px;
    box-shadow: var(--box-shadow);
}

.list-mobile {
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.list-mobile .list-group-item {
    font-size: 12px;
}

.list-mobile .list-group-item strong {
    font-size: 10px;
    text-transform: uppercase;
}


/* Tablets */


/*
@media (min-width: 768px) {
  #brandArea {
    height: 100%;
    background-color: #ffffff;
    padding: 10px;
    gap: 5px;
  }
  #brandArea img {
    margin: 0;
    height: 52px;
    width: 52px;
    border: 5px solid transparent;
    background: #fff;
  }
  #brandArea span {
    display: block;
    color: #498469;
  }
  #mainMenus {
    width: 210px;
    right: unset;
    top: 0;
    padding-top: 90px;
    padding-inline: 10px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow);
  }
  #menuLists {
    padding: 0px;
    display: block;
    align-items: unset;
  }
  #menuLists li {
    padding: 0px;
    height: unset;
    flex: unset;
    margin-bottom: 10px;
  }
  #menuLists li a {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 10px 30px;
  }
  #menuLists li a svg {
    width: 18px;
    height: 18px;
    color: #656865;
  }
  #menuLists li a span {
    display: block;
    text-align: center;
    margin-top: auto;
    color: #656865;
    font-size: 14px;
  }
  #menuLists li a.active {
    background-color: #f8f8f8;
    color: #fff;
    border: 1px solid #ebe8e8;
    box-shadow: var(--box-shadow);
  }
  #menuLists li a.active:before {
    content: unset;
    left: unset;
    width: unset;
    height: unset;
    transform: unset;
    margin: 0;
    background-color: unset;
    color: unset;
  }
}
*/

.tab-wrap {
    transition: 0.3s box-shadow ease;
    /*! border-radius: 6px; */
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.tab {
    display: none;
}

.tab:checked:nth-of-type(1)~.tab__content:nth-of-type(1) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 1;
    transform: translateY(0px);
}

.tab:checked:nth-of-type(2)~.tab__content:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 1;
    transform: translateY(0px);
}

.tab:checked:nth-of-type(3)~.tab__content:nth-of-type(3) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 1;
    transform: translateY(0px);
}

.tab:checked:nth-of-type(4)~.tab__content:nth-of-type(4) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 1;
    transform: translateY(0px);
}

.tab:checked:nth-of-type(5)~.tab__content:nth-of-type(5) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 1;
    transform: translateY(0px);
}

.tab:first-of-type:not(:last-of-type)+label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tab:not(:first-of-type):not(:last-of-type)+label {
    border-radius: 0;
}

.tab:last-of-type:not(:first-of-type)+label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab:checked+label {
    background-color: #fff;
    box-shadow: 0 -1px 0 #fff inset;
    cursor: default;
    font-weight: 500;
}

.tab:checked+label:hover {
    box-shadow: 0 -1px 0 #fff inset;
    background-color: #fff;
}

.tab+label {
    box-shadow: 0 -1px 0 #eee inset;
    /*! border-radius: 6px 6px 0 0; */
    cursor: pointer;
    display: block;
    text-decoration: none;
    /*! color: #333; */
    flex-grow: 1;
    text-align: center;
    background-color: #f2f2f2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    height: 45px;
    box-sizing: border-box;
    padding: 15px 5px;
    font-size: 12px;
}

.tab+label:hover {
    background-color: #f9f9f9;
    box-shadow: 0 1px 0 #f4f4f4 inset;
}

.tab__content {
    padding: 10px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    transform: translateY(-3px);
    /*! border-radius: 6px; */
}

@media (min-width: 768px) {
    .loginContainer {
        max-width: 380px;
    }
}


/* Laptops and larger tablets */

@media (min-width: 992px) {}


/* Dashboard Container (CSS Grid for overall layout) */

.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    /* Sidebar width and main content */
    grid-template-rows: auto 1fr;
    /* Header row and main content row */
    grid-template-areas: "header header" "sidebar main";
    min-height: 100vh;
}


/* Main Content */

.dashboard-main {
    grid-area: main;
    padding: 2rem;
    background-color: var(--background-color);
}

.dashboard-main h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}


/* Analytics Tiles (Flexbox for responsiveness) */

.analytics-tiles {
    display: flex;
    flex-wrap: wrap;
    /* Allows tiles to wrap on smaller screens */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tile {
    flex: 1;
    /* Two tiles per row on wider screens */
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-color);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bg-success);
    width: 100%;
    padding: 0.54rem;
}

.tile h3 {
    font-size: 0.7rem;
    color: var(--secondary-color);
}

.metric-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.69rem;
    color: #28a745;
    /* Green for positive change */
}


/* Recent Activity */

.recent-activity {
    /*! background-color: var(--card-background); */
    padding: 0rem;
    /*! border-radius: 8px; */
    /*! box-shadow: 0 4px 8px var(--shadow-color); */
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* Reduced gap slightly for a tighter list */
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.45rem;
    /* Added internal padding */
    background-color: var(--background-color);
    /* Lighter background for items */
    border-radius: 6px;
    /* Rounded corners for each item */
    border: 1px solid var(--bg-success);
    /* Subtle border */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* Smooth hover effects */
    background: var(--card-background);
    box-shadow: var(--box-shadow);
}

.activity-item:hover {
    transform: translateY(-2px);
    /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* More pronounced shadow on hover */
}


/* Remove bottom border from activity-item, as we're using a full border now */

.activity-item:last-child {
    border-bottom: 1px solid var(--border-color);
    /* Ensure last item still has its border */
}

.activity-desc {
    font-size: 0.75rem;
    /* Slightly smaller for better fit */
    color: var(--text-color);
    flex-grow: 1;
    /* Allows description to take up available space */
    margin-right: 1rem;
    /* Space between description and date */
}

.activity-date {
    font-size: 0.6rem;
    /* Smaller, more subtle date */
    color: var(--secondary-color);
    white-space: nowrap;
    /* Prevents date from wrapping */
    font-weight: 600;
}


/* --- Media Queries for Responsiveness --- */


/* Mobile Devices (max-width 768px) */

@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        /* Full width for main content */
        grid-template-areas: "header" "main";
    }
    .dashboard-header {
        padding: 1rem;
    }
    .dashboard-header h1 {
        font-size: 1.5rem;
    }
    .dashboard-nav {
        display: none;
        /* Hide desktop nav on mobile */
    }
    .menu-toggle {
        display: block;
        /* Show hamburger icon on mobile */
    }
    .dashboard-sidebar {
        position: fixed;
        /* Fix sidebar position */
        top: 0;
        left: -250px;
        /* Hide sidebar off-screen initially */
        width: 250px;
        height: 100%;
        transition: left 0.3s ease;
        z-index: 999;
    }
    .dashboard-sidebar.active {
        left: 0;
        /* Show sidebar when active */
    }
    .dashboard-main {
        padding: 1rem;
    }
    .analytics-tiles {
        flex-direction: row;
        /* Stack tiles vertically on mobile */
        gap: .54rem;
    }
    .tile {
        flex: 1;
        /* Each tile takes full width on mobile */
    }
}


/* Tablet Devices (max-width 992px, adjust as needed) */

@media (min-width: 769px) and (max-width: 992px) {
    .dashboard-container {
        grid-template-columns: 200px 1fr;
        /* Slightly narrower sidebar for tablets */
    }
    .dashboard-header {
        padding: 1rem 1.5rem;
    }
    .dashboard-nav ul {
        gap: 1rem;
    }
    .dashboard-main {
        padding: 1.5rem;
    }
    .analytics-tiles {
        gap: 1rem;
    }
}


/* Larger Screens (min-width 993px) - Default desktop layout */

@media (min-width: 993px) {
    .dashboard-container {
        grid-template-columns: 250px 1fr;
    }
}