.tl-points-badge,
.tl-points-guest-link {
	align-items: center;
	background: #ecfdf3;
	border: 1px solid rgba(22, 101, 52, 0.2);
	border-radius: 999px;
	color: #166534;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 6px;
	line-height: 1.2;
	padding: 8px 14px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.tl-points-badge:hover,
.tl-points-badge:focus-visible,
.tl-points-guest-link:hover,
.tl-points-guest-link:focus-visible {
	background: #d1fae5;
	border-color: rgba(22, 101, 52, 0.35);
	color: #14532d;
	transform: translateY(-1px);
}

.tl-navigation-loader {
	align-items: center;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(6, 95, 70, 0.16);
	border-radius: 16px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.18);
	display: flex;
	gap: 12px;
	left: 50%;
	max-width: calc(100vw - 32px);
	opacity: 0;
	padding: 12px 16px;
	pointer-events: none;
	position: fixed;
	top: 18px;
	transform: translate(-50%, -14px);
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
	visibility: hidden;
	width: max-content;
	z-index: 10000000;
}

.tl-navigation-loader.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
	visibility: visible;
}

.tl-navigation-loader__mark {
	align-items: center;
	border: 3px solid #dcfce7;
	border-radius: 50%;
	display: flex;
	flex: 0 0 34px;
	height: 34px;
	justify-content: center;
	position: relative;
	width: 34px;
}

.tl-navigation-loader__mark::before {
	border: 3px solid transparent;
	border-radius: inherit;
	border-top-color: #facc15;
	content: "";
	inset: -3px;
	position: absolute;
	animation: tl-navigation-spin 700ms linear infinite;
}

.tl-navigation-loader__leaf {
	color: #087443;
	font-size: 18px;
	line-height: 1;
}

.tl-navigation-loader__copy {
	display: grid;
	gap: 2px;
}

.tl-navigation-loader__title {
	color: #064e3b;
	display: block;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.tl-navigation-loader__subtitle {
	color: #64748b;
	display: block;
	font-size: 12px;
	line-height: 1.25;
	margin-top: 0;
}

@keyframes tl-navigation-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
	.tl-points-badge,
	.tl-points-guest-link {
		font-size: 12px;
		max-width: min(100%, 310px);
		overflow: hidden;
		padding: 7px 12px;
		text-overflow: ellipsis;
	}

	.tl-navigation-loader {
		top: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tl-navigation-loader,
	.tl-navigation-loader__mark::before {
		animation: none;
		transition: none;
	}
}
