.searchAddressWrapper{
    width: 100%;
}

.searchAddressWrapper > ul {
    max-height: 226px;
    overflow-y: scroll;
    left: 0;
    right: 0;
    margin: 0.5rem 0 0 0;
    padding: 0;
    list-style: none;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid rgba(33, 33, 33, 0.07);
    box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
    outline: none;
    transition: opacity 0.15s ease-in-out;
    -moz-transition: opacity 0.15s ease-in-out;
    -webkit-transition: opacity 0.15s ease-in-out;
}

.searchAddressWrapper > ul[hidden],
.searchAddressWrapper > ul:empty {
    display: block;
    opacity: 0;
    transform: scale(0);
}

.searchAddressWrapper > ul > li {
    margin: 0.3rem;
    padding: 0.3rem 0.5rem;
    text-align: left;
    font-size: 1rem;
    color: #212121;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
}

.searchAddressWrapper > ul > li mark {
    background-color: transparent;
    color: #000;
    font-weight: bold;
}

.searchAddressWrapper > ul > li:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.15);
}

.searchAddressWrapper > ul > li[aria-selected="true"] {
    background-color: rgba(0, 0, 0, 0.15);
}