.searchContainer{
	width: 0;
	position: relative;
	margin-right: 10px;

}

.searchLabel{
	font-size: 17px;
	margin-right: .7em;
	margin-left: 3em;
	font-weight: 400;
}


.qSearchInput{
	display: none;
	background-color: inherit;
	width: 0;
	border: none;
	border-bottom: none;
	padding: 0.2em 0.1em 0.2em;
	font-weight: 400;
}

.searchContainerExpanded{
	width: 80vw;
}

.qSearchInputExpanded{
	width: 100%;
	border-bottom: 2px solid #756C57;
}

.qSearchInput:focus{
	outline: none;
}

.quickSearchIconContainer{
	margin-left: 16px;
	display: flex;
	align-items: center;
}

.quickSearchIcon{
	margin-left: 0.3em;
	height: 1.1em;
	width: auto;
	cursor: pointer;
}

.quickSearchBackIcon{
	display: none;
	margin-right: 1em;
	margin-left: 0.5em;
	height: 1em;
	font-weight: 600;
	width: auto;
	cursor: pointer;
	align-items: center;
}

.resultContainer{
	position: absolute;
	top: 100%;
	width: 100%;
	left: 0;
	background-color: rgb(236,247,239);
	z-index: 4999;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: flex-start;
	flex-wrap: wrap;
	visibility: visible;
	
	-webkit-box-shadow: 0px 7px 12px rgb(0 0 0 / 24%);
	-moz-box-shadow: 0px 7px 12px rgb(0 0 0 / 24%);
	box-shadow: 0px 7px 12px rgb(0 0 0 / 24%);
}

.qSearchResult{
	line-height: 1.3em;
	width: 100%;
	padding: 2px 3px;
	z-index: 4999;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #756C57;
	border-left: 1px solid #756C57;
	border-right: 1px solid #756C57;

}

.qSearchResult:hover{
	background-color: #756C57;
	color: white;
	cursor: pointer;
}