.cookie-banner {
	position: fixed;
	bottom: 72px;
	right: 40px;
	background: #ffffff;
	color: #000;
	padding: 24px;
	z-index: 9999;
	max-width: 450px;
	max-height: 210px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: 'Times New Roman', Times, serif;

}

.cookie-content p {
	margin: 0;
	font-size: 14px;
}

.cookie-content a {
	color: #000000a3;
	text-decoration: underline;
}

.cookie-content a:hover {
	color: #000;
}

.cookie-button {
	background: #ffcc01;
	color: #000;
	border: none;
	padding: 12px 24px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	line-height: 20px;
	white-space: nowrap;
	width: fit-content;
	text-transform: uppercase;
	transition: all 0.3s;
}

.cookie-button:hover {
	background: #fed642;
}

@media (max-width: 768px) {
	.cookie-banner {
		right: 20px;
		left: 20px;
		bottom: 20px;
		max-width: none;
	}
}
