.predictive-search {
  display: flex;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s,
    visibility 0.3s,
    height 0.3s;
  height: 0;

  &[open] {
    visibility: visible;
    opacity: 1;
    height: fit-content;
  }

  .predictive-search__content {
    height: 100%;
    max-height: clamp(38.8rem, 27.604vw, 53rem);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;

    :is(ul) {
      list-style-type: none;
      display: flex;
      flex-direction: column;
      width: 100%;
      overflow-y: auto;
      padding: 0;
      margin: 0;
      gap: 1.4rem;

      &::-webkit-scrollbar {
        width: 0;
        height: 0;
      }

      &::-webkit-scrollbar-thumb {
        background: transparent;
      }

      &::-webkit-scrollbar-track {
        background: transparent;
      }
    }
  }
}
