.cart-container {
    display: flex;
    flex-direction: column;
}
.cart-item, .cart-item-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.cart-item img {
    width: 100px;
    height: 100px;
}
.btn-cart-dark {
    margin: 1rem auto;
}

.cart-item-header p, .cart-item p {
    width: 20%;
}

.cart-item img{
    width: 20%;
    height: 20%;
}

#order_form {
    display: flex;
    flex-direction: column;
}

.delivery {
    display: none;
}

@media (max-width: 767px) {
    .cart-item-header, .cart-item, .cart-item p.price {
        font-size: .7rem;
    }

    #make_order {
        width: 100%;
    }
}

