  /* @override 
	http://localhost:8888/BSI-Market-Access/css/03-search.css */

#search {
	z-index: 90;
	font-size: 1.2rem;
	position: absolute;
	right: 0;
	width: 300px; }
	
	
.search__container {
	position: absolute;
	width: 100%; }	

.search__input {
	border: 2px solid #000;
	border-radius: 10em;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center; }	


.search__input__label {
	flex-grow: 1;
	padding: .5rem 1rem;
	display: inline-block; }		
	
.search__input__switch {
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	background: #D72D18 url('../images/chevron.svg') no-repeat center;
	background-size: 1rem;
	border-radius: 100%;
	transition: all .4s;
	display: inline-block; }	
	
.search__dropdown {
	border-radius: 2px;
	padding: 0 1rem;
	transition: all .6s;
	box-shadow: 0 0 10px rgba(40,40,40,.3);
	box-sizing: border-box;
	background: rgba(255,255,255,.9); }	

.search__dropdown__container {
	overflow-y: scroll;
	transition: all .6s;
	max-height: 0; }
		
.search__dropdown ul,
.search__dropdown ul li {
	margin: 0;
	padding: 0;
	list-style: none; }	
	
.search__dropdown ul {
	opacity: 0;
	transition: all .4s .2s;
	padding: 0 1rem; }

.search__dropdown ul li {
	cursor: pointer; }

.search__dropdown ul li span {
	display: block;
	padding: .4rem 0; }	
	
	
/* Active */
#search.active .search__dropdown {
	padding: 1rem; }
	
#search.active .search__dropdown__container {
	max-height: 300px; }
	
#search.active .search__input__switch { 
	transform: rotate(-180deg); }

#search.active .search__dropdown ul {
	opacity: 1;	}
	
	
/* Active Region */
.search__dropdown ul li.active {
	color: #D72D18; }



	
@media all and (max-width:1100px) {
	
	#search {
		right: 10px; }
	
}	
	