.next{
    float:right;
}
.previous{
    float:left;
}
.btnSubmit{
    float:right;
}
.step-by-step form fieldset:not(:first-of-type) {
    display: none;
}

.step-by-step fieldset div {
    padding: 2% 3%;
    box-sizing: border-box;
    width: 100%;
}
.step-by-step fieldset div div:nth-child(2n-1) {
    margin-right:4%;
}

.step-by-step fieldset div div {
    float:left;
    width:48%;
    padding:0;
    display:block !important;

}

.step-by-step fieldset div div:last-of-type {
    float:none;
}
.step-by-step fieldset legend{
    margin-bottom: 0;
}
.step-by-step fieldset label{
    width:100%;
}

.step-by-step fieldset input, .step-by-step fieldset textarea, .step-by-step fieldset select{
    width:97%;
}
#progressbar {
    margin:0;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    text-align:center;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
    background: #27AE60 !important;
    color: white;
}
input, textarea, select{
    border:0 !important;
}
.error{
    border: 0 !important;
    -webkit-box-shadow: inset 0px 0px 0px 2px rgba(255,0,0,1) !important;
    -moz-box-shadow: inset 0px 0px 0px 2px rgba(255,0,0,1) !important;
    box-shadow: inset 0px 0px 0px 2px rgba(255,0,0,1) !important;
}
.fix-errors{
    display:none;
    background-color: rgb(220, 71, 67);
    padding: 10px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
.fix-errors p{
    margin:0;
}
@media(max-width:1000px){
    .step-by-step fieldset input, .step-by-step fieldset textarea, .step-by-step fieldset select {
        width: 90%;
    }
}
@media(max-width:767px){
    .step-by-step fieldset input, .step-by-step fieldset textarea, .step-by-step fieldset select {
        width: 100%;
    }
    .step-by-step fieldset div div {
        width:95%;
    }
}
