#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to right, #ff7e5f, #feb47b);
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 10000;
}
#cookie-banner p {
	margin: 0 0 10px 0;
}
#cookie-banner a {
	color: #fff;
	text-decoration: underline;
}
#cookie-banner .button-group {
	display: flex;
	gap: 10px;
}
#cookie-banner button {
	background: rgba(0,0,0,0.2);
	border: none;
	color: #fff;
	padding: 10px 20px;
	cursor: pointer;
}
@media (min-width: 768px) {
	#cookie-banner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
@media (min-width: 1024px) {
	#cookie-banner {
		padding: 20px 40px;
	}
}