/*================================================ Autocomplete CSS Start =================================================*/
.autocomplete-items {
  position: absolute;
  border: 1px solid #e8eff7;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 120px;
}

.autocomplete-items div {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #e8eff7;
}

.autocomplete-items div:hover {
  background-color: #e5e5e5;
}

.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/*================================================ Autocomplete CSS End =================================================*/