body {
  background: #c0c0c0;
  margin: 0;
}

.flights {
  display: flex;
  max-width: 1000px;
  flex-direction: column;
  margin: 0 auto;
}
.flights .flight {
  background: #fff;
  display: flex;
  margin: 10px 0;
  min-height: 200px;
}
.flights .flight .sort,
.flights .flight .search,
.flights .flight .date {
  display: none;
}

.flights .flight .image {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  flex-grow: 1;
  flex-basis: 33.3%;
}

.flights .flight .info {
  background: #fff;
  flex-grow: 1;
  flex-basis: 66.6%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flights .flight .info span {
  
}

.flights .flight.search-hidden,
.flights .flight.date-hidden {
  display: none;
}

#filter-wrapper {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 20px;
}
#pagination-container {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 50px;
}
#searchDateRange {
  margin: 0 30px;
}

#filter-wrapper input,
#filter-wrapper button {
  font-size: 18px;
  line-height: 30px;
  padding: 5px 10px;
}