
/*the container must be positioned relative:*/
.geocoding-autocomplete {
    position: relative;
    display: inline-block;
}

.geocoding-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:*/
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0px 1px 3px #eee;
    border-radius: 3px;
}

.geocoding-autocomplete-item{
    padding: 5px;
    cursor: pointer;
    border-bottom: 1px solid #d4d4d4;
    font-weight: normal;
    background-color: #ffffef;
}

.geocoding-autocomplete-item:first-child {
    border-top: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.geocoding-autocomplete-item:hover {
    background-color: #e9e9e9;
}

.geocoding-autocomplete-item-label{
}

.geocoding-autocomplete-item-subdivision{
    color:grey;
}

/*when navigating through the items using the arrow keys:*/
.geocoding-autocomplete-active {
    background-color: #487FB7 !important;
    color: #ffffff;
}