/**
 * Classic-checkout visibility for the inline Tap card mount.
 *
 * Redirect-gateway-oriented themes (e.g. bg_checkout_v3) hide every
 * WooCommerce `.payment_box` with `display: none !important`, which leaves
 * the Tap Card SDK mounted into an invisible container. This rule restores
 * WooCommerce's own toggle semantics with equal priority: the box is shown
 * only while the bg_tap radio input is checked.
 */
li.wc_payment_method.payment_method_bg_tap > input#payment_method_bg_tap:checked ~ div.payment_box.payment_method_bg_tap {
	display: block !important;
}
