#submitForm {
    max-width: 100%;
    text-align: left;
}

/*Hide all except first fieldset*/
/*#msform fieldset:not(:first-of-type) {
    visibility:hidden
}*/
/*inputs*/

.form-section {
    display: none;
}

.form-container{
    box-sizing: border-box;
    width: 100%;
    display: inline-block;
}

.form-section.current {
    display: inherit;
}
.btn-info, .btn-default {
    margin-top: 10px;
    position: absolute;
}

.parsley-errors-list{
    list-style-type: none;
    width: 100%;
}

.parsley-errors-list li.parsley-required, .parsley-errors-list li.parsley-requiredIf,.parsley-errors-list li.parsley-custom-error-message,.parsley-errors-list li.parsley-type{
    color: #fff;
    background: green;
    padding: 10px;
    width: 100%;
}

#validationerrors{
    background-color: transparent;
    overflow-y: auto;
    min-height:50px;
    max-height:80px;
    width: 100%;
    border: 0;
}

/*
.previous{
    position:absolute;
    bottom:0px;
    right:110px;
    width:110px;
}

.next{
    position:absolute;
    bottom:0px;
    right:20px;
    width:80px;
}

.submit{
    position:absolute;
    bottom:0px;
    right:20px;
    width:80px;
}
*/

.form-navigation{

}



/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}
.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
    display: flex;
    justify-content:space-between;
    list-style-type: none;
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    min-width: 200px;
}

#progressbar li {
    list-style-type: none;
    color: black;
    text-transform: uppercase;
    font-size: 9px;
    position: relative;
    width:100%;
    display: inline-block;
}
#progressbar li:before {
    text-align: center;
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #bebebe;
    background: #4a4a4a;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: black;
    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;
    color: white;
}


/*The progress element*/
.Progress-main {
    background-color: #F2F2F2; /*This could be any colour*/
    width: 100%;
    height: 0.3em;
    margin-top: 0.75em;
}

/*For firefox*/
.Progress-main::-moz-progress-bar {
    background: #17BAB3;
}
/*For webkit browsers*/
.Progress-main::-webkit-progress-bar {
    background: #F2F2F2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) inset;
}
.Progress-main::-webkit-progress-value {
    background: #17BAB3;
}
/*For IE*/
.Progress-main::-ms-fill {
    background: #17BAB3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) inset;
}

.Progress-bar {
    margin-top: 0.95em;
    background-color: #F2F2F2;
    height: 0.3em;
}
.Progress-value {
    background-color: #17BAB3;
    display: block;
    height: 0.3em;
}

#getaddress_button{

}

.registerheading { font-family: Lato !important; font-weight: 400 !important; font-size: 17px !important; text-transform: uppercase !important; padding-bottom: 10px; }
.registersubheading{ font-family: Lato !important; font-weight: 700 !important; padding-bottom: 5px;padding-top:10px;}