.formButton > *,
input.formButton > *{
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.formButton,
.formButton:hover,
input.formButton,
input.formButton:hover{
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #F48E3C;
    border: none;
    clear: both;
    color: #FFFFFF;
    cursor: pointer;
    -js-display: inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: normal;
    padding: 10px 20px 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    background-image: none;
    max-width: initial;
    text-transform: uppercase;
    border-radius: 5px;
}
.formButton:hover,
input.formButton:hover{
    background-color: #DA7F36;
}
.formRowFull > *,
.formRowSplit > *{
    width: 100%;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
}
.formRowFull,
.formRowSplit{
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.campaignForm input[type=text],
.campaignForm input[type=email],
.campaignForm textarea{
    width: 100%;
    border: 1px solid #666666;
}
.campaignForm input[type=submit]{
    display: inline-block;
    margin: auto;
}
.submitButtonWrapper{
    text-align: center;
}
.required:before{
    content: "*\a0";
}
.validationError{
    color: #E64F0C;
}
.validationError:before{
    background-color: #E64F0C;
    border-radius: 50%;
    color: #FFFFFF;
    content: "!";
    display: inline-block;
    height: 24px;
    line-height: 20px;
    margin-right: 5px;
    text-align: center;
    width: 24px;
}
.campaignForm{
    background-color: #94E3FE;
    padding: 15px;
    border-radius: 5px;
}
.campaignFormHeader{
    background-color: #0270C0;
    color: #FFFFFF;
    width: calc(100% + 40px);
    margin: 0 -15px 20px -25px;
    padding: 10px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 18px;
}
#campaign figure{
    text-align: center;
    margin: 20px;
}
#campaign h1,
#campaign h2{
    text-align: center;
    line-height: normal;
}
#campaign h1{
    font-size: 30px;
    margin: 0 0 20px 0;
}
#campaign h2{
    font-size: 18px;
    margin: 0 0 10px 0;
}
@media only screen and (min-width: 990px){
    #contactForm .formRowSplit > :first-child{
        max-width: 120px;
        min-width: 80px
    }
    .formRowFull, 
    .formRowSplit{
        margin-bottom: 10px;
    }
    .formRowSplit{
        -ms-flex-direction: row;
        flex-direction: row
    }
    .formRowSplit > :first-child{
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-pack: end;
        justify-content: flex-end;
        max-width: 150px;
        width: 150px;
        padding: 0 10px 0 0;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        text-align: right
    }
    .formRowFull > :last-child, 
    .formRowSplit > *{
        margin-bottom: 0
    }
}
