predictive-search {
  &[open],
  &[loading] {
    .predictive-search {
      display: block;
    }
  }
  &:not([loading]) {
    .predictive-search__heading .spinner,
    .predictive-search__loading-state,
    .predictive-search-status__loading {
      display: none;
    }
  }
  &[loading] {
    .predictive-search__loading-state {
      display: flex;
      justify-content: center;
      padding: 16px;
    }
    .predictive-search__heading ~ .predictive-search__loading-state,
    .predictive-search__results-list:first-child {
      display: none;
    }
  }
  .predictive-search {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 3;
    background: white;
    border: 1px solid black;
    padding: 16px;
    #predictive-search-results {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .predictive-search__heading {
    }
    #predictive-search-results-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      list-style: none;
      .predictive-search__list-item {
        .predictive-search__item {
          display: flex;
          flex-direction: row;
          gap: 16px;
          align-items: center;
          .predictive-search__image {
            flex: 1 1 20%;
            width: auto;
            height: 100%;
            object-fit: contain;
            max-height: 75px;
            max-width: fit-content;
          }
          .predictive-search__item-heading {
            flex: 1 1 80%;
          }
        }
      }
    }
    svg {
      height: 12px;
      width: 12px;
    }
    .spinner {
      height: 12px;
      width: 12px;
      line-height: 0;
    }
  }
}
