/* Cookie consent banner */
#cookie_banner {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	width: 632px;
	max-width: calc(100% - 40px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 32px;
	padding: 24px;
	background: #ffffff;
	border-radius: 2px;
	box-shadow: 2px 0 22px rgba(0, 0, 0, 0.2);
	font-family: 'Open Sans', Arial, sans-serif;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

#cookie_banner.is_visible {
	opacity: 1;
	transform: translateY(0);
}

#cookie_banner .cookie_text {
	width: 100%;
	margin: 0;
	color: #1c2232;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	word-break: break-word;
}

#cookie_banner .cookie_text a {
	color: #0069a4;
	font-weight: 600;
	text-decoration: underline;
}

#cookie_banner .cookie_buttons {
	display: flex;
	justify-content: flex-end;
}

#cookie_banner .cookie_accept {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 39px;
	padding: 12px 56px;
	background: #ba2d22;
	border: none;
	border-radius: 2px;
	color: #ffffff;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.2s ease;
}

#cookie_banner .cookie_accept:hover {
	background: #a02319;
}

@media (max-width: 720px) {
	#cookie_banner {
		right: 10px;
		left: 10px;
		bottom: 10px;
		width: auto;
		max-width: none;
		gap: 20px;
		padding: 16px;
	}

	#cookie_banner .cookie_text {
		font-size: 14px;
		line-height: 20px;
	}

	#cookie_banner .cookie_buttons {
		justify-content: stretch;
		width: 100%;
	}

	#cookie_banner .cookie_accept {
		width: 100%;
		padding: 12px 24px;
	}
}
