﻿/* scaffolding */
/* ----------- */
.Typeahead *,
.Typeahead *:before,
.Typeahead *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Utilities */
.u-cf:before,
.u-cf:after {
  content: " ";
  display: table;
}
.u-cf:after {
  clear: both;
}
.u-hidden {
  display: none !important;
}
.u-posRelative {
  position: relative;
}
/* Typeahead */
.Typeahead {
  position: relative;
  *z-index: 1;
  width: 320px !important;
  margin: auto auto 0 auto;
  padding: 10px 10px 10px 30px;
  text-align: left;
  border: 1px solid #c4c4c4;
  text-transform: capitalize;
}
.Typeahead-spinner {
  position: absolute;
  top: 7px;
  right: 7px;
  display: none;
  width: 28px;
  height: 28px;
}
.Typeahead-hint,
.Typeahead-input {
  width: 100%;
  padding: 5px 8px;
  font-size: 26px;
  line-height: 30px;
  font-family: 'Lato', serif;
}
.Typeahead-hint {
  position: absolute;
  top: 0;
  left: 0;
  color: #ccd6dd;
  opacity: 1;
  width: 100%;
}
.Typeahead-input {
  position: relative;
  background-color: transparent;
  /*//background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);*/
  outline: none;
}
.tt-menu {
  position: absolute;
  top: 95%;
  left: 2.5%;
  z-index: 100;
  display: none;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #fff;
  border: 1px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 0px 1px green;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.tt-menu.is-open {
  display: block;
}
.tt-selectable {
  cursor: pointer;
}
.tt-selectable + .Typeahead-selectable {
  border-top: 1px solid #ccd6dd;
}
.tt-hint,
.tt-input,
.tt-menu {
  width: 100% !important;
  background-color: #ffffff !important;
}
.tt-hint {
  display: none;
}
.tt-cursor {
  background-color: #b3d4fc;
}
/* suggestion */
.suggestion {
  position: relative;
  padding: 8px;
  font-family: 'Lato', serif;
}
.suggestion-avatar {
  display: none;
}
@media only screen and (min-width: 768px) {
  .suggestion-avatar {
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    width: 75px;
    height: 55px;
    border: 1px solid #ccd6dd;
    border-radius: 2px;
  }
}
.suggestion:hover .suggestion-avatar {
  border-color: #f5f8fa;
}
.suggestion-details {
  padding-left: 0;
  min-height: initial;
}
@media only screen and (min-width: 768px) {
  .suggestion-details {
    min-height: 60px;
    padding-left: 85px;
  }
}
.suggestion-realName,
.suggestion-screenName {
  display: inline-block;
}
.suggestion-name {
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .suggestion-name {
    font-size: 16px;
  }
}
.suggestion-location {
  font-size: 13px;
  color: #8899a6;
}
@media only screen and (min-width: 768px) {
  .suggestion-location {
    font-size: 14px;
  }
}
.suggestion:hover .suggestion-location {
  color: #303c4f;
}
.suggestion-description {
  margin-top: 5px;
  font-size: 14px;
  line-height: 18px;
}
.suggestion-info {
  position: absolute!important;
  bottom: 0;
  right: 0;
  font-size: 12px;
  line-height: 14px;
  text-transform: lowercase;
}
@media only screen and (min-width: 768px) {
  .suggestion-info {
    position: relative;
    display: inline-block;
    float: right;
    text-align: right;
  }
}
.suggestion-stat-label {
  color: #8899a6;
  font-weight: 500;
}
.suggestion-stat + .suggestion-stat {
  margin-left: 5px;
}
.suggestion:hover,
.suggestion.is-active {
  color: #fff;
  background: #55acee;
}
.suggestion:hover .suggestion-screenName,
.suggestion:hover .suggestion-stat-label,
.suggestion.is-active .suggestion-screenName,
.suggestion.is-active .suggestion-stat-label {
  color: #fff;
}
/* EmptyMessage */
.EmptyMessage {
  position: relative;
  padding: 10px;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.twitter-typeahead {
  width: 100%;
}
#scrollable-dropdown-menu .tt-menu {
  max-height: 616px;
  overflow-y: auto;
}