/*  
Blackthorn Pay Later checkout warning

Apply this to your Event Settings css rules.

The "Pay Later" ("Pay with UW Funding String" for CERC) payment checkbox
clears any CC information that was already entered. This CSS adds some warning 
text to help people not do that accidentally.

Selector notes: The overall payment form is broken into DIV sections with a 
class of "card-body-section" for each payment type. There is no ID element to 
target in the Dynamic template, so we're using the nth-of-type to target the 
correct payment type DIV. 

WARNING: This is only designed for CC and Pay Later payment methods enabled. 
This will require a change if ACH or other payment types are added.

Kevin Graeme, University of Wisconsin-Madison
29 May 2025
*/

div.card-body-section:nth-of-type(2)::before {
    display: block;
    font-size: 0.8rem;
    margin: 2rem 0 1rem 0;
    content: "Warning: Checking this box will clear your credit card info."
}

/* End Blackthorn Pay Later Checkout Warning */