/* Cookie consent banner */
#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: #1c1d21;
	color: #ffffff;
	padding: 1em 1.5em;
	font-size: 0.9em;
	line-height: 1.6;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.35);
}

#cookie-consent-banner.visible {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

#cookie-consent-banner p {
	margin: 0 1.5em 0 0;
	max-width: 62em;
	color: #ffffff;
}

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

#cookie-consent-banner .cookie-consent-accept {
	display: inline-block;
	background: #ffffff;
	color: #1c1d21;
	border: 0;
	border-radius: 4px;
	padding: 0.65em 1.5em;
	font-size: 0.95em;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	margin-top: 0.5em;
}

#cookie-consent-banner .cookie-consent-accept:hover {
	opacity: 0.85;
}

@media screen and (max-width: 480px) {
	#cookie-consent-banner {
		text-align: center;
	}

	#cookie-consent-banner p {
		margin: 0 0 1em 0;
	}
}

/* Contact form inline validation */
.form-error {
	color: #d64545;
	font-size: 0.8em;
	margin-top: 0.4em;
	display: none;
}

.form-error.visible {
	display: block;
}

.form-success {
	background: #e6f4ea;
	border: 1px solid #34a853;
	color: #1e7a34;
	padding: 1em 1.25em;
	border-radius: 4px;
	margin-top: 1em;
}
