:root {
	--cb-bg: #fff;
	--cb-text: #171a23;
	--cb-btn-bg: #579b11;
	--cb-btn-text: #fff;
}
.cookie-banner {
	z-index: 2147483647;
	position: fixed;
	left: initial;
	bottom: 2px;
	width: 100%;
	height: auto;
	max-height: calc(100vh - 20px);
	padding: 24px;
	border-radius: 24px;
	border-bottom: none;
	color: var(--cb-text);
	font-family: "Inter", sans-serif;
	background: var(--cb-bg);
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
	/**/
	box-sizing: border-box;
}
.cookie-banner *,
.cookie-banner *::before,
.cookie-banner *::after {
	box-sizing: inherit;
}
.cookie-banner:hover {
	transition-duration: 1s;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.cookie-banner__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 10px;
}
.cookie-banner__left {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.cookie-banner__icon {
	margin-top: 2px;
	font-size: 22px;
	line-height: 1;
}
.cookie-banner__text {
	margin: 0;
	color: var(--cb-text);
	font-size: 14px;
	line-height: 1.4;
}
.cookie-banner__link {
	color: var(--cb-btn-bg);
	font-size: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.cookie-banner__link:hover {
	text-decoration: unset;
}
.cookie-banner__btn {
	width: 100%;
	padding: 6px 18px;
	border: 1px solid var(--cb-btn-bg);
	border-radius: 9999px;
	color: var(--cb-btn-text);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -.02em;
	white-space: nowrap;
	background: var(--cb-btn-bg);
	transition: all .2s ease-out;
	cursor: pointer;
}
.cookie-banner__btn:hover {
	background: #4e8616;
}
.cookie-banner__btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
@media (min-width: 768px) {
	.cookie-banner {
		max-width: 252px;
		right: 32px;
		bottom: 32px;
	}
}