/*
Theme Name: WCADP
Text Domain: WCADP
/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Condensed:wght@700&family=Roboto+Slab:wght@500&display=swap');

html,
body {
	border: none;
	margin: 0;
	padding: 0;
	overflow-y: auto;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	text-align: inherit;
	position:relative;
}
blockquote{
font-size: 2rem;
}
blockquote:before{
display:block;
content:open-quote;
font-size:5rem;
position:absolute;
left: -26px;
top: -12px;
}
blockquote:after{
display:block;
content:close-quote;
font-size:5rem;
position:absolute;
right: 5px;
bottom: -33px;
}

IMG{
max-width:100%;
height:auto;
}
.featured-media{
margin:0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.alignleft{
float:left;
margin:0 1.5rem 0 0;
}
.alignright{
float:right;
margin:0 0 0 1.5rem ;
}
/* -------------------------------------------------------------------------- */

/*	1. Document Setup
/* -------------------------------------------------------------------------- */


html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	background: white;
	box-sizing: border-box;
	color: #000;
	font-family: 'Roboto Slab', sans-serif;
	font-size: 1.8rem;
	text-align: left;
}

*,
*::before,
*::after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	word-wrap: break-word;
}

#site-content {
	overflow: hidden;
}


/* Clearing ---------------------------------- */

.group::after,
.entry-content::after {
	clear: both;
	content: "";
	display: block;
}


/* Base Transitions -------------------------- */

a,
path {
	transition: all 0.15s linear;
}


/* Screen Reader Text ------------------------ */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}


/* Skip Link --------------------------------- */

.skip-link {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}

.skip-link:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}









.grid {
  overflow: hidden;
}
/* global styles for direct child ex. .grid3 */
.grid > * {
  display: block;
  padding: 0;
  /* gutter value */
  margin-left: -20px;
  text-align: left;
}
/* global styles for each "cell" */
.grid > * > * {
  display: inline-block;
  /* gutter value */
  padding-left: 20px;
  margin-left: 0;
  vertical-align: top;
}
/* whitespace fixing for modern browsers including IE9+ */
:root .grid {
  font-size: 0;
  /* fallback for IE9+ */
  text-justify: distribute-all-lines;
}
:root .grid > * > * {
  /* fallback for Opera Mini */
  font-size: 14px;
  font-size: 1.4rem;
}
/* Opera hack */
.opera:-o-prefocus,
.grid > * {
  word-spacing: -0.43em;
}
.grid2 > * {
  width: 50%;
}
.grid3 > * {
  width: 33.333%;
}
.grid4 > * {
  width: 25%;
}
.grid5 > * {
  width: 20%;
}
.grid6 > * {
  width: 16.667%;
}
.grid8 > * {
  width: 12.5%;
}
.grid10 > * {
  width: 10%;
}
.grid12 > * {
  width: 8.333%;
}
/* unequal grids (1-2, 2-1, 1-3 and 3-1) for 2 blocks */
.grid2-1 > *:first-child,
.grid1-2 > * + * {
  width: 66.666%;
}
.grid1-2 > *:first-child,
.grid2-1 > * + * {
  width: 33.333%;
}
.grid1-3 > *:first-child,
.grid3-1 > * + * {
  width: 25%;
}
.grid3-1 > *:first-child,
.grid1-3 > * + * {
  width: 75%;
}

@media (min-width: 481px) and (max-width: 768px) {
/* grid rwd for small screens */
  .grid3 > *,
  .grid4 > *,
  .grid5 > *,
  .grid6 > *,
  .grid8 > *,
  .grid10 > *,
  .grid12 > * {
    width: 50%;
  }
}
  
 @media (max-width: 480px) {
  /* grid rwd for tiny screens */
  .grid > * > * {
    width: 100% !important;
  }
}  

/* ------------------------------------ */
/*    CSS WCADP  */
/* ------------------------------------ */

.centrer {
width:100%;
max-width:1400px;
padding:0 20px;
position:relative;
margin:0 auto;
}
#site-content{
padding-top:20px;
}
.zone{
position:relative;
width:75%;
padding:0 50px 10px 0;
float:left;
overflow: hidden;
}
.colonne{
position:relative;
width:25%;
padding:0 10px;
float:left;
}
.nettoyeur{
clear:both;
}
nav{
z-index: 40;
position: relative;
}	
/* BANDEAU HEADER */
#site-header {
	background: #000000;
	position: relative;
	margin:0 auto;
	padding:0;
}

