.cookieConsent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.96);
	color: #333;
	font-size: 14px;
	line-height: 1.45;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
}

.cookieConsent * {
	box-sizing: border-box;
}

.cookieConsent__inner {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookieConsent__text {
	max-width: 820px;
	text-align: left;
}

.cookieConsent__mainText {
	color: #333;
}

.cookieConsent__moreText {
	margin-top: 6px;
}

.cookieConsent__moreText span {
	color: #333;
}

.cookieConsent__text a {
	color: #662e91;
	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: 42px;
	border: 1px solid #662e91;
	padding: 10px 18px;
	background: #fff;
	color: #662e91;
	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: #662e91;
	color: #fff;
}

.cookieConsent__btn:hover {
	background: #333;
	border-color: #333;
	color: #fff;
}

.footer-docs {
	margin-top: 10px;
    margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 18px;
	font-size: 13px;
}

.footer-docs a {
	color: inherit;
    transition: .25s all ease-in-out;
}

@media (max-width: 767px) {
	.cookieConsent {
		padding: 16px;
		font-size: 13px;
	}

	.cookieConsent__inner {
		display: block;
	}

	.cookieConsent__text {
		margin-bottom: 16px;
	}

	.cookieConsent__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.cookieConsent__btn {
		width: 100%;
	}
}