.cookie-policy {
	padding: 0;
	/* "zindex-sticky" is 1020, so with "zindex-fixed" (1030) we should be more on-top */
	/* See https://getbootstrap.com/docs/5.3/layout/z-index/ */
	z-index: 1030;
	display: none;
}

@media (min-width: 1291px) {
	/* CSS that should be displayed if width is equal to or more than 1291px (iPhone 14 Pro Max) goes here */
	.cookie-policy {
		position: fixed;
		left: 15%;
		right: 15%;
		bottom: 0;
	}
}