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

.autoComplete_wrapper > input {
  height: 2.0rem;
  width: 320px;
  /* width: 100%; */
  margin: 0;
  /* padding: 0 2rem 0 2.2rem; */
  padding: 0 2rem 0 1rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 1rem;
  text-overflow: ellipsis;
  /* color: rgba(100, 100, 100, 0.3); */
  color: rgba(20, 20, 20, 1);
  outline: none;
  /* border-radius: 10rem; */
  /* border: 0rem solid rgba(255, 122, 122, 0.5); */
  border: 0rem solid #707070;
  background-image: url(./images/search.svg);
  background-size: 1.4rem;
  /* background-position: right 0.05rem top 0.8rem; */
  background-position: right .8rem top 0.4rem;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-color: #fff;
  transition: all 0.4s ease;
  -webkit-transition: all -webkit-transform 0.4s ease;

  border: 2px solid #707070;
  border-radius: 7px;
  /* font-family: "Barlow Condensed"; */
  font-weight:500;
}

.autoComplete_wrapper > input::placeholder {
  /* color: rgba(150, 150, 150, 0.5); */
  color: #BFB3B3;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper > input:hover::placeholder {
  color: rgba(70, 70, 70, 0.6);
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper > input:focus::placeholder {
  padding: 0.1rem 0.6rem;
  /* font-size: 0.95rem; */
  color: rgba(156, 156, 156, 0.4);
}

.autoComplete_wrapper > input:focus::selection {
  background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper > input::selection {
  background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper > input:hover {
  /* color: rgba(182, 182, 182, 0.8); */
  color: rgba(20, 20, 20, 1);
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper > input:focus {
  color: rgb(61, 61, 61);
  /* border: 0.0rem solid rgba(255, 122, 122, 0.8);
  #707070; */
}

.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 226px;
  overflow-y: hidden;
  box-sizing: border-box;
  left: 2px;
  right: 0;
  /* margin: 0.5rem 0 0 0; */
  /* margin: 0rem 0 0 0; */
  margin: -5px -20px 0px -2px;
  padding: 0;
  z-index: 1;
  list-style: none;
  border-radius: 0.6rem;
  border-radius: 0 0 0.6rem 0.6rem;
  background-color: #fff;
  border: 2px solid rgba(33, 33, 33, 0.7);
  box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
  outline: none;
  transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -webkit-transition: opacity 0.15s ease-in-out;
  /* width: 20vw; */
  /* width: 100%; 
  max-width: 402px;
  width: 100%;
  max-width: 400px; */
  width: 100%;
  border-top: 0;
}

.autoComplete_wrapper > ul[hidden],
.autoComplete_wrapper > ul:empty {
  display: block;
  opacity: 0;
  transform: scale(0);
}

.autoComplete_wrapper > ul > li {
  margin: 0.3rem;
  padding: 0.3rem 0.5rem;
  text-align: left;
  font-size: 1rem;
  color: #212121;
  border-radius: 0.35rem;
  background-color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

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

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(255, 122, 122, 0.15);
}

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

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