.typeahead,
.tt-query,
.tt-hint {

  font-family: inherit;
  color:#555555;
   width: 375px;
   height: 75px !important;
   /*margin-bottom: 10px !important;*/
   line-height: 30px !important;
   padding: 15px 19px !important;
   font-size: 18pt !important;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

.typeahead {
  background-color: #fff;
}

.typeahead:focus {
  border-color: #00AEDB;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
   
}

.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-dropdown-menu {
  position:absolute;
  z-index:999;
  color:#555555;
  width: 375px;
  margin-top: 5px;
  padding: 8px 0;
/*
    background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  */
  background-color: #fff;
  z-index:999;
  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);

}

.tt-suggestion {
  padding: 3px 20px;
   color:#555555;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
}

.tt-suggestion.tt-is-under-cursor {
  color: #fff;
  background-color: #00AEDB;

}

.tt-suggestion p {
  margin: 0;
}

.gist {
  font-size: 14px;
}

/* example specific styles */
/* ----------------------- */

.form-inline .tt-suggestion {
  padding: 8px 20px;
}

.form-inline .tt-suggestion + .tt-suggestion {
  border-top: 1px solid #ccc;
}


