.sch-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	padding: 16px clamp(16px, 3vw, 32px) calc(16px + env(safe-area-inset-bottom));
	color: #fff;
	background:
		linear-gradient(90deg, rgba(218, 170, 64, .26), rgba(218, 170, 64, 0) 34%),
		#00006b;
	border-top: 1px solid rgba(255, 255, 255, .16);
	box-shadow: 0 -18px 42px rgba(0, 0, 43, .28);
}

.sch-cookie__inner {
	width: min(100%, 1040px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(18px, 3vw, 32px);
}

.sch-cookie__body {
	min-width: 0;
	display: grid;
	gap: 6px;
}

.sch-cookie__kicker,
.sch-cookie__title,
.sch-cookie__text {
	margin: 0;
}

.sch-cookie__kicker {
	color: #d9b15f;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sch-cookie__title {
	color: #fff;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.sch-cookie__text {
	max-width: 780px;
	color: rgba(255, 255, 255, .9);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
}

.sch-cookie__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-top: 2px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.sch-cookie__link {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(217, 177, 95, .82);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.sch-cookie__link:hover,
.sch-cookie__link:focus-visible {
	color: #f3d796;
}

.sch-cookie__actions {
	display: flex;
	justify-content: flex-end;
}

.sch-cookie__btn {
	min-height: 46px;
	padding: 12px 24px;
	border-radius: 8px;
	border: 2px solid #d9b15f;
	background: #fff;
	color: #00006b;
	font: inherit;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 10px 22px rgba(0, 0, 43, .22);
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.sch-cookie__btn:hover,
.sch-cookie__btn:focus-visible {
	background: #f8eed2;
	box-shadow: 0 12px 26px rgba(0, 0, 43, .3);
	transform: translateY(-1px);
}

@media (max-width: 782px) {
	.sch-cookie {
		padding: 14px var(--sch-mobile-edge, 18px) calc(14px + env(safe-area-inset-bottom));
	}

	.sch-cookie__inner {
		width: min(100%, 680px);
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 12px;
	}

	.sch-cookie__text {
		font-size: 13px;
		line-height: 1.4;
	}

	.sch-cookie__title {
		font-size: 22px;
	}

	.sch-cookie__actions {
		justify-content: flex-start;
	}

	.sch-cookie__btn {
		width: min(100%, 190px);
	}
}

@media (max-width: 420px) {
	.sch-cookie__title {
		font-size: 20px;
	}

	.sch-cookie__btn {
		width: 100%;
	}
}
