if (getCookie("notification") !== "true") {
$('#cookieinfo').html( /*html*/ `
This site uses cookies to store information about your browsing activity.
For more information, check out the
privacy policy.
Have a nice day!
`);
$("#notif-close").on("click", function () {
setCookie("notification", "true", 365);
});
}