/* gallery suggestions dropdown */
.suggestions-list {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    border: 1px solid rgb(69, 80, 100);
    background-color: #fff;
    max-width: 520px;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    font-size: 14px;
    color: #2b2b2b;
    padding: 5px;
}

.suggestions-list::-webkit-scrollbar {
    width: 6px;
}

.suggestions-list::-webkit-scrollbar-thumb {
    background-color: rgba(134, 143, 135, 0.46);
    border-radius: 10px;
}

.suggestions-list .suggestion-item {
    padding: 6px 10px;
    cursor: pointer;
    overflow: hidden;
}

.suggestions-list .suggestion-item:hover {
    background: rgba(6, 49, 89, 0.06);
}

.suggestions-list .suggestion-title {
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.suggestions-list .suggestion-snippet {
    margin-top: 2px;
    line-height: 1.25;
    color: #6a6a6a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.suggestions-list em {
    font-weight: 700;
    color: #2e570a;
    font-style: normal;
}

.suggestions-list.request-running {
    display: block;
    background: white url('/web/loaders/loading.gif') no-repeat center 5px;
    min-height: 20px;
    min-width: 100px;
    border-color: rgba(13, 51, 73, 0.27);
}

input.have-suggestions {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.suggestions-list .suggestion-item-error {
    opacity: 0.75;
}

