.search-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-grid__label {
  display: -ms-grid;
  display: grid;
  width: 70vw;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 0px;
  color: white;
}

.search-grid__label span {
  padding-left: 10px;
  width: 10vw;
}

.search-grid__label span:first-child {
  padding-left: 0px;
}

.search-grid__main {
  display: -ms-grid;
  display: grid;
  width: 70vw;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 0px;
  margin-top: 5px;
}

.search-grid__main__input {
  height: 50px;
  width: 10vw;
  padding: 5px 20px;
}

.search-grid__main__input:first-child {
  border-radius: 10px 0px 0px 10px;
}

.search-grid__main .search-button {
  cursor: pointer;
  border-radius: 0px 10px 10px 0px;
  font-size: .9rem;
  font-weight: 600;
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(#8598a0), color-stop(25%, #d69f9f), to(#ccbb77));
  background: linear-gradient(to right, #8598a0 0%, #d69f9f 25%, #ccbb77 100%);
}
/*# sourceMappingURL=search-grid.css.map */