orestbida/cookieconsent javascript

                  window.addEventListener("load", (event) => {
	document.body.classList.toggle("cc_darkmode");
	const CookieConsent = initCookieConsent();
	CookieConsent.run({
		cc_autorun: true,
		cc_delay: 100,
		cc_policy_url: "https://example.com/zoou/",
		cc_enable_verbose: false,
		cc_current_lang: "cd",
		cc_auto_language: true,
		cc_autoload_css: true,
		//cc_theme_css : 'https://example.com/wp-content/uploads/1900/01/cookieconsent.css',
		cc_cookie_expiration: 182,
		cc_autoclear_cookies: true,
		cc_languages: [
			{
				lang: "en",
				modal: {
					cc_title: "I use cookies",
					cc_more_text: "Learn more",
					cc_accept_text: "I understand",
					cc_description:
						"My website uses essential cookies necessary for its functioning. By continuing browsing, you consent to my use of cookies and other technologies.",
				},
				policy: {
					ccp_title: "Cookie Policy",
					ccp_save_text: "Save preferences",
					// ccb_table_headers is REQUIRED if any ccb_cookies_table is used
					ccb_table_headers: [
						{ col1: "Name" },
						{ col2: "Domain" },
						{ col3: "Expiration" },
						{ col4: "Description" },
						{ col5: "Type" },
					],
					ccp_blocks: [
						{
							ccb_title: "What are cookies",
							ccb_description:
								"Cookies are very small text files that are stored on your computer when you visit a website. I use cookies to assure the basic functionalities of the website and to enhance your online experience. I use many different types of cookies which you can check on the sections below.",
						},
						{
							ccb_title: "Strictly necessary cookies",
							ccb_description:
								"These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly.",
							ccb_cookies_table: [
								{
									col1: "cc_cookie",
									col2: "orestbida.com",
									col3: "After 3 months (Starting from the moment the cookie-consent was accepted)",
									col4: "Used to know whether a visitor has accepted the cookie consent or not.",
									col5: "Permanent cookie",
								},
								{
									col1: "cc_level",
									col2: "orestbida.com",
									col3: "After 3 months (Starting from the moment the cookie-consent was accepted)",
									col4: "Used to know the accepted level of cookie consent (E.g.  essential cookie only, full cookie consent ...)",
									col5: "Permanent cookie",
								},
							],
							ccb_switch: {
								value: "necessary_cookies",
								enabled: true,
								readonly: true,
							},
						},
						{
							ccb_title: "Functionality cookies",
							ccb_description:
								"These cookies are used to provide you with a more personalized experience on my website and to remember choices you make when you browse the website. For example, whether or not you enabled dark-mode on this website.",
							ccb_switch: {
								value: "functionality_cookies",
								enabled: true,
								readonly: false,
							},
							ccb_cookies_table: [
								{
									col1: "darkmode",
									col2: "orestbida.com",
									col3: "One week after the cookie has been created",
									col4: "Used to remember visitor preferences. If darkmode was enabled, then the next time you visit the website, darkmode will be automatically turned on.",
									col5: "Permanent cookie",
								},
							],
						},
						{
							ccb_title: "More information",
							ccb_description:
								"For any queries in relation to my policy on cookies and your choices, please contact me.",
						},
					],
				},
			},
			{
				lang: "cs",
				modal: {
					cc_title: "",
					cc_more_text: "Více informací",
					cc_accept_text: "Rozumím",
					cc_description:
						"NAŠE WEBOVÁ STRÁNKA POUŽÍVÁ ZÁKLADNÍ COOKIES POTŘEBNÉ PRO JEJÍ FUNKCE. POKRAČOVÁNÍM V PROHLÍŽENÍ WEBU SOUHLASÍTE S POUŽÍVÁNÍM COOKIES A JINÝCH TECHNOLOGIÍ.",
				},
				policy: {
					ccp_title: "Cookie Policy",
					ccp_save_text: "Save preferences",
					// ccb_table_headers is REQUIRED if any ccb_cookies_table is used
					ccb_table_headers: [
						{ col1: "Name" },
						{ col2: "Domain" },
						{ col3: "Expiration" },
						{ col4: "Description" },
						{ col5: "Type" },
					],
					ccp_blocks: [
						{
							ccb_title: "What are cookies",
							ccb_description:
								"Cookies are very small text files that are stored on your computer when you visit a website. I use cookies to assure the basic functionalities of the website and to enhance your online experience. I use many different types of cookies which you can check on the sections below.",
						},
						{
							ccb_title: "Strictly necessary cookies",
							ccb_description:
								"These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly.",
							ccb_cookies_table: [
								{
									col1: "cc_cookie",
									col2: "orestbida.com",
									col3: "After 3 months (Starting from the moment the cookie-consent was accepted)",
									col4: "Used to know whether a visitor has accepted the cookie consent or not.",
									col5: "Permanent cookie",
								},
								{
									col1: "cc_level",
									col2: "orestbida.com",
									col3: "After 3 months (Starting from the moment the cookie-consent was accepted)",
									col4: "Used to know the accepted level of cookie consent (E.g.  essential cookie only, full cookie consent ...)",
									col5: "Permanent cookie",
								},
							],
							ccb_switch: {
								value: "necessary_cookies",
								enabled: true,
								readonly: true,
							},
						},
						{
							ccb_title: "Functionality cookies",
							ccb_description:
								"These cookies are used to provide you with a more personalized experience on my website and to remember choices you make when you browse the website. For example, whether or not you enabled dark-mode on this website.",
							ccb_switch: {
								value: "functionality_cookies",
								enabled: true,
								readonly: false,
							},
							ccb_cookies_table: [
								{
									col1: "darkmode",
									col2: "orestbida.com",
									col3: "One week after the cookie has been created",
									col4: "Used to remember visitor preferences. If darkmode was enabled, then the next time you visit the website, darkmode will be automatically turned on.",
									col5: "Permanent cookie",
								},
							],
						},
						{
							ccb_title: "More information",
							ccb_description:
								"For any queries in relation to my policy on cookies and your choices, please contact me.",
						},
					],
				},
			},
		],
	});
});