/* jQuery Autocompleter */

.autocomplete {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}

.autocomplete ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.autocomplete li {
  padding: 6px 10px;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f2;
}

.autocomplete li:last-child {
  border-bottom: none;
}

.autocomplete li:hover,
.autocomplete li.selected {
  background-color: #f5f5f5;
}

.autocomplete strong {
  font-weight: bold;
  color: #d9534f; /* rojo estilo bootstrap */
}
