.cookie-notice[hidden] {
	display: none !important;
}

.cookie-notice {
	position: fixed;
	right: 32px;
	bottom: 32px;
	left: 32px;
	z-index: 2147483000;
	max-width: 1180px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-notice.cookie-notice--visible {
	opacity: 1;
	transform: translateY(0);
}

.cookie-notice__content {
	display: flex;
	align-items: center;
	gap: 36px;
	padding: 24px 28px 24px 32px;
	border-left: 5px solid #0d6dbb;
	background: #fff;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
	box-sizing: border-box;
}

.cookie-notice__copy {
	min-width: 0;
	flex: 1 1 auto;
}

.cookie-notice__title {
	margin: 0 0 8px;
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #0d6dbb;
}

.cookie-notice__text {
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #505050;
}

.cookie-notice__text a {
	color: #0d6dbb;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-notice__text a:hover,
.cookie-notice__text a:focus-visible {
	text-decoration: none;
}

.cookie-notice__accept {
	flex: 0 0 auto;
	min-width: 126px;
	padding: 13px 22px;
	border: 0;
	background: #ff941f;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.cookie-notice__accept:hover {
	opacity: 0.8;
}

.cookie-notice__accept:focus-visible {
	outline: 3px solid rgba(13, 109, 187, 0.35);
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.cookie-notice {
		right: 16px;
		bottom: 16px;
		left: 16px;
	}

	.cookie-notice__content {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
		padding: 22px 20px;
	}

	.cookie-notice__title {
		font-size: 18px;
	}

	.cookie-notice__text {
		font-size: 14px;
	}

	.cookie-notice__accept {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cookie-notice {
		transition: none;
	}
}
