div#searchSuggestions {
  font-size: 1em;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  width: 100%;
}
div#searchSuggestions input#searchField {
  /*min-width: 300px;*/
  /*border: 1px solid #999;*/
  /*border-radius: 4px;*/
  padding: 0.5em;
  font-size: inherit;
  color: #333;
  outline: none;
}
div#searchSuggestions button#searchSubmit {
  /*border: 1px solid #999;*/
  /*border-radius: 4px;*/
  padding: 0.5em;
  font-size: inherit;
  color: #666;
  font-weight: bold;
  cursor: pointer;
}
div#searchSuggestions i#loading-dots-icon {
  display: none;
  position: relative;
  top: 0.75em;
  left: -5em;
}
div#searchSuggestions i#loading-dots-icon.active {
  display: inline;
  z-index: 6000;
}
div#searchSuggestions i#loading-dots-icon .loading-dots {
  display: inline-block;
  position: absolute;
  width: 2.6em;
  height: 0.75em;
}
div#searchSuggestions i#loading-dots-icon .loading-dots span {
  position: absolute;
  top: 0em;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div#searchSuggestions i#loading-dots-icon .loading-dots span:nth-child(1) {
  left: 0em;
  animation: loading-dots1 0.6s infinite;
}
div#searchSuggestions i#loading-dots-icon .loading-dots span:nth-child(2) {
  left: 0em;
  animation: loading-dots2 0.6s infinite;
}
div#searchSuggestions i#loading-dots-icon .loading-dots span:nth-child(3) {
  left: 0.9em;
  animation: loading-dots2 0.6s infinite;
}
div#searchSuggestions i#loading-dots-icon .loading-dots span:nth-child(4) {
  left: 1.8em;
  animation: loading-dots3 0.6s infinite;
}
@keyframes loading-dots1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading-dots3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loading-dots2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0.9em, 0);
  }
}
div#searchSuggestions div#suggestionsList {
  position: absolute;
  display: inline-flex;
  border: 1px solid #999;
  border-radius: 0.25em;
  cursor: pointer;
  background-color: #fff;
  z-index: 999;
  margin-top: 0.25em;
}
div#searchSuggestions div#suggestionsList ul {
  margin: 0;
  padding: 0;
}
div#searchSuggestions div#suggestionsList ul li {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
div#searchSuggestions div#suggestionsList ul li a.item {
  width: 100%;
  padding: 0.5em 1.5em;
}
div#searchSuggestions div#suggestionsList ul li a.item:hover {
  background-color: #eee;
}
div#searchSuggestions div#suggestionsList ul li a.item:focus {
  background-color: #eee;
  outline: none;
}

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