

/* -------------------------------------------------------------------------
  VERTICAL STEPPERS
-------------------------------------------------------------------------- */

/* BULLETS */
.ssp-step {
	position: relative;
	padding-left: 45px;
	list-style: none;
}

.ssp-step-item {
	position: relative;
	counter-increment: list;
}

.ssp-step-item:not(:last-child) {
	padding-bottom: 25px;
}

.ssp-step-item::after {
	font-family: 'Montserrat' !important;
	/* content: counters(list, ".", decimal-leading-zero); */
	content: counter(list);
	width: 32px;
	height: 32px;
	top: -4px;
	left: -40px;
	font-size: 20px;
	text-align: center;
	color: #FFFFFF;
	border: none;
	background-color: #9482A3;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	border-radius: 50%;
	font-weight: 600 !important;
}