/* Hide product prices */
.wc-block-components-product-price {
    display: none !important;
}
.wc-block-cart-item__prices {
    display: none;
}
/* Blocks*/
/* sale badges */
tr.qwc-is-quote-item td.wc-block-cart-item__product div.wc-block-components-sale-badge {
    display: none;
}
/** shipping on the cart page. */
.wp-block-woocommerce-cart-order-summary-shipping-block {
    display: none;
}
/** tax on the cart page */
.wp-block-woocommerce-cart-order-summary-taxes-block {
    display: none;
}
/** Fees if any. */
.wc-block-components-totals-fees {
    display: none;
}
/* shipping on the checkout page */
.wp-block-woocommerce-checkout-order-summary-shipping-block {
    display: none;
}
/* taxes on the checkout page. */
.wp-block-woocommerce-checkout-order-summary-taxes-block {
    display: none;
}
.qwc-estimated-note {
    
}
/* Legacy Cart Page */
/* shipping total */
tr.woocommerce-shipping-totals {
    display: none;
}
/* tax totals */
tr.tax-rate {
    display: none;
}
/* fee totals */

.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-checkout-review-order table.woocommerce-checkout-review-order-table th:nth-of-type(2), .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table td:nth-of-type(2) {
    display:none;
}
.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table th:nth-of-type(1), .woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table td:nth-of-type(1) {
    width: 100%;
}

.woocommerce-table__product-table {
    display: none;
}
th.product-price {
    display: none;
}
td.product-price {
    display: none;
}
th.product-subtotal {
    display: none;
}
td.product-subtotal {
    display: none;
}
/* woodmart theme elements */
div.wd-checkout-prod-total {
    display: none;
}

/** Thank you - Order Received Page */
/* Hide the totals, shipping etc. in the product table. - will hide all subtotal, shipping, tax, total, fees.
table.woocommerce-table--order-details > tfoot > tr:has(.woocommerce-Price-amount) {
    display: none;
}*/
/* Hide the only shipping in the product table. */
table.woocommerce-table:nth-child(2) > tfoot:nth-child(4) > tr:nth-child(2) {
  display: none;
}
/* Hide the only tax in the product table. */
table.woocommerce-table:nth-child(2) > tfoot:nth-child(4) > tr:nth-child(3) {
  display: none;
}
/* Hide product prices in the order content table. */
td.woocommerce-table__product-total {
    display: none;
}