/* required css for formToWizard plugin */

.prev, .next { 
    display: inline-block;
    vertical-align: top;
    zoom: 1; /* Fix for IE7 */
    *display: inline; /* Fix for IE7 */
}

.steps {
    list-style:none;
    width:100%;
    overflow:hidden;
    margin:0px;
    padding:0px;
    margin-bottom: 1em;
}
.steps li {
    color: #b0b1b3;
    font-size: 1.3em;
    float: left;
    padding: 10px;
    position: relative;
    text-align: center;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}
.steps li:before{
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 38%;
    border-bottom: 1px solid #d5d5d5;
}
.steps li.current:before{
    border-color: darkorange;
}
.steps li .nomer{
    position: relative;
    z-index: 1;
    padding: .5em .8em;
    display: inline-block;
    border-radius: 50px;
    background-color: #ebebeb;
    font-weight: bold;
}
.steps li span {
    font-size:12px;
    font-weight: 300; 
    display:block;
}
.steps li.current .nomer {
    background-color: #FF9900;
    color: white;
}
.steps li.current span{
    font-weight: 400;
}
.steps li.current {
    color: #009999;
}

.breadcrumb {
    height: 37px;
}
.breadcrumb li {
    background: #eee;
    font-size: 14px;
}
.breadcrumb li.current:after {
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 6px solid #666;
    content: ' ';
    position: absolute;
    top: 0;
    right: -6px;
}
.breadcrumb li.current {
    background: #666;
    color: #eee;
    position: relative;
}
.breadcrumb li:last-child:after {
    border: none;
}