
.cart-image img {
    height: 100px;
}

.cart-item-box {
    gap: 10px;
    border-radius: 5px;
    /*    padding: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));*/
    padding: 17px 15px 5px 15px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
}

.cart-box {
    padding: calc(0px + (25 - 14) * ((100vw - 320px) / (1920 - 320)));
    background-color: #ffffff;
    border: 1px solid #eee;
    position: relative;
    margin-bottom: 15px;
    border-radius: 25px;
    box-shadow: 0px 0px 2px 0px #f5f6ea;
    border-bottom: 4px solid #b1c904;
}

.Cashback-text {
    color: var(--theme-color);
    font-weight: 500;
    font-size: 14px;
    text-align: end;
}


h6.theme-color {
    font-size: 18px;
    margin-block: 4px 0;
    font-weight: 600;
    color: var(--accent-color);
}

.close-icon {
    position: absolute;
    top: 0%;
    z-index: 2;
    right: 0;
}

.close-icon .close_button {
    background-color: #b1c904;
    border: 1px solid #eee;
    border-radius: 0 15px;
}

.close-icon i {
    color: #ffff;
}

.close-icon.checkout {
    right: 8px;
}

.close-icon.checkout .close_button {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.cart-total {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.cart-total span {
    font-size: 16px;
    color: #333;
    font-weight: 700;

}

.cart-label-col .cart-lable-nav {
    background-color: var(--theme-color);
    padding: 2px 7px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0;
    border-radius: 15px;
}

.cart-label-col p.sku-text {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
}

.cart-label-col p.item-weight {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
}

.cart-label-col {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.cart-price {
    color: var(--theme-color);
}

.cart-price del {
    font-weight: 500;
    font-size: 16px;
}

.pricing-details {
    font-size: 13px;
    text-align: end;
}

.discount-btn {
    border: 1px solid #ddd;
    background-color: var(--accent-color);
    text-align: right;
    padding: 5px;
    font-size: 13px;
    line-height: 1.5;
    color: #eee;
    font-weight: 500;
    border-radius: 4px;
    width: 100%;
    background: transparent;
    color: var(--accent-color);
    text-decoration: underline;
    border: 0;
    padding: 0;
}


.discount-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

.discount-btn:hover i {
    color: #fff;
}

.cart-row-flex {
    display: flex;
    justify-content: space-between;
}

.qty-box .input-group {
    justify-content: start !important;
}

.cart-price i {
    font-size: 18px;
    font-weight: 500;
    color: #436777;
}

.cart-price {
    position: relative;
    display: inline-block;
}

.mouse-popover {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
    right: 0;
    width: 150px;
    font-size: 14px;
}

.mouse-popover p {
    font-size: 12px;
    font-weight: 600;
}


.cart-price:hover .mouse-popover {
    display: block;
}

.qty-box .input-group .form-control {
    border-radius: 10px;
}

a.remark {
    padding: 5px 10px;
    font-weight: 500;
    color: #ffffff;
    display: inline;
    border-radius: 15px;
    background: var(--accent-color);
}

@media (max-width: 767px) {
    .Cashback-text {
        text-align: left;
    }

    .cart-label-col {
        display: flex;
        gap: 5px;
        font-size: 11px;
    }

    .discount-btn {
        padding: 5px 16px;
        font-size: 11px;
    }

    .pricing-details {
        font-size: 11px;
        text-align: left;
        padding-top: 10px;
    }

    .qty-box .input-group .form-control {
        width: 50px;
    }

    .cart-total {
        position: absolute !important;
        bottom: 7px;
    }

    .cart-price {
        font-size: 16px;
    }

    .cart-total span {
        font-size: 13px;
    }

    .close-icon {
        position: absolute;
        top: -4%;
    }

    .cart-image img {
        height: 70px;
        width: 100px;
    }

}



