.recherche-fenetre {
	background-color: #FFF;
	display: none;
	float: none;
	position: absolute;
	box-shadow: 0 5px 5px rgba(0,0,0,0.3);
	box-sizing: border-box;
	width: 100%;
	z-index: 120;
}
.recherche-fenetre-cadre {
	display: flex;
	float: none;
	position: relative;
	box-sizing: border-box;
	justify-content: center;
	opacity: 0;
	padding-right: 40px;
	padding-left: 40px;
}
.recherche-fenetre-masque {
	background-color: rgba(0,0,0,1);
	display: none;
	float: none;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 100;
	opacity: 0;
}
.recherche-fenetre-croix {
	display: flex;
	float: none;
	height: 25px;
	width: 25px;
	position: absolute;
	align-items: center;
	top: 10px;
	right: 10px;
	cursor: pointer;
	transform: rotate(45deg);
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: linear;
	z-index: 110;
}
.recherche-fenetre-croix:hover {
	transform: rotate(315deg);	
}
.recherche-fenetre-croix div {
	background-color: #999;
	display: block;
	float: none;
	height: 1px;
	width: 100%;
	position: relative;	
}
.recherche-fenetre-croix:hover>div {
	background-color: #666;
}
.recherche-fenetre-croix div:first-of-type {
	transform: rotate(90deg);
	position: absolute;
}
.recherche-fenetre-formulaire {
	display: flex;
	float: none;
	position: relative;
	overflow: auto;
	box-sizing: border-box;
	transition-property: padding-right,padding-left,width;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	flex-wrap: nowrap;
	width: 50%;
	max-width: 550px;
	justify-content: center;
	padding-top: 30px;
	padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.recherche-fenetre-formulaire {
	width: 100%;	
	}
}
.recherche-fenetre-champ {
	display: block;
	float: none;
	position: relative;
	flex-grow: 1000;
}
.recherche-fenetre-champ-mot {
	height: 45px;
	font-size: 14px;
	font-weight: normal;
	padding-right: 5px;
	padding-left: 12px;
	position: relative;
	border-radius: 2px 0px 0px 2px;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	box-shadow: 0 0 0px rgba(0,0,0,0);
	display: block;
	float: none;
	box-sizing: border-box;
	width: 100%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.recherche-fenetre-bouton {
	display: block;
	float: none;
	position: relative;	
	flex-grow: 1;
}
.recherche-fenetre-bouton-loupe {
	background-color: var(--bouton-couleur-fond);
	display: block;
	float: none;
	height: 45px;
	width: 45px;
	position: relative;
	border-radius: 0px 4px 4px 0px;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-image: url(../graphisme/commerce/recherche-loupe-fenetre.svg);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
.recherche-fenetre-bouton-loupe:hover {
	background-color: var(--bouton-couleur-fond-survol);
}