.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #333;
	color: #fff;
	padding: 15px;
	text-align: center;
	z-index: 9999;
}

.cookie-notice-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 768px) {
	.cookie-notice-content {
		flex-direction: column;
		gap: 10px;
	}
}