/* AUTOCOMPLETE */

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

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

.autocomplete ul{
  position: absolute;
  left: 0;
  width: 95%;
/* alternatyvus variantas
  position: relative;
  width: 174px;
  heigth: 60px;
  overflow: scroll;*/
  border-left: 1px solid #888;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  z-index: 1000 !important;
  font-size: 10pt;
}

.autocomplete li{
  text-align: left;
  list-style:none;
  width: 100%;
  padding:0.4em;
  background-color: #fff;
  z-index: 1000 !important;

}

.autocomplete li.active{
  width: 100%;
  background-color: #4bf;
  z-index: 1000 !important;

}

.autocomplete .highlight {
  background-color: #E2E2E2;
  z-index: 1000 !important;

}

.autocomplete li.active .highlight {
  background: #666;
  color: #fff;
  z-index: 1000 !important;

}
