﻿.twitter-typeahead, .tt-hint, .tt-input, .tt-menu {
    width: 100%;
}

.typeahead {
    background-color: #fff;
}

    .typeahead:focus {
        border: 2px solid var(--primary-color-500);
    }

.tt-query {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
    color: #999
}

.tt-menu {
    margin: 12px 0;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    width: 150%;
}

.tt-suggestion {
    padding: 3px 20px;
    font-size: 18px;
    line-height: 24px;
}

    .tt-suggestion:hover {
        cursor: pointer;
        color: #fff !important; /* Make text white */
        background-color: var(--primary-color-500);
    }

    .tt-suggestion.tt-cursor {
        color: #fff !important; /* Make text white when navigating with keyboard */
        background-color: var(--primary-color-500);
    }


    .tt-suggestion p {
        margin: 0;
    }

.tt-container {
    position: relative;
}

.tt-suggestion-item {
    padding: 8px 20px;
    border-bottom: 1px solid #eee;
}

    .tt-suggestion-item:last-child {
        border-bottom: none;
    }

.tt-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.tt-description {
    font-size: 14px;
    color: #777;
}

.tt-suggestion:hover .tt-label,
.tt-suggestion:hover .tt-description,
.tt-suggestion.tt-cursor .tt-label,
.tt-suggestion.tt-cursor .tt-description {
    color: #fff !important;
}

