/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;

  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: black !important;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: rgb(255 90 31 / var(--tw-text-opacity)) !important;
 
}

.selected{
  background-color: rgb(255 90 31 / var(--tw-text-opacity)) !important;
}

.lazyload {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lazyload.loaded {
  opacity: 1;
}