

/* JQUERY TYPEAHEAD*/
.typeahead__container button,
.typeahead__container input,
.typeahead__container optgroup,
.typeahead__container select,
.typeahead__container textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

.typeahead__container optgroup {
  font-weight: bold;
}

.typeahead__container button,
.typeahead__container input {
  /* 1 */
  overflow: visible;
}

.typeahead__container button,
.typeahead__container select {
  /* 1 */
  text-transform: none;
}

.typeahead__container button,
.typeahead__container html [type="button"],
.typeahead__container [type="reset"],
.typeahead__container [type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

.typeahead__container button::-moz-focus-inner,
.typeahead__container [type="button"]::-moz-focus-inner,
.typeahead__container [type="reset"]::-moz-focus-inner,
.typeahead__container [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

.typeahead__container button:-moz-focusring,
.typeahead__container [type="button"]:-moz-focusring,
.typeahead__container [type="reset"]:-moz-focusring,
.typeahead__container [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

.typeahead__container fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

.typeahead__container legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

.typeahead__container textarea {
  overflow: auto;
}

.typeahead__container [type="checkbox"],
.typeahead__container [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

.typeahead__container [type="number"]::-webkit-inner-spin-button,
.typeahead__container [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

.typeahead__container [type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

.typeahead__container [type="search"]::-webkit-search-cancel-button,
.typeahead__container [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.typeahead__container ::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

.typeahead__container ::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

.typeahead__container {
  position: relative;
  font: 14px Lato, "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.typeahead__container * {
  box-sizing: border-box;
  outline: 0;
}

.typeahead__query {
  position: relative;
  z-index: 2;
  width: 100%;
}

.typeahead__filter {
  position: relative;
}

.typeahead__filter button {
  min-width: 100%;
  white-space: nowrap;
}

.typeahead__filter button:after {
  display: inline-block;
  margin-left: 4px;
  width: 0;
  height: 0;
  vertical-align: -2px;
  content: "";
  border: 4px solid;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.typeahead__field {
  font-size: 0;
  position: relative;
  display: table;
  border-collapse: collapse;
  width: 100%;
}

.typeahead__field > * {
  display: table-cell;
  vertical-align: top;
}

.typeahead__query, .typeahead__filter, .typeahead__button {
  font-size: 14px;
  background-color: #333;
}

.typeahead__button {
  position: relative;
  font-size: 0;
  width: 1%;
  vertical-align: top;
}

.typeahead__button button {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.typeahead__field {
  color: #555;
}

.typeahead__field input,
.typeahead__field textarea,
.typeahead__field [contenteditable],
.typeahead__field .typeahead__hint {
  display: block;
  width: 100%;
  line-height: 1.6;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #ccc;
  //border-radius: 2px 0 0 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.typeahead__field input:focus, .typeahead__field input:active,
.typeahead__field textarea:focus,
.typeahead__field textarea:active,
.typeahead__field [contenteditable]:focus,
.typeahead__field [contenteditable]:active,
.typeahead__field .typeahead__hint:focus,
.typeahead__field .typeahead__hint:active {
  border-color: #ececec;
}

.typeahead__field input[type="search"],
.typeahead__field input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.typeahead__field input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.typeahead__container.hint .typeahead__field input,
.typeahead__container.hint .typeahead__field textarea,
.typeahead__container.hint .typeahead__field [contenteditable] {
  background: transparent;
}

.typeahead__container.hint .typeahead__query > :last-child, .typeahead__hint {
  background: #fff;
}

.typeahead__container button {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  height: 36px;
  padding: 6px 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #555;
}

.typeahead__container button:hover, .typeahead__container button:focus {
  color: #3c3c3c;
  background-color: #f5f5f5;
  border-color: #b3b3b3;
}

.typeahead__container button:active, .typeahead__container button.active {
  background-image: none;
}

.typeahead__container button:focus, .typeahead__container button:active {
  border-color: #66afe9;
}

.typeahead__container input.disabled,
.typeahead__container input[disabled],
.typeahead__container button.disabled,
.typeahead__container button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  box-shadow: none;
  background-color: #fff;
  border-color: #ccc;
}

.typeahead__container .typeahead__field input,
.typeahead__container .typeahead__field textarea,
.typeahead__container .typeahead__field [contenteditable],
.typeahead__container .typeahead__field .typeahead__hint,
.typeahead__container .typeahead__field .typeahead__label-container {
  padding-right: 32px;
  height: 44px;

  font-family: 'Open Sans';
}

.typeahead__filter, .typeahead__button {
  z-index: 1;
}

.typeahead__filter button, .typeahead__button button {
  margin-left: -1px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.typeahead__filter:hover, .typeahead__filter:active, .typeahead__filter:focus, .typeahead__button:hover, .typeahead__button:active, .typeahead__button:focus {
  z-index: 1001;
}

.typeahead__filter:hover button:focus, .typeahead__filter:hover button:active, .typeahead__filter:active button:focus, .typeahead__filter:active button:active, .typeahead__filter:focus button:focus, .typeahead__filter:focus button:active, .typeahead__button:hover button:focus, .typeahead__button:hover button:active, .typeahead__button:active button:focus, .typeahead__button:active button:active, .typeahead__button:focus button:focus, .typeahead__button:focus button:active {
  z-index: 1001;
}

.typeahead__filter + .typeahead__button button {
  margin-left: -2px;
}

.typeahead__container.filter .typeahead__filter {
  z-index: 1001;
}

.typeahead__list, .typeahead__dropdown {
  position: absolute;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-clip: padding-box;
}

.typeahead__result.detached .typeahead__list {
  position: relative;
  z-index: 1041;
  top: initial;
  left: initial;
}

.typeahead__dropdown {
  right: 0;
  left: initial;
  z-index: 1001;
}

.typeahead__list > li {
  position: relative;
  border-top: solid 1px #ccc;
}

.typeahead__list > li:first-child {
  border-top: none;
}

.typeahead__list > li[disabled] > a,
.typeahead__dropdown > li[disabled] > a {
  cursor: not-allowed;
  color: #bababa;
  background-color: #fafafa;
}

.typeahead__list > li > a,
.typeahead__dropdown > li > a {
  display: block;
  padding: 6px 12px;
  clear: both;
  color: #333;
  text-decoration: none;
}

.typeahead__list > li:not([disabled]) > a:hover,
.typeahead__list > li:not([disabled]) > a:focus,
.typeahead__list > li:not([disabled]).active > a,
.typeahead__dropdown > li:not([disabled]) > a:hover,
.typeahead__dropdown > li:not([disabled]) > a:focus,
.typeahead__dropdown > li:not([disabled]).active > a {
  background-color: #f5f5f5;
  color: #3c3c3c;
}

.typeahead__list.empty > li {
  padding: 6px 12px;
  color: #333;
}

.typeahead__list > li.typeahead__group {
  border-color: #bfdef6;
  font-weight: bold;
}

.typeahead__list > li.typeahead__group:first-child {
  border-top: solid 1px #bfdef6;
}

.typeahead__list > li.typeahead__group > a,
.typeahead__list > li.typeahead__group > a:hover,
.typeahead__list > li.typeahead__group > a:focus,
.typeahead__list > li.typeahead__group.active > a {
  cursor: default;
  color: #17639f;
  background: #ecf5fc;
}

.typeahead__list > li.typeahead__group + li.typeahead__item {
  border-color: #bfdef6;
}

.typeahead__container.result .typeahead__list,
.typeahead__container.filter .typeahead__dropdown,
.typeahead__container.hint .typeahead__hint,
.typeahead__container.backdrop + .typeahead__backdrop {
  display: block !important;
}

.typeahead__container .typeahead__list,
.typeahead__container .typeahead__dropdown,
.typeahead__container .typeahead__hint,
.typeahead__container + .typeahead__backdrop {
  display: none !important;
}

.typeahead__dropdown li:last-child {
  margin-top: 5px;
  padding-top: 5px;
  border-top: solid 1px #ccc;
}

.typeahead__cancel-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  right: 0;
  cursor: pointer;
  font-size: 18px;
  padding: 4px 55px;
  visibility: hidden;
}

.typeahead__label .typeahead__cancel-button {
  visibility: visible;
  right: 4px;
}

.typeahead__container.cancel:not(.loading) .typeahead__cancel-button, .typeahead__label .typeahead__cancel-button {
  visibility: visible;
}

.typeahead__container.cancel:not(.loading) .typeahead__cancel-button:hover, .typeahead__label .typeahead__cancel-button:hover {
  color: #d0021b;
}

.typeahead__search-icon {
  padding: 0 1.25rem;
  width: 16px;
  height: 16px;
  text-align: center;
  display: inline-block;
  background: url(data:image/svg+xml;charset=utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI1MC4zMTMgMjUwLjMxMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUwLjMxMyAyNTAuMzEzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnIGlkPSJTZWFyY2giPgoJPHBhdGggc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkOyIgZD0iTTI0NC4xODYsMjE0LjYwNGwtNTQuMzc5LTU0LjM3OGMtMC4yODktMC4yODktMC42MjgtMC40OTEtMC45My0wLjc2ICAgYzEwLjctMTYuMjMxLDE2Ljk0NS0zNS42NiwxNi45NDUtNTYuNTU0QzIwNS44MjIsNDYuMDc1LDE1OS43NDcsMCwxMDIuOTExLDBTMCw0Ni4wNzUsMCwxMDIuOTExICAgYzAsNTYuODM1LDQ2LjA3NCwxMDIuOTExLDEwMi45MSwxMDIuOTExYzIwLjg5NSwwLDQwLjMyMy02LjI0NSw1Ni41NTQtMTYuOTQ1YzAuMjY5LDAuMzAxLDAuNDcsMC42NCwwLjc1OSwwLjkyOWw1NC4zOCw1NC4zOCAgIGM4LjE2OSw4LjE2OCwyMS40MTMsOC4xNjgsMjkuNTgzLDBDMjUyLjM1NCwyMzYuMDE3LDI1Mi4zNTQsMjIyLjc3MywyNDQuMTg2LDIxNC42MDR6IE0xMDIuOTExLDE3MC4xNDYgICBjLTM3LjEzNCwwLTY3LjIzNi0zMC4xMDItNjcuMjM2LTY3LjIzNWMwLTM3LjEzNCwzMC4xMDMtNjcuMjM2LDY3LjIzNi02Ny4yMzZjMzcuMTMyLDAsNjcuMjM1LDMwLjEwMyw2Ny4yMzUsNjcuMjM2ICAgQzE3MC4xNDYsMTQwLjA0NCwxNDAuMDQzLDE3MC4xNDYsMTAyLjkxMSwxNzAuMTQ2eiIgZmlsbD0iIzU1NTU1NSIvPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=) no-repeat scroll center center transparent;
}

.typeahead__container.loading .typeahead__query:before, .typeahead__container.loading .typeahead__query:after {
  transition: all 0s linear, opacity 0.2s ease;
  position: absolute;
  z-index: 3;
  content: '';
  top: 0px;
  right: 0px;
  //margin-top: -8.5px;
  width: 50px;
  height: 44px;
  box-sizing: border-box;
  border-style: solid;
  border-width: 2px;
}

.typeahead__container.loading .typeahead__query:before {
  border-color: rgba(0, 0, 0, 0.35);
}

.typeahead__container.loading .typeahead__query:after {
  -webkit-animation: button-spin 0.6s linear;
  animation: button-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-color: #ff5300 transparent transparent;
  border-radius: 500rem;
  border-width: 3px;
  box-shadow: 0 0 0 1px transparent;
  top: 15px;
  right: 12px;
  width: 17px;
  height: 17px;
}

@-webkit-keyframes button-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes button-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.typeahead__label-container {
  list-style: none;
  position: absolute;
  padding-top: 6px;
  padding-left: 6px;
}

.typeahead__label {
  font-size: 12px;
  position: relative;
  display: inline-block;
  background: #ecf5fc;
  border: solid 1px #c2e0ff;
  padding-left: 4px;
  border-radius: 2px;
  margin-right: 4px;
  margin-bottom: 6px;
}

.typeahead__label > * {
  display: inline-block;
}

.typeahead__label .typeahead__cancel-button {
  position: static;
  padding: 4px 6px;
  margin-left: 4px;
  font-size: 12px;
  border-left: solid 1px #c2e0ff;
}

.typeahead__label .typeahead__cancel-button:hover {
  background-color: #d5e9f9;
}




.header-search2 {
	height: 44px;
}
@media (min-width:768px) and (max-width:991px){
	.header-search2 {
		min-width: 340px;
	}
}
.header-search2 > input[type="text"] {
   display: block;
    min-width: 250px;
    width: 100%;
    height: 44px;
    padding: 0 15px;
    outline: none;
    border: none;
	float:right;
    border-radius: 20px;
    background: #002DCD;
    color: #fff;
    font-size: 14px;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    margin-top: 0;
    margin: 1px 3px;
    line-height: normal;
	transition: all .2s ease-out;
	-moz-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}
.header-search2 > input[type="text"]:focus {
	background-color:#fff;
	color:#333;
	min-width: auto;
	width:400px;
	min-width:auto;
}
.header-search2 i{
	color:#fff;
}
.header-search2 > input[type="text"]:focus + button i{
	color:#002DCD;
} 
.header-search2 > input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.header-search2 > input[type="text"]::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.header-search2 > input[type="text"]:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.header-search2 > input[type="text"]:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.header-search2 > input[type="text"]:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #999;
}
.header-search2 > input[type="text"]:focus::-moz-placeholder { /* Firefox 19+ */
  color: #999;
}
.header-search2 > input[type="text"]:focus:-ms-input-placeholder { /* IE 10+ */
  color: #999;
}
.header-search2 > input[type="text"]:focus:-moz-placeholder { /* Firefox 18- */
  color: #999;
}
.btn-search-mobile{
	float: right;
    padding: 5px;
}
.btn-search-mobile a{
	display: block;
    font-size: 12px;
    color: #fff;
    border: 2px solid #fff;
    line-height: 1;
    padding: 4px;
    border-radius: 100%;
}
@media screen and (max-width:767px){
	.search-mobile .header-search2 {
		display: block;
		position: absolute;
		top: -10px;
		height: 55px;
		background: #0039FF;
		padding: 10px;
		box-sizing: border-box;
		left: auto;
		right:5px;
	}
	.typeahead__cancel-button {
		z-index: 3;
		padding: 4px 50px;
		border-radius: 100%;
		font-size: 18px;
		text-decoration: none !important;
	}
	.typeahead__cancel-button:hover{
		color:#DE2149;
	}
}
@media screen and (max-width:480px){
	.header-search2{
		min-width: 280px;
		position: absolute;
		top: 2px;
		z-index: 9;
		right: 5px;
		left: auto;
		margin-right: 0;
		width: 84%;
		padding: 10px;
		height: auto;
	}
}



/*Search Bar*/
.typeahead__container{
	max-width:600px;
	margin:auto;
}
.typeahead__query{
	position:relative;
}
.typeahead__query:before {
	content: "\f002";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	position:absolute;
	right: 0px;
    top: 0px;
	color:#ccc;
    background-color: #333;
    padding: 14px;
    border-radius: 30px;
    width: 50px;
    padding-left: 16px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.typeahead__container .typeahead__field input {
	padding-left:20px;
	border:1;
	border-color: #ececec;
	//border-radius:30px;
	background-color: #fff;
}
.typeahead__container .SearchContainer {
	padding:0;
}
.typeahead__container .SearchBody {
	max-height:440px;
	overflow-x:hidden;
	overflow-y:auto;
}
.typeahead__container .SearchBody .SearchGroup>ul{
	margin:0;
	padding:0;
	list-style:none;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span{
	position:relative;
	display:block;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span .searchResultType{
	padding:10px 15px;
	line-height:1;
}
.typeahead__container .SearchBody .SearchGroup .SearchNoResults{
	padding:15px;
}
.typeahead__container .SearchBody .SearchGroup .SearchNoResults small{
	color:#999;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span .searchResultType a{
	float:right;
	font-size:11px;
}
@media only screen and (max-width: 560px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span .searchResultType{
		text-align:center;
	}
	.typeahead__container .SearchBody .SearchGroup ul>li>span .searchResultType a{
		float:none;
		display:block;
	}
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem{
	padding:10px 15px 10px 15px;
	text-decoration:none;
	color:inherit;
	display:block;
}
@media (min-width: 768px) and (max-width: 991px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem{
		padding:6px 10px 6px 10px;
	}
}
@media only screen and (max-width: 767px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem{
		padding:10px 10px 10px 10px;
	}
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover{
	background-color:#ff8300;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem span{
	display:inline-block;
	vertical-align:middle;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .image,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .icon{
	width:12%;
	height:40px;
	text-align:center;
	margin-top:-10px;
}
@media (min-width: 768px) and (max-width: 991px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .image{
		width:14%;
		margin-top:-11px;
		height:40px;
	}
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .icon{
		width:14%;
		margin-top:0;
		height:40px;
	}
}
@media only screen and (max-width: 560px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .image,
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .icon{
		width:100%;
	}
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .icon i {
	width:40px;
	height:40px;
	font-size:30px;
	margin-top:3px;
	color:#ccc!important;
	display:inline-block;
}
@media (min-width: 768px) and (max-width: 991px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .icon i {
		margin-top:0;
	}	
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover i{
	color:#fff!important;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .image .avatar{
	width:50px;
	height:50px;
	background-size:cover;
	background-position:center center;
	border:1px solid #ccc;
	border-radius:100%;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .image img{
	width:50px;
	height:50px;
	border:1px solid #ccc;
	border-radius:100%;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .name {
	width:60%;
	height:40px;
	padding-left:15px;
	line-height:1.3;
}
@media (min-width: 768px) and (max-width: 991px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .name {
		width:55%;
		height:50px;
	}
}
@media only screen and (max-width: 560px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .name {
		width:100%;
		height:auto;
		text-align:center;
		padding:10px;
	}
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .title{
	width:87%;
	height:40px;
	padding-left:15px;
	line-height:1.3;
}
@media only screen and (max-width: 560px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .title{
		width:100%;
		height:auto;
		text-align:center;
		padding:10px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .title{
		width:90%;
	}
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .name b,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .title b{
	color:#000;
	font-weight:normal;
	font-size:14px;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .name,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .name b,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .title,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .title b{
	color:#fff;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .name small,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .title small{
	display:block;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .name small.details,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .title small.details{
	overflow: hidden;
	height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .name small,
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .title small{
	color:#fff;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .vinc{
	width:27%;
	padding-left:15px;
	height:27px;
	color:#999;
	font-size:11px;
}
@media (min-width: 768px) and (max-width: 991px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .vinc{
		width:35%;	
		height:40px;
	}
}
@media only screen and (max-width: 560px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .vinc{
		width:100%;	
		height:auto;
		padding:0 10px;
		text-align:center;
	}
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .vinc{
	color:#fff;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .date{
	position:absolute;
	top:10px;
	right:15px;
	height:25px;
	color:#999;
	font-size:11px;
	text-align:right;
	transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
}
@media only screen and (max-width: 767px) {
	.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem .date{
		/*right:auto;
		left:15px;
		top:20px;
		text-align:left;*/
	}
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem:hover .date {
	color:#fff;
	right:20px;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span>a.SearchItem{
	position:relative;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span .cartTypeahead{
	position: relative;
	left: 90%;
	top: -40px;
	transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
	padding: 2px 5px;
	width: 28px;
	height: 28px;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span .cartTypeahead i:hover{
	font-size: 16px;
	color: #ff8300;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span .cartTypeahead i{
	font-size: 16px;
	color: #333;
}




.typeahead__container .SearchBody .SearchGroup ul>li>span .favTypeahead{
	position: absolute;
	left: -2px;
	top: 0px;
	transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
	padding: 2px 5px;
	width: 28px;
	height: 28px;
	font-size: 13px;
	color: #FE2664;
}
.typeahead__container .SearchBody .SearchGroup ul>li>span .favTypeahead:hover{
	font-size: 17px;
	left: -4px;
}

.typeahead__container .SearchBody .SearchGroup ul li.typeahead__group{
	background-color:#eee;
	border-top:1px solid #ddd;
}
.typeahead__container .SearchBody .SearchGroup ul li.typeahead__group a{
	cursor:pointer;
}
.typeahead__container .SearchBody .SearchGroup ul li.typeahead__group a:hover{
	cursor:pointer;
	background-color:transparent;
}
.typeahead__container .SearchFooter{
	border-top:1px solid #ddd;
	background-color:#eee;
	text-align:right;
	padding:7px;
	color:#5E6669;
	font-size:12px;
	line-height:1.3;
}
@media only screen and (max-width: 767px) {
	.typeahead__container .SearchFooter span{
		margin-bottom:3px;
	}
}
.typeahead__container .SearchFooter .AdvSearch {
	float:left;
	padding:8px 0;
	text-transform:uppercase;
	font-weight:600;
}
@media only screen and (max-width: 767px) {
	.typeahead__container .SearchFooter .AdvSearch {
		float:none;
		padding:0;
		display:block;
	}
}
.typeahead__container .SearchFooter span.SearchLabel{
	margin-right:5px;
}
.typeahead__container .SearchFooter .dropdown-menu{
	font-size:13px;
	text-align:right;
	min-width: 120px;
}
.typeahead__container .SearchFooter .dropdown-menu>li>a{
	padding: 3px 10px;
}
.typeahead__container .SearchFooter .btn-group{
	margin-left:1px;
}
@media only screen and (max-width: 767px) {
	.typeahead__container .SearchFooter .btn-group{
		margin-left:0;
	}
}
.typeahead__container .SearchFooter .btn{
	color:#fff;
	font-size:11px;
	padding: 6px 9px;
}
.typeahead__container .SearchFooter .btn .caret{
	margin-left: 1px;
}

#lupa {
	position: absolute;
	width: 44px;
	height: 44px;
	top: 0px;
	right: 0px;
}

