/*!
* Copyright © 2019 Angelo-Victor Brătianu. All rights reserved.
* http://www.imagesportal.com/BRATIANU
*
* Crafted with much love and care for every detail ;-D
*/
.autocomplete {
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  padding-top: 2px;
  position: absolute;
  /* border: 1px solid black; */
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: white;
  border-bottom: 1px solid black;
}
.autocomplete-items div:hover {
  background-color: #FEC569;
}
.autocomplete-active {
  background-color: #FEC569 !important;
}