/* Hide the sales badge */
tr.qwc-is-quote-item td.wc-block-cart-item__product div.wc-block-components-sale-badge {
    display: none;
}
.qwc-is-quote-item .wc-block-components-product-price {
    display: none;
}
.wc-block-cart-items__header-total {
    display: none;
}
/** cart page - mini-cart totals */
.site-header-cart .cart-contents .amount {
    display: none;
}
.top-cart .woocommerce-Price-amount {
    display: none;
}
.cart-contents .woocommerce-Price-amount {
	display: none;
}

/** Cart and Checkout pages - Legacy */
.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-checkout-review-order table.woocommerce-checkout-review-order-table > tfoot:nth-child(3) {
    display: none;
}
.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;
}
/* Cart page */
.wp-block-woocommerce-cart-order-summary-block {
    display: none;
}
/* Only for large screens - move the proceed to checkout button to below the item list. */
@media (min-width: 700px) {
    .wc-block-cart__sidebar {
        position: absolute;
        top: 100%;
        right: 40%;
    }
}

/** Checkout page */
.wp-block-woocommerce-checkout-order-summary-totals-block {
    display: none;
}

.wc-block-components-totals-item {
    display: none;
}
/* Hide the totals, shipping etc. on the Thank You page. */
table.woocommerce-table--order-details > tfoot > tr:has(.woocommerce-Price-amount) {
    display: none;
}
/* Individual Product prices */
.woocommerce-table.woocommerce-table--order-details
tbody
td.woocommerce-table__product-total.product-total {
	display: none;
}
li.woocommerce-order-overview__total {
    display: none;
}
/* Product Addon Prices - Cart Blocks */
/* simple products */
tr.qwc-is-quote-item td.wc-block-cart-item__product div.wc-block-components-product-metadata ul.wc-block-components-product-details span.woocommerce-Price-amount {
    display: none;
}
/* variable products */
tr.qwc-is-quote-item td.wc-block-cart-item__product div.wc-block-components-product-metadata div.wc-block-components-product-details span.woocommerce-Price-amount {
    display: none;
}
/* Product Addon Prices - Checkout Blocks */
/* simple products */
div.qwc-is-quote-item div.wc-block-components-order-summary-item__description div.wc-block-components-product-metadata ul.wc-block-components-product-details span.woocommerce-Price-amount {
    display: none;
}
/* variable products */
div.qwc-is-quote-item div.wc-block-components-order-summary-item__description div.wc-block-components-product-metadata div.wc-block-components-product-details span.woocommerce-Price-amount {
    display: none;
}