/**
 * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
 */

.searchIcon {
  position: absolute;
  top: .5rem;
  left: .65rem;
  pointer-events: none;
}
.searchInput {
  cursor: text;
  display: inline-block;
  font-size: .9rem;
  height: 2rem;
  padding: 0 .5rem 0 2.25rem;
  width: 12.5rem;
  appearance: none;
  background-color: var(--ifm-navbar-search-input-background-color);
  color: var(--ifm-navbar-search-input-color);
  border: none;
  border-radius: 2rem;
}
.loading {
  background: #373940;
  color: #f1f1f1;
  padding: 0 .5rem;
}
.resultList {
  background: #f1f1f1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.resultItemTitle {
  background: #373940;
  color: #f1f1f1;
  padding-left: .5rem;
}
.resultItemSummary {
  font-size: 0.8em;
  color: #373940;
  padding: .2rem .5rem;
}
.dropdown {
  position: absolute;
  right: 0;
  top: 3.2rem;
  max-width: min(500px, 80vw);
  max-height: 75vh;
  overflow: auto;
  overscroll-behavior: contain;
  width: max-content;
  border: solid 1px #373940;
}
.tail {
  position: absolute;
  width: 0;
  height: 0;
  border-left: .8rem solid transparent;
  border-right: .8rem solid transparent;
  border-bottom: .8rem solid #373940;
  right: 2rem;
  bottom: -1.2rem;
}
