.request-form label {
    clear: none;
    display: block;
    font-family: 'Archivo Narrow', arial, sans-serif;
    font-size: 1.1em;
    float: left;
    padding: 0 0 5px 0;
    margin: 0;
    text-align: left;
    width: 49%;
}
.request-form label.three-quarter-width {
    width: 75%;
}
.request-form label.fullwidth,
.request-form label.fullwidth input,
.request-form label.fullwidth select,
.request-form label.fullwidth textarea {
    width: 100%;
    max-width: unset;
}
/* smarty html_options{} automatically adds "class="field option" */
/* to each option. This clashes with our existing .option class */
/* so need this when using html_options{} or you get bold option text */
option.option {
    font-weight: normal;
}
/* I %$^$# hate this. it's space for validation error messages */
/* that keeps the fields aligned. Othewrwise, chaos. */
#document-form label {
    min-height: 100px;
}
@media only screen and (max-width: 767px) {
    .request-form label {
        width: 100% !important;
    }
}