#autoComplete_list {
    position: absolute;
    width: 100%;
    left: -2px;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 20%);
    top: calc(100% + .3rem);
    z-index: 2;
    max-height: 160px;
    overflow-y: auto;
}

#autoComplete_list:empty {
    border: none !important;
}

.autoComplete_result {
    margin: 0;
    font-size: inherit;
    padding: 6px;
    color: #333;
    max-width: none;
    border: none;
}

.autoComplete_result:last-child {
    border-radius: 0;
    border-bottom: none !important;
}

.autoComplete_result:hover {
    background-color: #ffc219;
    color: white;
    border: none;
}

.autoComplete_highlighted {
    color: #ffc219;
}

.autoComplete_result:hover .autoComplete_highlighted {
    color: white;
}

.form__search-input.autoComplete_search {
    padding-right: 25px;
}

.autoComplete_clear {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    border: 0;
    outline: none;
    cursor: pointer;
}

.autoComplete_clear img {
    display: block;
    width: 17px;
    height: 17px;
}

@media only screen and (max-width: 600px) {
    .autoComplete_result:first-child {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    #autoComplete_list {
        left: 0;
        box-shadow: 0 17px 1rem 0 rgb(0 0 0 / 20%);
        top: 100%;
    }
    .autoComplete_result {
        padding-left: 10px;
    }
}