');
Professionals
Professionals
keyboard_arrow_up
';
if (cookie == '') {
$('[data-cookie-popup]').show();
} else {
if (cookie === 'true') {
gtag('js', new Date());
if(gtm !== ''){
gtag('config', '', {'page_path': location.pathname + location.search + location.hash});
} else {
gtag('config', '', {'page_path': location.pathname + location.search + location.hash});
}
}
}
}
function acceptCookies() {
setCookie('CookieConsent', true)
$('[data-cookie-popup]').slideUp(300);
}
function declineCookies() {
setCookie('CookieConsent', false)
}
$(document).ready(function () {
showCookies();
});
$('[data-cookie-accept-all]').click(function (e) {
e.preventDefault();
acceptCookies();
});
$('[data-cookie-edit]').click(function (e) {
e.preventDefault();
$('[data-cookie-options]').slideToggle(300);
});
$('[data-cookie-save]').click(function (e) {
e.preventDefault();
if ($('[data-cookie-tracking-check]').is(":checked")) {
acceptCookies();
} else {
declineCookies();
}
$('[data-cookie-popup]').slideUp(300);
});