.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    border: 1px solid #837f73;
    border-top: 0;
    background: #fff;
    transform: translateY(-3px);
    border-radius: 0 0 0.25rem 0.25rem;
    /*box-shadow: 0 0.1875rem 1rem rgba(0,0,0,.1);*/

    /* core styles should not be changed */
    position: absolute;
    display: none;
    z-index: 9999;
    max-height: 325px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}
.autocomplete-suggestion {
    text-overflow: ellipsis;
    font-size: small;
    border-top: 1px solid rgba(160, 160, 160, 0.25);
    cursor: pointer;
    align-items: center;
    padding: 0 0.75rem;
}

.autocomplete-suggestion img{
    max-width: 60px;
    max-height: 60px;
}

.autocomplete-suggestion .media-body span {
    display: inline-block;
    padding-top:5px;
 }
 

.autocomplete-suggestion:first-child {
	border-top: none;
}
.autocomplete-suggestion.selected {
    background: rgba(160, 160, 160, 0.25);
}

.autocomplete-suggestion .media-body {
    padding:0 10px;
}

@media (max-width:991px) {

    .autocomplete-suggestions {
        max-height: 70%;
    }

    .autocomplete-suggestion .media-body {
        line-height: 1.2;
    }

    .autocomplete-suggestion .media-body span {
        padding:5px 0px;
    }

}
