.cooRouteLocation {
    background: var(--template-bg-1-fill-color);
    -bg-text-color: var(--template-bg-1-text-color);
    padding: 0.5rem;
}

.cooRouteLocation form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

input.cooRouteLocationInput {
    margin: 0.5rem;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

input.cooRouteSubmit {
    --bg-color: var(--template-primary-fill-color);
    --bg-font-color: var(--template-primary-text-color);
    margin: 0.5rem;
}

@media only screen and (max-width: 600px) {
    .cooRouteLocation form {
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    input.cooRouteSubmit {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}