/**
 * Copyright © Brainvire. All rights reserved.
 * VAT On Us Module - CSS to Hide Excluding Tax Totals
 */

/* Hide Grand Total Excl Tax when VAT On Us is enabled */
body.vatonus-enabled .grand.totals.excl,
body.vatonus-enabled tr.grand.totals.excl,
body.vatonus-enabled .totals.grand.excl {
    display: none !important;
}

/* Hide excl tax in cart totals */
body.vatonus-enabled .cart-totals .grand.excl,
body.vatonus-enabled .opc-block-summary .grand.excl {
    display: none !important;
}

/* Hide excl tax in order totals */
body.vatonus-enabled .order-details-items .grand_total_excl,
body.vatonus-enabled .order-details-items tr.grand_total_excl {
    display: none !important;
}

/* Hide excl tax in emails and PDFs (for order confirmation) */
body.vatonus-enabled table.order-totals tr.grand_total_excl,
body.vatonus-enabled .order-totals .grand_total_excl {
    display: none !important;
}

