﻿
#possibleAddresses div:hover {
    background-color: rgba(202, 202, 202, 0.6);
}

#possibleAddresses div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer !important;
}


.typeahead_suggestions {
    border: 1px solid #888888;
    background-color: white;
    position: absolute;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(-1px);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 2;
}

    .typeahead_suggestions > * {
        display: block;
        padding: 3px;
        color: rgb(130, 130, 130);
    }

    .typeahead_suggestions a span {
        font-weight: bold;
        color: black;
    }

    .typeahead_suggestions a:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .typeahead_suggestions a.selected {
        background-color: rgba(0, 0, 0, 0.15);
    }
