/* = STEPS CONTAINER
----------------------------*/
.wizard-steps {
    margin:20px 10px 0px 10px;
    padding:0px;
    position: relative;
    clear:both;
    /* font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold; */
}
.wizard-steps div {
    position:relative;
}
/* = STEP NUMBERS
----------------------------*/
.wizard-steps span {
    display: block;
    float: left;
    font-size: 10px;
    text-align:center;
    width:15px;
    margin: 6px 5px 0px 0px;
    line-height:15px;
    color: #ccc;
    background: #FFF;
    border: 2px solid #CCC;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}
@media (max-width: 980px) {
    .wizard-steps span {
        display: none;
    }
}
/* = DEFAULT STEPS
----------------------------*/
.wizard-steps a {
    position:relative;
    display:block;
    width:auto;
    height:32px;
    margin-right: 18px;
    padding:0px 10px 0px 3px;
    float: left;
    font-size:11px;
    line-height:32px;
    color:#666;
    background: #F0EEE3;
    text-decoration:none;
}
@media (max-width: 980px) {
    .wizard-steps span {
        font-size: 10px;
        font-weight: normal;
    }
}
.wizard-steps a:before {
    width:0px;
    height:0px;
    border-top: 16px solid #F0EEE3;
    border-bottom: 16px solid #F0EEE3;
    border-left:16px solid transparent;
    position: absolute;
    content: "";
    top: 0px;
    left: -16px;
}
.wizard-steps a:after {
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left:16px solid #F0EEE3;
    position: absolute;
    content: "";
    top: 0px;
    right: -16px;
}

/* = COMPLETED STEPS
----------------------------*/

.wizard-steps .completed-step a {
    color:white;
    background: #68A359;
}
.wizard-steps .completed-step a:before {
    border-top: 16px solid #68A359;
    border-bottom: 16px solid #68A359;
}
.wizard-steps .completed-step a:after {
    border-left: 16px solid #68A359;
}
.wizard-steps .completed-step span {
    border: 2px solid black;
    color: black;
    text-shadow:none;
}
/* = ACTIVE STEPS
----------------------------*/
.wizard-steps .active-step a {
    color:white;
    background: #007ACC;
}
.wizard-steps .active-step a:before {
    border-top: 16px solid #007ACC;
    border-bottom: 16px solid #007ACC;
}
.wizard-steps .active-step a:after {
    border-left: 16px solid #007ACC;
}
.wizard-steps .active-step span {
    color: black;
    border: 2px solid black;
}
/* = HOVER STATES
----------------------------*/
.wizard-steps .next-step:hover a {
    color:white;
    background: #007ACC;
}
.wizard-steps .next-step:hover span {
    color: black;
    border: 2px solid black;
}
.wizard-steps .next-step:hover a:before {
    border-top: 16px solid #007ACC;
    border-bottom: 16px solid #007ACC;
}
.wizard-steps .next-step:hover a:after {
    border-left: 16px solid #007ACC;
}

/* = INFO STEPS
----------------------------*/
.wizard-steps .wizard-step-info a {
    color: white;
    background: #31708f;
}

.wizard-steps .wizard-step-info a:before {
    border-top: 16px solid #31708f;
    border-bottom: 16px solid #31708f;
}

.wizard-steps .wizard-step-info a:after {
    border-left: 16px solid #31708f;
}

.wizard-steps .wizard-step-info span {
    color: black;
    border: 2px solid black;
}

/* = SUCCESS STEPS
----------------------------*/
.wizard-steps .wizard-step-success a {
    color: white;
    background: #3c763d;
}

.wizard-steps .wizard-step-success a:before {
    border-top: 16px solid #3c763d;
    border-bottom: 16px solid #3c763d;
}

.wizard-steps .wizard-step-success a:after {
    border-left: 16px solid #3c763d;
}

.wizard-steps .wizard-step-success span {
    color: black;
    border: 2px solid black;
}

/* = WARNING STEPS
----------------------------*/
.wizard-steps .wizard-step-warning a {
    color: white;
    background: #8a6d3b;
}

.wizard-steps .wizard-step-warning a:before {
    border-top: 16px solid #8a6d3b;
    border-bottom: 16px solid #8a6d3b;
}

.wizard-steps .wizard-step-warning a:after {
    border-left: 16px solid #8a6d3b;
}

.wizard-steps .wizard-step-warning span {
    color: black;
    border: 2px solid black;
}

/* = DANGER STEPS
----------------------------*/
.wizard-steps .wizard-step-danger a {
    color: white;
    background: #a94442;
}

.wizard-steps .wizard-step-danger a:before {
    border-top: 16px solid #a94442;
    border-bottom: 16px solid #a94442;
}

.wizard-steps .wizard-step-danger a:after {
    border-left: 16px solid #a94442;
}

.wizard-steps .wizard-step-danger span {
    color: black;
    border: 2px solid black;
}