#contact_form {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}
#contact_form table {
    width: 100%;
    table-layout: fixed;
    vertical-align: middle;
}
#contact_form table th {
    font-size: 12px;
    color: #01539D;
    text-transform: uppercase;
    font-weight: 400;
    padding-top: 10px;
}
#contact_form table td {
    vertical-align: middle;
    padding: 5px 0;
}
input[type=text], input[type=date], input[type=time] {
    border: 1px solid #01539D;
    padding: 10px;
    border-radius: 0;
    width: 90%;
    box-sizing: border-box;
    max-width: 300px;
    font-family: 'Palanquin';
}
#contact_form .btn {
    margin-top: 0;
}
@media only screen and (max-width: 1000px) {
    #contact_form {
        width: 100%;
        display: block;
        position: static;
        margin-top: 40px;
        min-height: auto;
        height: auto;
    }
}
p.hide {
	display: none;
}