.barre_menu{
background:white;
height:1px;
}
.custom-logo{
display:inline-block;
width:44%;
max-width:250px;
padding:20px 20px 20px 0;
height: auto;
}

#btmenu{
display:none;
position:absolute;
right: 24px;
top: 31%;
text-decoration: none;
border: 1px solid #b7b7b7;
padding: 9px 8px;
line-height: 1;
text-transform: uppercase;
color:white;
}

/* MENU NAVIGATION  ---------------------------------- */
.reset-list-style{
margin:0;
padding: 0;
}
.menu_primaire li{
margin:0;
padding:0 !important;
display: inline;
position: relative;
}

.menu_primaire a {
display:inline-block;
color: white !important;
line-height: 1.2;
text-decoration: none;
word-break: normal;
word-wrap: normal;
text-transform:uppercase;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: 2px;
font-size: 2.2rem;
padding:11px 20px;
font-weight:bold;
}
.menu_primaire a:hover{
background:white;
color:black !important;
text-decoration:none;
}
.menu_primaire a:hover:after{
display: block;
position: absolute;
width: 16px;
height: 16px;
bottom: -22px;
left: 48%;
background: black;
transform: rotate(45deg);
content: " ";
}
.menu_primaire .current_page_ancestor{
text-decoration:none;
}
.menu_primaire li.current-menu-item > a{
text-decoration:none;
box-shadow: #cc1305 0 -1px inset;
background:transparent;
color:white !important;
}
.menu_primaire .icon{
display:none;
}

ul.sub-menu{
display:none;
position:absolute;
width: 31rem;
top: 33px;
left:0;
border-radius:0;
background:black;
padding:0;
}

.menu_primaire a:hover ul.sub-menu{
display:block !important;
position:absolute;
}

ul.sub-menu li{
margin:2rem 2.5rem;
display:block;
}
ul.sub-menu a{
display:inline;
font-size:1.8rem;
text-transform:none;
font-weight:normal;
letter-spacing: 0;
padding:0 0 6px 0;
line-height:1.5;
animation: popIn both 0.3s 0.2s;
font-weight:medium;
font-family: 'Roboto', sans-serif;
}

ul.sub-menu a:hover{
box-shadow: #cc1305 0 -1px inset;
background:transparent;
color:white !important;
}
ul.sub-menu a:hover:after{
display: none;
}
ul.sub-menu li.menu-item-has-children:hover > ul,
ul.sub-menu li.menu-item-has-children:focus > ul,
ul.sub-menu li.menu-item-has-children.focus > ul {
	left: 0;
	}

.outils_header{
position:absolute;
right: 12px;
top: -8px;
z-index:50;
}	
	
#recherche{
width: 48px;
height: 32px;
position: relative;
top: 18px;
left: 4px;
display:inline-block;
}
.formulaire_recherche{	
width: 0px;
float: left;
overflow: hidden;
height: 52px;
margin: 0;
padding: 7px 0 0 0;
}
.recherche_ouvert{
width:230px !important;
}
.legende_carte{
text-align:center;
font-family: 'Roboto Slab', sans-serif;
}
.legende_carte p{
display:inline;
}
.legende_carte img{
display:inline;
}

.carre{
width:15px;
height:15px;
border:1px solid black;
display:inline-block;
margin:0 10px 0 30px;
}
/* MENU PRINCIPAL SMARTPHONE   ---------------------------------- */
.menu-modal{
display:none;
background:black;
width:100%;
padding:0 0 30px 0;

}
.modal-menu A{
display:block;
color:white !important;
padding:11px 15px;
font-size:1.8rem;
cursor:pointer;
text-align: center;
border-bottom:1px solid #777777;
text-decoration:none;
text-transform:uppercase;
font-family: 'Roboto Condensed', sans-serif;
}
.menu-modal .sub-menu-toggle{display:none;}

.menu-modal ul.sub-menu{
position:relative;
width:100%;
top: 0px;
left: 17px;
}
.menu-modal ul.sub-menu a{
text-decoration:none;
font-size:1.5rem;
text-transform:none;
}

