#contact_container{
    position: relative;
}

#contact_align_left{
    text-align: left;
}

#contact_column_left{
    width: 50%;
    float: left;
    padding-right: 15px;
    box-sizing: border-box;
}

#contact_column_right{
    width: 50%;
    float: right;
    padding-left: 15px;
    box-sizing: border-box;
}

#contact_form{
    position: relative;
}

.contact_form_input_container{
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    background-color: white;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.form_label{
    font-family: "Verlag A", "Verlag B";
    font-size: 18px;
    line-height: 1.38em;
    font-weight: 300;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-top: 14px;
    color: black;
}

.error,
#contact_checkbox.error{
    background-color: #F3EA89;
}

textarea,
input:not([type='checkbox']) {
    color: black;
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
    height: 50px;
    font-family: "Verlag A", "Verlag B";
    background-color: transparent;
    width: 100%;
    border: none;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-appearance: none;
    position: relative;
}

textarea{
    height: 252px;
    padding-top: 13px;
    font-family: "Verlag A", "Verlag B";
    resize: none;
}

#contact_test{
    display: none;
}

#ghost_button_container{
    margin-top: 20px;
    position: relative;
    display: inline-block;
}

#ghost_button,
#try_again{
    padding: 12px 30px 12px 30px;
    border: solid 4px white;
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    letter-spacing: 0.17em;
    transition: 200ms;
    cursor: pointer;
    height: 50px;
    box-sizing: border-box;
}

#ghost_button:hover,
#try_again:hover{
    background-color: white;
    color: black;
}

#try_again{
    box-sizing: border-box;
}

#sending_message_background{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #D6C9C5;
    display: none;
}

#sending_message{
    padding: 12px 48px 12px 48px;
    border: solid 4px transparent;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 0.17em;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    cursor: default;
    color: black;
    display: none;
}

#sending_message_progress{
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: white;
}

.sending_fade{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.1;
    display: none;
}

#contact_form_response{
    width: 100%;
    display: none;
    text-align: center;
}

/* GDPR message */
#gdpr_message{
    font-size: 18px;
    line-height: 1.38em;
    margin-top: 25px;
}

#contact_checkbox_container{
    position: relative;
    height: 25px;
    width: 25px;
    float: left;
}

#contact_checkbox{
    height: 25px;
    width: 25px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: 300ms;
}

#gdpr_checkbox_container{
    margin-top: 15px;
    margin-bottom: 15px;
}

#contact_checkbox_tick{
    height: 100%;
    width: 100%;
    position: absolute;
    background: url('../images/contact_checkbox_tick.svg') no-repeat;
    background-size: contain;
    display: none;
}

#contact_confirm_text{
    font-size: 18px;
    line-height: 1.38em;
    font-weight: 400;
    float: right;
    width: calc(100% - 40px);
}

#gdpr_error{
    display: inline;
    color: #F3EA89;
    font-weight: 400;
    visibility: hidden;
    transition: 250ms;
    opacity: 0;
}

#gdpr_error.gdpr_error_on{
    visibility: visible;
    opacity: 1;
}

#gdpr_confirm{
    display: none;
}