.autoComplete_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;;
}

.autoComplete_wrapper > input::placeholder {
  color: rgba(123, 123, 123, 0.5);
  transition: all 0.3s ease;
}

.autoComplete_wrapper > ul {
  position: absolute;
  z-index: 9999 !important;
  max-height: 145px;
  overflow-y: scroll;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0.5rem 0 0 0;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid rgba(33, 33, 33, 0.1);
  outline: none;
  box-shadow: 0px 0px 10px rgb(155, 155, 155) ;
}

/* width */
.autoComplete_wrapper > ul::-webkit-scrollbar {
  border-radius: 4px;
  width: 10px;
}

/* Track */
.autoComplete_wrapper > ul::-webkit-scrollbar-track {
  background: #fff;
  padding: 4px;
}

/* Handle */
.autoComplete_wrapper > ul::-webkit-scrollbar-thumb {
  background: rgb(177, 210, 253);
  border-radius: 4px;
 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(149, 147, 161);
}


.autoComplete_wrapper > ul > li {
  padding: 5px 10px;
  list-style: none;
  text-align: left;
  font-size: 14px;
  color: #212121;
  transition: all 0.1s ease-in-out;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.autoComplete_wrapper > ul > li::selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(123, 123, 123, 0.1);
}

.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: rgb(124, 101, 250);
  font-weight: bold;
}

.autoComplete_wrapper > ul > li mark::selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper > ul > li[aria-selected="true"] {
  background-color: rgba(123, 123, 123, 0.1);
}

@media only screen and (max-width: 600px) {
  .autoComplete_wrapper > input {
    width: 18rem;
  }
}
