
/* #region COOKIE */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 20px 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	transition: transform 0.3s ease;
}

.cookie-banner.hidden {
	display:none;
	transform: translateY(100%);
}

.cookie-banner__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.cookie-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cookie-text {
	flex: 1;
}

.cookie-text h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #ffffff;
	background: none;
	padding-left: 0;
}

.cookie-text p {
	font-size: 14px;
	color: #999;
	line-height: 1.5;
}

.cookie-text a {
	display: inline-block;
	margin-right: 5px;
	color: var(--secondary);
	text-decoration: none;
	border-bottom: 1px dotted transparent;
	transition: color 0.2s;
}

.cookie-text a:hover {
	/*color: #66BB6A;*/
	border-bottom-color: var(--secondary);
}

.cookie-accept {
	background-color: var(--secondary);
	color: white;
	border: none;
	padding: 12px 60px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.cookie-accept:hover {
	background-color: var(--secondary);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
	transform: translateY(-1px);
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	-o-transform: translateY(-1px);
}

.cookie-accept:active {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
}

@media screen and (max-width: 991px) {
	.cookie-banner__content {
		flex-direction: column;
		gap: 10px;
	}
	.cookie-text a {
		margin-top: 10px;
	}
}
/* #endregion  COOKIE */