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

/*Modifier le point de rupture du menu mobile*/
/*En fait ici on cache le menu standard et on affiche le menu mobile*/

@media only screen and ( max-width: 1150px ) {
.et_pb_menu .et_pb_menu__menu, 
.et-db #et-boc .et-l .et_pb_menu .et_pb_menu__menu {display: none;}
.et_mobile_nav_menu, .et-db #et-boc .et-l .et_pb_menu .et_mobile_nav_menu  {display: block;}
}
/* 
** 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%;
}
.indiscretions-cadre:before,
.indiscretions-cadre:after {
	content:'';
	width: calc(50% - 150px);
	height: 10px;
	border-bottom: 1px solid #fff;
	display: block;
    position: absolute;
	top: 0;
}
.indiscretions-cadre:before {left: 0;}
.indiscretions-cadre:after {right: 0;}
.blog-slide-a-laffiche .dsm-post-carousel-item .dsm-entry-image {
    border-radius: 160px 160px 160px 160px;
    overflow: hidden;
    border-width: 2px;
    border-color: #FFFFFF;
    width: 160px !important;
    height: 160px !important;
    margin: auto;
}
.blog-slide-a-laffiche h4.dsm-entry-title {
	font-weight: 500 !important;
	margin-top: 15px;
}
.hp-picto h3 {
	padding-left: 65px;
	position: relative;
}
.hp-picto h3:before {
	content:'';
	display: block;
	width: 53px;
	height: 53px;
	position: absolute;
    left: 0;
    top: -12px;
}
.hp-picto.affiche h3:before {
	background: url('/wp-content/uploads/2023/03/picto-rose-alaffiche.svg') no-repeat center;
	background-size: 100%;
}
.hp-picto.zoom h3:before {
	background: url('/wp-content/uploads/2023/03/picto-rose-zoom.svg') no-repeat center;
	background-size: 100%;
}
.hp-picto.question h3:before {
	background: url('/wp-content/uploads/2023/03/picto-rose-question-a.svg') no-repeat center;
	background-size: 100%;
}
.blog-zoom h4.dsm-entry-title {
	font-weight: 500 !important;
	margin-top: 45%;
}
.blog-zoom .dsm-entry-wrapper {
	position: absolute;
	top: 0;
	height: 450px !important;
	background-color: rgba(50, 29, 25, .5);
	width: 100%;
	
}
.blog-zoom .dsm-entry-thumbnail {height: 450px !important;}
.blog-question .et_pb_post {height: 450px;}
@media only screen and (max-width: 980px) {
	.hp-news-une .dp-dfg-layout-list .dp-dfg-item {
		display: flex;
		flex-direction: column;
	}
}

/*ACCORDEON BLOG*/

.faq-accordion .accordion:before {display: none;}
.faq-accordion .accordion {
  background-color: transparent ;
  color: #444;
  cursor: pointer;
  padding: 10px 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
	transition: 0.4s;
	position: absolute !important;
    transition: 0.4s;
    width: 100%;
    top: 0;
    right: 0;
}

.faq-accordion .active, .accordion:hover {background-color: transparent;}

.faq-accordion .accordion:after {
  content: '\002B';
  color: #E00855;
  font-weight: bold;
  float: right;
  margin-left: 5px;
	font-size: 35px;
}

.faq-accordion .active:after {content: "\2212";}

.faq-accordion .entry-summary {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq-accordion .dp-dfg-header.entry-header {padding-right: 10px;}
.faq-accordion .dp-dfg-content.entry-summary {background-color: transparent;}

.faq-accordion .dp-dfg-skin-default .dp-dfg-item>div:last-of-type {padding-bottom: 0;}

/*Accodeon a l'affiche*/
.et-db #et-boc .et-l #affiche .dpdfg_filtergrid.faq-accordion .dp-dfg-layout-list .dp-dfg-item {
    column-gap: 2em;
	grid-template-columns: 100px auto;
}
.et-db #et-boc .et-l #affiche .dpdfg_filtergrid.faq-accordion .dp-dfg-layout-list .dp-dfg-item img {border-radius: 50%;} 
.et-db #et-boc .et-l #affiche .dpdfg_filtergrid.faq-accordion .dp-dfg-layout-list .dp-dfg-item figure {padding: 5px 0 5px 30px;}
.et-db #et-boc .et-l #affiche .dpdfg_filtergrid.faq-accordion .dp-dfg-header.entry-header {padding: 28px 0;}

.et-db #et-boc .et-l #affiche .dpdfg_filtergrid.faq-accordion .accordion {top: -65px;}

