.c-product-live-timer {
	align-items: center;
	border-radius: 9999px;
	display: inline-flex;
	gap: .5rem;
	padding: .5rem 1rem;
}

.c-product-live-timer--no-timer {
	display: flex;
	justify-content: center;
	margin-inline: auto;
	width: fit-content;
}

.c-product-live-timer__dot {
	background: #4bd37c;
	border-radius: 50%;
	flex-shrink: 0;
	height: .5rem;
	width: .5rem;
	animation: c-product-live-timer-blink 1.6s infinite;
}

.c-product-live-timer__text,
.c-product-live-timer__timer {
	color: var(--text);
	align-items: center;
	font-family: var(--font-body);
	font-size: var(--font-responsive-xxs);
	line-height: 1.1;
	white-space: nowrap;
}

.c-product-live-timer__timer {
	align-items: baseline;
	display: inline-flex;
	gap: .25rem;
}

.c-product-live-timer__timer-value {
	color: var(--text);
	font-variant-numeric: tabular-nums;
	letter-spacing: .02em;
}

.c-product-live-timer__suffix {
	color: var(--text);
}

@keyframes c-product-live-timer-blink {
	0% {
		background: #4bd37c;
	}
	50% {
		background: var(--primary-base);
	}
	100% {
		background: #4bd37c;
	}
}

@media screen and (max-width: 479px) {
	.c-product-live-timer {
		gap: .375rem;
		padding: .4375rem .75rem;
	}

	.c-product-live-timer__text,
	.c-product-live-timer__timer {
		font-size: var(--font-static-xs);
	}
}