/*
 * On Save & Continue resume, GF wraps the Address Country <select> with the
 * Chosen jQuery plugin (which hides the native <select> via inline
 * `display: none` and inserts a div emulator that ends up width:0 due to a
 * layout race). The other Address subfields render as native controls — we
 * want Country to match.
 *
 * Force the native <select> visible and hide any Chosen wrapper that gets
 * injected, so this subfield always renders as a plain native dropdown.
 */
.gform_wrapper .ginput_address_country select {
    display: inline-block !important;
}

.gform_wrapper .ginput_address_country .chosen-container {
    display: none !important;
}
