/*
Theme Name: Divi Community Child Theme
Description: Theme enfant de Divi par Divi Community
Author: Julien - WebMate
Author URI: https://www.divi-community.fr
Template: Divi
Version: 1.1
*/

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

*/


/* 
** CENTRER DU CONTENU VERTICALEMENT 
** Voir tuto : https://www.divi-community.fr/snippets-divi/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;
}


/*
** INVERSER LE SENS DES COLONNES SUR MOBILE
** Voir tuto : https://www.divi-community.fr/snippets-divi/inverser-ordre-des-colonnes-sur-mobile
*/

@media only screen and (max-width : 980px) {
	.dc-inverser-colonnes--section .dc-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%;
}

a.et_pb_button.et_pb_button_0.et_pb_bg_layout_light {
    color: red;
}

/*--------- MOBILE HEADER ---------*/
.mobile-header-dropdown h5 {
    display: flex;
    flex-direction: column;
    height: 45.5px;
    justify-content: center;
}

.mobile-header-dropdown span, .mobile-header-dropdown p {
	display: flex;
}

.mobile-header-dropdown span img, .mobile-header-dropdown p img {
	margin-right: 5px;
}

.mobile-header-dropdown .et_pb_toggle_content {
	padding-bottom: 15px;
}

/*---------------------------------*/

.pages-dropdown h5 {
    font-size: 20px;
    font-weight: 300;
	position: relative;
	padding-bottom: 0px;
	margin-bottom: 10px;
}

.pages-dropdown h5::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f054';
    position: absolute;
	font-size: 12px;
    top: 2px;
    right: 50%;
    width: 12px;
    height: 100%;
    text-align: right;
    transform: rotate(90deg);
    transition: ease-in 0.5s;
}

.pages-dropdown h5::after {
    content: '';
    position: absolute;
    top: 52%;
    right: 0;
    width: 46%;
    height: 0.2px;
    transform: translateY(-50%);
    background-color: black;
}


.pages-dropdown h5.active::before {
	transform: rotate(-90deg);
}

#pages-list {
	list-style: none;
}
#pages-list li a {
	color: black;
}

#pages-list li {
    margin-bottom: 10px;
}