.step-wizard {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-wizard-list {
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 20px 30px 20px 0px !important;
    position: relative;
    z-index: 1;
}

.step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.step-wizard-item+.step-wizard-item:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 19px;
    background: #001B5B;
    width: 100%;
    height: 3px;
    transform: translateX(-50%);
    z-index: -1;
}

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: transparent;
}

.progress-count:after {
    content: "";
    height: 30px;
    width: 30px;
    background: #21d4fd;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.current-item .progress-count:before,
.current-item~.step-wizard-item .progress-count:before {
    display: none;
}

.current-item .progress-count:after {
    background: #fff;
    border: 3px solid #9BBE3D;
}

.current-item .progress-count {
    color: #001B5B;
    font-size: 22px;
}

.progress-count:hover::after {
    background: #9BBE3D;
    border: 3px solid #001B5B;
    transition: .6s;
}

/*.progress-count:active:after{
    background: #fff;
    border: 3px solid #9BBE3D;
    transition: none;
}*/
.step-wizard p {
    margin-bottom: 0 !important;
}

.step-wizard-list a {
    text-decoration: none;
}