
.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}
.step-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #eee;
    transition: .4s;
}
.step-button[aria-expanded="true"] {
    width: 60px;
    height: 60px;
    background-color: #1a3c4c;
    color: #fff;
}
.done {
    background-color: #1a3c4c;
    color: #fff;
}
.step-item {
    z-index: 10;
    text-align: center;
}
#progress {
    -webkit-appearance:none;
    position: absolute;
    width: 95%;
    z-index: 5;
    height: 10px;
    margin-left: 18px;
    margin-bottom: 18px;
}
/* to customize progress bar */
#progress::-webkit-progress-value {
    background-color: #1a3c4c;
    transition: .5s ease;
}
#progress::-webkit-progress-bar {
    background-color: #eee;
}

/*gil*/
button.step-button {
    cursor:default !important;
}