var modalCountryStore = document.getElementById("choose-country-site-modal");
var modalCountryStoreName = document.getElementById("modal-country-name");
if(typeof(modalCountryStore) != 'undefined' && modalCountryStore != null){
if(sessionStorage.getItem('modalCountry') != 'close'){
setTimeout(function(){
modalCountryStore.classList.add("show")
modalCountryStoreName.innerHTML = "US"
}, 600);
}
}
sessionStorage.setItem("checkCountry", "not-eu")