#form,
#formWrap {
    text-align: center;
}

.message,
.errorWrap {
    padding: 5vw;
    margin: 5vw auto;
    border: 1px solid #DDD;
}

.message h4 {
    font-weight: bold;
}

.progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: #999;
    font-weight: bold;
    z-index: 2;
}

.progressbar li:first-of-type {
    z-index: 3;
}

.progressbar li:last-of-type {
    z-index: 1;
}

.progressbar li:before {
    display: block;
    width: 18px;
    height: 18px;
    margin: 7px auto 20px auto;
    content: ' ';
    text-align: center;
    border-radius: 50%;
    background-color: #AAA;
    z-index: 2;
}

.progressbar li:after {
    position: absolute;
    z-index: 1;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: ' ';
    background-color: #AAA;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active,
.progressbar li.complete {
    color: #0070BD;
}

.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: #0070BD;
}

.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #0070BD;
}

a.btn {
    display: inline-block;
    width: 15rem;
    padding: 1rem;
    text-align: center;
    background: #e4322c;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 2rem;
    position: relative;
}

.form-btn {
    margin: 2rem auto;
    position: relative;
    text-align: center;
    list-style: none;
}

.form-btn li {
    width: 17rem;
    margin: 0 auto 1rem;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
    width: 100%;
    padding: 1rem;
    margin: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    color: #FFF;
    cursor: pointer;
    font-weight: bold;
    background: #e4322c;
    transition: all .2s;
    border-radius: 2rem;
    border: none;
}

input[type="button"] {
    background: #777;
}

@media screen and (min-width: 768px) {

    input[type="submit"]:hover,
    input[type="button"]:hover,
    input[type="reset"]:hover {
        opacity: 0.7;
        transition: all 0.3s;
    }
}

.formtable {
    text-align: left;
}

.formtable p {
    margin: 0;
}

.formtable dl {
    padding: 0.5rem 2.5vw;
}

.formtable dt {
    font-size: 0.9rem;
    padding-left: 4rem;
    font-weight: bold;
    position: relative;
}

.formtable .hissu,
.formtable .ninni {
    background: #CCC;
    margin-right: .5rem;
    display: block;
    font-size: .65rem;
    letter-spacing: 2px;
    padding: 5px 8px 5px 10px;
    color: #555;
    line-height: 1;
    width: 3rem;
    text-align: center;
    position: absolute;
    top: 3px;
    left: 0;
    border-radius: 1rem;
}

.formtable .hissu {
    background: #e4322c;
    color: #FFF;
}



.formtable input[type="text"],
.formtable input[type="date"],
.formtable input[type="email"],
.formtable input[type="tel"],
.formtable select,
.formtable textarea {
    font-size: 1.15rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: #FFF;
    border: 1px solid #AAA;
    display: inline-block;
    box-sizing: border-box;
    transition: all .5s ease;
    border-radius: .25rem;
    margin: 0.25rem 0;
}

.confirmtable {
    width: 100%;
    border-spacing: 0;
}

table.confirmtable th,
table.confirmtable td {
    border: 1px solid #FFF;
    padding: 1rem;
    text-align: left;
    background: #EEE;
}

table.confirmtable th {
    background: #CCC;
}