.cookieConsent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999998;
	padding: 18px 20px;
	background: rgba(4, 4, 4, 0.94);
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
	box-sizing: border-box;
}

.cookieConsent * {
	box-sizing: border-box;
}

.cookieConsent__inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookieConsent__text {
	max-width: 880px;
	color: rgba(255, 255, 255, 0.9);
}

.cookieConsent__text a {
	color: #D9AE6E;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cookieConsent__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookieConsent__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 125px;
	min-height: 44px;
	border: 1px solid #D9AE6E;
	padding: 12px 18px;
	background: transparent;
	color: #D9AE6E;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookieConsent__btn--accept {
	background: #D9AE6E;
	color: #040404;
}

.cookieConsent__btn:hover {
	background: #fff;
	border-color: #fff;
	color: #040404;
}

.cookieConsent__moreText {
	margin-top: 6px;
}

.cookieConsent__moreText span {
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
	.cookieConsent {
		padding: 16px;
	}

	.cookieConsent__inner {
		display: block;
	}

	.cookieConsent__text {
		margin-bottom: 16px;
		font-size: 13px;
	}

	.cookieConsent__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.cookieConsent__btn {
		width: 100%;
	}
}


/* consent checkbox */
.form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	/* max-width: 380px; */
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.form-consent.form-consent--register {
    font-size: 18px;
}

.form-consent input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.form-consent span {
	position: relative;
	display: block;
	padding-left: 28px;
}

.form-consent span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 18px;
	height: 18px;
	border: 1px solid #D9AE6E;
	background: transparent;
	box-sizing: border-box;
}

.form-consent span::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border-right: 2px solid #D9AE6E;
	border-bottom: 2px solid #D9AE6E;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.form-consent input:checked + span::after {
	opacity: 1;
}

.form-consent input:focus + span::before {
	box-shadow: 0 0 0 2px rgba(217, 174, 110, 0.25);
}

.form-consent a {
	color: #D9AE6E;
	text-decoration: none;
	border-bottom: 1px solid rgba(217, 174, 110, 0.6);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.form-consent a:hover {
	color: #fff;
	border-bottom-color: #fff;
}

@media (max-width: 767px) {
	.form-consent {
		max-width: 100%;
		font-size: 12px;
	}

	.form-consent span {
		padding-left: 26px;
	}

	.form-consent span::before {
		width: 17px;
		height: 17px;
	}

	.form-consent span::after {
		left: 6px;
		top: 4px;
	}
    .form-consent.form-consent--register {
        font-size: 13px;
    }
}