 /*remove/hide one column from WooCommerce cart page
 Change number 4 with number of column you want to remove */
.woocommerce table.cart td:nth-of-type(4), .woocommerce table.cart th:nth-of-type(4) {
display: none;
}
.woocommerce table.cart td:nth-of-type(6), .woocommerce table.cart th:nth-of-type(6) {
display: none;
}

.woocommerce table.cart td:nth-of-type(6), .woocommerce table.cart th:nth-of-type(6) {
display: none;
}
@media only screen and (max-width: 767px){
    td.product-price {
    display: none !important;
}
    td.product-subtotal {
    display: none !important;
}
}


/* thank you page */
.woocommerce ul.order_details {
    display: none;
}
section.woocommerce-order-details {
    display: none;
}