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