/*
Style dla KAutoComplete
*/

.autocomplete-container {
    position: relative;
    display: inline-block;
    width: 100%;
  }

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display:none;
}

.autocomplete-item {
    padding: 0.7em;
    cursor: pointer;
}

.autocomplete-item:hover {
    background-color: #e2e2e2;
}
