.autocomplete-wrap {
    position: relative;
    display: inline-block;
	width: 100%;
}

.autocomplete-wrap .autocomplete-text {
    width: 100%;
    padding-right: 22px; /* deja hueco para la X */
    box-sizing: border-box;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 100%;
    min-width: 220px;
    margin: -1em 0 0 0 !important;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ccc;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.autocomplete-suggestions li {
    margin:0 !important;
	padding: 6px 10px;
    cursor: pointer;
	color: #333;
	list-style:none;
}

.autocomplete-suggestions li:hover,
.autocomplete-suggestions li.is-active {
    background: #e9f2ff;
}

.autocomplete-clear {
    display: none;
    position: absolute;
    top: 30%;
    right: 6px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 26px;
    line-height: 1;
    user-select: none;
}

.autocomplete-clear:hover {
    color: #c00;
}