.daze-cookie-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	opacity: 0;
	position: fixed;
	z-index: 10000;
	right: 28px;
	bottom: 28px;
	left: 28px;
	max-width: 760px;
	margin: 0 auto;
	padding: 14px 16px;
	color: #292929;
	background: #fff;
	border: 1px solid #e5e5e5;
	box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
	transform: translate3d(0, 18px, 0);
	transition: opacity .28s ease, transform .32s ease;
}

.daze-cookie-notice.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.daze-cookie-notice__text {
	font-size: 12px;
	line-height: 1.55;
}

.daze-cookie-notice__link {
	color: inherit;
	border-bottom: 1px solid currentColor;
	text-decoration: none;
}

.daze-cookie-notice__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 34px;
	padding: 8px 13px;
	color: #fff;
	background: #292929;
	border: 1px solid #292929;
	border-radius: 0;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.daze-cookie-notice__button:hover,
.daze-cookie-notice__button:focus-visible {
	color: #292929;
	background: #fff;
}

@media (max-width: 767px) {
	.daze-cookie-notice {
		align-items: stretch;
		right: 14px;
		bottom: max(14px, env(safe-area-inset-bottom));
		left: 14px;
		flex-direction: column;
		gap: 12px;
		padding: 15px;
	}

	.daze-cookie-notice__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.daze-cookie-notice {
		transition: none;
	}
}
