/*
	Cookie consent banner for brinrobinson.com
*/

#cookie-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: rgba(20, 18, 32, 0.96);
	color: rgba(255, 255, 255, 0.9);
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.85rem;
	line-height: 1.5;
	box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.3);
}

#cookie-consent-banner p {
	margin: 0;
	max-width: 56rem;
	flex: 1 1 20rem;
}

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

#cookie-consent-banner .cookie-consent-accept {
	flex: 0 0 auto;
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background-color: #e37b7c;
	color: #ffffff;
	border: 0;
	border-radius: 2rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

#cookie-consent-banner .cookie-consent-accept:hover {
	background-color: #de7172;
}

#cookie-consent-banner.is-hidden {
	display: none;
}

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

	#cookie-consent-banner {
		justify-content: flex-start;
		text-align: left;
	}

}
