
/* WooCommerce */
table.shop_table.woocommerce-checkout-review-order-table {
    /*display: none;*/
}
table.shop_table.woocommerce-checkout-review-order-table th.product-total,
table.shop_table.woocommerce-checkout-review-order-table td.product-total {
    display: none;
}
table.shop_table.woocommerce-checkout-review-order-table tfoot {
    display: none;
}

/* page de commande */
.woocommerce .col-1 {
    width:96% !important;
}

form.woocommerce-checkout {
    display:flex;
    flex-direction:row;
}
    form.woocommerce-checkout input,
    form.woocommerce-checkout select {
        border-radius:.375rem;
    }

form.woocommerce-checkout div#customer_details {
    /*background:lightblue;*/
    width:100%;
}

h3#order_review_heading {
    /*border:1px red solid;*/
    /*display:none;*/
}

form.woocommerce-checkout div#order_review {
    /*background:lightgreen;*/
    /*width:45%;*/
}
    form.woocommerce-checkout div#order_review div#payment {
        background:none;
    }

@media (max-width:991.98px) {
    form.woocommerce-checkout {
        flex-direction:column;
    }
    /*form.woocommerce-checkout div#customer_details {*/
    /*    width:100%;*/
    /*}*/
    /*form.woocommerce-checkout div#order_review {*/
    /*    width:100%;*/
    /*}*/
}

