.suggestive-search-popover {
  position: absolute;
  top: calc(min(-50vh, -404px));
  left: 0;
  width: 100%;
  height: 50vh;
  min-height: 404px;
  -webkit-transition: top 0.5s ease, opacity 0.5s ease;
  -o-transition: top 0.5s ease, opacity 0.5s ease;
  transition: top 0.5s ease, opacity 0.5s ease;
  background: #343a40;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}

.suggestive-search-popover.open {
  top: 0;
  opacity: 1;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.suggestive-search-popover:focus-within {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

#suggestive-search {
  position: relative;
  top: 50%;
}

.suggestive-search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.suggestive-search-suggestions-container {
  background: #fff;
  padding: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  border-left: solid 3px #0127e3;
}

.search-suggester-label {
  font-weight: 600;
  font-size: 1.5rem;
  display: block;
}

.search-suggester-input {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  padding: 10px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  font-size: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #212529;
}

.search-suggester-input:focus {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.suggestive-search-suggestions-list-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

.suggestive-search-suggestions-list-li {
  display: block;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.suggestive-search-suggestions-list-link {
  padding: 1.5rem 2rem;
  color: #212529;
  display: block;
  position: relative;
}

.suggestive-search-suggestions-list-link p,
.suggestive-search-suggestions-list-link h5 {
  padding-right: 1rem;
}

.suggestive-search-suggestions-list-link:focus {
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.suggestive-search-suggestions-list-link:hover {
  text-decoration: none;
}

.suggestive-search-suggestions-list {
  padding: 0;
}

.suggestive-search-suggestions-list > :last-child {
  border-bottom: 0;
}

.header-white .suggestive-search-popover,
.header-primary .suggestive-search-popover {
  background: #fff;
}
