.typeahead-input {
  display: flex;
  flex: 1;

  &__spinner {
    position: absolute;
    top: 50%;
    transform: translate(-1.5em, -40%);

    .spinner {
      stroke: palette(blue, x-dark);
    }
  }

  &__tether {
    z-index: $zIndex-10;
  }

  // &__input {
  //   background-color: lighten(palette(blue, xx-dark), 7%) !important;
  //   border: none !important;
  // }

  &__items {
    list-style: none;
    padding: 0.875em 1em;
    margin: 0;
    background-color: lighten(palette(blue, xx-dark), 3%);
  }

  &__item {
    display: flex;
    color: palette(gray, light);
    flex: 1;
    font-size: font-size(body, small);
    padding: 0.5em 1em;
    text-decoration: none;

    &:hover, &:active, &:focus {
      background-color: palette(blue, xx-dark);
      color: palette(gray, light);
    }
  }
}
