#views-exposed-form-department-directory-search-form {
    display: flex;
    align-items: top;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#views-exposed-form-department-directory-search-form input[type='submit'] {
    border: solid 0.125rem #006633;
    padding: 0.5rem;
    min-width: 8rem;
    background-color: #006633;
    color: white;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
    margin-top: 1.5rem;
    height: 2.5rem;
}

#views-exposed-form-department-directory-search-form .form-actions {
    margin-left: auto;
}

#views-exposed-form-department-directory-search-form .form-item-field-department-directory-id {
    margin-left: auto;
}

#views-exposed-form-department-directory-search-form input[type='submit']:hover {
    background-color: white;
    color: #006633;
}

#views-exposed-form-department-directory-search-form input[type='text'],
#views-exposed-form-department-directory-search-form select {
    height: 2.5rem;
    border: solid 1px rgba(0, 0, 0, 0.125);
}

#views-exposed-form-department-directory-search-form label {
    color: #333;
    height: 1.5rem;
    display: block;
    font-family: Muli;
    font-weight: bold;
    text-transform: uppercase
}

#views-exposed-form-department-directory-search-form .description {
    color: #333;
    font-size: smaller;
    height: 1.5rem;
    display: block;
    font-weight: lighter;
}



@media screen and (max-width: 47.9375rem) {
    #views-exposed-form-department-directory-search-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #views-exposed-form-department-directory-search-form .form-actions {
        margin-left: unset;
    }

}