

.autocomplete {
  position: absolute;
  /* display: inline-block; */
  top:8px;
  left:8px;
  z-index: 99;
  width:190px;
  margin-bottom:6px;
  background-color: #fff;
  padding: 5px;
  padding-top:0px;
  padding-bottom: 10px;

  border-style: dashed;
  border-width: 6px;
  border-color: #ffc146;
}
input[type=submit] {
  cursor: pointer;
}
.autocomplete-items {
  position: relative;
  display: inline;
  z-index: 99;
}
 
.autocomplete-items div {
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.autocomplete-active {
  background-color: rgb(118, 178, 238) !important;
  color: #ffffff;
}