/* RANGÉES / COLONNES & MODULES POUR LE SITE CS3 - MAM */
.cs3-module-faq-sticky {
	position: fixed;
	right: 80px;
	bottom: calc(50px + env(safe-area-inset-bottom, 0px));
	z-index: 9999;

	margin: 0;
}
.cs3-module-faq-sticky .fl-icon a {
	display: block;
}
.cs3-module-faq-sticky .fl-icon i {
	width: 45px !important;
	height: 45px !important;
	border: 1px solid var(--blanc);
}
/* Petit zoom de l’icône FAQ au survol. */
.cs3-module-faq-sticky .fl-icon a i {
	display: inline-block;
	transition: transform 220ms ease;
	transform-origin: center;
}

.cs3-module-faq-sticky .fl-icon a:hover i,
.cs3-module-faq-sticky .fl-icon a:focus-visible i {
	transform: scale(1.03);
}


@media screen and (max-width: 768px) {
	.cs3-module-faq-sticky {
		right: 24px;
		bottom: calc(24px + env(safe-area-inset-bottom, 0px));
	}
}