.cart_left table {
    width: 100%;
}

.cart_left .table_head tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.cart_left .table_head tr th {
    text-transform: capitalize;
    color: var(--black-color);
    font-weight: 600;
}

.table_order  tr th:first-child{
    width:55% !important;
}
.order_row .cart_item__name{
    width: 55%;
}

.cart_left .table_head tr th:first-child {
    width: 70%;
}

.cart_item__img img {
    height: 70px;
    width: 70px;
    border: 1px solid #434343;
    object-fit: contain;
}

.cart_item__name {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    width: 70%;
}

.cart_name h4 {
    font-size: 16px;
}

.cart_name span {
    color: #434343;
    font-size: 13px;
}

.table_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
    gap: 1rem;
}

.quantity_input {
    display: flex;
    gap: 4px;
    align-items: center;
}

.quantity_input input {
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cart_right {
    height: 100%;
    padding-left: 3rem;
    border: 1px solid #ccc;
    padding: 1rem;
}

.total_box__header p,
.total_box__bottom p{
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.total_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.total_box__bottom button{
    background-color: var(--black-color);
    width: 100%;
    color: var(--white-color);
    padding: 7px;
    text-transform: capitalize;
    font-weight: 600;
}


@media(max-width:992px){
    .order_row .cart_item__details h4{
        font-size: 16px;
    }
    .tables{
        min-width: 800px;
    }
    .cart_left{
        overflow-x: auto;
        /* white-space: nowrap; */
    }
}
@media(max-width:768px){
    .cart_right {
        height: 300px;
        margin-top: 2rem;
    }
    .cart_name h4{
        font-size: 13px;
    }
    .cart_left .table_head tr th{
        font-size: 15px;
    }
    .quantity_input input{
        height: 24px;
        width: 24px;
        font-size: 14px;
    }
}