@charset "UTF-8";

.Typeahead {
  position: relative;
}
.Typeahead .Typeahead__input {
  width: 100%;
/*  width: 100%;
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.42857143;
  box-shadow: inset 0 1px 4px rgba(0,0,0,.4);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  font-weight: 300;
  padding: 12px 26px;
  border: none;
  border-radius: 22px;
  letter-spacing: 1px;
  box-sizing: border-box;*/
}
.Typeahead .Typeahead__input:focus {
  border-color: #4fc08d;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #4fc08d;
}
.Typeahead .fa-times {
  display: none;
}
.Typeahead .dropdown-icon {
  position: absolute;
  top: 13px;
  right: 20px;
  color: #888;
  font-size: 16px;
  cursor: pointer;
}
.Typeahead i {
  float: right;
  position: relative;
  top: 13px;
  right: 20px;
  opacity: 0.4;
  width: 0px;
}
.Typeahead i:not(.dropdown-icon) {
  display: none !important;
}
.Typeahead ul {
  position: absolute;
  padding: 0;
  margin-top: 0px;
/*  min-width: 100%;*/
  background-color: #fff;
  list-style: none;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0, 0.25);
  z-index: 1000;
}
.Typeahead li {
  padding: 5px 8px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.Typeahead li:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.Typeahead li:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: 0;
}
.Typeahead span {
  display: block;
  color: #2c3e50;
}
.Typeahead .active {
  background-color: #3aa373;
}
.Typeahead .active span {
  color: white;
}
.Typeahead .name {
  font-weight: 700;
  font-size: 18px;
}
.Typeahead .screen-name {
  font-style: italic;
}