#cookieConsent {
	display: none;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background: #111;
	color: #fff;
	font-size: 13px;
	line-height: 1.45;
	padding: 14px 0;
	z-index: 10050;
	box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.25);
}

#cookieConsent.show {
	display: block;
}

html.cookie-yii2-locked,
html.cookie-yii2-locked body {
	overflow: hidden;
}

#cookieConsent.cookie-consent-overlay {
	inset: 0;
	width: 100%;
	height: 100%;
	bottom: auto;
	padding: 24px 16px;
	background: rgba(17, 20, 24, 0.32);
	box-shadow: none;
	display: none;
	align-items: center;
	justify-content: center;
}

#cookieConsent.cookie-consent-overlay.show {
	display: flex;
}

#cookieConsent.cookie-consent-overlay .cookie-consent-inner {
	flex-direction: column;
	align-items: stretch;
	max-width: 560px;
	width: 100%;
	margin: 0;
	padding: 24px 24px 20px;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

#cookieConsent.cookie-consent-overlay .cookie-consent-actions {
	flex-wrap: wrap;
	justify-content: flex-start;
}

#cookieConsent .cookie-consent-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 16px;
}

#cookieConsent .cookie-consent-text {
	margin: 0;
	flex: 1 1 auto;
}

#cookieConsent .cookie-consent-actions {
	display: flex;
	flex-shrink: 0;
	gap: 8px;
}

#cookieConsent a {
	color: #ffe27a;
	text-decoration: underline;
}

.cookie-consent-btn {
	display: inline-block;
	min-width: 140px;
	padding: 8px 14px;
	border-radius: 4px;
	border: 1px solid #fff;
	font-size: 13px;
	line-height: 1.2;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
}

#cookieConsent .cookie-consent-btn-secondary {
	background: transparent;
	color: #fff;
}

#cookieConsent .cookie-consent-btn-primary {
	background: #fff;
	color: #111;
}

.cookie-yii2-page .cookie-consent-btn-secondary {
	background: #fff;
	color: #111;
	border-color: #111;
}

.cookie-yii2-page .cookie-consent-btn-primary {
	background: #111;
	color: #fff;
	border-color: #111;
}

.cookie-consent-btn:hover,
.cookie-consent-btn:focus {
	opacity: 0.92;
}

@media (max-width: 767px) {
	#cookieConsent .cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
	}

	#cookieConsent .cookie-consent-actions {
		flex-direction: column;
	}

	#cookieConsent .cookie-consent-btn {
		width: 100%;
		min-width: 0;
	}
}
