/*
 * Typahead CSS
 * 
 */

.twitter-typeahead{
    position: relative;
    z-index: 8000;
}

.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
    margin-bottom: 0;
}

.twitter-typeahead .tt-hint{
    display: none;
}

.tt-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10000 !important;
    display: none;
    float: left;
    min-width: 160px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-gray-200);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    box-shadow: var(--bs-box-shadow);
    background-clip: padding-box;
    cursor: pointer;
    overflow: hidden;
}

.tt-suggestion {
    display: block;
    padding: 10px 20px;
    clear: both;
    font-weight: normal;
    line-height: 25px;
    color: var(--bs-body);
    white-space: nowrap;
}

.tt-suggestion:hover,
.tt-suggestion:focus {
    color: var(--bs-primary-fg, --bs-btn-color);
    text-decoration: none;
    outline: 0;
    background-color: var(--bs-primary);
}