#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	margin: 0 13px;
	background: linear-gradient(45deg, #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;
	text-align: center;
	font-size: 14px;
}
#cookie-banner a {
	color: #fff;
	text-decoration: underline;
}
#cookie-banner .buttons {
	margin-top: 10px;
	display: flex;
	gap: 10px;
}
#cookie-banner button {
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
}
@media(min-width: 768px) {
	#cookie-banner {
		flex-direction: row;
		justify-content: space-between;
	}
	#cookie-banner p {
		flex: 1;
		text-align: left;
	}
}