.step-progress {
     display: flex;
    align-items: center;
    text-align: center;
     justify-content: center;
    /*min-width: 40em;*/
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: auto !important;
    margin-left: auto !important;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.step-number {
    background-color: gray;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    cursor: default;
    margin-left: 5px;
  font-weight: bold;
}
.step-title {
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    color: gray;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 5px;
}
.arrow-wrapper
{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.step-arrow {
    color: gray;
    font-size: 15px;
}
.step-arrow.active {
    color: #0C875C;
}

.step:last-child::after {
    content: '';
}

.step.active .step-number {
    background-color: #0C875C;
}

.step.active .step-title {
    color: #0C875C;
}
.w-50
{
    width: 50%;
}
.w-20
{
    min-width: 20%;
}
.center
{
    justify-content: center !important;
}