.menu-modal .menu_secondaire{
position:relative;
right:0;
padding:20px;
text-transform:none;
font-family: 'Roboto Slab', sans-serif;
}
.menu-modal .menu_secondaire A{
text-transform:none;
font-family: 'Roboto Slab', sans-serif;
}
.modal-menu li.menu-item{
padding:0 50px;
}

/* MENU SECONDAIRE   ---------------------------------- */
.menu-modal.show-modal {
    display: block;
	background: black;
}
.menu_secondaire{
position:absolute;
right:20px;
top:108px;
margin:0;
}

#menu-secondaire-1{
display:block !important;
top:0;
text-align: center;
}
#menu-secondaire-1 li.menu-item, .sub-menu li.menu-item{
padding:0;
}
#menu-secondaire-1 a,.sub-menu a{
border:0 none;
}
.menu_secondaire LI{
list-style:none;
display:inline-block;
}
.menu_secondaire A{
color: white !important;
font-size:1.5rem;
text-decoration: none;
padding:3px;
margin: 0  0 0 30px;
}
.menu_secondaire A:hover{
box-shadow: #cc1305 0 -1px inset;
text-decoration: none;
}

.bloc_recherche_menu{
position: absolute;
bottom: -1px;
right: 37px;
}

/* MENU PIEDS DE PAGE   ---------------------------------- */
.footer-top-hidden #site-footer{
text-align:center;
margin-top: 15px;
padding: 20px 30px 20px 30px;
color:white;
background:black;
}
.menu_pieds{
padding:0;
}

.menu_pieds  li{
display: inline-block;
}
#site-footer  .menu_pieds A{
display: inline-block;
color: white !important;
font-size:2rem;
text-decoration: none;
margin:5px 20px;
font-family: 'Roboto', sans-serif;
}
#site-footer  .menu_pieds A:hover{
box-shadow: #cc1305 0 -1px inset;
text-decoration: none;
}
#site-footer A{
display: inline-block;
color: white !important;
margin:2rem 3rem;
text-decoration: none;
}

#site-footer {
margin-top: 30px;
background:transparent;
font-family: 'Roboto Slab', sans-serif;
}
/* MENU LANGUE   ---------------------------------- */

.widget_icl_lang_sel_widget{
margin:10px;
background:black;
border-bottom:1px solid #808080; 
height: 26px;
width:100px;
font-size:1.3rem;
display: inline-block;
}
.wpml-ls-legacy-dropdown{
width:auto;
}
.wpml-ls-legacy-dropdown a{
margin: 0;
padding: 0;
background: transparent;
color: white;
border: 0 none;
}
.wpml-ls-link{
padding: 5px 0 !important;
}
.primary-menu-wrapper + .header-toggles{
margin:0;
}
.wpml-ls-sub-menu{
background:black;
padding:10px !important;
}
.wpml-ls-sub-menu .wpml-ls-legacy-dropdown a{
padding: 5px;
}
.wpml-ls-native{
font-size:1.1rem;
}

/* POP in abonnement ---------------------------------- */
#sign_up{
padding:20px;
background:white;
}


/* HOME PAGE  ---------------------------------- */

.titre_bloc{
display:block;
text-align:center;
border-bottom:1px solid #cc1305;
font-size:2.6rem;
padding:10px;
color:white;
margin: 0.2rem 0 3rem 0;
font-family: 'Roboto', sans-serif;
}
.lien_bloc_home{
display:block;
text-decoration:none;
color:white;
padding:0 2rem;
font-family: 'Roboto Slab', sans-serif;
font-size:1.6rem;
}
.vignette_home{
max-height:335px;
overflow:hidden;
position:relative;
}
.pvignette_home{
max-height:200px;
overflow:hidden;
position:relative;
}

.doc_chiffres{
font-family: 'Roboto slab', sans-serif;
font-size:5rem;
font-weight:bold;
color:white;
letter-spacing:3px;
background:#cc1305;
display:inline-block;
margin:2rem 0.5rem;
padding:0 0.5rem;
 }
.doc_home{
font-family: 'Roboto', sans-serif;
text-transform:uppercase;
font-size:2.7rem;
margin:0 auto 0.7rem auto;
}

.titre_carte{
position:absolute;
top:75px;
left:0;
display:inline-block;
text-transform:uppercase;
background:#ededed;
padding:5px 20px;
font-size: 2.8rem;
max-width: 590px;
letter-spacing: -1px;
}

