window.CookieConsent.run({ mode: 'opt-out', autoShow: false, categories: { necessary: { enabled: true, // this category is enabled by default readOnly: true // this category cannot be disabled }, analytics: { enabled: true // this category is enabled by default }, targeting: { enabled: true // this category is enabled by default } }, guiOptions: { consentModal: { layout: 'box wide', position: 'bottom left', flipButtons: true, equalWeightButtons: true }, preferencesModal: { layout: 'box', flipButtons: false, equalWeightButtons: true } }, onChange: function (cookies) { window.location.reload() }, language: { default: 'en', translations: { en: { consentModal: { title: 'We use cookies! 🍪', description: "We want your experience on our site to be convenient and hassle-free. That's why we use cookies, which help us tailor content and ads to your interests. By browsing our site, you agree to the use of cookies and accept our privacy policy. This allows you to fully enjoy our services and be assured that your data is safe with us.", acceptAllBtn: 'I agree', showPreferencesBtn: 'Settings' }, preferencesModal: { title: 'Advanced cookie settings', acceptAllBtn: 'I agree', acceptNecessaryBtn: 'I disagree', savePreferencesBtn: 'Save settings', closeIconLabel: 'Close', sections: [ { title: 'Necessary cookies', description: "These files are necessary for our site to function properly, so you can't disable them. Data from them is used to improve security and detect errors on our site.", linkedCategory: 'necessary' }, { title: 'Analytical cookies', description: 'Analytical cookies allow us to recognize and count the number of people visiting our website, check how these people navigate the website while using it, and record the content they view and are interested in.', linkedCategory: 'analytics' }, { title: 'Social Media', description: 'These cookies allow sharing of website content via social media platforms (e.g., Facebook, Twitter, Instagram). We have no control over these cookies as they are set by the social media platforms themselves.', linkedCategory: 'targeting' }, { title: 'More information', description: 'For detailed information, check our privacy policy.' } ] } } } } }) setTimeout(window.CookieConsent.show, 4000)