/* .wrapper {
	width: 330px;
	font-family: 'Helvetica';
	font-size: 14px;
}
.StepProgress {
	position: relative;
	padding-left: 45px;
	list-style: none;
}
.StepProgress::before {
	display: inline-block;
	content: '';
	position: absolute;
	top: 0;
	left: 15px;
	width: 10px;
	height: 100%;
}
.StepProgress-item {
	position: relative;
	counter-increment: list;
}
.StepProgress-item:not(:last-child) {
	padding-bottom: 20px;
}
.StepProgress-item::before {
	display: inline-block;
	content: '';
	position: absolute;
	left: 17px;
	height: 100%;
	width: 10px;
}
.StepProgress-item::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 7px;
	width: 20px;
	height: 20px;
	border: 2px solid #CCC;
	border-radius: 50%;
	background-color: #FFF;
}
.StepProgress-item.is-done::before {
	border-left: 2px solid green;
}
.StepProgress-item.is-done::after {
	content: "✔";
	font-size: 13px;
	color: #FFF;
	top: 13px;
	text-align: center;
	border: 2px solid green;
	background-color: green;
}
.StepProgress-item.current::before {
	border-left: 2px solid green;
}
.StepProgress-item.current::after {
	content: counter(list);
	padding-top: 1px;
	width: 25px;
	height: 25px;
	top: -4px;
	left: -40px;
	font-size: 14px;
	text-align: center;
	color: green;
	border: 2px solid green;
	background-color: white;
}
.StepProgress strong {
	display: block;
}

.StepProgress-item.is-doneLast::after {
	content: "✔";
	font-size: 13px;
	color: #FFF;
	text-align: center;
	border: 2px solid green;
	background-color: green;
} */

/* .StepProgress tr td:first-child:before{
	content: '';
	border-left: 2px solid rgb(255,61,0);
	height: 100%;
	position: absolute;
	left: 21px;	
	top: 0;
}

.StepProgress tr td:first-child:after{
	content: "\e9c3";
	color: white;
    font-family: unicons-line;
    position: absolute;    
	z-index: 1;
    border-radius: 50%;
	background-color: rgb(255,61,0);
    border: 1px solid rgb(255,61,0);
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
	left: 11px
}


.StepProgress tr:last-child td:first-child:before{
	height: 50%;
}

.StepProgress tr:first-child td:first-child:before{
	height: 100%;
	top: 10px
} */

/* Wrapper for the whole step progress */
.StepProgress {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each row/step item (inside a table or flex) */
.StepProgress tr td:first-child {
  position: relative;
  padding-left: 40px; /* space for circle */
  vertical-align: top;
}

/* Top half of vertical line */
.StepProgress tr td:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 21px;
  width: 2px;
  height: 50%;
  background-color: rgb(255, 61, 0);
  z-index: 0;
}

/* Bottom half of vertical line */
.StepProgress tr td:first-child::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 21px;
  width: 2px;
  height: 50%;
  background-color: rgb(255, 61, 0);
  z-index: 0;
}

/* Circle in center (✔ or step number) */
.StepProgress .circle-icon {
     position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgb(255, 61, 0);
    background-color: white;
    color: rgb(255, 61, 0);
    font-size: 12px;
    font-weight: bold;
    display: flex
;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* If it's the first row → don't show top line */
.StepProgress tr:first-child td:first-child::before {
  display: none;
}

/* If it's the last row → don't show bottom line */
.StepProgress tr:last-child td:first-child::after {
  display: none;
}