/*
.autocomplete_container {
        position: fixed;
        top: 50%;
        left: 50%;
        margin-left: -216px;
        margin-top: -25px;
    width: 435px;
    height: 50px;
}
*/

/*
input {
  outline: none;
  border-radius: 4px;
}

input:not([type=radio]):not([type=checkbox]) {
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
}
*/

.autocomplete_dropdown {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-top: 3px;
    overflow: hidden;
}

/*
.autocomplete_input {
        width: 100%;
    height: 100%;
    padding-left: .8rem;
    background: white;
    font-size: 1.2em;
    border: 1px solid #44c878;
    position: relative;
    box-sizing: border-box;
}
*/

#autoComplete_list {
margin: 0;
padding: 0;
}

.autoComplete_highlighted {
        opacity: 1;
    color: rgba(1,1,1,1);
    font-weight: 700;
}

.autoComplete_result {
    box-sizing: border-box;
    padding: .5rem .8rem;
    list-style: none;
    text-align: left;
    font-size: 1rem;
    color: #7b7b7b;
    background-color: #fff;
    cursor: pointer;
}

.autoComplete_no_result {
        box-sizing: border-box;
padding: .5rem .8rem;
    list-style: none;
    text-align: left;
    font-size: 0.8rem;
    color: #8A0101;
    background-color: #FCDCDC;
}

.autoComplete_result:hover, .autoComplete_selected {
        background-color: #f4f4f4;
}

.autoComplete_legend {
        margin-left: .6rem;
        color: #ccc;
        font-size: 0.9rem;
}