#suggestion-box {
    z-index: 999999999999;
    color: #000;
    display: none;
    font-family: inherit;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 0;
    margin: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    max-height: 400px;
    overflow-y: auto;
}

#suggestion-box #no-suggestions {
    padding: 14px 16px;
    color: #888;
    font-size: 14px;
}

#suggestion-box ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}

#suggestion-box ul > li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

#suggestion-box ul > li:last-child {
    border-bottom: none;
}

#suggestion-box ul > li a {
    display: block;
    height: 100%;
    color: #333;
    text-decoration: none;
    padding: 12px 16px;
    font-size: 14px;
    transition: background-color .15s ease, color .15s ease;
}

#suggestion-box ul > li a:hover,
#suggestion-box .selected a {
    background-color: #f5f7fa;
    color: var(--tg-primary-color, #125B3F);
}

#suggestion-box .selected {
    background-color: #f5f7fa;
}

#suggestion-box #suggestion-header {
    margin: 0;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 12px;
    color: #999;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .5px;
}

#suggestion-box #suggestion-header hr {
    margin: 6px -16px 0;
    border-color: #f0f0f0;
}
