
.cookieConsentContainer,
.cookieConsentContainer * {
  font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
}

.cookieConsentContainer {
	z-index: 999;
	width: 100%;
	min-height: 20px;
	border-radius: 0;
	border: none;
    padding: 16px 18px;
	background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
	overflow: hidden;
	position: fixed;
    bottom: 20px;
	left: 50%;
    right: 24px;
    max-width: 640px;
	display: none;
    z-index: 999;
	transform: translateX(-50%)
}
.cookieConsentContainer .cookieTitle a {
	font-family: "Inter Tight", Inter, arial, "sans-serif";
	color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #cfcfcf;
	display: block;
	margin-top: 4px;
}

.cookieConsentContainer .cookieDesc {
  margin-bottom: 6px;
}
.cookieConsentContainer .cookieDesc p {
	margin: 0;
	padding: 0;
	font-family: "Inter Tight", Inter, arial, "sans-serif";
	font-size: 0.9rem;
	line-height: 1.4;
    color: #d0d0d0;
	display: block;
	margin-top: 10px;
} .cookieConsentContainer .cookieDesc a {
	font-family: "Inter Tight", Inter, arial, "sans-serif";
	color: #fff;
	text-decoration: none;
}
.cookieConsentContainer .cookieButton a {
	display: inline-flex;
	align-items: center;
    justify-content: center;
    font-family: "Inter Tight", Inter, arial, "sans-serif";
	background: #fff;
    color: #000;
	font-size: 0.8rem;
    font-weight: 500;
	margin-top: 10px;
	box-sizing: border-box; 
	height: 32px;
    padding: 0 14px;
	text-align: center;
	border-radius: 999px;
	border-bottom: none;
	transition: all 0.2s ease;
}
.cookieConsentContainer .cookieButton a:hover { 
	cursor: pointer;
	background: #ffffff;
	transform: translateY(-1px);

}

.cookieButton button {
  background: #000206;
  color: #b8b8b8;
  border: 1px solid #7d7d7d;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  font: inherit;
}

.cookieButton button:hover {
  opacity: 0.9;
}

@media (max-width: 980px) {
	.cookieConsentContainer {
		bottom: 0px !important;
		left: 0px !important;
		width: 100%  !important;
	}
}

@media (max-width: 767px) {
  .cookieConsentContainer {
    left: 12px;
    right: 12px;
    bottom: 12px;
    position: fixed;
    width: auto;
    max-width: none;

    transform: none !important;
  }
}