/*
Theme Name: Les Trafiquantes Divi Child Theme
Description: Theme enfant de Divi
Author: Les Trafiquantes
Author URI: https://les-trafiquantes.fr/
Template: Divi
Version: 1.1
*/

.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 colonnes mobile : nommer row / ligne : inverse */
@media screen and ( max-width: 980px ) {
    .inverse {
        display: flex;
        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 largeur champ captcha */
.et_pb_contact_right p input {
	max-width: 50px;
}

/* Exposants et indices bonne taille */
sup, sub {
    font-size: 70%;
}

/* Entrées blog traduction*/
.et_pb_blog_grid .pagination > .alignleft a:before {
    content: '< Articles précédents';
    visibility: visible;
}
.et_pb_blog_grid .pagination > .alignleft a {
    visibility: collapse;
}
.et_pb_blog_grid .pagination > .alignright a:before {
    content: 'Articles suivants >';
    visibility: visible;
}
.et_pb_blog_grid .pagination > .alignright a {
    visibility: collapse;
}