/**
 * NEOG-6 in-place price refresh: countdown box (successor of the legacy
 * reload countdown, same fixed bottom-right spot) and the subtle flash
 * on a price element whose value just changed.
 */
.ng-lp-countdown:empty {
	display: none;
}

.ng-lp-countdown {
	background: #fff;
	border: 1px solid #e0ddd7;
	border-radius: 999px;
	bottom: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	color: #5b6472;
	font-size: 13px;
	padding: 6px 14px;
	position: fixed;
	right: 20px;
	z-index: 9000;
}

.ng-lp-updated {
	animation: ng-lp-pulse 1.6s ease;
}

@keyframes ng-lp-pulse {
	0% {
		background-color: rgba(219, 166, 23, 0.25);
	}

	100% {
		background-color: transparent;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ng-lp-updated {
		animation: none;
	}
}
