.tool-search-input-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.tool-search-input-wrap .search-input {
    width: 100%;
    box-sizing: border-box;
}

.tool-search-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    z-index: 1100;
    max-height: 360px;
    overflow-y: auto;
    padding: 6px 0;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 17, 18, .14);
}

.tool-search-suggestions[hidden] { display: none; }

.tool-search-suggestion,
.tool-search-empty {
    display: block;
    padding: 10px 14px;
    color: #222;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.tool-search-suggestion:hover,
.tool-search-suggestion.is-active {
    background: #fff4e8;
    color: #222;
}

.tool-search-suggestion mark {
    padding: 0;
    background: transparent;
    color: #f47b00;
    font-weight: 700;
}

.tool-search-empty { color: #888; }
