/* awesomplete-minimal.css */
.awesomplete {
  @apply w-full;
}

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.awesomplete {
  display: inline-block;
  position: relative;
}

.awesomplete>input {
  display: block;
}

.awesomplete [hidden],
.awesomplete>ul:empty {
  @apply invisible block scale-0 opacity-0;
  @apply ease-in delay-75;
}

.awesomplete>ul {
  @apply absolute z-10 w-full mt-1 overflow-y-auto bg-white border border-gray-300 rounded-lg shadow-xs max-h-60;
  @apply transition-all duration-200 ease-out;
  @apply origin-top-left;
}
