#search {
    position: relative
}

#suggest-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 54px;
    list-style: none;
    border-radius: 2px;
    background-color: rgba(255,255,255,.95);
    margin: 0;
    font-size: 16px;
    z-index: 1000;
    border: 1px solid #00658F;
    transition: opacity 200ms ease-in-out;
}
#suggest-results.suggest-hidden {
    opacity: 0;
}

#search .suggest-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 3px 8px;
    height: 106px;
}
  #search .suggest-item:hover {
    background-color: #eee;
      border-radius: 2px;
}
.suggest-thumbnail {
    width: 75px;
    margin-right: 8px;
    flex-shrink: 0;
    text-align: center;
}
.suggest-thumbnail img {
    max-width: 100%;
    max-height: 100%;
}
.suggest-title {
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}
