/*
Theme Name: Divi Child
Description: Divi Child Theme par Planete Pixel
Author: Planete Pixel
Author URI: https://planete-pixel.fr
Template: Divi
Version: 1.0.3
*/


/* 
** CENTRER DU CONTENU VERTICALEMENT 
*/

.dc-centrer-verticalement {
	display: flex;
	flex-direction: column;
	justify-content: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
}

/*
** Centrer verticalement
*/
#centrer-verticalement {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.centrer-verticalement {
	display: flex;
	flex-direction: row;
	align-items: center;
}
@media only screen and (min-width : 980px) {
	.centrer-verticalement-desktop {
		display: flex;
		flex-direction: row;
		align-items: center;
	}
}

/*
** INVERSER LE SENS DES COLONNES SUR MOBILE
*/
@media only screen and (max-width : 980px) {
	.inverser-colonnes--section .inverser-colonnes--ligne {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}


/*
** MENU MOBILE : en pleine largeur et le hamburger devient une croix pour fermer
*/

.et_mobile_menu {
	margin-left: -30px;
	padding: 5%;
	width: calc(100% + 60px);
}

.mobile_nav.opened .mobile_menu_bar:before {
	content: "\4d";
}


/* 
** AUGMENTER LA LARGEUR CHAMP RÉSULTAT CAPTCHA 
** Parfois, suivant la taille du texte, certains chiffres du résultat sont masqués
*/
.et_pb_contact_right p input {
	max-width: 50px;
}


/*
** METTRE EXPOSANTS ET INDICES À LA BONNE TAILLE
** Généralement, ils sont bien trop gros…
*/
sup,
sub {
	font-size: 70%;
}


/*
** SUPPRIMER LA TAILLE PAR DEFAUT DES ICONES
** par defaut à 96px
*/
.et-pb-icon {
	font-size: unset;
}


/*
** Couleur du lien sélectionné dans le menu
*/
#top-menu li.current-menu-ancestor>a,
#top-menu li.current-menu-item>a {
	color: #BDD8CB;
}


/*
** Hauteur de la page moins la taille du menu
** pour l'image de fond de l'accueil
*/
.viewheight-minus-menu {
	/* Firefox */
	height: -moz-calc(100% - 80px);
	/* WebKit */
	height: -webkit-calc(100% - 80px);
	/* Opera */
	height: -o-calc(100% - 80px);
	/* Standard */
	height: calc(100% - 80px);
}


/*
** Alignement des images et du texte cote à cote
*/
.div-flexContainer-img-txt {
	display:flex;
	align-items:center;
	column-gap:2em;
}
.div-flexContainer-reverse{
	flex-direction:row-reverse;
}
.div-flexItem-img{
	flex-basis:5em;
}


/*
** cacher le Google reCaptcha
*/
.grecaptcha-badge { visibility: hidden !important; }
