#cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #F1F3F4;
	color: #696969;
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(105,105,105,0.2);
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
	font-size: 14px;
	pointer-events: none;
	display: inline-block;
	white-space: nowrap;
	max-width: 100%;
}

#cookie-banner.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.cookie-content {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cookie-text > a {
  color: #000;
  text-decoration: underline;	
	font-weight: normal;
}

.cookie-text > a:hover {
  color: #2F4F4F;
}

.cookie-text {
  white-space: nowrap;
}	
	
#cookie-banner button {
	background: #696969;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
	white-space: nowrap;
}

#cookie-banner button:hover {
	background: #808080;
}

@media (max-width: 768px) {
	#cookie-banner {
		white-space: normal;
		width: calc(100% - 40px);
	}

	.cookie-content {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-text {
		white-space: normal;
	}
	
	#cookie-banner button {
		width: 100%;
		margin-top: 10px;
	}
}