.f2i-rappel {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99990;
	font-family: Helvetica, Arial, sans-serif;
}

.f2i-rappel__bouton {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 14px 22px;
	border: 0;
	border-radius: 50px;
	background: #ffd000;
	color: #12233d;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(14, 51, 102, .28);
	transition: transform .18s ease, box-shadow .18s ease;
}

.f2i-rappel__bouton:hover,
.f2i-rappel__bouton:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(14, 51, 102, .34);
}

.f2i-rappel__icone {
	font-size: 20px;
}

.f2i-rappel.est-ouverte .f2i-rappel__bouton {
	opacity: 0;
	pointer-events: none;
}

.f2i-rappel__panneau {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 330px;
	max-width: calc(100vw - 32px);
	padding: 22px 22px 18px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 14px 44px rgba(14, 51, 102, .26);
	animation: f2i-rappel-apparition .18s ease-out;
}

@keyframes f2i-rappel-apparition {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.f2i-rappel__panneau { animation: none; }
	.f2i-rappel__bouton  { transition: none; }
}

.f2i-rappel__fermer {
	position: absolute;
	top: 8px;
	right: 10px;
	padding: 4px 8px;
	border: 0;
	background: none;
	color: #8a929c;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.f2i-rappel__titre {
	margin: 0 0 4px;
	color: #1759b0;
	font-size: 19px;
	font-weight: 700;
}

.f2i-rappel__statut {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.45;
	color: #5a6472;
}

.f2i-rappel__statut.est-ouvert {
	color: #1a7f45;
	font-weight: 600;
}

.f2i-rappel__form label {
	display: block;
	margin: 0 0 4px;
	color: #22272e;
	font-size: 13px;
	font-weight: 600;
}

.f2i-rappel__form input[type="text"],
.f2i-rappel__form input[type="tel"],
.f2i-rappel__form select {
	width: 100%;
	margin: 0 0 12px;
	padding: 11px 12px;
	border: 1px solid #ccd4df;
	border-radius: 8px;
	background: #fff;
	color: #22272e;
	font-family: inherit;
	font-size: 15px;
	box-sizing: border-box;
}

.f2i-rappel__form input:focus,
.f2i-rappel__form select:focus {
	outline: 2px solid #1e6dd8;
	outline-offset: 1px;
	border-color: #1e6dd8;
}

.f2i-rappel__consent {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
	margin: 2px 0 14px;
	font-size: 12px !important;
	font-weight: 400 !important;
	line-height: 1.45;
	color: #5a6472;
}

.f2i-rappel__consent input {
	margin: 2px 0 0;
	flex: 0 0 auto;
}

.f2i-rappel__pot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.f2i-rappel__erreur {
	margin: 0 0 12px;
	padding: 9px 11px;
	border-radius: 6px;
	background: #fdeaea;
	color: #a12626;
	font-size: 13px;
	line-height: 1.45;
}

.f2i-rappel__envoyer {
	width: 100%;
	padding: 14px 18px;
	border: 0;
	border-radius: 50px;
	background: #ffd000;
	color: #12233d;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .4px;
	cursor: pointer;
}

.f2i-rappel__envoyer[disabled] {
	opacity: .6;
	cursor: progress;
}

.f2i-rappel__mentions {
	margin: 10px 0 0;
	color: #8a929c;
	font-size: 11px;
	line-height: 1.5;
	text-align: center;
}

@media (max-width: 600px) {
	.f2i-rappel {
		right: 14px;
		bottom: 14px;
	}

	.f2i-rappel__bouton {
		padding: 13px 18px;
		font-size: 15px;
	}

	.f2i-rappel__panneau {
		position: fixed;
		right: 14px;
		left: 14px;
		bottom: 14px;
		width: auto;
		max-width: none;
	}
}

/* Page de confirmation */

.f2i-rappel-merci {
	max-width: 620px;
	margin: 0 auto;
	padding: 40px 24px;
	text-align: center;
}

.f2i-rappel-merci__coche {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 0 18px;
	border-radius: 50%;
	background: #e8f6ee;
	color: #1a7f45;
	font-size: 34px;
}

.f2i-rappel-merci__titre {
	margin: 0 0 12px;
	color: #1759b0;
	font-size: 28px;
}

.f2i-rappel-merci__texte {
	margin: 0 0 28px;
	font-size: 17px;
	line-height: 1.6;
	color: #22272e;
}

.f2i-rappel-merci__liens {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: center;
}

.f2i-rappel-merci__cta {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 50px;
	background: #ffd000;
	color: #12233d !important;
	font-weight: 800;
	text-decoration: none !important;
}

.f2i-rappel-merci__retour {
	color: #1e6dd8 !important;
	font-weight: 600;
	text-decoration: underline !important;
}
