/* progressbar */
#pledge-form-wrapper #progressbar {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
	margin-left: 0px;
	overflow: hidden;
	position: sticky;
	/* CSS counters to number the steps */
	counter-reset: step;
	list-style: inside !important;
	list-style-type: square !important;
}

#pledge-form-wrapper #progressbar li {
	list-style-type: none;
	color: #242632;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	width: 33.33%;
	float: left;
	position: relative;
}

#pledge-form-wrapper .li-default-style {
	background-color: #e4cbff00;
	color: black;
	padding: 1px 10px;
	border-radius: 2px;
	text-align: center;
}

#pledge-form-wrapper .li-error-style {
	background-color: hwb(269 80% 0% / 0);
	color: red;
	padding: 1px 10px;
	border-radius: 2px;
	text-align: center;
}

#pledge-form-wrapper #progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #000000;
	background-color: #E5E5E5;
	border-radius: 20px;
	border: 1px solid #AEAEAE;
	margin: 0 auto 5px auto;
}

/* progressbar connectors */
#pledge-form-wrapper #progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background-color: #808080;
	color: #ffffff;
	position: absolute;
	left: -50%;
	top: 9px;
	border-radius: 20px;
	z-index: -1;
}

#pledge-form-wrapper #progressbar li:first-child:after {
	/* connector not needed before the first step */
	content: none;
}

/* Style for active steps */
#pledge-form-wrapper #progressbar li.active:before {
	background-color: #ffffff;
	/* White background */
	color: #000000;
	/* Black text color */
	border-color: #000000;
	/* Black border */
}

/* Style for completed steps */
#pledge-form-wrapper #progressbar li.completed:before {
	background-color: #000000;
	/* Black background */
	color: #ffffff;
	/* White text color */
	border-color: #000000;
	/* Black border */
}