Skip to content
jQuery(document).on('elementor/popup/show', function () {
document.documentElement.style.overflow = 'hidden';
document.body.style.overflow = 'hidden';
document.body.style.touchAction = 'none';
});
jQuery(document).on('elementor/popup/hide', function () {
document.documentElement.style.overflow = '';
document.body.style.overflow = '';
document.body.style.touchAction = '';
});