@media screen and (max-width:767px){
	.et-db #et-boc .et-l #affiche .dpdfg_filtergrid.faq-accordion .accordion {top: 0px;}
	.et-db #et-boc .et-l #affiche .dpdfg_filtergrid.faq-accordion .dp-dfg-header.entry-header {padding-left: 20px;}
}

/*Quezako*/
.et_pb_equal_columns .dsm_card {height: auto;}
.bloc-temoignage .dsm-grid-post-holder-inner {
	display: flex;
	width: 80%;
    margin: auto;
}
.bloc-temoignage .dsm-post-carousel-item .dsm-entry-image {
   border-radius: 160px 160px 160px 160px;
    overflow: hidden;
    width: 160px !important;
    height: 160px !important;
}

.bloc-temoignage .dsm-entry-wrapper {width: calc(100% - 200px);}
.quezako-temoin img {border-radius: 50%;}
/*formulaire temoin*/
.form-temoin input,
.form-temoin textarea,
.form-temoin select {
	background-color: #efefef;
}
.form-temoin input::placeholder,
.form-temoin textarea::placeholder{
	color: #707070;
	font-weight: 500;
}
.form-temoin .gform_button.button {
	background-color: #E00855;
	color: #fff;
	text-transform: uppercase;
	border: none;
	padding: 8px;
	font-size : 15px;
	font-weight: 500;
	transition: all ease-in-out 0.5s;
}
.form-temoin .gform_button.button:hover {
	background-color: #333333;

}
/*************Menu***************/
.dsm_fixed_header_shrink.dsm_fixed_header_shrink_active header.et-l--header .et_pb_menu__menu>nav>ul>li>a {

	padding-top: 0;
	padding-bottom: 0;
}

.nav li ul, .et-db #et-boc .et-l .nav li ul {
	width: 600px;
}
.et_pb_menu__menu>nav>ul>li.ssmenu-quesaco>ul,
.et-db #et-boc .et-l .et_pb_menu__menu>nav>ul>li.ssmenu-quesaco>ul {
    top: calc(100% - 1px);
    left: -300px;
}
.et_pb_menu__menu>nav>ul>li.ssmenu-tribune>ul {
    top: calc(100% - 1px);
    left: -300px;
}
.et-menu li li a,
.et-db #et-boc .et-l .et-menu li li a {
    padding: 6px 20px;
    width: fit-content;
	font-weight: 400 !important;
    font-size: 14px !important;
}
.btn-menu-abonnement {
	border: 1px solid #333333;
	padding: 4px 5px 0 5px;
    margin-top: 2px !important;
    margin-right: 10px !important;
}
.dsm_fixed_header_shrink.dsm_fixed_header_shrink_active header.et-l--header .et_pb_menu__menu>nav>ul>li.btn-menu-abonnement>a {
    padding-bottom: 8px;
}

.et_pb_menu .et-menu>li, .et-db #et-boc .et-l .et_pb_menu .et-menu>li {
    padding-left: 5px;
    padding-right: 5px;
}
.et-db #et-boc .et-l .et_pb_menu--without-logo .et_pb_menu__menu>nav>ul>li>a,
.et_pb_menu__menu>nav>ul>li>a {
    padding-bottom: 3px;
}
@media only screen and (max-width: 1150px){
		.et_pb_row_1_tb_header.et_pb_row.ligne-menu {
			display: flex;
		flex-direction: row;
	}
	.et_pb_menu .et_mobile_menu,
	.et-db #et-boc .et-l .et_mobile_menu {
    	top: 100%;
    	padding: 5%;
    	margin: auto;
    	width: 100vw;
    	right: 0;
    	overflow-y: scroll;
   	 max-height: 80vh;
	}
	.et_pb_menu--style-left_aligned.et_pb_text_align_center .et_pb_menu__wrap {justify-content: right;}
	.et_pb_menu .et_mobile_menu, .et_pb_menu .et_mobile_menu ul {
    list-style: none!important;
    text-align: left;
	}
	.ss-menu-site {display: none;}
	/***************************************************/
	/********************MODIFS SSMENU APPARENT PAGE INDISCRETION*******************************/
	.ss-menu-site.newsindis {display: block;}
	.ss-menu-site.newsindis .et_pb_menu .et_pb_menu__menu, 
	.ss-menu-site.newsindis .et-db #et-boc .et-l .et_pb_menu .et_pb_menu__menu {display: block !important;}
	.ss-menu-site.newsindis .et_mobile_nav_menu, 
	.ss-menu-site.newsindis .et-db #et-boc .et-l .et_pb_menu .et_mobile_nav_menu {display: none !important;}
}
@media only screen and (max-width: 1150px) and (min-width: 980px){
	.et_pb_menu .et_mobile_menu,
	.et-db #et-boc .et-l .et_mobile_menu {left: calc(-25vw - 11px);}
}
@media only screen and (max-width: 980px){
	.et_pb_menu .et_mobile_menu,
	.et-db #et-boc .et-l .et_mobile_menu {left: -50vw;}
}

