/*
 * Adaptations Contact Form 7 — hors pipeline WP-SCSS (le SCSS est généré
 * depuis le LESS SPIP par _migration/tools/convert_less.py, rejouable).
 *
 * Côté SPIP, le texte RGPD était affiché par un détour : orion_web.js recopiait
 * le label du checkbox Formidable dans un <span> (stylé par « .choix span »),
 * car les labels du formulaire sont masqués globalement. La structure CF7
 * (label > input + span.wpcf7-list-item-label) est différente : on reproduit
 * ici la présentation d'origine sans toucher au JS.
 */

/* zone du consentement : équivalent de « .choix » Formidable */
.formulaire_spip .editer.saisie_case .wpcf7-form-control-wrap {
	display: block;
	margin-top: 7px;
}
.formulaire_spip .editer.saisie_case label {
	/* ré-affiche le label : les gabarits masquent « .formulaire_spip label »
	 * avec une spécificité très haute (sélecteurs imbriqués compilés du LESS) */
	display: inline !important;
}
.formulaire_spip .editer.saisie_case .wpcf7-list-item {
	display: block;
	margin: 0;
}
.formulaire_spip .editer.saisie_case input[type="checkbox"] {
	display: inline-block;
	width: auto;
	margin: 4px 8px 0 0;
	vertical-align: top;
}
.formulaire_spip .editer.saisie_case .wpcf7-list-item-label {
	display: inline-block;
	width: 90%;
	line-height: 18px;
	font-size: 16px;
}

/* éléments techniques CF7 sans équivalent SPIP */
.formulaire_spip .wpcf7-spinner {
	position: absolute;
}
.formulaire_spip .wpcf7-response-output {
	border: 0;
	margin: 10px 0 0;
	padding: 0;
	font-size: 16px;
}
.formulaire_spip .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	margin: 0;
	padding: 0;
	border: 0;
}
