/* Cookie consent banner */

#cookie-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: #1c1f24;
	color: #f2f2f2;
	padding: 1em 1.5em;
	display: none;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1em;
	font-size: 0.9em;
	line-height: 1.6em;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
}

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

	#cookie-consent-banner p {
		margin: 0;
		max-width: 60em;
		color: #f2f2f2;
	}

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

	#cookie-consent-banner a:hover {
		color: #dddddd;
	}

	#cookie-consent-accept {
		background: #ffffff;
		color: #1c1f24;
		border: 0;
		border-radius: 4px;
		padding: 0.6em 1.4em;
		font-size: 0.95em;
		font-weight: 600;
		cursor: pointer;
		white-space: nowrap;
	}

	#cookie-consent-accept:hover {
		background: #dddddd;
	}

@media screen and (max-width: 736px) {

	#cookie-consent-banner {
		flex-direction: column;
		text-align: center;
	}

}
