/* pilot-checkout-tw-address — belt-and-suspenders CSS to ensure
 * the Select2 wrapper stays hidden even if our JS hasn't run yet
 * (e.g. during the brief window before DOMContentLoaded). Covers
 * both country and state fields.
 */
#billing_country,
#shipping_country,
#calc_shipping_country,
#billing_state,
#shipping_state,
#calc_shipping_state {
    display: block !important;
    width: 100% !important;
}

#billing_country + .select2-container,
#shipping_country + .select2-container,
#calc_shipping_country + .select2-container,
#billing_state + .select2-container,
#shipping_state + .select2-container,
#calc_shipping_state + .select2-container {
    display: none !important;
}
