/* Compat visuelle eduma 5.9 avec les CSS figés du child (iso-prod 5.4.4).
   La 5.9 a supprimé le wrapper externe `.page-title-wrapper.bite` qui portait
   90px de padding haut/bas -> toutes les bannières de titre perdaient 180px.
   On replace le padding total (90px wrapper restant + 90px compensés). */
.top_site_main .page-title-wrapper {
	padding-top: 180px;
	padding-bottom: 180px;
}

/* Coche des checkbox/radio (bug historique, présent aussi en prod) :
   les CSS figés dessinent l'état :checked avec font-family:FontAwesome (v4),
   police jamais chargée -> glyphe manquant (carré). On redirige vers la
   Font Awesome 5 Free chargée par header.php (cdnjs), glyphes équivalents. */
input[type="checkbox"]:checked::before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
input[type="radio"]:checked::before {
	content: "\f111";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 10px;
	line-height: 14px;
}
