/*
Theme Name: Divi  Child Theme
Description: Theme enfant de Divi par lib-rdv pour Dieteticien-nutrition.fr
Author: Marie jouet - lib-rdv
Author URI: 
Template: Divi
Version: 1.1
*/

/* Recopie Styles CSS de base sur site principal*/
body {
	font-family: "area-inktrap", Helvetica, sans-serif; 
	font-size: 16px;
	font-weight: 400;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
  color: #292525;
}
.site-content{
	margin-top: 60px;
}
/* List */
ul {
  padding-left: 15px;
  margin: 0;
  list-style-type: none;
}
ul li {
  position: relative;
}

/***********************************************************************
                            FOOTER
***********************************************************************/

footer {
  margin-top:32px;
}


/* 
** CALER LES TAILLES SUR MOBILE
** Voir tuto : https://astucesdivi.com/responsive-design-divi/
*/

/* 
** Limiter les marges gauche et droite sur calendrier TB
*/
.et-learn-more .learn-more-content {
    padding: 30px 3px 20px;
    visibility: hidden;
    border-top: 1px solid #e7e7e7;
}

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

/*
** METTRE EXPOSANTS ET INDICES À LA BONNE TAILLE
** Généralement, ils sont bien trop gros…
*/
sup, sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}