.search {
  display: flex;
  align-items: center;
  padding-block: 0.625rem;
  border: 1px solid #D9D9D9;
  padding-left: 1rem;
  padding-right: 1.25rem;
  border-radius: 5px;
  position: relative;
}
.search button {
  background-color: transparent;
}
.search input {
  border: none;
  width: 10rem;
  outline: none;
}
.search-mobile {
  display: none;
}
.search:focus-within .results {
  display: flex !important;
}

.results {
  position: absolute;
  display: none;
  flex-direction: column;
  top: 41px;
  background-color: #fff;
  width: 150%;
  left: 0;
  padding: 1rem;
  max-height: 50vh;
  overflow-y: scroll;
  z-index: 10;
}
.results .title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.results .title:not(:first-child) {
  margin-top: 1rem;
}
.results-open {
  display: flex !important;
}

.search-link {
  font-size: 14px;
  padding-block: 0.7rem;
  width: 100%;
  display: block;
}

hr {
  height: 0.5px;
  color: lightgrey;
}

@media (max-width: 640px) {
  .search {
    width: 100%;
    margin-bottom: 2rem;
  }
  .search input {
    width: 100%;
  }
  .search-mobile {
    display: flex;
  }
  .results {
    max-width: 100%;
  }
}

/*# sourceMappingURL=search.css.map */