/*********INdiscretions*****************/
.projet-affiche-titre h2,
.projet-decodage-titre h2,
.projet-zoom-titre h2,
.projet-question-titre h2,
.projet-touch-titre h2,
.projet-pousse-titre h2,
.projet-marche-titre h2,
.projet-agenda-titre h2,
.projet-newsroom-titre h2,
.projet-sangneuf-titre h2,
.projet-tribunepart-titre h2,
.projet-photo-titre h2,
.projet-aime-titre h2 {
	padding-left: 80px;
}
.projet-affiche-titre h2:before,
.projet-decodage-titre h2:before,
.projet-zoom-titre h2:before,
.projet-question-titre h2:before,
.projet-touch-titre h2:before,
.projet-pousse-titre h2:before,
.projet-marche-titre h2:before,
.projet-agenda-titre h2:before,
.projet-newsroom-titre h2:before,
.projet-sangneuf-titre h2:before,
.projet-tribunepart-titre h2:before,
.projet-photo-titre h2:before,
.projet-aime-titre h2:before {
	content:'';
	width: 66px;
	height: 66px;
	left: 0;
	    display: block;
    position: absolute;
	    top: -10px;

}
@media screen and (max-width: 767px) {
	.projet-affiche-titre h2:before,
.projet-decodage-titre h2:before,
.projet-zoom-titre h2:before,
.projet-question-titre h2:before,
.projet-touch-titre h2:before,
.projet-pousse-titre h2:before,
.projet-marche-titre h2:before,
.projet-agenda-titre h2:before,
	.projet-newsroom-titre h2:before,
	.projet-sangneuf-titre h2:before,
.projet-tribunepart-titre h2:before,
.projet-photo-titre h2:before,
.projet-aime-titre h2:before {
		width: 45px;
		height: 45px;
		top: -5px;
	}
	.projet-affiche-titre h2,
	.projet-decodage-titre h2,
	.projet-zoom-titre h2,
	.projet-question-titre h2,
	.projet-touch-titre h2,
	.projet-pousse-titre h2,
	.projet-marche-titre h2,
	.projet-agenda-titre h2,
	.projet-newsroom-titre h2,
	.projet-sangneuf-titre h2,
	.projet-tribunepart-titre h2,
	.projet-photo-titre h2,
	.projet-aime-titre h2 {
		padding-left: 60px;
	}
}
.projet-affiche-titre h2:before {
	background: url('/wp-content/uploads/2023/03/a-l-affiche-picto.svg') no-repeat center;
	background-size: contain;
}
.projet-decodage-titre h2:before {
	background: url('/wp-content/uploads/2023/03/decodage-picto.svg') no-repeat center;
	background-size: contain;
}
.projet-zoom-titre h2:before {
	background: url('/wp-content/uploads/2023/03/picto-zoom-rose.svg') no-repeat center;	
	background-size: contain;
}
.projet-question-titre h2:before {
	background: url('/wp-content/uploads/2023/03/picto-3questions.svg') no-repeat center;
	background-size: contain;
}
.projet-touch-titre h2:before {
	background: url('/wp-content/uploads/2023/03/picto-hvtouch.svg') no-repeat center;
	background-size: contain;
}
.projet-pousse-titre h2:before {
	background: url('/wp-content/uploads/2023/03/picto-pousse.svg') no-repeat center;
	background-size: contain;
}
.projet-marche-titre h2:before {
	background: url('/wp-content/uploads/2023/03/picto-marche.svg') no-repeat center;
	background-size: contain;
}
.projet-agenda-titre h2:before {
	background: url('/wp-content/uploads/2023/03/picto-agenda.svg') no-repeat center;
	background-size: contain;
}
.projet-newsroom-titre h2:before {
	background: url('/wp-content/uploads/2023/03/picto-newsroom.svg') no-repeat center;
	background-size: contain;
}
.projet-sangneuf-titre h2:before {
	background: url('/wp-content/uploads/2024/09/HV-PICTO-sang-neuf.svg') no-repeat center;
	background-size: contain;
}
.projet-tribunepart-titre h2:before {
	background: url('/wp-content/uploads/2024/09/HV-PICTO-tribune.svg') no-repeat center;
	background-size: contain;
}
.projet-photo-titre h2:before {
	background: url('/wp-content/uploads/2024/09/HV-PICTO-photo.svg') no-repeat center;
	background-size: contain;
}
.projet-aime-titre h2:before {
	background: url('/wp-content/uploads/2024/09/HV-PICTO-aime.svg') no-repeat center;
	background-size: contain;
}
/*LinkedIn icone*/
#affiche .dp-dfg-container article ul.wp-block-social-links {list-style-type: none;}
#affiche .dp-dfg-container article ul.wp-block-social-links li.wp-social-link.wp-social-link-linkedin svg {
	fill: #0d66c2;
    color: #0d66c2;
}

