/* FICHIER DESIGN POUR LE SYSTEME DE SUGGESTION D'ADRESSES */
#suggestionsAdress {
    list-style-type: none;
    padding: 0;
    margin: 2% 0 2% 0;
    font-size: 0.8em;
    max-height: 20vh;
    overflow-y: auto;
    background: white;
}

#suggestionsAdress li {
    padding: 1.6% 3.2%;
    cursor: pointer;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    animation: animSuggest 0.3s ease-in-out;
}

#suggestionsAdress li:hover {
    background: #f0f0f0;
}

@keyframes animSuggest {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%;
    }
}
