/* AUTOCOMPLETE */

.autocomplete{
  width: 100%;
  position: relative;
}

.autocomplete input{
  
  width: 100%;
  /*font-size: 1.2em;
  padding:0.4em;*/
}

.autocomplete ul{
  position: absolute;
  left: 0;
  width: 100%;
  padding-left:0px;
  border-left: 1px solid #e7e5e6;
  border-right: 1px solid #e7e5e6;
  border-bottom: 1px solid #e7e5e6;
  z-index: 1;
}

.autocomplete li{
  text-align: left;
  list-style:none;
  width: 100%;
  padding:0.4em;
  background-color: #e7e5e6;
  color:#868686;
  font-weight:bold;
  cursor:pointer;
}

.autocomplete li.active{
  width: 100%;
  background-color: #f7f6f4;
  color:#79a6dd;
}

.list-autocomplete {
  min-height: 137px;
  background-color: #E7E5E6;
}
/*
.autocomplete .highlight {
  background-color: #E2E2E2;
}

.autocomplete li.active .highlight {
  background: #666;
  color: #fff;
}*/