.bloc_chiffre{
background:url(/wp-content/themes/WCADP/assets/images/fond_boule.png) no-repeat center 90px;
text-align:center;padding:0;font-size:1.7rem;
}
.chiffre{
font-size:7rem;
display:block;
margin:0 0 50px 0;
color:#cc1305;
text-align:center;
font-family: 'Roboto', sans-serif;
}
.chiffre_titre{
text-transform:uppercase;
font-size:2.3rem;
margin:0 0 0.7rem 0;
line-height:1.2;
font-family: 'Roboto Condensed', sans-serif;
font-weight:bold;
}

.bthautpage{
position: fixed;
right: 0;
bottom: 0;
z-index: 1000;
opacity:0.5}
.bthautpage:hover{
opacity:1}


/* TITRAGE et TEXTE---------------------------------- */
H1, H1.entry-title{
position:relative;
font-size:5rem;
letter-spacing:1px;
margin:20px 0 50px 0;
border-bottom:1px solid #cc1305;
padding:0 0 15px 0;
max-width:1000px;
font-family: 'Roboto', sans-serif;
font-weight:bold;
}
H2{
margin:2.5rem 0 1.2rem 0;
font-size:2.3rem;
text-transform:uppercase;

}
H3{
margin:2rem 0 1.5rem 0;
font-size: 2rem;
color:#cc1305;
font-weight:bold;
}
H4{
font-family: 'Roboto Condensed', sans-serif;
font-weight:bold;
font-size:3.5rem;
text-transform:uppercase;
margin:2rem 0;
}
p{
margin:1rem 0;
	line-height: 1.5;
}

.outils{
position:absolute;
right:0px;
top:100%;
background:white;
display:inline-block;
font-family: 'Roboto Slab', sans-serif;
font-size:1.5rem;
font-weight:normal;
padding:0 20px;
margin-top: -14px;
}
.btfb,.bttw{
display:inline-block;
cursor:pointer;
margin: 0 0 -10px 0;
width:32px;
height:32px;
background: url(/wp-content/themes/WCADP/assets/images/sprite.png) no-repeat 0px 0px
}
.bttw{
background: url(/wp-content/themes/WCADP/assets/images/sprite.png) no-repeat -29px 0px
}

A.lien_auteur{
text-decoration:underline;
}
.texte{
font-family: 'Roboto Slab', sans-serif;
font-size:1.8rem;
margin:0 0 3rem 0;
max-width:1000px;
position:relative;
}
A{
color:black;
text-decoration:underline;
text-decoration-thickness: 3px;
text-decoration-color: #CC1305;
cursor:pointer;
}

/* PAGINATION   --------------------------------- */
.pagination{
text-align:center;
}
.pagination A{
color:gray;
border:1px solid gray;
display:inline-block;
padding:1rem;
margin:2rem;
font-size:2rem;
text-decoration:none;
}





/* MEMBRES   --------------------------------- */
.bloc_membre{
display:block;
position:relative;
text-decoration:none;
text-align:center;
color:black;
font-size:2rem;
border:1px solid black;
padding: 60px 15px 15px 15px;
margin: 41px 0;
min-height:180px;
}
.bloc_membre .logo IMG{
position:absolute;
display:block;
padding:0 20px;
background:white;
top: -40px;
left:50%;
transform: translate(-50%,0); 
height: 70px;
width:auto;
}

.lien_bloc{
display:block;
color:black;
text-decoration:none;
margin: 0 0 26px 0;
}
.lien_bloc_actu{
display:block;
color:black;
text-decoration:none;
padding: 1rem;
border-bottom: 1px solid #cc1305;
margin: 0 0 2rem 0;
min-height:260px;
}
.lien_bloc_newsletter{
display:block;
color:black;
text-decoration:none;
border-bottom: 1px solid #cc1305;
margin: 0 0 2rem 0;
min-height:160px;
}
.lien_bloc_newsletter A{
display:inline-block;
margin:2px;
padding:3px 8px;
color:white;
border:1px solid #cc1305;
color:#cc1305;
text-align:center;
text-decoration:none;
}

.vignette{
min-width:130px;
width:130px;
float:left;
margin-right:20px;
min-height: 10px;
}
.vignette IMG{
width: 100%;
height: auto;
}

