.drawer_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 3;
    text-align: center;
    background-color: #fff;
}

.drawer_footer .total {
    padding: 10px 10px 5px 10px;
    font-weight: 400;
    color: var(--secondary-text);
    margin: 5px 0;
}

.drawer_footer .total span {
    font-weight: 500;
    color: var(--primary);
}


.drawer_footer .saving {
    font-size: 12px;
    font-weight: 400;
}

.drawer_footer .saving span {
    color: var(--green);
}


.product_section {
    display: grid;
    justify-content: center;
    margin: 10px 0;
}

.options {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 5px;
}

.product_price {
    font-weight: 500;
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 3px 0;
}

.real_price {
    text-decoration: line-through;
    color: var(--secondary-text);
}

.product_title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px;
    font-size: 12px;
    text-align: center;
    margin: 5px auto 3px auto;
}

.product_qnty {
    display: flex;
    column-gap: 7px;
    align-items: center;
    font-size: 12px;
    margin: 4px;
}

.product_image {
    margin: auto;
}

.product_image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-width: 140px;
    position: relative !important;
    max-height: 125px !important
}

@media(max-width: 768px) {

    .product_image img {
        height: 100%;
        width: 100%;
        max-width: 140px;
    }
}

.product {
    padding-bottom: 188px;
    margin: 10px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18%, 18%));
    column-gap: 10px;
}

@media(max-width: 768px) {
    .product {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.product_section hr {
    margin-top: 10px !important;
}

.inputCustomClass {
    max-width: 40px;
}

.inputCustomClass input {
    padding: 1px 0px 1px 10px !important;
}

.customBtn {
    line-height: 25px;
    font-size: 12px;
    padding: 0 8px;
    text-align: center;
}

.cart_footer_msg {
    font-size: 11px;
    padding: 5px 10px 5px 10px
}

.custom_checkout_btn {
    padding: 6px 15px !important;
}

.drawer_custom_class {
    min-width: 100% !important;
}