/*
Theme Name: Levupp
Description: Le thème enfant gâté
Author: Aaron Berrebi
Author URI: https://www.levupp.com
Template: Divi
Version: 1.4.1
*/

/*
 _    _____   ___   _ ___ ___  
| |  | __\ \ / / | | | _ \ _ \ 
| |__| _| \ V /| |_| |  _/  _/ 
|____|___| \_/  \___/|_| |_|

*/


/* 
** CENTRER DU CONTENU VERTICALEMENT 
*/

.lp-vcenter {
	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;
}


/*
** INVERSER LE SENS DES COLONNES SUR MOBILE (METTRE LES CLASSES DANS ROW ET SECTION)
*/

@media only screen and (max-width : 980px) {
	.lp-mobile-reverse-section, .lp-mobile-reverse-row, .lp-mobile-reverse {
		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%;
}

/*
** GESTION DES MODULES CODES POUR UNICORN STUDIO
*/
.et_pb_code .et_pb_code_inner, .et_pb_code .unicorn-full-height-wrapper, .et_pb_code .unicorn-embed{
  height:100%;
  width:100%;
  position: relative;
}