.vignette_medium{
min-height:150px;
max-height:170px;
overflow:hidden;
position:relative;
}
.vignette_mediumdefaut{
width:100%;
height:160px;
background:#cc1305;
}
.vignette_recherche{
min-width:130px;
width:130px;
float:left;
margin-right:20px;
min-height: 10px;
}
.titre{
font-size:3.5rem;
margin:10px 0 0.5rem 0;
line-height: 1;
font-family: 'Roboto', sans-serif;
font-weight:bold;
}
.ptitre{
font-size:2.4rem;
margin:10px 0 0.4rem 0;
line-height: 1;
}
.petit_titre{
font-size:1.6rem;
margin:10px 0 0.4rem 0;
line-height: 1.3;
font-family: 'Roboto Slab', sans-serif;
overflow:hidden;
}

.introduction{
font-size:1.9rem;
font-family: 'Roboto Slab', sans-serif;
}
.pintroduction{
font-size:1.4rem;
font-family: 'Roboto Slab', sans-serif;
margin:9px 0 0 0;
}
.auteurs{
font-size:1.5rem;
font-family: 'Roboto Slab', sans-serif;
margin:0;
display:inline-block;
}
.bloc_tag{
background:#eeeeee;
padding:2rem;
margin:70px 0 20px 0;
position:relative;
}
.bloc_tag:before{
content:" ";
position:absolute;
width:100%;
height:1px;
background:#cc1305;
top:-25px;
left:0;
}
.bloc_tag .titre{
font-size:2.2rem;
font-weight:bold;
font-family: 'Roboto Slab', sans-serif;
margin:0 0 20px 0;
}

.bloc_tag p{
font-size:1.8rem;
font-family: 'Roboto Slab', sans-serif;
margin:8px;
}

.tag,.ptag, .bloc_tag A{
display:inline-block;
text-transform:uppercase;
text-decoration:none;
color:black;
border-bottom:1px solid #cc1305;
font-family: 'Roboto Condensed', sans-serif;
font-size: 2.5rem;
background:white;
padding:1px 5px;
margin: 9px 10px 0 0;
}
.ptag,.bloc_tag A{
font-size: 1.8rem;
}
.ptag:hover,.bloc_tag A:hover{
border-bottom:1px solid #cc1305;
}
.tag2{
display:inline-block;
text-transform:uppercase;
text-decoration:none;
color:black;
border-bottom:1px solid #cc1305;
font-family: 'Roboto Condensed', sans-serif;
font-size: 2.5rem;
position:absolute;
top:-52px;
left:0;
background:white;
}
.hachure{
width:100%;
height:33px;
background: url(/wp-content/themes/WCADP/assets/images/hachure.png) no-repeat center center;
margin:15px 0;
}


/* PAGE PAYS    ---------------------------------- */
H1.pays{
font-size:2em;
font-weight:normal;
border-bottom:5px solid #cc1305;
max-width:none;
padding: 0 0 1.3rem 0;
margin-top : 0;
text-transform:uppercase; 
font-family: 'Roboto Slab', serif;
}

.data_pays{
position:relative;
height:90px;
padding:15px 0;
background: url(/wp-content/themes/WCADP/assets/images/barre_verticale.png) no-repeat center center;
}
.data_pays .chiffre{
display:inline-block;
position:absolute;
right:55%;
top:4px;
}
.data_pays .libelle{
display:inline-block;
position:absolute;
left:56%;
top:36px;
font-size:1.6rem;
text-transform:uppercase;
}
.amnesty{
background: url(/wp-content/themes/WCADP/assets/images/barre_verticale_debut.png) no-repeat center bottom;
padding: 0 0 48px 0;
line-height:4rem;
}
.amnesty .chiffre{
display:block;
font-size:5rem;
margin:0;
text-align:center;
line-height:4rem;
}
.amnesty .libelle{
display:block;
font-size:1.5rem;
margin:0;
text-align:center;
}
.table_pays td,.table_pays{
border:0 none;
padding:10px;
font-size:1.6rem;

}
.table_pays td:first-child {
font-size:3rem;
color:#cc1305;
text-align:right;
width:40%;
font-family:'Roboto Slab';
}
.source{
background: #cc1305;
color: #fff;
padding: 3px 6px;
display: inline-block;
margin: 0 12px 50px 0;
float: left;
}
.lien_source{
color:black;
text-decoration:none;
}

