#autoComplete_wrapper {
  position: relative;
  display: inline-block;
}

#autoComplete {
  position: relative;
  padding: 24px 2rem 24px 3.5rem;
  color: #76838f;
  height: 3rem;
  width: 100%;
  background-position: left 1.05rem top 0.7rem;

  font-size: 1.2rem;
  outline: none;
  border-radius: 3px;
  border: 0.05rem solid #e4eaec;
  caret-color: #76838f;
  color: #76838f;
  background-image: url(./images/magnifier.svg);
  background-repeat: no-repeat;
  background-origin: border-box;
  background-size: 1.7rem;
  background-position: left 1.05rem top 50%;
  text-overflow: ellipsis;
}


#autoComplete::selection {
  color: transparent;
}

#autoComplete:focus::selection {
  color: #fff;
  background-color: #76838f;
}

#autoComplete:hover {
  color: #76838f;
  height: 3rem;
  width: 100%;
}


#autoComplete_list {
  position: absolute;
  z-index: 1000;
  padding: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  transition: all 0.1s ease-in-out;
  -webkit-transition: all -webkit-transform 0.1s ease;
}

.autoComplete_result {
  margin: 0.15rem 2rem;
  padding: 0.6rem;
  /* max-width: 280px; */
  border: 0.05rem solid #e3e3e3;
  list-style: none;
  text-align: left;
  font-size: 1.1rem;
  /* color: rgb(123, 123, 123); */
  transition: all 0.1s ease-in-out;
  background-color: #fff;
}

.autoComplete_result::selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_result:last-child {
  border-radius: 0 0 1rem 1rem;
}

.autoComplete_result:hover {
  cursor: pointer;
  background-color: rgba(255, 248, 248, 0.9);
  border-left: 2px solid rgb(93, 208, 89, 1);
  border-right: 2px solid rgb(93, 208, 89, 1);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.autoComplete_result:focus {
  outline: none;
  background-color: rgba(255, 248, 248, 0.9);
  border-left: 2px solid rgb(93, 208, 89, 1);
  border-right: 2px solid rgb(93, 208, 89, 1);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.autoComplete_highlighted {
  opacity: 1;
  color: rgb(93, 208, 89, 1);
  font-weight: bold;
}

.autoComplete_highlighted::selection {
  color: rgba(#ffffff, 0);
  background-color: rgba(#ffffff, 0);
}

.autoComplete_selected {
  cursor: pointer;
  background-color: rgba(255, 248, 248, 0.9);
  border-left: 2px solid rgb(93, 208, 89, 1);
  border-right: 2px solid rgb(93, 208, 89, 1);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.no_result {
  margin: 0.15rem 2rem;
  padding: 0.6rem;
  /* max-width: 280px; */
  border: 0.05rem solid #e3e3e3;
  list-style: none;
  text-align: left;
  font-size: 1.1rem;
  /* color: rgb(123, 123, 123); */
  background-color: #fff;
}

.no_result:hover {
  cursor: default;
  background-color: #fff;
  border: 0.05rem solid #e3e3e3;
}

.no_result:focus {
  cursor: default;
  background-color: #fff;
  border: 0.05rem solid #e3e3e3;
}


.autocomplete_loader {
  margin: 0.15rem 2rem;
  padding: 0.6rem;
  /* max-width: 280px; */
  border: 0.05rem solid #e3e3e3;
  list-style: none;
  text-align: left;
  font-size: 1.1rem;
  /* color: rgb(123, 123, 123); */
  transition: all 0.1s ease-in-out;
  background-color: #fff;
}


/* @media only screen and (max-width: 600px) {
  #autoComplete {
    width: 5rem;
  }

  #autoComplete:focus {
    width: 11rem;
    background-size: 1.6rem;
    background-position: left 1.1rem top 0.75rem;
  }

  .autoComplete_result:first-child {
    border-radius: 1rem 1rem 0 0;
  }

  .autoComplete_result:last-child {
    border-radius: 0 0 1rem 1rem;
  }

  .autoComplete_result:only-child {
    border-radius: 1rem;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #autoComplete {
    border-width: 1px;
  }

  #autoComplete:hover {
    border-width: 1px;
  }

  #autoComplete:focus {
    border-width: 1px;
  }
}

@-moz-document url-prefix() {
  #autoComplete {
    border-width: 1px;
    background-size: 1.2rem;
    background-origin: border-box;
    background-position: center;
  }

  #autoComplete:hover {
    border-width: 1px;
  }

  #autoComplete:focus {
    border-width: 1px;
    background-position: left 1.1rem top 0.8rem;
  }
} */
