document.addEventListener('click', function(e) {
if (e.target.matches('#country-list1 li')) {
var value = e.target.getAttribute('data-value');
// Set the hidden CF7 field
document.querySelector('#selected-country1').value = value;
// Update the visible label
document.querySelector('#selected-country-label1').innerText = value;
// Close popup
PUM.closeAll();
}
});