/*
* Personnalisations CSS
*/
.form-search__wrapper .dropdown-container.have-content .dropdown-button .dropdown-label {
	transform: translateY(-24px);
	padding: 2px 8px;
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: #585860;
	background-color: #FFF;
	position: relative;
	z-index: 2;
	transition: all 300ms ease;
}

.form-search__wrapper .dropdown-container .dropdown-button .dropdown-content {
	display: none;
}

.form-search__wrapper .dropdown-container.have-content .dropdown-button .dropdown-content {
	position: absolute;
	display: initial;
	left: 14px;
}

/* Correctif intégraiton */
.CLPagintation__pager a.prev svg {
	transform: rotate(180deg);
}

/** SPINNER CREATION **/
.loader {
	position: relative;
	text-align: center;
	margin: 15px auto 35px auto;
	z-index: 9999;
	display: block;
	width: 80px;
	height: 80px;
	border: 10px solid rgba(0, 0, 0, .3);
	border-radius: 50%;
	border-top-color: #000;
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
}

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

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

/* *** Acceptation des cookies *** */
#cookieConsent {
	background-color: rgba(20,20,20,0.8);
	min-height: 2rem;
	font-size: 14px;
	color: #ccc;
	line-height: 26px;
	padding: 1rem 0 1rem 30px;
	font-family: "Trebuchet MS",Helvetica,sans-serif;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	z-index: 9999;
}

#cookieConsent a {
	color: #4B8EE7;
	text-decoration: none;
}
#closeCookieConsent {
	float: right;
	display: inline-block;
	cursor: pointer;
	height: 20px;
	width: 20px;
	margin: -15px 0 0 0;
	font-weight: bold;
}
#closeCookieConsent:hover {
	color: #FFF;
}
#cookieConsent a.cookieConsentOK {
	background-color: #2bcf19;
	color: #ffffff;
	display: inline-block;
	border-radius: 5px;
	padding: 0 20px;
	cursor: pointer;
	/* float: right; */
	margin: 0 10px 0 20px;
}
#cookieConsent a.cookieConsentOK:hover {
	background-color: #E0C91F;
}

#cookieConsent a.cookieConsentKO {
	background-color: #dd2b19;
	color: #ffffff;
	display: inline-block;
	border-radius: 5px;
	padding: 0 20px;
	cursor: pointer;
	float: right;
	margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentKO:hover {
	background-color: #dcbe18;
}
/* --- Acceptation des cookies --- */