/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 *
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License:
 */

.easy-autocomplete {
  /* Theme Square */
  /* Round */
  /* Funky */
  /* Solid */
  /* Plate */
}
.easy-autocomplete.eac-square {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.easy-autocomplete.eac-square input {
  border: 1px solid #7f8c8d;
  border-radius: 2px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  font-weight: bold;
  margin: 0;
  width: 340px;
  padding: 5px 5px;

}
.easy-autocomplete.eac-square ul {

  box-shadow: none;
  /*position: absolute;*/
  /*top: 34px;*/
  position: absolute;
  border: 1px solid red;
  width: 340px;
  z-index: 10000;
  border-top: 0;
  background: #fff;
  padding: 0px;
  max-height: 300px;
  display: none;
  overflow:hidden; overflow-y:scroll;

  /*top: 0;*/
}
.easy-autocomplete.eac-square ul li, .easy-autocomplete.eac-square ul .eac-category {
  border-color: red;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  padding: 4px 4px;
  /*transition: all 0.4s ease 0s;*/
  cursor: pointer;
  display: block;
  width: 100%;
  margin: 0px;
  /*background: red;*/
}
.easy-autocomplete.eac-square ul li *, .easy-autocomplete.eac-square ul .eac-category * {
  font-weight: 300;
}
.easy-autocomplete.eac-square ul li.selected, .easy-autocomplete.eac-square ul .eac-category.selected {
  background-color: red;
  color: #fff;
  font-weight: 300;
}
.easy-autocomplete.eac-square ul li b, .easy-autocomplete.eac-square ul .eac-category b {
  font-weight: 600;
}
