.cookie-banner {
	position: fixed;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 9999;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background-color: var(--colors--linear-two, #12171b);
	color: var(--colors--cream, #fff8e7);
	border-radius: 1rem;
	padding: 1.25rem 1.5rem;
	max-width: 40rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	transform: translateY(150%);
	opacity: 0;
	transition: transform .4s ease, opacity .4s ease;
}

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

.cookie-banner_text {
	font-size: .9rem;
	line-height: 1.5;
	margin: 0;
	flex: 1 1 16rem;
}

.cookie-banner_text a {
	color: inherit;
	text-decoration: underline;
}

.cookie-banner_actions {
	display: flex;
	flex-shrink: 0;
}

.cookie-banner_button {
	background-color: var(--colors--washed-red, #e2582e);
	color: var(--colors--cream, #fff8e7);
	border: none;
	border-radius: 999px;
	padding: .6rem 1.4rem;
	font-size: .85rem;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
}

@media screen and (max-width: 479px) {
	.cookie-banner {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		padding: 1.1rem 1.25rem;
	}
}
