.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border-top: 1px solid #ccc;
    background: #fff;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
    position: absolute;
    display: none;
    z-index: 1;
    max-height: 254px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    right: 0;
    top: 40px;
}
.autocomplete-suggestion {
    position: relative;
    padding: 0 .6em;
    line-height: 23px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #333;
}
.autocomplete-suggestion b {
    font-weight: normal;
    color: #1f8dd6;
}
.autocomplete-suggestion.selected {
    background: #f0f0f0;
}

@media only screen and (max-width: 544px) {
	.autocomplete-suggestions {
		max-width: 300px;
	}
}