/*  
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.

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. 

This will require a change if ACH or other payment types are added.
*/

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