.search {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-input,
.search-select {
    flex-basis: calc(26% - 40px);
    margin: 0 20px;
    align-self: center;
}

.search-input input,
.search-select select {
    margin-top: 10px;
}

.search-input label,
.search-select label {
    font-weight: bold;
}

.search-button {
    flex-basis: calc(12% - 40px);
    margin: 0 20px;
    justify-content: flex-end;
    align-self: center;
}

.search-button a {
    background-color: #02890D;
    padding: 10px 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;

}

.search-button a:hover {
    background-color: #02A10D;
}

@media (max-width: 48em) {
    .search-input,
    .search-select,
    .search-button {
        flex-basis: calc(50% - 40px);
        margin-bottom: 10px;
        text-align: center;
    }
}