/*! typeahead.js 0.8.1 https://github.com/twitter/typeahead Copyright 2013 Twitter, Inc. and other contributors; Licensed MIT */

.twitter-typeahead{
    float:left;
}

.typeahead,
.tt-query,
.tt-hint {
  padding: 8px 12px;
  font-size: 24px;
  line-height: 30px;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
}
.tt-hint {
    color:#ccc!important;
}
.typeahead {
  background-color: #fff;
}

.typeahead:focus {
  border: 2px solid #0097cf;
}

.tt-query {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
}

.tt-hint {
  width: 314px!important;
  padding: 0 10px 0 13px!important;
  font-size: 17px!important;
  line-height: 20px!important;
  height: 38px!important;
}

.tt-dropdown-menu {
  width: 336px;
  margin-top: -4px;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
  padding: 6px 13px;
  font-size: 17px;
  line-height: 1;
}

.tt-suggestion p {
	margin: 0;
}

.tt-suggestion.tt-is-under-cursor {
  background-color: #E6E7E7;
}

/*
.tt-suggestion.tt-is-under-cursor p{
 color: #fff;
}
*/


/* !--- RWD sm --- */
@media screen and (max-width:599px) { 
	.twitter-typeahead {width: 76%;}
    .head-search-form .search-input.tt-input {width: 95%;}
	.tt-hint {font-size: 16px!important;height: 30px!important; width:95% !important;}
	.tt-dropdown-menu {width: 100%; width: calc(100% + 58px );}
}

/* !--- RWD med --- */
@media screen and (max-width:801px) and (min-width:599px) {
	.head-search-form .search-input.tt-input {width: 100%;}
	.twitter-typeahead{max-width: 76%;}
}

/* !--- RWD b/t med & full --- */
@media screen and (max-width:1020px) and (min-width:801px) {
	.tt-hint {width: 100%!important; height: 36px!important;}
	.head-search-form .search-input.tt-input {width: 100%;}
}