.form_field,
.form_field--wide,
.form_select {
    position: relative;
    box-sizing: border-box;
    display: block
}

textarea {resize: vertical}

.form form {display: block; position: relative}

.form_title { position: relative; text-align: center}

.form_field { width: 50%;float: left; padding: 0 20px 10px;z-index: 9999}

.pd-checkbox,
.authority,
.timeframe { width: 100%; float: left;padding: 0 20px 10px;z-index: 9999}

.pd-checkbox {padding: 20px 40px !important;}

.form_field--center { text-align: center; position: relative; clear: both;}

.form_label, label { color: #94999e; font-size: .9em;line-height: 1.5em}

.form_select, select {outline: 0; font-size: 15px; color: #71787e}

.form_input,
input[type=text],
input[type=email],
input[type=file],
input[type=number],
input[type=search],
input[type=tel],
input[type=url],
textarea {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    outline: 0;
    border: 1px solid #eaebeb;
    padding: 5px 10px;
    font-size: 15px;
    line-height: 24px;
    color: #71787e;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
}

select {
    width: 110%;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: #fff;
}

.form_select {
    width: 100%;
    border: 1px solid #eaebeb;
    padding: 0 10px;
    line-height: 34px;
    background-color: #fff;
}

.form_select:after {
    content: "›";
    display: block;
    position: absolute;
    top: 1px;
    right: 10px;
    font-size: 1.2em;
    font-weight: 700;
    transform: rotatez(90deg);
    pointer-events: none
}

.form_checkbox,
input[type=checkbox] {
    pointer-events: none;
    position: absolute;
    left: -99999px;
    background-color: #fff;
}

input[type=checkbox] label {
    display: block;
    position: relative;
    padding-left: 30px;
    color: #71787e;
    font-size: .9em;
    line-height: 1.8em
}

input[type=checkbox] label:before {
    content: "        ";
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid #dedece;
    top: 5px;
    left: -20px;
    background-color: #fff;
}

input[type=checkbox]:checked label:after {
    content: "\2713";
    display: block;
    position: absolute;
    top: -1px;
    left: -20px;
    font-size: 1.5em;
    font-weight: 700;
    color: #babe13;
}

.form_button,
input[type=button],
input[type=submit] {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: .05em;
    font-weight: 700;
    position: relative;
    padding: 15px 40px 15px 40px;
    /*border-radius: 0 0 30px;*/
    cursor: pointer;
    margin: 1.5em 0;
    border: none;
    background-color: #babe13;
    color: #fff;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.form_footer, label.error {font-size: .6em; position: relative !important}

.form_button:hover,
input[type=button]:hover,
input[type=submit]:hover {
    background-color: #424b53;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.form_footer { text-align: center; line-height: 1.8em; opacity: .4; margin: 1em 0 -1em}

label.error {
    color: #fff;
    line-height: 1.5em;
    background-color: red;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-block;
    top: -1px;
    padding-left: 0px;
    margin-right: 10px;
}

@media screen and (max-width:667px) {
    .form {
        box-sizing: border-box;
        position: absolute;
        width: auto;
        top: 0;
        left: auto;
        padding: 40px 20px;
        margin: 0 20px;
        font-size: 1.1em
    }
    .form_field {
        width: 100%;
        padding: 0 0 20px
    }
}