/**
 * Hide the shipping information in the "Payment Information" part of the checkout review
 * screen. This is a bit of a cop-out, but I've put too much time into trying to figure
 * out a way of doing it programmatically. Also, now that those fields are no longer
 * available in the payment information form at the previous step (which *is* done
 * programmatically), there should never actually be any data in these fields in the
 * future.
 */
fieldset#edit-review-payment-information .field--name-field-shipping-vendor,
fieldset#edit-review-payment-information .field--name-field-shipping-account {
  display: none;
}