#wizard-form {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#wizard-form fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

#wizard-form fieldset:not(:first-of-type) {
    display: none
}

/*.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative
}*/

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    position: relative
}

#progressbar .active {
    color: #000000
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    /*width: 25%;*/
    float: left;
    position: relative
}

#progressbar li i {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: var(--mainColor);
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--mainColor)
}

#progressbar li.active i {
    background: var(--mainColor);
    color: #ffffff;
}