



/* App Search Container */

/* Search Form */
body #action-app-search {
	max-height: 48px;
}

body #action-app-search. {
	width: 282px;	
}

#action-app-search .app-search-container {
	height: 46px;
	min-height: 46px;
}

#action-app-search .app-search-container::after {
  content: "";
  clear: both;
  display: table;
}

#action-app-search .app-search-container form {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    height: 100%;
}

#action-app-search .app-search-form {
	display: flex;
	position: relative;
}

#action-app-search .app-search-wrap {
	display: flex;
	align-items: stretch;
	flex: 1 0 100%;
}

#action-app-search .app-search-input-wrap {
	flex: 1 1 calc(100% - 48px); 
}

#action-app-search .app-search-input-wrap {
	width: calc(100% - 48px);
}

#action-app-search .app-search-button {
	width: 48px;
	flex: 0 0 48px;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}

#action-app-search .app-search-container form input[type=text] {
	width: 100%;
	height: 100%;
	line-height: 46px;
	padding: 0 24px;
	font-size: 17px;
	border: none;
	background: #f2f2f2;
	background: #fff;
	border-radius: 0;
	text-indent: 0;
}

#action-app-search .app-search-container form button {
	font-size: 24px;
	background: #2effbf;
	color: white;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	padding: 0;
	line-height: 48px;
}

#action-app-search .app-search-container form button:hover {
  color: #1f2126;
}

/* Loading Indicator, State */

.rotating{
	animation: anim-rotate 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

@keyframes anim-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#action-app-search .app-search-container .ui-state-loading .fa-search {
	display: none;
}

/* Typeahead */

#action-app-search .twitter-typeahead{
	width: 100%;
	height: 100%;
}

#action-app-search .tt-menu{
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background-color: #f2f2f2;
	background-color: #fff;
	width: 100%;
	max-height: 150px;
	overflow-y: scroll;
}

#action-app-search .tt-cursor, #action-app-search .tt-suggestion:hover{
	background: #2effbf;
}

#action-app-search .tt-suggestion{
	line-height: 30px;
	padding: 0 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;  
}


