/*
Theme Name: Brasserie Le Bouscat
Description: Theme enfant de Divi par l'agence Opé
Author: Agence Opé
Author URI: https://www.agence-ope.fr
Template: Divi
Version: 1.1
*/


/* 
** CENTRER DU CONTENU VERTICALEMENT 
** Voir tuto : https://www.divi-community.fr/snippets-divi/centrer-du-contenu-verticalement
*/

.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;
}

@media only screen and (min-width : 980px) {
	/* BOUTONS EN LIGNE */
	.inline-buttons .et_pb_button_module_wrapper {
		display:inline-block;
		margin-right:15px;
	}
	.inline-buttons .et_pb_button_module_wrapper:last-child {
		margin-right:0;
	}
	.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
		margin: 20px auto;
		width: 100%;
		max-width: initial;
	}
	
	/* AFFICHER LES EVENEMENTS MIEUX */
	.etn-col-lg-4 {
		display: flex;
		flex-direction: column;
	}
	.etn-event-item {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		 flex:1;
	}
	.etn-event-item .etn-event-thumb, .etn-event-item .etn-event-thumb>a {
		height: 100%;
	}
	.etn-event-item .etn-event-thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

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


/*
** 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%;
}
