/*
Theme Name: Izeecom Child Theme
Description: Theme enfant de Izeecom
Author: IzeeDan
Author URI: https://izeecom.com/
Template: Divi
Version: 1.1
*/

/*CENTRER VERTICALEMENT*/
.centrer-verticalement {
  display: flex;
  flex-direction: column;
  justify-content: center;
/*Et les déclinaisons avec préfixes pour obtenir un résultat homogène sur les divers navigateurs */
  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;
}
/*METTRE EXPOSANTS ET INDICES À LA BONNE TAILLE*/
sup, sub {font-size: 50%;}

/*INVERSER LES 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;
  }
}
/*HAUTEUR DU LOGO SUR MOBILE*/
@media only screen and (max-width : 980px) {.et_header_style_split #logo {max-height: 150px;}}


/*MESSAGE DE SUCCES DU FORMULAIRE DE CONTACT*/
.et-pb-contact-message {position: relative; text-align: center; color: #0082ca; font-size: 22px;}

/*FIXE LA TOOLBAR TEXTE STICKY AU SCROLL*/
.mce-top-part {position: sticky !important;	top: -60px;}

/*MODIFIER LA LISTE A PUCE
.et_pb_text ul li {list-style-type: none;}

.et_pb_text ul li::before {
    font-family: 'ETmodules';
    content: "\3d";
    font-size: 100%;
    color: #0082ca;
    float: left;
    margin-left: -1em;
    margin-right: 0.5em;
}*/