.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: 500;
    color: var(--primary);
}

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

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

.product_price {
    font-weight: 500;
    text-align: center;
    font-size: 13px;
    margin-bottom: 3px;
}

.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: 120px;
    position: relative !important;
    max-height: 125px !important
}

@media(max-width: 768px) {

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

.product {
    padding-bottom: 100px;
    margin: 10px 0;
}

.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;
    padding: 0px 10px !important;
}

.out_of_stock {
    color: var(--red);
    font-weight: 400;
    font-size: 11px;
}