  .stepList-item {
	 border-top: none;
	 padding: 1.25rem 0 0.25rem;
}
 .stepList-item:last-child {
	 border-bottom: none;
}
 .stepList-item-content {
	 position:relative;
	 display: flex;
	     padding-left: 0;
}
.stepList-item-content::before {
    content: counter(step-list-counter);
    display: block;
    background-color: #fdb814;
    height: 2rem;
    width: 2rem;
    line-height: 2.1rem;
    text-align: center;
    font-size: 1.5rem;
    color: var(--gfColors-navy);
    border-radius: 50%;
    font-family: sans-serif;
    margin-right: 1rem;
    font-weight: normal;
    flex-shrink: 0;
}

