/* AUTOCOMPLETE */

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

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

.autocomplete ul{
  position: absolute;
  left: 0;
  top:100%;
  width: 100%;
  max-width:760px;
  border:solid 1px #f6f6f6;
  z-index: 20;
  text-indent:0px; 
  padding:0px;
  margin:0px;
  background-color:#fff;
  box-shadow:0px 2px 10px -2px rgba(0,0,0,0.25);
}

.autocomplete li{
  text-align: left;
  list-style:none;
  width: 100%;
  padding:10px;
  box-sizing:border-box;
  margin:0px;
  background-color: #fff;
  cursor:pointer;
}

.autocomplete li.active{
  width: 100%;
  background-color:#f6f6f6;
  color:#ed1a21;
}

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

.autocomplete li.active .highlight {
  /*background: #fff;*/
  /*color: #ccc;*/
}
