/* ------------------------------------------------------------------------------
*
*  # Twiter Typeahead
*
*  Styles for typeahead.bundle.min.js - input suggestion engine
*
* ---------------------------------------------------------------------------- */
.twitter-typeahead {
    width: 100%; }
  
  .tt-hint {
    color: #999; }
  
  .tt-menu {
    width: 100%;
    margin-top: 0.125rem;
    min-width: 11.25rem;
    padding: 0.5rem 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    max-height: 350px;
    overflow-y: auto;
    border-radius: 0.1875rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); }
    .typeahead-scrollable .tt-menu {
      max-height: 250px; }
  
  .tt-suggestion {
    color: #333;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all ease-in-out 0.15s; }
    @media screen and (prefers-reduced-motion: reduce) {
      .tt-suggestion {
        transition: none; } }
    .tt-suggestion:hover, .tt-suggestion:focus, .tt-suggestion.tt-cursor {
      color: #333;
      background-color: #f5f5f5; }
  
  .tt-heading {
    padding: 0.5rem 1rem;
    display: block;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; }
    .tt-dataset-group:first-child .tt-heading:first-child {
      margin-top: 0; }
  
  .typeahead-template .empty-message {
    padding: 0.5rem 1rem;
    text-align: center; }