/* ==========================================================
RÉSEAUX SOCIAUX
Petit zoom au hover
========================================================== */

.cs3-module-reseaux-sociaux .fl-icon a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	transform: scale(1);
	transform-origin: center center;

	transition:
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

	will-change: transform;
}

.cs3-module-reseaux-sociaux .fl-icon a:hover,
.cs3-module-reseaux-sociaux .fl-icon a:focus-visible {
	transform: scale(1.02);
}