﻿.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    width: 80%;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-image: linear-gradient(#fff, #f8f8f8);
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-image: linear-gradient(#ddd, #d8d8d8);
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-image: linear-gradient(#5555dd, #4444ff) !important;
    color: #ffffff;
    font-weight: bold;
}