/* PICKER (autocomplete) */
.autocomplete {
    height: 200px;
    width: 240px;
    overflow-y: scroll;
}

.autocomplete-item {
    cursor: pointer;
    padding: 8px;
}

.autocomplete-item:not(:last-child){
border-bottom: 1px solid lightgrey;
}

.autocomplete-item:hover {
background: lightgrey;
}

.autocomplete-item.highlight {
background: lightblue;
}