﻿/*Form Wizard*/
:root {
    font-size: 16px;
}

.flex {
	display: -webkit-box;
	display: flex
}

.justify-center {
	-webkit-box-pack: center;
	justify-content: center
}

.bs-wizard {
    border-bottom: solid 1px #e0e0e0;
    padding: 0 0 10px 0;
}

.bs-wizard .bs-wizard-step {
    margin-left: .25rem;
    margin-right: .25rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    display: flex;
}

.bs-wizard .bs-wizard-step .bs-wizard-info {
    font-size: 1rem;
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 1rem;
    color: #999;
}

.bs-wizard .bs-wizard-step .bs-wizard-info-title {
    color: #999;
    text-align: center;
    height: 3rem;
    display: flex;
    align-items: center;
}

.bs-wizard .bs-wizard-step .bs-wizard-info-title .bs-wizard-title {
    font-size: .725rem;
    text-transform: uppercase;
    font-weight: 700;
}

.bs-wizard .bs-wizard-step .bs-wizard-info-subtitle {
    color: #999;
    text-align: center;
    height: 3rem;
    display: flex;
    align-items: center;
}

.bs-wizard .bs-wizard-step .bs-wizard-info-subtitle .bs-wizard-subtitle {
    font-size: .725rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: .5rem;
}

.bs-wizard .bs-wizard-step .bs-wizard-dot {
    position: relative;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 100%;
    margin-bottom: .5rem;
    margin-left: .25rem;
    margin-right: .25rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    font-size: 3rem;
    color: #cdcdcd
}

.bs-wizard .step-progress-bar .bs-wizard-step.complete .bs-wizard-dot {color: #28a745}
.bs-wizard .step-progress-bar .bs-wizard-step.active .bs-wizard-dot {color: #FFBF00}
.bs-wizard .step-progress-bar .bs-wizard-step.cancel .bs-wizard-dot {color: #C3360E}

 .bs-wizard .step-progress-bar .progress-bar {
     border-color: #cdcdcd!important;
     height: .1rem;
     border-top-style: solid;
     border-top-width: 1px;
     width: 20%;
     margin-top: 4.5rem;
     background: none;
 }

@media (min-width: 768px) and (max-width: 991px) {
    .bs-wizard .bs-wizard-step .bs-wizard-info {
        font-size: .5rem;
    }
}

@media only screen and (max-width:768px) {
    .flex {
        flex-direction: column;
    }

    .bs-wizard .bs-wizard-step {
        margin-bottom: 0;
        -webkit-box-align: start;
        align-items: flex-start;
        padding: 0;
        margin: 0;
    }

    .bs-wizard .step-progress-bar .progress-bar {
        width: 1px;
        height: 2rem;
        border: 1px solid #dbdbdb;
        margin-left: 1.7rem;
        margin-top: -.3rem;
        margin-bottom: .3rem;
    }

    .bs-wizard .bs-wizard-step .bs-wizard-dot {
        display: flex;
        flex-direction: row;
        width:100%
    }
}

/*END Form Wizard*/