/**
 * SOS Manager Fundraiser Progress Bar Styles
 */

.sos-progress-wrap {
	width: 100%;
}

.sos-progress-bar {
	width: 100%;
	height: var(--h, 20px);
	background: #e6e6e6;
	border-radius: 999px;
	padding: 2px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.sos-progress-inner-wrap {
	width: calc(var(--progress) * 100%);
	max-width: 100%;
	height: 100%;
	transition: width 0.3s ease;
}

.sos-progress-inner {
	height: 100%;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	color: #000;
	white-space: nowrap;
	background: hsl(calc((var(--progress) * 140 - 20)), 100%, 45%);
}

.sos-progress-label {
	position: relative;
	z-index: 1;
}

.sos-progress-meta {
	margin-top: 8px;
	font-size: 14px;
	text-align: center;
}
