/*Form Wizard*/
.bs-wizard {
    border-bottom: solid 1px #e0e0e0;
    padding: 0 0 10px 0;
    padding: 12px 7% 32px;
}

.bs-wizard > .bs-wizard-step {
    padding: 0;
    position: relative;
    text-align: center;
}

.bs-wizard > .bs-wizard-step + .bs-wizard-step {} .bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
    color: #595959;
    font-size: 16px;
    margin-bottom: 5px;
}

.bs-wizard > .bs-wizard-step .bs-wizard-info {
    color: #999;
    font-size: 14px;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    display: block;
    background: #ff721c;
    top: 17px;
    line-height: 38px;
    text-align: center;
    left: 50%;
    right: 0;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    z-index: 99;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

/*.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
    content: ' ';
    width: 14px;
    height: 14px;
    background: #ff721c;
    border-radius: 50px;
    position: absolute;
    top: 8px;
    left: 8px;
} */

.bs-wizard > .bs-wizard-step > .progress {
    position: relative;
    border-radius: 0px;
    height: 10px;
    box-shadow: none;
    margin: 18px 0;
    left: -50%;
    background-color: #e6e6e6;
}

.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
    width: 0px;
    box-shadow: none;
    background: #ff721c;
}

.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
    width: 100%;
}

.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
    width: 50%;
}

.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
    width: 0%;
}

.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
    width: 100%;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
    background-color: #fff;
    color: #504f4d;
    border: 1px solid #d1d1d1;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
    opacity: 0;
}

.bs-wizard > .bs-wizard-step:first-child > .progress {
    left: 0;
    width: 100%;
    display: none;
}

.bs-wizard > .bs-wizard-step:last-child > .progress {
    width: 100%;
}

.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
    pointer-events: none;
}

@media (min-width: 768px) and (max-width: 920px) {
    .bs-wizard {
        padding: 12px 7%;
    }

    .bs-wizard .step-label {
        display: none;
    }
}

@media (max-width: 610px) {
    .bs-wizard {
        padding: 12px 7%;
    }

    .bs-wizard .step-label {
        display: none;
    }
}

.bs-wizard .step-label {
    position: absolute;
    top: 50px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    left: 0;
    right: 0;
    padding-left: 10px;
    color: rgba(0, 0, 0, 0.5) !important;
}

@media (max-width: 767px) {
    .bs-wizard {
        padding-left: 0;
        padding-right: 0;
    }

    .bs-wizard > .bs-wizard-step > .bs-wizard-dot {
        width: 40px;
        height: 40px;
        top: 19px;
        line-height: 37px;
        font-size: 20px;
    }
}
/*END Form Wizard*/