.form__input-wrapper {
    position: relative;
    width: 300px;
}
.autocomplete-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    background-color: #fff;
    position: absolute;
    width: 100%;
    z-index: 1000;
}
.autocomplete-item {
    padding: 8px;
    cursor: pointer;
}
.autocomplete-item:hover {
    background-color: #eee;
}
.form__input-blur {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}