.ego-form-upload-progress {
	text-align: left;
}

.ego-form-upload-progress__meta {
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.ego-form-upload-progress__track {
	width: 100%;
	height: 0.5rem;
	overflow: hidden;
	border-radius: 9999px;
	background-color: var(--color-gray-200, #e5e7eb);
}

.ego-form-upload-progress__fill {
	width: var(--ego-upload-pct, 0%);
	height: 100%;
	border-radius: 9999px;
	background-color: var(--color-ducati-red);
	transition: width 0.15s ease-out;
}

.ego-form-upload-progress.is-processing .ego-form-upload-progress__fill {
	background-image: linear-gradient(
		90deg,
		var(--color-ducati-red) 0%,
		var(--color-ducati-red-dark, #990000) 50%,
		var(--color-ducati-red) 100%
	);
	background-size: 200% 100%;
	animation: ego-form-upload-pulse 1.2s linear infinite;
}

@keyframes ego-form-upload-pulse {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}
