/* AUTOCOMPLETE */

.autocomplete{
  width: 100%;
  position: relative;
}

.autocomplete > span {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.autocomplete input{
  /*font-size: 1.2em;
  width: 100%;
  padding:0.4em;*/

  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.autocomplete ul{
  position: absolute;
  left: 0;
  width: 100%;
  border-left: 1px solid #888;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  z-index: 10;
  padding-left: 0 !important;
}

.autocomplete li{
  text-align: left;
  list-style:none;
  width: 100%;
  padding:0.4em;
  background-color: #fff;
}

.autocomplete li.active{
  width: 100%;
  background-color: #4bf;
}

.autocomplete .highlight {
  background-color: #E2E2E2;
}

.autocomplete li.active .highlight {
  background: #666;
  color: #fff;
}
