#cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background-color: #2E4861;
	color: #fff;
	padding: 1em 1.5em;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
	font-size: 0.95rem;
	line-height: 1.5;
}

#cookie-consent[hidden] {
	display: none;
}

#cookie-consent .cookie-consent__inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em;
}

#cookie-consent .cookie-consent__text {
	flex: 1 1 280px;
	margin: 0;
}

#cookie-consent .cookie-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	flex-shrink: 0;
}

#cookie-consent .cookie-consent__btn {
	border: none;
	cursor: pointer;
	padding: 0.5em 1.2em;
	font-size: inherit;
	font-family: inherit;
	border-radius: 3px;
}

#cookie-consent .cookie-consent__btn--accept {
	background-color: #73BD4E;
	color: #fff;
}

#cookie-consent .cookie-consent__btn--accept:hover {
	background-color: #5fa83d;
}

#cookie-consent .cookie-consent__btn--reject {
	background-color: transparent;
	color: #B3EFFF;
	border: 1px solid #B3EFFF;
}

#cookie-consent .cookie-consent__btn--reject:hover {
	background-color: rgba(179, 239, 255, 0.15);
}

#footer .cookie-settings-link {
	color: #B3EFFF;
	font-size: inherit;
}

#footer .cookie-settings-link:hover {
	color: #73BD4E;
}

@media all and (max-width: 800px) {
	#cookie-consent {
		font-size: 1rem;
	}

	#cookie-consent .cookie-consent__actions {
		width: 100%;
	}

	#cookie-consent .cookie-consent__btn {
		flex: 1 1 auto;
	}
}
