/*
	Cookie consent banner
	Custom addition for heptatrium.com (not part of the original HTML5 UP template)
*/

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

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

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

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

#cookie-consent-accept {
	flex: 0 0 auto;
	background: #ffffff;
	color: #1c1f24;
	border: 0;
	padding: 0.65em 1.5em;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 700;
	white-space: nowrap;
}

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

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