<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.autoComplete_input_wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.autoComplete_input {
    position: relative;
    width: 100%;
}

#autoComplete_list {
    position: absolute;
    z-index: 1000;
    padding: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

.autoComplete_result, .no_result {
    padding: 5px 15px;
    border: 1px solid #000;
    list-style: none;
    text-align: left;
    background-color: #fff;
    font-size: 0.8rem;
}

#autoComplete_list .autoComplete_result:before {
    display: none;
}

.no_result {
    background: rgba(255,0,0,0.3);
    color: rgb(255,0,0);
}

.autoComplete_result:hover, .autoComplete_result:focus, .autoComplete_selected {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    cursor:pointer;
}

.autoComplete_highlighted {
    opacity: 1;
    font-weight: bold;
}

#autoCompleteLoader {
    position: absolute;
    top: calc(50% - 12px);
    right: 10px;
}

@media only screen and (max-width: 600px) {

    .autoComplete_input {
        width: 5rem;
    }

    .autoComplete_input:focus {
        width: 11rem;
        background-size: 1.6rem;
        background-position: left 1.1rem top 0.75rem;
      }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .autoComplete_input {
        border-width: 1px;
    }

    .autoComplete_input:hover {
        border-width: 1px;
    }

    .autoComplete_input:focus {
        border-width: 1px;
    }
}

@-moz-document url-prefix() {
    .autoComplete_input {
        border-width: 1px;
        background-size: 1.2rem;
        background-origin: border-box;
        background-position: center;
    }

    .autoComplete_input:hover {
        border-width: 1px;
    }

    .autoComplete_input:focus {
        border-width: 1px;
        background-position: left 1.1rem top 0.8rem;
    }
}

/*
Autocomplete fixes
Have to add this rule so that autocomplete dropdown is visible
 */
.property-search-form {
    overflow-y: visible !important;
}

.search-address-wrapper #autoComplete_list {
    top: 100%;
    width: 100%;
    right: initial;
}

.search-address-wrapper #autoComplete_list li {
    margin-left:0;
}

.autocomplete-wrapper {
    position: relative;
    width: 100%;
}
</pre></body></html>