.step-main::after{
    content: '';
    position: absolute;
    border-top: 2px dotted #acb9be;
    top: 19px;
    left: 50%;
    width: calc(100% - 150px);
    z-index: -1;
    transform: translateX(-50%);
}
.step-main li{
   font-size: 14px;
   max-width: 150px;
   width: 100%;
}

.step-main li.complate .step-count{
    background-color: var(--theme-color);
    color: #fff;
}
.step-main li.active .step-count{
    background-color: var(--theme-color);
    color: #fff;
}
.step-main .step-count{
    display: block;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    margin: 0px 5px;
    width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.step-main .step-counter-box{
    background: transparent;
    margin: auto;
    width: fit-content;
}
.step-main .step-done{
    display: none;
}
.step-main li.complate .step-count.step-done{
    display: flex;
}
.step-main li.complate .step-count.step-nodone{
    display: none;
}
@media (max-width:575px) {
    .step-main::after{
        width: 74%;
    }
}