.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-content {
  position: absolute;
  border: 2px solid #AAAAAA;
  z-index: 99;
  margin-left:30px;
  margin-right:30px;
  max-height:800px;
  overflow:auto;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-group {
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  background-color: #EEEEEE; 
  border-bottom: 1px solid #d4d4d4; 
}

.autocomplete-items {
  display: block;
  padding: 5px;
  padding-left: 20px;
  cursor: pointer;
  color: #111111;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

.autocomplete-myImg {
  width: 40px;
  height: 50px;
  object-fit: none; /* Do not scale the image */
  object-position: center; /* Center the image within the element */
}

.autocomplete-items:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}

.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

.autocomplete-loading {
	padding-top:20px;
    background-color: #f8f9fa;
    background-size: 20px 20px;
    background-position:center;
    background-repeat: no-repeat;
	margin-right: 8px;
}