Skip to content
document.addEventListener('DOMContentLoaded', function () {
if (sessionStorage.getItem('ageVerified') === 'yes') {
return;
}
setTimeout(function () {
if (window.elementorProFrontend) {
elementorProFrontend.modules.popup.showPopup({ id: 5711 });
}
}, 500);
document.addEventListener('click', function (e) {
if (e.target.closest('#age-accept')) {
sessionStorage.setItem('ageVerified', 'yes');
if (window.elementorProFrontend) {
elementorProFrontend.modules.popup.closePopup({ id: 5711 });
}
}
});
});