.help-block.with-errors {
    color: #ff5050;
    margin-top: 1px;
    font-size: 0.90em;
    display: block;
    margin: 0px;
    font-weight: 500;
}
.form-wrap .star{
    top: -3px;
    color: #ff5050;
    display: inline-block;
    margin: 0px;
    font-weight: 500;
    position: relative;
}
.form-wrap{
    width: 100%;
    padding: 30px;    
    background: rgba(255, 255, 255, .8);
}
.form-wrap h4{
    color: #2C3C94;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
#msform{
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;    
}

#msform fieldset {
    border: 0 none;
    border-radius: 0px;
    padding: 20px 30px;
    display: block;
    box-sizing: border-box;
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform fieldset label{
    display: block;
    font-size: .90rem;
    font-weight: 500;
    color: #222;
    margin: 0px;
}
#msform fieldset input,
#msform fieldset select,
#msform fieldset textarea{
    display: block;
    font-size: .90rem;
    color: #333;
    background: transparent!important;
    border-radius: 5px!important;
    padding: 10px!important;
    border-color: #555;
}

/*buttons*/
#msform .action-button{
    width: 200px;
    display: inline-block;
    background: #B3252E;
    font-weight: bold;
    color: #fff;
    border: 0 none;
    cursor: pointer;
    margin: 15px 5px;
    text-align: center;
    padding: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

#msform .action-button-previous {
    width: 200px;
    display: inline-block;
    background: #2C3C94;
    font-weight: bold;
    color: #fff;
    border: 0 none;
    cursor: pointer;
    margin: 15px 5px;
    padding: 10px 5px;
    text-align: center;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    text-align: center;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #222;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #fff;
    z-index: 2;
    position: relative;
    border-radius: 25px;
    background: #2C3C94;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: -50%;
    top: 9px;
    background: #2C3C94;
    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: #B3252E;
    color: #fff;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}