.wizard-tabs {
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: relative;
}

.wizard-tabs:before {
    content: '';
    width: 100%;
    height: 0.1rem;
    position: absolute;
    background: #ccc;
    top: 35%;
    z-index: 0;
}

.wizard-tabs .wizard-tabs-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    cursor: pointer;
    pointer-events: none;
}

.wizard-tabs .wizard-tabs-item .round-tab {
    width: 3.66rem;
    height: 3.66rem;
    line-height: 3.53rem;
    border-radius: 7.66rem;
    background: #fff;
    border: 0.13rem solid #ccc;
    z-index: 10;
    position: relative;
    text-align: center;
    font-size: 1.5rem;
    color: #555555;
    margin: 0 auto;
}

.wizard-tabs .wizard-tabs-item .text-tab {
    text-align: center;
    color: #777;
    font-size: 1.4rem;
}

.wizard-tabs .wizard-tabs-item.active .round-tab {
    background: #337ab7;
    border-color: #337ab7;
    color: #FFF;
}

.wizard-tabs .wizard-tabs-item.active .text-tab {
    color: #337ab7;
}

.wizard-tabs .wizard-tabs-item:not(.active):not(.disabled) .round-tab:hover {
    color: #333;
    border-color: #333;
}