#search-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

#fastSearch {
  position: relative;
  width: 100%;
}

#fastSearch input {
  width: 100%;
  padding: 6px 10px;
  font-size: 0.9em;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
}

#fastSearch input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

#fastSearch input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
}

#searchResults {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #333;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 100;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

#searchResults li {
  border-bottom: 1px solid #444;
}

#searchResults li:last-child {
  border-bottom: none;
}

#searchResults a {
  display: block;
  padding: 8px 10px;
  color: #ddd;
  text-decoration: none;
}

#searchResults a:hover,
#searchResults a:focus {
  background-color: #555;
  color: #fff;
  outline: none;
}

.search-title {
  font-size: 0.95em;
  font-weight: bold;
}
