.search-page {
  font-size: 16px;
}

.search-page input[type="search"] {
  font-size: inherit;
}

.search-page--no-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Merriweather', serif;
  font-size: 25px;
  padding: 56px 0;
}

.search-page-container {
  width: 100%;
  height: 100%;
  display: block;
}

.search-bar {
  font-family: 'Fira Sans', sans-serif;
  font-size: 17px;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 50px;
  white-space: nowrap;
  display: inline-block;
  padding: 0.5em;
  background-color: white;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.search-bar .search-bar__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: inherit;
}

.search-bar .search-bar__input {
  font-family: 'Fira Sans', sans-serif;
  font-size: 17px;
  background-color: #f3f3f3;
  border-radius: 10px;
  -webkit-box-flex: 11;
      -ms-flex: 11;
          flex: 11;
  border: none;
}

.search-bar .search-bar__button {
  fill: #9DA0A4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: none;
  border: none;
  font-size: 1em;
  color: blue;
  text-align: left;
}

