form#contact-form {
    font: 14px Helvetica, Arial, sans-serif;
    margin: 18px 18px 0 18px;
}

form#contact-form .field-group + .field-group {
    display: block;
    padding-top: 4px;
}

form#contact-form .field-group.input-group {
    padding-top: 10px;
    padding-bottom: 10px;
}

form#contact-form .field-group input,
form#contact-form .field-group select {
    display: block;
    width: 100%;
    border: 1px solid #ABB0B2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: white;
    padding: 8px 10px;
}

form#contact-form .field-group label.field-wording {
    display: block;
    margin-bottom: 3px;
    color: #08355c;
    font-weight: 800;
}

form#contact-form .field-group label.checkbox {
    display: flex;
    min-height: 20px;
    align-content: center;
    align-items: center;
    margin-bottom: 4px;
    font-weight: 800;
    margin-top: 10px;
}

form#contact-form label.error {
    color: #e85c41;
    top: 4px;
    left: 2px;
    position: relative;
}

form#contact-form #ajax-error {
    padding-bottom: 20px;
    display: none;
}

form#contact-form .asterisk {
    color: #e85c41;
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px;
}

form#contact-form .indicates-required {
    text-align: right;
    font-size: 12px;
}

form#contact-form input#contact-submit,
form#contact-form button.button {
    background-color: #08355c;
    padding: 10px 50px;
    margin: 10px 0 18px;
    border-radius: 5px;
    border: 1px solid #08355c;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    cursor: pointer;
    min-width: 250px;
}

form#contact-form input#contact-submit:hover {
    background-color: #fff !important;
    border: 1px solid #08355c !important;
    color: #08355c !important;
}

form#contact-form .checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

form#contact-form .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

form#contact-form .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

form#contact-form .checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

form#contact-form .checkbox input:checked ~ .checkmark {
    background-color: #08355c;
}

form#contact-form .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

form#contact-form .checkbox input:checked ~ .checkmark:after {
    display: block;
}

form#contact-form .checkbox .checkmark:after {
    left: 8px;
    top: 5px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

form#contact-form .gras {
    font-weight: 800;
    color: #08355c;
}