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

.input-group > .autoComplete_wrapper {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 420px;
  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 rgb(33 33 3 / 0.1);
  z-index: 1000;
  outline: none;
}

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

.autoComplete_wrapper > ul > li::selection {
  color: rgb(255 255 255 / 0);
  background-color: rgb(255 255 255 / 0);
}

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

.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: rgb(255 122 122 / 1);
  font-weight: bold;
}

.autoComplete_wrapper > ul > li mark::selection {
  color: rgb(255 255 255 / 0);
  background-color: rgb(255 255 255 / 0);
}

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

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