/**
 * Moovflex: Hide Shipping & Handling and Tax from order/invoice totals
 * Services platform - no physical delivery, prices include tax
 */

/* Hide Shipping & Handling row from order/invoice totals */
.order-details-items .table-order-items tfoot tr.totals.shipping,
.totals.shipping {
    display: none !important;
}

/* Hide Tax total row from order/invoice totals */
.order-details-items .table-order-items tfoot tr.totals.tax,
.totals-tax {
    display: none !important;
}
