I'm trying to implement autocomplete with jquery easy-autocomplete plugin
npm install --save easy-autocomplete
I have two problems with its styling.
Results are displayed in bulleted list. I need it to be a simple list. I've read this package includes themes, how do I apply the theme in laravel application?
I have prepend icon on input field, when screen size is smaller it breaks into two rows

<div class="col-6 col-sm-3">
<label for="filter[from]">{{__('text.from')}}</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-map-marker-alt"></i></span>
</div>
<input type="text" name="filter[from]" class="form-control autocomplete" placeholder="{{__('text.from')}}" maxlength="255">
</div>
</div>
How would I make it so that results are displayed without bullets and input with marker would always stay in one row?.

For the li styling you just missed to import the css from you library ("css in
node_modules/yourlibraryfolder ")or just add a cdn link
and for responsiveness , you should play on break point class ,
here it was set as 3 column for large 6 for medium an 12 for small screen , you should use what is proper to your defined layout
Here is a snippet :