/* start suggestion css */
.suggestions {
    position: absolute;
    background: white;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 45px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .21);
}

.suggestion-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.suggestion-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.suggestion-details h4 {
    font-size: 14px;
    margin: 0;
}

.suggestion-details p {
    margin: 0;
    color: #666;
}
/* end suggestion css */