.hoker-missing-center-alert {
	position: fixed;
	inset: 0;
	z-index: 100100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease;
}

.hoker-missing-center-alert.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hoker-missing-center-alert__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.52);
}

.hoker-missing-center-alert__card {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: min(420px, calc(100vw - 32px));
	padding: 22px 22px 18px;
	border-radius: 18px;
	border: 2px solid #111111;
	background: #ffffff;
	color: #111111;
	box-shadow: 0 18px 42px rgba(17, 17, 17, 0.28);
	text-align: center;
	transform: translateY(8px) scale(0.98);
	transition: transform 0.24s cubic-bezier(0.22, 1.1, 0.36, 1);
}

.hoker-missing-center-alert.is-visible .hoker-missing-center-alert__card {
	transform: translateY(0) scale(1);
}

.hoker-missing-center-alert__text {
	margin: 0 0 16px;
	font-size: clamp(16px, 4.2vw, 20px);
	font-weight: 800;
	line-height: 1.35;
}

.hoker-missing-center-alert__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 148px;
	min-height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: #8d1c2f;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	cursor: pointer;
}

.hoker-missing-center-alert__btn:hover,
.hoker-missing-center-alert__btn:focus-visible {
	background: #6b1524;
}

.hoker-missing-center-alert--burgundy_fill {
	background: #8d1c2f;
	border-color: #ffffff;
	color: #ffffff;
	box-shadow: 0 18px 42px rgba(107, 31, 44, 0.42);
}

.hoker-missing-center-alert--burgundy_fill .hoker-missing-center-alert__btn {
	background: #ffffff;
	color: #8d1c2f;
}

.hoker-missing-center-alert--mobile_mint {
	background: #1f6b5c;
	border-color: #ffffff;
	color: #ffffff;
}

.hoker-missing-center-alert--mobile_mint .hoker-missing-center-alert__btn {
	background: #ffffff;
	color: #1f6b5c;
}

.hoker-missing-center-alert--outline_black {
	background: #ffffff;
	border-color: #111111;
}

.hoker-missing-center-alert--outline_burgundy {
	background: #ffffff;
	border-color: #8d1c2f;
	color: #8d1c2f;
}

.hoker-missing-center-alert--dark_compact {
	background: #1a1a1a;
	border-color: #ffffff;
	color: #ffffff;
}

.hoker-missing-center-alert--dark_compact .hoker-missing-center-alert__btn {
	background: #ffffff;
	color: #1a1a1a;
}
