@keyframes rotating {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(1turn);
    }
}

.wizard-progress-container {
    padding: 10px 0 0 0;
    margin: 0 -15px 25px;
    background: #fafafa;
}

.wizard-form ul {
    padding: 0;
}

.wizard-form .submit-row {
    text-align: center;
}

.wizard-form .cell + .submit-row {
    margin-top: 30px;
}

.wizard-form .em-data-box a.loading span {
    display: none;
}

.wizard-form .em-data-box a.loading::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    height: 16px;
    opacity: .7;
    width: 16px;
    animation: rotating 2s linear infinite;
}

.wizard-form .wizard-step {
    margin: 15px 15px 30px;
}

.wizard-form .wizard-progress {
    counter-reset: step;
}

.wizard-form .wizard-progress .step {
    list-style-type: none;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    color: #101010;
    margin-bottom: 5px;
}

.wizard-form .wizard-progress .step .step-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    line-height: 18px;
    border: 2px solid #DBDEDE;
    margin: 0 auto 5px auto;
    border-radius: 50%;
    background-color: #fff;
}

.wizard-form .wizard-progress .step .step-counter::before {
    content: counter(step);
    counter-increment: step;
}

.wizard-form .wizard-progress .step::after {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    content: '';
    position: absolute;
    background-color: #DBDEDE;
    top: 13px;
    right: -6px;
}

.wizard-form .wizard-progress .step:last-child::after {
    content: none;
}

.wizard-form .wizard-progress .step.finish::after {
    background-color: #A7C711;
}

.wizard-form .wizard-progress .step.finish .step-counter {
    border-color: #A7C711;
    background-color: #A7C711;
    color: #fff;
}

.wizard-form .wizard-progress .step.active .step-counter {
    border-color: #2A99D1;
    background-color: #2A99D1;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .wizard-form .wizard-step {
        margin: 0 0 20px;
    }

    .wizard-form .cell + .submit-row {
        margin-top: 20px;
    }
}
