function mb_gdpr_warning_confirm() { localStorage.mb_gdpr_warning_verified = "1"; document.getElementById("mb_gdpr_warning").remove(); } function mb_gdpr_warning() { $("body").prepend(`
By using the site, you acknowledge you have read and agree to our Terms and Conditions. We use cookies to improve your user experience. By continuing your browsing, you accept the use of cookies, including third-party cookies.
`); } $(document).ready(function() { if (localStorage.mb_gdpr_warning_verified === undefined) { mb_gdpr_warning(); } });