#consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(90deg, #4b6cb7, #182848);
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 9999;
}
#consent-banner a {
	color: #1e90ff;
	text-decoration: none;
}
#consent-banner .buttons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
#consent-banner button {
	background-color: rgba(255,255,255,0.2);
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 20px;
	cursor: pointer;
}
@media(min-width: 768px) {
	#consent-banner {
		flex-direction: row;
		justify-content: space-between;
	}
}