.logo_left{
float:left;
margin:0 10px 0 0;
width:100px;
height:auto;
}
.lien_bloc_membre{
display:block;
margin:1.5rem 0;
color:black;
text-decoration:none;
}
A.lien_bloc_membre:after{
clear:both;
}

.info_membre{
display:inline-block;
font-family: 'Roboto', sans-serif;
border-right:1px solid #d94d43;
padding: 0 10px 0 0;
margin:3px;
}
/* Bloc pays   ---------------------------------- */
.info_pays{
position:relative;
display:block;
margin:20px 0 60px 0;
padding:3rem 2rem;
border:1px solid black;
text-decoration:none;
}
.info_pays:hover, .lien_pays:hover{
-moz-box-shadow: 2px 2px 7px 0px #656565;
-webkit-box-shadow: 2px 2px 7px 0px #656565;
-o-box-shadow: 2px 2px 7px 0px #656565;
box-shadow: 2px 2px 7px 0px #656565;
filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=134, Strength=7);
}
.info_pays .drapeau, .lien_pays .drapeau{
position:absolute;
display:block;
padding:0 20px;
background:white;
top: -20px;
left:50%;
transform: translate(-50%,0); 
width: 100px;
}
.info_logo{
position:absolute;
display:block;
padding:0 20px;
background:white;
top: -40px;
left:50%;
transform: translate(-50%,0); 
height: 90px;
}
.info_logo IMG{
height:100%;
width:auto;
max-width:500px;
}
.info_pays .titre{
font-size:3rem;
margin: 5px 0 1.2rem 0;
}

.info_pays .info{
position: relative;
display: block;
border-top: 1px solid black;
padding: 6px 0 0 0;
margin: 1rem 2rem;
color: #cc1305;
font-size: 2rem;
text-align: center;
font-family: 'Roboto', sans-serif;
}
.info_pays .info span{
display:block;
position:relative;
top:-6px;
color:black;
font-size:1.6rem;
margin:0.8rem 0 0 0;
}
.info_pays .voir_pays{
position:absolute;
display:inline-block;
bottom:-18px;
left:50%;
transform: translate(-50%,0); 
margin:0 auto;
padding:7px ;
border-top:1px solid black;
border-bottom:1px solid black;
color:black;
background:white;
text-decoration:none;
}

.lien_pays{
display:block;
position:relative;
margin:20px 0 60px 0;
padding:3rem;
border:1px solid black;
color:black;
text-align:center;
text-decoration:none;
min-height: 184px;
}
.lien_pays .titre{
font-size:3rem;
}
.lien_pays span{
font-size:2rem;
color:#cc1305;
display:block;
margin:5px 0;
}


/* PAGE MEMBRE ---------------------------------- */
.bloc_contact{
position:absolute;
bottom:0;
background:#ededed;
margin:80px 0 0 0;
width:96%;
padding:1.5rem;
margin:2%;
font-size:2rem;
min-height:60px;
line-height: 1.4;
}

/* PAGE RECHERCHE ---------------------------------- */
.bouton{
display:inline-block;
margin:10px;
padding:10px;
color:white;
background:##cc1305;
cursor:pointer;
}
.lien_recherche{
display:inline-block;
position:relative;
text-transform:uppercase;
text-decoration:none;
color:black;
border-bottom:1px solid #cc1305;
font-family: 'Roboto Condensed', sans-serif;
font-size: 1.5rem;
background:white;
padding:1px 5px;
margin: 9px 0 0 20px;
}
.lien_recherche:before{
content:" ";
background: url(/wp-content/themes/WCADP/assets/images/pucerouge.png) no-repeat center center;
position:absolute;
left:-20px;
width:20px;
height:20px;
}
.lien_biblio{
display:block;
margin:1.5rem 0;
padding:2rem;
color:black;
text-decoration:none;
background:#eeeeee;
width: 100%;
}
.lien_biblio .titre{
font-size:2rem;
}
.doc_date{
display:inline-block;
border:1px solid #ff8272;
color:#ff8272;
padding:2px 5px;
margin:0 3px;
font-size:1.3rem;
}
.doc_tag,.doc_tag2{
display:inline-block;
border:1px solid #00a19a;
color:#00a19a;
padding:2px 5px;
margin:5px 3px 0 3px;
text-transform:uppercase;
font-size:1.3rem;
}
.doc_tag2{
border:1px solid #cc1305 ;
color:#cc1305 ;
}
.doc_tag_langue{
display:inline-block;
background:white;
text-decoration:none;
color:black;
padding:2px 5px;
margin:5px 3px 0 3px;
text-transform:uppercase;
font-size:1.3rem;
border-radius:15px;
}
.doc_lien_langue{
display: list-item;
list-style: square;
margin: 1px 0 2px 18px;
}