/****Gestion imag dans CPTUI***********/
.img-padding {padding: 10px 20px;}
.img-padding.is-style-rounded img {border-radius: 50%;}
@media screen and (max-width: 767px) {
	.img-padding.alignleft {float: none;}
}
/**/
#Decodage article figure.wp-block-image.alignleft,
#zoom article figure.wp-block-image.alignleft,
#question article figure.wp-block-image.alignleft, 
#hv-touch article figure.wp-block-image.alignleft, 
#ca-pousse article figure.wp-block-image.alignleft, 
#newsroom article figure.wp-block-image.alignleft {padding: 10px 20px;}


/****Gestion imag de CPTUI vers indiscretions***********/
article figure.aligncenter {
	text-align: center;
}
/*****Formulaire abonnement****/
.form-news .sib-form {
    background-attachment: fixed;
    font-size: 15px;
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
    padding: 0;
    margin: 0;
}
.form-news #sib-container {
    background: transparent;
	padding: 0;
    margin: 0 auto;
    display: inline-block;
    width: 100%;
}
.form-news .sib-form-block {
    padding: 0;
	margin-bottom: 30px;
}
 #sib-container input:-ms-input-placeholder {
    text-align: left;
    font-family: "Helvetica", sans-serif;
    color: #c0ccda;
  }

  #sib-container input::placeholder {
    text-align: left;
    font-family: "Helvetica", sans-serif;
    color: #c0ccda;
  }

  #sib-container textarea::placeholder {
    text-align: left;
    font-family: "Helvetica", sans-serif;
    color: #c0ccda;
  }
.form-news #sib-form {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-flow: wrap;
}
.form-news #sib-form>div {width: 47%;}
.form-news #sib-form .entry__label {
	color: #ffffff;
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	font-weight: 500;
}
.form-news #sib-form .sib-optin.sib-form-block .entry__choice span {
	color: #ffffff;
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	font-size: 14px;
}
.form-news #sib-form .sib-optin.sib-form-block .entry__specification {
	color: #ffffff;
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	font-size: 10px;
}
.form-news .sib-form__declaration {padding:0;}
.form-news .sib-form__declaration p {color: #ffffff;}
.form-news .sib-form-block__button.sib-form-block__button-with-loader {
	background-color: transparent;
	border: 1px solid #ffffff;
	color: #ffffff;
}
.form-news #sib-form>div.btn-abonnement {
	width:100%;
}
.form-news .sib-form .clickable_link {
    color: #fff;
	font-weight: 600;
}
@media screen and (max-width:767px) {
	.form-news #sib-form {flex-direction: column;}
	.form-news #sib-form>div {width: 100%;}
}
/**Tribune***/
.et_pb_gutters3 .et_pb_column_4_4 .et_pb_module.tribune-filtergrid,
.tribune-filtergrid .dp-dfg-layout-fullwidth .dp-dfg-item {
	margin-bottom: 0;
}
.tribune-filtergrid .dp-dfg-custom-field.dp-dfg-cf-accroche {text-align: center;}
/*BLOC AU MARCHE - INDISCRETION*/
.et-db #et-boc .et-l #au-marche .dp-dfg-container .dp-dfg-items article .dp-dfg-content .et_pb_section {background-color: transparent;}
.et-db #et-boc .et-l #au-marche .dp-dfg-container .dp-dfg-items article .dp-dfg-content .et_pb_section .et_pb_row {width: 100%; max-width: 100%;}

/*Placement du custom-content en seconde position*/
#filter_plume article .dp-dfg-custom-content {grid-row-start: 2;}

/****SEARCH RESULT*******/

.reultat-recherche .et_pb_salvattore_content>div {
	display: grid;
    /*grid-template-columns: repeat(3, 1fr);*/
    grid-gap: 30px;
    grid-auto-rows: minmax(100px, auto);
}
#affiche .dp-dfg-container article ul.wp-block-social-links li.wp-block-social-link.wp-social-link-linkedin {
	background-color: transparent !important;
		
}

/*Dépliant label details*/
details.wp-block-details summary {
	color: #e00855;
	font-weight: 700;
}
.et-db #et-boc .et-l .et_pb_menu--without-logo .et_pb_menu__menu>nav>ul>li.destination-jaune>a {
    color:#f9dc00 !important;
}