/*form styles*/
#msform, .prettyForm {
    /* width: 400px; */
    margin: 0px auto;
    text-align: center;
    width: 75%;
}

#msform fieldset, .prettyForm fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    padding: 20px 30px;
    margin: 0 10%;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
.input {
    padding: 15px;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}

#msform input, #msform textarea, .prettyForm input, .prettyForm textarea {
    padding: 15px;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}

/*buttons*/
.action-button {
    width: auto;
    background: #FA5A14;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 10px;
    margin: 10px 5px;
    outline: none;
}

.action-button2 {
    width: 100px;
    background: #2abeff;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.action-button:hover, .action-button:focus {
    /* box-shadow: 0 0 0 2px white, 0 0 0 3px #DB825B; */
    opacity: 0.6;
}

/*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 {
    /* margin-bottom: 30px; */
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: forestgreen;
    font-weight: bold;
    /* text-transform: uppercase; */
    font-size: 15px;
    width: 33.33%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    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: #228B22;
    color: white;
}

#formBar, #msform {
    display: table-cell;
}

#formBar ul {
    list-style: none;
}

#formBar ul li {
    padding: 0.2em;
    margin: 5px;
}

#formBar ul li {
    background-color: #731919;
    display: block;
    text-align: center;
    padding: 0.6em 1em;
    color: #fff;
    transition: all 3s ease;
    cursor: default;
    /* border-radius: 15px; */

}

.unchecked {
    background-image: url("http://www.clker.com/cliparts/e/l/i/0/s/E/not-checked-checked-and-unchecked-hi.png");
    background-size: 80px;
    background-position: -55px;
    background-repeat: no-repeat;
    width: 30px;
    height: 35px;
    float: left;
    margin-top: -4%;
    /* margin-left: 0px; */
}