.fwSteppers{
    width: 40%;
    margin: 0 auto;
}



.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.step-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: #acacac;
    color: #fff;
    transition: .4s;
}

.step-button[aria-expanded="true"] {
    width: 30px;
    height: 30px;
    background-color: #00B560;
    color: #fff;
}

.done {
    background-color: #00B560;
    color: #fff;
}

.step-title{
    color:#7e7e7e;
    margin-top: 10px;
}

.step-item {
    z-index: 10;
    text-align: center;
}

#progress {
    -webkit-appearance:none;
    position: absolute;
    width: 90%;
    z-index: 5;
    height: 1.5px;
    margin-left: 20px;
    margin-bottom: 34px;
}



/* to customize progress bar */
#progress::-webkit-progress-value {
    background-color: #00B560;
    transition: .5s ease;
}

#progress::-webkit-progress-bar {
    background-color: #acacac;

}

@media screen and (max-width:768px) {

    .fwSteppers{
        width: 85%;
        margin: 0 auto;
    }
    #progress {
        width: 85%;
    }

    .step-title{
        font-size:13px
    }
}
