/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 2000;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-separator {
  background-color: #009933 !important;
  color: #fff !important;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  color: #4f4f4f;
  border-bottom: 1px solid #d4d4d4;
}

/* when hovering an item or an item is active/selected */
.autocomplete-items div:hover, .autocomplete-active {
  background-color: #f1f1f1 !important; 
  color: #66666;
}

/*when navigating through the items using the arrow keys:*/
/*
.autocomplete-active {
  background-color: #f1f1f1 !important;
  color: #666666; 
}
*/