.doc_bouton{
display:inline-block;
background:white;
border-bottom:2px solid white;
padding:3px 6px;
margin:15px 5px 0 0;
text-decoration:none;
color:black;
cursor:pointer;
}
.doc_bouton:hover{
border-bottom:2px solid #cc1305;
}
.doc_bouton_active{
border-bottom:2px solid black;
}

.doc_detail{
background:white;
padding:1.5rem;
margin:2rem 0;
display:none;
font-family: 'Roboto Slab', serif;
font-size:1.6rem;
}
/* PAGE FAQ ---------------------------------- */
.faq{
display:block;
position:relative;
margin:10px;
padding:15px;
color:black;
background:#D0D0D0;
text-decoration:none;
cursor:pointer;
transition: all 0.5s linear;
}
.faq:after{
content:" ";
background:url('/wp-content/themes/WCADP/assets/images/fleche.png') no-repeat center center;
position:absolute;
width:20px;
height:20px;
right:30px;
top:30px;
color:black;
text-decoration:none;
cursor:pointer;
transition: all 0.5s linear;
}
.faq:hover:after{
transform:rotate(360deg);
}
.faq180:after{
transform:rotate(180deg);
}
.reponse{
margin:10px;
padding:15px;
color:#666666;
background:white;
text-decoration:none;
}




/* CAMPAGNE  ---------------------------------- */
H2.campagne{
width:96%;
border-bottom:4px solid black;
padding:0 0 5px 15px;
margin:5rem 2% 2rem 2%;
}
body{counter-reset: li;}

.bloc_actions li:before {
  content: counter(li) "  ";
  counter-increment: li;
  font-size:5.5rem;
  float:left;
  font-family: 'Roboto Condensed', sans-serif;
  margin:-20px 15px 0 0;
}
.bloc_actions{
margin:0 0 3rem 0;
}
.bloc_actions li{
display:block;
padding:2rem;
width:46%;
margin:2%;
border:1px solid black;
float:left;
font-size:1.4rem;
}
.bloc_actions li:hover{
background:black;
color:white !important;
}
.bloc_actions li:hover A{
color:white !important;
}
.bloc_actions p:first-child{
  font-size:2.8rem;
  margin:0 0 21px 0;
}
.bloc_actions strong:first-child{
  font-size:2.8rem;
  margin:0 0 21px 0;
  display:block;
  font-weight:normal;
}
.bloc_actions .btfb,.bloc_actions .bttw{
display:inline-block;
cursor:pointer;
margin: 10px 0 -10px 0;
width:90px;
height:90px;
background: url(/wp-content/themes/WCADP/assets/images/sprite.png) no-repeat 0px -30px;
}
.bloc_actions .bttw{
background: url(/wp-content/themes/WCADP/assets/images/sprite.png) no-repeat -90px -30px;
}

.date{
color:#b2b2b2;
}


