.autoComplete_list {
    position: absolute;
    width: 100%;
    max-height: 226px;
    overflow-y: scroll;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0.5rem 0 0 0;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid rgba(33, 33, 33, 0.1);
    z-index: 1000;
    outline: none;
    list-style: none;
}

.autoComplete_result {
    padding: 10px 20px;
    list-style: none;
    text-align: left;
    font-size: 16px;
    color: #212121;
    transition: all 0.1s ease-in-out;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
}

.autoComplete_result::selection {
    color: rgba(0, 0, 0, 0);
}

.autoComplete_result:hover {
    cursor: pointer;
    background-color: rgba(123, 123, 123, 0.1);
}

.autoComplete_result mark {
    background-color: transparent;
    font-weight: bold;
    padding: 0;
}

.autoComplete_result mark::selection {
    color: rgba(0, 0, 0, 0);
}

.autoComplete_selected {
    background-color: rgba(123, 123, 123, 0.1);
}
