.cookie-consent {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	max-width: 720px;
	margin: 0 auto;
	padding: 14px 43px 14px 14px;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 9999;
	font-family: "roboto_ltregular", Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #2d2d2d;
	transform: translateY(120%);
	opacity: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-consent.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.cookie-consent__text {
	flex: 1 1 auto;
}

.cookie-consent__link {
	color: #ed1c24;
	text-decoration: underline;
}

.cookie-consent__link:hover {
	text-decoration: none;
}

.cookie-consent__accept {
	flex: 0 0 auto;
	margin: 0;
}

.cookie-consent__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 21px;
	height: 21px;
	line-height: 21px;
	text-align: center;
	font-size: 22px;
	font-style: normal;
	color: #888888;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.15s ease-in-out;
}

.cookie-consent__close:hover {
	color: #2d2d2d;
}

.cookie-consent__close:active {
	color: #000000;
}

@media (max-width: 768px) {
	.cookie-consent {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 16px;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}
	.cookie-consent__accept {
		width: 100%;
	}

	.cookie-consent__text {
		margin-right: 18px;
	}
}