/* FORMULAIRE  ---------------------------------- */
label {
display: block;
font-weight: 700;
font-size: 16px;
float: none;
line-height: 1.3;
margin: 0 0 4px 0;
padding: 0;
}
form{
margin:10px 20px 50px 20px;
}
form div{
padding: 10px 0;
clear: both;
}
.selectmenu SELECT{
	 background: transparent;
	width: 120%;
	padding: 6px 0 5px 0;
	line-height: 1;
	border: 0;
	border-radius: 0;
	height: 28px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;  
}
div.selectmenu{
float:none !important;
	display:inline-block;
	position:relative;
	top:15px;
	margin:5px;
	padding:0;
	width:100%;
	max-width: 300px;
	height: 30px;
	overflow: hidden;
	background: url(/wp-content/themes/WCADP/assets/images/sprite.png) no-repeat 0 -280px white;
	border-bottom:2px solid black;
}
SELECT{
font-size:1.5rem;}
INPUT{
background-color: #fff;
box-sizing: border-box;
border-radius: 2px;
color: #333;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
display:inline-block;
float: none;
font-size: 16px;
border: 1px solid #ccc;
padding: 6px 10px;
height: 38px;
width: 80%;
line-height: 1.3;
}
INPUT[type=radio],INPUT[type=checkbox]{
border:1px solid #555555;
width:auto;
max-width:600px;
height:auto;
margin:5px 15px 5px 0;
padding:5px 10px;
float:left;
}
button{
background:transparent !important;
}
INPUT[type=submit], INPUT[type=button]{
width:auto;
display:inline-block;
border:0 none !important;
color:white !important;
font-family:'Roboto Slab', arial !important;
padding: 5px 15px !important;
margin: 10px 0 !important;
background:#cc1305 !important;
}
@media screen and (max-width: 1000px) {
.zone{
width:65%;
}
.colonne{
width:35%;
}
#btmenu{display:block;
cursor:pointer;
}
#site-header nav, .outils_header,.menu_secondaire{display:none;
}
}
@media screen and (max-width: 900px) {
	.zone{
	width:60%;
	}
	.colonne{
	width:40%;
	}
	.vignette_recherche{
	display:none;
	}
	.bloc_2{
	width:100% !important;
	}
}
@media screen and (max-width: 800px) {
	.zone{
	width:100%;
	float:none;
	padding:0;
	}
	.colonne{
	width:100%;
	float:none;
	padding:0;
	}
	.menu_secondaire{
	display:none;
	}
	.amnesty .chiffre{
	font-size:4rem;
	line-height:4rem;
	}

}
@media screen and (max-width: 600px) {
	.header-titles-wrapper {
		padding: 10px;
	}
	.menu_secondaire A {
		margin: 0 10px;
	}
	.legende_carte p{
	display:block;
	margin:0;
	}
	.bloc_chiffre{margin:15px 0;
	}
	.lien_biblio{
	margin:5px 0;
	padding:5px 10px;
	}
	#site-footer A {
	margin: 2rem 0rem;
	}
	A.page-numbers, .page-numbers{display:none;}

	.data_pays{
	position:relative;
	height:90px;
	padding:15px 0;
	background: url(/wp-content/themes/WCADP/assets/images/barre_verticale.png) no-repeat center center;
	}
	.data_pays .chiffre{
	font-size:4rem;
	top: 14px;
	}
	.data_pays .libelle{
	font-size:1.2rem;
	}
	.amnesty .chiffre{
	position:relative;
	font-size: 3rem !important;
	width: 100%;
	right: auto;
	top: auto;
	margin:0;
	}
	.amnesty .libelle{
		position: relative;
		font-size: 1.5rem !important;
		width: 100%;
		left: auto;
		top: auto;
		margin: 0 auto;
		text-align: center;
	}
	.table_pays td:first-child {
	font-size: 2rem;
	}
	.data_pays.amnesty{
	background:white !important
	}
	.titre_bloc{
	margin: 1.6rem 0 1rem 0;
	}
	#troiblocs .grid3 div:first-of-type .titre_bloc{
	margin: .6rem 0 1rem 0;
	}
	H1, H1.entry-title {
	font-size: 2.5rem;
	}
	H2 {
	   font-size: 2.2rem;
	   }
	.texte {
		font-size: 1.6rem;
		}
	.outils {
		position: relative;
		margin-top: 10px;
	}	
	.bloc_tag p {
		font-size: 1.4rem;
		margin: 4px;
	}
	.tag2 {
		font-size: 2rem;
		top: -48px;
	}
	.titre {
		font-size: 3rem;
	}
	H3 {
		font-size: 3rem;
	}
	.lien_bloc_actu {
		min-height: auto;
	}
	.bloc_actions li{
	padding:1rem;
	width:96%;
	margin:2%;
	font-size:1.3rem;
	}
	.bloc_actions p:first-child,.bloc_actions strong:first-child {
		font-size: 2rem;
	}
	.bloc_actions li::before {
		font-size: 4rem;
		margin: -10px 15px 0 0;
		}
	.bloc_membre {
    min-height: auto;
	padding: 43px 15px 15px 15px;
	}
}

A.next, A.prev{display:inline-block;}


/* CookieYes button */
button.cky-btn-accept {background-color: #cc1306!important;}

