#cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 90%;
	max-width: 500px;
	background-color: #333;
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	z-index: 10000;
}
#cookie-notice a {
	color: #1e90ff;
	text-decoration: none;
}
#cookie-notice .buttons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
#cookie-notice button {
	background-color: #555;
	color: #fff;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	border-radius: 4px;
}
@media (min-width: 768px) {
	#cookie-notice {
		width: auto;
		margin: 0 auto 0 0;
	}
}