/* Cookie consent banner */

#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 10000;
	background: #1c2228;
	color: #ffffff;
	padding: 1em 1.5em;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1em;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.35);
	font-size: 0.9em;
	line-height: 1.6;
}

#cookie-consent-banner.is-visible {
	display: flex;
}

#cookie-consent-banner p {
	margin: 0;
	flex: 1 1 320px;
	color: #ffffff;
}

#cookie-consent-banner a {
	color: #ffffff;
	text-decoration: underline;
}

#cookie-consent-banner a:hover {
	text-decoration: none;
}

#cookie-consent-banner #cookie-consent-accept {
	flex: 0 0 auto;
}

@media screen and (max-width: 736px) {
	#cookie-consent-banner {
		justify-content: flex-start;
		text-align: left;
	}
}
