/* Custom styles for typeahead.js flyout dropdown */
.tt-menu {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  margin-top: 2px;
  min-width: 180px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 99999;
  position: absolute;
}
.tt-suggestion {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}
.tt-suggestion.tt-cursor {
  background: #e1ecf4;
  color: #39739d;
}
.tt-suggestion:hover {
  background: #e1ecf4;
  color: #39739d;
}
