.progress-circle {
    font-size: 20px;
    margin: 20px;
    position: relative; /* so that children can be absolutely positioned */
    padding: 0;
    width: 5em;
    height: 5em;
    background-color: #F2E9E1;
    border-radius: 50%;
    line-height: 5em;
}

.progress-circle:after{
    border: none;
    position: absolute;
    top: 0.35em;
    left: 0.35em;
    text-align: center;
    display: block;
    border-radius: 50%;
    width: 4.3em;
    height: 4.3em;
    background-color: white;
    content: " ";
}
/* Text inside the control */
.progress-circle span {
    position: absolute;
    line-height: 5em;
    width: 5em;
    text-align: center;
    display: block;
    color: #53777A;
    z-index: 2;
}
.left-half-clipper {
    /* a round circle */
    border-radius: 50%;
    width: 5em;
    height: 5em;
    position: absolute; /* needed for clipping */
    clip: rect(0, 5em, 5em, 2.5em); /* clips the whole left half*/
}
/* when p>50, don't clip left half*/
.progress-circle.over50 .left-half-clipper {
    clip: rect(auto,auto,auto,auto);
}
.value-bar {
    /*This is an overlayed square, that is made round with the border radius,
    then it is cut to display only the left half, then rotated clockwise
    to escape the outer clipping path.*/
    position: absolute; /*needed for clipping*/
    clip: rect(0, 2.5em, 5em, 0);
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 0.45em solid #53777A; /*The border is 0.35 but making it larger removes visual artifacts */
    /*background-color: #4D642D;*/ /* for debug */
    box-sizing: border-box;

}
/* Progress bar filling the whole right half for values above 50% */
.progress-circle.over50 .first50-bar {
    /*Progress bar for the first 50%, filling the whole right half*/
    position: absolute; /*needed for clipping*/
    clip: rect(0, 5em, 5em, 2.5em);
    background-color: #53777A;
    border-radius: 50%;
    width: 5em;
    height: 5em;
}
.progress-circle:not(.over50) .first50-bar{ display: none; }


/* Progress bar rotation position */
.progress-circle.p0 .value-bar { display: none; }
.progress-circle.p1 .value-bar { transform: rotate(4deg); }
.progress-circle.p2 .value-bar { transform: rotate(7deg); }
.progress-circle.p3 .value-bar { transform: rotate(11deg); }
.progress-circle.p4 .value-bar { transform: rotate(14deg); }
.progress-circle.p5 .value-bar { transform: rotate(18deg); }
.progress-circle.p6 .value-bar { transform: rotate(22deg); }
.progress-circle.p7 .value-bar { transform: rotate(25deg); }
.progress-circle.p8 .value-bar { transform: rotate(29deg); }
.progress-circle.p9 .value-bar { transform: rotate(32deg); }
.progress-circle.p10 .value-bar { transform: rotate(36deg); }
.progress-circle.p11 .value-bar { transform: rotate(40deg); }
.progress-circle.p12 .value-bar { transform: rotate(43deg); }
.progress-circle.p13 .value-bar { transform: rotate(47deg); }
.progress-circle.p14 .value-bar { transform: rotate(50deg); }
.progress-circle.p15 .value-bar { transform: rotate(54deg); }
.progress-circle.p16 .value-bar { transform: rotate(58deg); }
.progress-circle.p17 .value-bar { transform: rotate(61deg); }
.progress-circle.p18 .value-bar { transform: rotate(65deg); }
.progress-circle.p19 .value-bar { transform: rotate(68deg); }
.progress-circle.p20 .value-bar { transform: rotate(72deg); }
.progress-circle.p21 .value-bar { transform: rotate(76deg); }
.progress-circle.p22 .value-bar { transform: rotate(79deg); }
.progress-circle.p23 .value-bar { transform: rotate(83deg); }
.progress-circle.p24 .value-bar { transform: rotate(86deg); }
.progress-circle.p25 .value-bar { transform: rotate(90deg); }
.progress-circle.p26 .value-bar { transform: rotate(94deg); }
.progress-circle.p27 .value-bar { transform: rotate(97deg); }
.progress-circle.p28 .value-bar { transform: rotate(101deg); }
.progress-circle.p29 .value-bar { transform: rotate(104deg); }
.progress-circle.p30 .value-bar { transform: rotate(108deg); }
.progress-circle.p31 .value-bar { transform: rotate(112deg); }
.progress-circle.p32 .value-bar { transform: rotate(115deg); }
.progress-circle.p33 .value-bar { transform: rotate(119deg); }
.progress-circle.p34 .value-bar { transform: rotate(122deg); }
.progress-circle.p35 .value-bar { transform: rotate(126deg); }
.progress-circle.p36 .value-bar { transform: rotate(130deg); }
.progress-circle.p37 .value-bar { transform: rotate(133deg); }
.progress-circle.p38 .value-bar { transform: rotate(137deg); }
.progress-circle.p39 .value-bar { transform: rotate(140deg); }
.progress-circle.p40 .value-bar { transform: rotate(144deg); }
.progress-circle.p41 .value-bar { transform: rotate(148deg); }
.progress-circle.p42 .value-bar { transform: rotate(151deg); }
.progress-circle.p43 .value-bar { transform: rotate(155deg); }
.progress-circle.p44 .value-bar { transform: rotate(158deg); }
.progress-circle.p45 .value-bar { transform: rotate(162deg); }
.progress-circle.p46 .value-bar { transform: rotate(166deg); }
.progress-circle.p47 .value-bar { transform: rotate(169deg); }
.progress-circle.p48 .value-bar { transform: rotate(173deg); }
.progress-circle.p49 .value-bar { transform: rotate(176deg); }
.progress-circle.p50 .value-bar { transform: rotate(180deg); }
.progress-circle.p51 .value-bar { transform: rotate(184deg); }
.progress-circle.p52 .value-bar { transform: rotate(187deg); }
.progress-circle.p53 .value-bar { transform: rotate(191deg); }
.progress-circle.p54 .value-bar { transform: rotate(194deg); }
.progress-circle.p55 .value-bar { transform: rotate(198deg); }
.progress-circle.p56 .value-bar { transform: rotate(202deg); }
.progress-circle.p57 .value-bar { transform: rotate(205deg); }
.progress-circle.p58 .value-bar { transform: rotate(209deg); }
.progress-circle.p59 .value-bar { transform: rotate(212deg); }
.progress-circle.p60 .value-bar { transform: rotate(216deg); }
.progress-circle.p61 .value-bar { transform: rotate(220deg); }
.progress-circle.p62 .value-bar { transform: rotate(223deg); }
.progress-circle.p63 .value-bar { transform: rotate(227deg); }
.progress-circle.p64 .value-bar { transform: rotate(230deg); }
.progress-circle.p65 .value-bar { transform: rotate(234deg); }
.progress-circle.p66 .value-bar { transform: rotate(238deg); }
.progress-circle.p67 .value-bar { transform: rotate(241deg); }
.progress-circle.p68 .value-bar { transform: rotate(245deg); }
.progress-circle.p69 .value-bar { transform: rotate(248deg); }
.progress-circle.p70 .value-bar { transform: rotate(252deg); }
.progress-circle.p71 .value-bar { transform: rotate(256deg); }
.progress-circle.p72 .value-bar { transform: rotate(259deg); }
.progress-circle.p73 .value-bar { transform: rotate(263deg); }
.progress-circle.p74 .value-bar { transform: rotate(266deg); }
.progress-circle.p75 .value-bar { transform: rotate(270deg); }
.progress-circle.p76 .value-bar { transform: rotate(274deg); }
.progress-circle.p77 .value-bar { transform: rotate(277deg); }
.progress-circle.p78 .value-bar { transform: rotate(281deg); }
.progress-circle.p79 .value-bar { transform: rotate(284deg); }
.progress-circle.p80 .value-bar { transform: rotate(288deg); }
.progress-circle.p81 .value-bar { transform: rotate(292deg); }
.progress-circle.p82 .value-bar { transform: rotate(295deg); }
.progress-circle.p83 .value-bar { transform: rotate(299deg); }
.progress-circle.p84 .value-bar { transform: rotate(302deg); }
.progress-circle.p85 .value-bar { transform: rotate(306deg); }
.progress-circle.p86 .value-bar { transform: rotate(310deg); }
.progress-circle.p87 .value-bar { transform: rotate(313deg); }
.progress-circle.p88 .value-bar { transform: rotate(317deg); }
.progress-circle.p89 .value-bar { transform: rotate(320deg); }
.progress-circle.p90 .value-bar { transform: rotate(324deg); }
.progress-circle.p91 .value-bar { transform: rotate(328deg); }
.progress-circle.p92 .value-bar { transform: rotate(331deg); }
.progress-circle.p93 .value-bar { transform: rotate(335deg); }
.progress-circle.p94 .value-bar { transform: rotate(338deg); }
.progress-circle.p95 .value-bar { transform: rotate(342deg); }
.progress-circle.p96 .value-bar { transform: rotate(346deg); }
.progress-circle.p97 .value-bar { transform: rotate(349deg); }
.progress-circle.p98 .value-bar { transform: rotate(353deg); }
.progress-circle.p99 .value-bar { transform: rotate(356deg); }
.progress-circle.p100 .value-bar { transform: rotate(360deg); }


@import url("https://p.typekit.net/p.css?s=1&k=rvd2uzo&ht=tk&f=32874&a=4315018&app=typekit&e=css");

@font-face {
    font-family:"futura-pt-bold";
    src:url("https://use.typekit.net/af/053fc9/00000000000000003b9af1e4/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/053fc9/00000000000000003b9af1e4/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/053fc9/00000000000000003b9af1e4/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
    font-display:auto;font-style:normal;font-weight:700;
}

.tk-futura-pt-bold { font-family: "futura-pt-bold",sans-serif; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
	background-color: #f5f5f5;
}

button:focus,
input:focus {
    outline: none;
}

button {
    border: 0;
}

p {
    margin-bottom: 2rem;
}

@media (min-aspect-ratio: 16/9) {
    html {
        font-size: 1vh;
    }
    .trame,
    .trame-publique {
        height: calc(1vh * 100);
        width: calc((16 / 9) * 1vh * 100);
		margin: 0 auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    html {
        font-size: calc((9 / 16) * 1vw);
    }
    .trame,
    .trame-publique {
        height: calc((9 / 16) * 100vw);
        margin: calc((1vh * 100 - (9 / 16) * 100vw) / 2) 0;
        width: 100vw;
    }
}

/* Commun */

#popupInfos1,
#popupInfos2,
#popupInfos3,
#popupInfos4,
#popupInfos5,
#popupInfos6,
#popupInfos7,
#popupSponso,
#popupImpot,
#popupDonArgent,
#popupMerci,
#popupCancel,
#popupError,
#popupRefused,

#menu, #recompenses {
    display: none;
}

.trame,
.trame-publique,
.bulle-accueil,
.ligne,
.sensibilisation-img-module,
.mobilisation-img-module,
.ligne-menu,
.encours,
.btn-telecharger,
.mobilisation-img,
.medaille button,
.medaille-grise button,
.bulle-recompense,
.fond-dashboard,
.maison,
.puit,
.hopital,
.champ,
.ecole,
.bulle-dashboard,
.copy-sponsor,
.image-verte-don {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.trame {
    background-image: url(../image/trame.png);
    /*margin: auto;*/
    overflow: hidden;
    position: relative;
}


.logo-entier,
.logo-noir,
.logo-blanc {
    position: absolute;
    top: 3rem;
    left: 4rem;
    width: 15rem;
	z-index: 5;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 21rem;
}

.btn-menu {
    position: absolute;
    top: 3rem;
    right: 3.5rem;
    width: 7.5rem;
    cursor: pointer;
	z-index: 5;
}

.ligne {
    position: absolute;
    top: 51rem;
    width: 100%;
}

.degrage {
    background: linear-gradient(to right, #0474b9 0%, #57b841 50%, #ef721b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Accueil */
.bienvenue-accueil {
    position: absolute;
    top: 36rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 2rem;
    color: #71716f;
}

.acf-accueil {
    position: absolute;
    top: 40rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: #0264a5;
    font-size: 3rem;
    font-weight : bold;
}

.bulle-accueil {
    position: absolute;
    top: 47rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 40rem;
    height: 25rem;
    background-image : url(../image/bulle-accueil.png);
    z-index: 2;
}

.texte-accueil {
    color: #71716f;
    width: 40rem;
    padding: 3rem 2em 1rem 4rem;
    font-size: 2rem;
}


.code-input,
.code-sponsor {
    background-color: #dddddd;
    border-radius: 2rem;
    border: 0;
    margin: 1rem 4rem;
    height: 4rem;
    padding: 2rem;
    font-size: 2rem;
}

.code-input {
    width: 32rem;
}

.help-block {
	text-align: center;
	color: #900;
	font-size: 1.5rem;
	font-style: italic;
}

.tete-accueil {
    position: absolute;
    bottom: 10rem;
    width: 37rem;
    left: 49rem;
    transform: rotate(31deg);
}

.btn-entrer-accueil {
    background-color: #ec1162;
    text-transform: uppercase;
    color: white;
    position: absolute;
    bottom: 28rem;
    right: 74rem;
    font-weight: bold;
    transform: rotate(-8deg);
    line-height: 2rem;
    padding: 0.7rem;
    font-size: 3rem;
    z-index : 2;
    border-radius: 1rem;
}

/* Modules */
.bienvenue-module {
    position: absolute;
    top: 12rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 2.5rem;
    color: #ec1162;
    font-weight: bold;
}

.engagement-module {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 19rem;
    text-align: center;
    width: 51rem;
}

.engage-module,
.contre-module,
.faim-module {
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 5.5rem;
    line-height: 6.5rem;
}

.engage-module {
    background-color : #0174bd;
    width: 38rem;
    margin-left: 11rem;
}

.contre-module {
    background-color : #4ab948;
    width: 24.5rem;
    margin-left: 8rem;
}

.faim-module {
    background-color : #0174bd;
    width: 24rem;
    margin-left: 14rem;
}


.tete-module {
    position: absolute;
    bottom: 7rem;
    width: 32rem;
    left: 70rem;
}


.sensibilisation-texte-module,
.mobilisation-texte-module {
    color: white;
    width: 100%;
    font-size: 4rem;
	line-height: 4.5rem;
    font-weight: bold;
    text-align: center;
    margin-top: 31rem;
    padding: 0 17rem;
	
	font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;

}

.mobilisation-img-module,
.sensibilisation-img-module {
	display:block;
    position: absolute;
    top: 41rem;
    width: 61rem;
    height: 38rem;
    filter : grayscale(1);
    cursor: pointer;
}
.mobilisation-img-module:hover, .sensibilisation-img-module:hover {
	text-decoration: none;
}

.sensibilisation-img-module {
    left: 14rem;
    transform: rotate(3deg);
    background-image : url(../image/sensibilisation.png);
}

.mobilisation-img-module {
    right: 14rem;
    transform: rotate(-3deg);
    background-image : url(../image/mobilisation.png);
}

.btn-entrer-module-mobilisation,
.btn-entrer-module-sensibilisation {
    background-color: #7e7e7e;
    text-transform: uppercase;
    color: white;
    position: absolute;
    line-height: 6rem;
    padding: 1rem;
    font-size: 6.5rem;
    font-weight: bold;
    border-radius : 1rem;
}

.btn-entrer-module-mobilisation {
    bottom: -11rem;
    right: 15rem;
    transform: rotate(6deg);
}

.btn-entrer-module-sensibilisation {
    bottom: -8rem;
    left: 21rem;
    transform: rotate(-6deg);
}

.mobilisation-img-module:hover ,
.sensibilisation-img-module:hover {
    filter : grayscale(0);
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
}

.mobilisation-img-module:hover .btn-entrer-module-mobilisation,
.sensibilisation-img-module:hover .btn-entrer-module-sensibilisation {
    background-color : #ec1162;
	text-decoration: none;
	color: white;
}


/* Module sensibilisation */
#sensibilisation_iframe {
	border: none;
    width: 102.2%;
    height: 102.2%;
    position: absolute;
    top: -1.2%;
    left: -1.15%;
    background-color: rgba(255, 0, 0, 0);
}
#sensibilisation_iframe.mobile {
	width: calc(100% + 58px);
    height: 100%;
    top: 0px;
    left: 0px;
}


/* Menu */
.overlay {
    background-color: white;
    position: relative;
    z-index: 10;
    height: 100%;
    width: 100%;
	margin: 0;
}
.overlay#recompenses {
	z-index: 2;
}

.btn-croix {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 3rem;
    cursor: pointer;
}

.ligne-menu {
    position: absolute;
    top: 28rem;
    width: 100%;
}

.menu {
    position: absolute;
    top: 18rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 6.7rem;
    width: 22rem;

	font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;

}

.menu-principal ul,
.menu-secondaire ul {
    position: absolute;
    text-align : center;
    left: 0;
    right: 0;
    margin : auto;

    list-style-type: none;
    padding-left: 0
}

.menu-principal ul {
    top : 43rem;
    width: 35rem;
}

.menu-secondaire ul {
    display: flex;
    width: 100%;
    justify-content: center;
    bottom : 5rem;
    align-items: center;
}

.menu-principal ul a,
.menu-secondaire ul button,
.menu-secondaire ul a {
    color : white !important;
    text-transform : uppercase;
    font-size: 2.5rem;
    font-weight : bold;
    position: relative;
    margin: 2rem;
    padding: 1px 6px;
}

.menu-principal ul li,
.menu-secondaire ul li{
    display: flex;
    justify-content: center;
}

.menu-principal ul a:hover,
.menu-secondaire ul a:hover{
    text-decoration: none;
}

.switch {
    width: 10rem;
    background-color : #dddddd;
    border-radius : 2rem;
    height: 3rem;
    align-items: center;
    display: flex;
    margin-right: 12rem;
    cursor: pointer;
}

#menu-fullscreen-switch-no {
    text-align: right;
    display : block;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

#menu-fullscreen-switch-yes {
    text-align: left;
    display : none;
}

.choix {
    color : #51b94e;
    font-size : 2.5rem;
    text-align: left;
    padding: 1rem 1rem 1rem 1.5rem;
    font-weight : bold;
    line-height: 2rem;
}

.rond {
    background-color : white;
    border-radius : 50%;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.1rem 0 0 0.1rem;
}

.btn-accueil {
    background-color : #b31e8c;
    transform: rotate(7deg);
    border-radius : 1rem;
}

.btn-sensibilisation {
    background-color : #7c54a1;
    transform: rotate(-3deg);
    border-radius : 1rem;
}

.btn-recompenses {
    background-color : #0373bb;
    transform: rotate(3deg);
    border-radius : 1rem;
}

.btn-mobilisation {
    background-color : #028a9b;
    transform: rotate(-4deg);
    border-radius : 1rem;
}

.btn-deconnexion {
    background-color : #4ab948;
    transform: rotate(4deg);
    border-radius : 1rem;
}

.btn-accessibilite,
.btn-plein-ecran,
.btn-a-propos,
.btn-mentions-legales  {
    background-color : #ec1163;
    border-radius : 1rem;
    cursor: pointer;
}

/* Bienvenue */

.bienvenue,
.mentions-legales,
.credits,
.mobilisation,
.recompenses {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.bienvenue {
    top: 9.5rem;
    width: 83rem;
    font-size: 12rem;
}

.text-bienvenue {
    position: absolute;
    top: 29rem;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 2rem;
    width: 70rem;
    line-height: 2.5rem;
}

.btn-voir-recompenses,
.btn-nouvelle-partie,
.btn-continuer {
    background-color : #ec1163;
    color : white;
    text-transform : uppercase;
    font-size: 2.5rem;
    font-weight : bold;
    line-height: 3rem;
    border-radius : 1rem;
}

.btn-voir-recompenses {
    position: absolute;
    bottom: 26rem;
    left: 93rem;
    margin: auto;
    transform: rotate(7deg);
    width: 22rem;
}

.btn-nouvelle-partie {
    position: absolute;
    bottom: 26rem;
    right: 93rem;
    margin: auto;
    transform: rotate(-5deg);
    width: 16rem;
}

.btn-telecharger {
    position: relative;
    width: 8rem;
    margin: auto;
    transform: rotate(-1deg);
    padding: 1rem;
    cursor: pointer;
}

.encours,
.barre-vert {
    position: absolute;
    bottom: 47.5rem;
}

.encours {
    z-index: 1;
    width: 31rem;
    left: 0;
    right: 0;
    margin: auto;
}

.barre-vert {
    background-color: #4ab948;
    width: 17.5rem;
    height: 3rem;
    left: 74rem;
}

.btn-continuer {
    position: absolute;
    bottom: 45rem;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(-5deg);
    z-index: 2;
}

.membre {
    position: absolute;
    bottom: 12rem;
    left: 0;
    right: 7rem;
    margin: auto;
    font-size: 2.5rem;
    width: 70rem;
    line-height: 2.5rem;
    color: #0174be;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.carre-bleu {
    background-color: #0174be;
    width: 8rem;
    height: 8rem;
    position: absolute;
    bottom: 10rem;
    left: 48rem;
    right: 0;
    margin: auto;
    transform: rotate(-8deg);
    border-radius : 1rem;
}

/* Mentions Légales / Crédits / Mobilisation */

.mentions-legales,
.credits,
.mobilisation,
.recompenses {
    top: 12rem;
    font-size: 11.1rem;
	font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
	line-height: 11.1rem;
}

.mentions-legales {
    width: 106rem;
	font-size: 8.5rem;
	line-height: 8.5rem;
}

.credits {
    width: 106rem;
}

.texte-mentions-legales,
.texte-credits,
.texte-mobilisation {
    font-size: 2rem;
    margin: auto;
    position: absolute;
    top: 28rem;
    width: 115rem;
    right: 0;
    left: 0;
    bottom: 5rem;
    overflow: auto;
}

.titre-paragraphe-credits {
    color: #1965b9;
    text-align : center;
    font-weight : bold;
	
	margin: 3rem 0 2rem 0;
}

.titre-paragraphe-mentions,
.titre-mobilisation {
    color: #1965b9;
    font-weight : bold;
	
	margin: 3rem 0 2rem 0;
}

#modilisation-presentiel .copyright {
	position: relative;
    bottom: 0;
    left: 0;
    color: grey;
    font-size: 1.5rem;
	margin-bottom: 1rem;
}

.logo-credits {
    text-align : center;
}

.logo-entier-credits {
    width: 15rem;
    margin: 3rem 0;
}

.mobilisation {
    width: 106rem;
}

.mobilisation-img {
    width: 100%;
}

.infos-array {
	margin-bottom: 2rem;
	width: 100%;
}
.infos-array th, .infos-array td {
	border: 1px solid grey;
	font-size: 1.5rem;
	padding: 0.5rem;
}
.infos-array th {
	background-color: #EEE;
	text-align: center;
}

div.cookie-consent {
	border: 1px solid grey;
	background-color: #EEE;
	padding: 1rem;
	margin: 2rem 0;
}

/* Récompenses */

.recompenses {
    width : 110rem;
}

.ado {
    background-image: url('../image/adolescent_recompense/background.png');
    background-size: contain;
}

.btn-retour {
    color : white;
    text-transform : uppercase;
    font-size: 4rem;
    font-weight : bold;
    background-color : #ec1163;
    transform: rotate(-7deg);
    bottom: 9rem;
    right: 19rem;
    line-height: 4rem;
    position: absolute;
    border-radius : 1rem;
    padding: 0.3rem;
}
.btn-retour:hover {
	text-decoration: none;
	color: white;
}

.ado .medaille {
    position: absolute;
}

.ado .medaille img {
    width: 34rem;
}

.ado .medaille-grise img {
    visibility: hidden;
}

.ado .btn-retour {
   right: 7rem; 
}

.medaille button,
.medaille-grise button {
    width: 11rem;
    height: 11rem;
    background-color: transparent;
}

.medaille button {
    background-image: url(../image/medaille.png);
}

.medaille-grise button {
    background-image: url(../image/medaille-grise.png);
}

.tableau-medailles {
    position: absolute;
    top : 33rem;
    left: 0;
    right : 0;
    margin : auto;
    width : 100rem;
}

.medailles-row {
    text-align: center;
    margin-bottom: 5rem;
    height: 14rem;
}

.numero-medaille {
    color: #0e7cc1;
    font-size: 2rem;
    font-weight: bold;
}

.bulle-recompense {
    z-index: 2;
    position: absolute;
    width: 32rem;
    height: 20rem;
    left: -7rem;
    top: 9rem;
    background-image : url(../image/bulle-recompense.png);
    display : none;
}

.bulle-recompense .numero-medaille {
    margin-top: 5rem;
}

.ado .bulle-recompense {
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
}

.ado .bulle-recompense,
.ado .detail-recompense {
    text-align: center;
}

.detail-recompense {
    color: #6dc269;
    width: 32rem;
    padding: 1rem 2em 1rem 3rem;
    font-size: 1.5rem;
    text-align: left;
    overflow: hidden;
    height: 7.5rem;
}

.medaille:hover .bulle-recompense {
    display : block;
}
.medaille-grise:hover .bulle-recompense {
	display:block;
}

/* Dashboard */

.fond-dashboard {
    background-image: url(../image/fond-dashboard.png);
    position: relative;
}

.row-dashboard {
    position: absolute;
    top: 15rem;
    margin: 0 14rem;
}

.bienvenue-dashboard {
	font-family: BeVietnam,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 6rem;
    color: #015fb6;
    font-weight: bold;
    line-height: 6rem;
    margin-bottom: 1rem;
}

.explication-dashboard {
	font-family: BeVietnam,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 1.9rem;
    line-height: 2.5rem;
    color: #595959;
    margin-right: -3rem;
}
.explication-dashboard-link {
	font-family: Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: bold;
    font-size: 2.75rem;
    line-height: 2.5rem;
    margin-right: -3rem;
    color: #035FB2;
    text-decoration: underline;
    z-index: 4;
    position: inherit;
}

.somme-chiffre {
    font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    color : #ecbb40;
    font-weight: bold;
    font-size: 8rem;
    line-height: 7rem;
    position: absolute;
    bottom: 4rem;
    left: 12rem;
    margin: auto;

	text-shadow: 0 0.28rem 0 #752C1D;
}

.somme {
    font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 2.2rem;
    color : #707070;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    bottom: 11rem;
    left: 12rem;
    margin: auto;
}

.tete-dashboard {
    position: absolute;
    bottom: 39rem;
    width: 29rem;
    left: -7rem;
    transform: rotate(4deg);
}

.ta-collecte-cadre,
.temps-restant-cadre {
    font-weight: bold;
    height: 23rem;
	font-family: BeVietnam,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;

}

.temps-restant,
.ta-collecte {
    font-weight: bold;
    color : #707070;
    text-align: center;
    font-size: 1.9rem;
}

.temps-restant {
    margin-bottom: 1rem;
}

.block-text,
.block-encart {
    padding: 0;
}

.block-encart .col-6 {
    padding: 0 1.25rem;
}

.collect {
    color: #ed7205;
    text-align: center;
    font-weight: initial;
	font-family: MPLUSRounded,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 7.5rem;
    line-height: 8rem;
    margin-bottom: 2rem;
}

.circle {
    height: 16rem;
    width: 16.5rem;

    border: 1.3rem solid #E3E3E3;
    border-radius: 50%;

    position: absolute;
    margin-top: 0.35rem;
    margin-left: 11rem;
}


.progress-circle {
    font-size: 4rem;
    margin: auto;
    width: 16.5rem;
    height: 16.5rem;
    line-height: 13rem;

    background: none;
}
.progress-circle {
	width: 16.5rem;
    height: 16.5rem;
}
.progress-circle .left-half-clipper {
    width: inherit;
    height: inherit;
	clip: rect(0, 16.5rem, 16.5rem, 7.8rem);
}
.progress-circle span {
    width: inherit;
    height: inherit;
    line-height: 13rem;

	font-size: 3rem;
    color: #707070;
    text-align: center;
    font-weight: bold;
    padding-top: 1.7rem;
}
.progress-circle.over50 .first50-bar {
    clip: rect(0, 16.5rem, 16.5rem, 7.8rem);
	background: none;
}
.progress-circle .value-bar {
    clip: rect(0, 8.5rem, 16.5rem, 0);
}

.progress-circle .value-bar, 
.progress-circle.over50 .first50-bar {
    width: inherit;
    height: inherit;
	border: 1.5rem solid #57ae32;
}


.progress-circle:after {
	top: 2rem;
    left: 2rem;
    width: 11rem;
    height: 11rem;
    background-color: transparent;
}




.village-container {
    position: absolute;
    width: 94rem;
    bottom: 4rem;
    left: 14rem;
}

#don-publique .village-container {
    position: relative;

}

.village {
    width: 100%;
}

.btn-village-info {
    position: absolute;
    width: 11rem;
    transition: transform .2s ease-in-out; 
}

.btn-village-info:hover {
    transform: scale(1.2);
}

#picto1 { top:12rem; left:36%; }
#picto2 { top:17rem; left:4%; }
#picto3 { top:50rem; left:58%; }
#picto4 { top:33rem; left:27%; }
#picto5 { top:12rem; left:75%; }
#picto6 { top:11rem; left:16%; }
#picto7 { top:33rem; left:65%; }

#don-publique #picto1 { top:14rem; }
#don-publique #picto2 { top:19rem; }
#don-publique #picto3 { top:55rem; }
#don-publique #picto4 { top:36rem; }
#don-publique #picto5 { top:14rem; }
#don-publique #picto6 { top:12rem; }
#don-publique #picto7 { top:36rem; }

@media only screen and (max-width: 991px) {
    #don-publique #picto1 { top:8rem; }
    #don-publique #picto2 { top:13rem; }
    #don-publique #picto3 { top:33rem; }
    #don-publique #picto4 { top:27rem; }
    #don-publique #picto5 { top:10rem; }
    #don-publique #picto6 { top:8rem; }
    #don-publique #picto7 { top:25rem; }
}

.btn-sponso,
.btn-je-donne {
    color: white;
    background-color: #52af32;
    font-size: 2.5rem;
    line-height: 3rem;
    height: 8rem;
    margin: 2.5rem 0 0 0;
	font-family: BeVietnam,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: bold;
    width: 100%;
    box-shadow: -4px 5px 10px #0000002F;
    border-radius: 40px;
}

.btn-je-donne {
    height: 6.5rem;
}

.btn-sponso-trouve {
    font-size: 6rem;
    line-height: 6rem;
}

.contribution {
    color: #747474;
    background-color: #ffffff;
    border-radius: 2rem;
    box-shadow: -5px 7px 7px #00000029;
    height: 36rem;
    margin: 2rem 0 0 0;
    width: 100%;
}

.contribution-titre {
    text-transform: uppercase;
    font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 3rem;
    text-align: center;
    padding: 2rem 0;
    font-weight: bold;
}

.list-contributeur {
    overflow: auto;
    height: 25rem;
}

.contributeur {
    font-size: 1.8rem;
	font-weight: bold;
    margin: 0 3rem;
    line-height: 3rem;
    position: relative;
    display: grid;
    grid-template-columns:  auto 1fr auto;
}

.points {
    position: relative;
    overflow: hidden;
}

.points::before {
    content: "...................";
    position: absolute;
    font-size: 2rem;
    letter-spacing: 0.4rem;
}

.montant {
    color: #ed7205;
}

.images {
    position: absolute;
    top : 57rem;
    left: 8rem
}

.image-verte {
    width: 19rem;
    height: 19rem;
    border-radius: 100%;
    border: 1rem solid #52AE32;
}

.miniature1 {
    background-image: url(../image/miniatures/Miniature1.png);
}
.miniature2 {
    background-image: url(../image/miniatures/Miniature2.png);
}
.miniature3 {
    background-image: url(../image/miniatures/Miniature3.png);
}
.miniature4 {
    background-image: url(../image/miniatures/Miniature4.png);
}
.miniature5 {
    background-image: url(../image/miniatures/Miniature5.png);
}
.miniature6 {
    background-image: url(../image/miniatures/Miniature6.png);
}
.miniature7 {
    background-image: url(../image/miniatures/Miniature7.png);
}

.image-jaune {
    margin-top: -4rem;
    cursor: pointer;
}
.image-jaune img {
    width: 9rem;
    height: 9rem;
}

.image-jaune-don {
    margin-top: -31rem;
    margin-left: 14rem;
}
.image-jaune-don img {
    width: 12rem;
    height: 12rem;
}



.bulle-dashboard {
    position: absolute;
    bottom: -2rem;
    left: 0;
    margin: auto;
    width: 45rem;
    height: 12rem;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: -5px 7px 7px #00000029;
    border-radius: 20px;
    font-weight: bold;
	font-family: BeVietnam,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    text-align: center;

}

.texte-dashboard {
    color: #707070;
    width: 39.6rem;
    padding: 3rem 0rem;
    font-size: 2rem;
    line-height: 3.1rem;
    margin-left: 3rem;
    margin-top: 0;
}

.pictogrammes {
    color: #edc153;
}


/* Sponsor */

.overlay-bleu {
    background-color : #9c9c9cc4;
}

.bulle-sponsor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 76rem;
    height: 60rem;
    text-align : center;
    background-color: #faf9f3;
    border-radius: 2rem;
    box-shadow: 0rem 0rem 2.2rem 1rem rgba(13,24,41,0.17);
}

.btn-croix-sponsor {
    position: absolute;
    top: 4rem;
    right: 5rem;
    width: 3rem;
    cursor: pointer;
}

.btn-croix-don {
    position: absolute;
    top: 16rem;
    right: 36rem;
    width: 3rem;
    cursor: pointer;
    z-index: 1;
}

.titre-sponsor {
    width: 53.7rem;
    margin-top: -6.6rem;
}

.texte-sponsor {
    color: #696969;
    width: 100%;
    padding: 0rem 4rem 2rem 4rem;
    font-size: 1.8rem;
    text-align: left;
}

.lien-sponsor {
    color: #dd6b04;
    font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: bold;
}

.lien-a-sponsor {
    color: #015fb6 !important;
    font-size: 2rem;
    border:none;
    padding: 0;
    text-decoration: underline;
    width: 100%;
    background: none;
    margin-top: 5px;
    cursor: pointer;
}
#url-public-wrapper{
    margin: 0px 11rem 0px 6rem;
    text-align: left;
}
.tooltip{
    font-size: 1.5rem;
}

.copy-sponsor {
    position: relative;
    width: 5rem;
    margin: auto;
    transform: rotate(1deg);
    padding: 1rem;
    cursor: pointer;
}

.carre-bleu-sponsor {
    background-color: #0174be;
    width: 5rem;
    height: 5rem;
    position: absolute;
    bottom: 20rem;
    right: 5rem;
    margin: auto;
    transform: rotate(5deg);
    border-radius : 1rem;
}

.inviation-sponsor {
    color: #dd6b04;
    font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 5rem;
}

.code-sponsor {
    width: 64rem;
}

.merci-sponsor {
    color: #53ae32;
    font-size: 2rem;
}

.btn-envoyer-invitation{
    background-color: #ec1162;
    text-transform: uppercase;
    color: white;
    position: absolute;
    bottom: 17rem;
    right: 57rem;
    font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: bold;
    transform: rotate(-8deg);
    line-height: 2.7rem;
    padding: 0.5rem;
    font-size: 2.3rem;
    width: 18rem;
    border-radius : 1rem;
}

/* Don */
.bulle-don {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 110rem;
    height: 50rem;
    background-color: #faf9f3;
    border-radius: 2rem;
    box-shadow: 0rem 0rem 2.2rem 1rem rgba(13,24,41,0.17);
    overflow: hidden;
}

.bulle-don-top-container
{
    position: absolute;
    width: 100%;
    top: 11rem;
    z-index: 1;
}

.image-verte-don {
    width: 27rem;
    height: 27rem;
    margin: auto;
    border-radius: 100%;
}

.row-don {
    padding : 0 5rem;
    margin: 8rem 0 0;
}

.image-don {
    width: 66%;
    height: 100%;
}

.montant-don {
    font-size: 7rem;
    font-family: MPLUSRounded,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    margin-bottom: 1rem;
    text-align: center;
    margin-top: -4rem;
    z-index: 3;
    color: #dd6b04;
    width: auto;
    border-radius : 1rem;
    line-height : 10rem;
	padding:0 1.5rem;
}

.texte-don {

    font-size: 2rem;
    color: #6a6a6a;
    line-height: 3.5rem;
    width: 33.3%;
    float: right;
    padding: 14rem 4rem;
    height: 100%;
    text-align: center;
}

.info-don {
    color : #ec1163;
	font-family: futura-pt-bold,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;

}

.row-don .col-5 {
    padding: 0;
}



/* Publique Accueil */
.overlay-transparent {
    background-color : #17277d75;
}

.trame-publique {
    background-image: url(../image/trame-publique.png);
    margin: auto;
    overflow: hidden;
    position: relative;
}

.bandeau-bleu {
    position : absolute;
    right: 0;
    height : 100%;
    width : 47rem;
    background-color : #002a6fcf;
    padding: 4rem 4rem 0 4rem;
}

.block-bienvenue {
    background-color: white;
    text-align: center;
    position: absolute;
    top: 28rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    mix-blend-mode: screen;
    font-size: 3rem;
    padding: 0 4rem;
}

.don-enfant {
    font-size : 3.5rem;
}

.bienvenue-enfant {
    font-size: 9rem;
    line-height: 9rem;
}


.block-explication,
.block-explication-fin {
    background-color : white;
    position: absolute;
    top: 45rem;
    color : black;
}

.block-explication {
    width: 54rem;
}

.block-explication-fin {
    width: 60rem;
}

.explication-publique {
    font-size: 2rem;
    padding: 2rem 2rem 2rem 4rem;
    line-height: 2.5rem;
}

.explication {
    font-weight : bold;
}

.btn-savoir-plus,
.btn-savoir-plus-fin {
    position: absolute;
    background-color: #0a54a4;
    text-transform: uppercase;
    color: white;
    border-radius: 1rem;
    bottom: 14rem;
    left: 11rem;
    font-size: 4rem;
    font-weight: bold;
    padding: 0 1rem;
}

.btn-savoir-plus {
    bottom: 14rem;
}

.btn-savoir-plus-fin {
    bottom: 23rem;
}

.btn-savoir-plus:hover,
.btn-savoir-plus-fin:hover {
	text-decoration: none;
	color: white;
}

.copyright {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    color: #d3d1d1;
    font-size: 2rem;
}

.montant-recolte {
    font-size: 7rem;
    color: orange;
    font-weight: bold;
    line-height: 7rem;
}

.montant-eleve {
    text-transform: uppercase;
    color : white;
    font-size : 2.5rem;
}

.nb-jours {
    color : white;
    font-size : 2rem;
    text-transform : uppercase;
}

.icons {
    width: 2.5rem;
    margin-right: 1.5rem;
}

.sponsor-icon {
    width: 4rem;
    display: block;
    margin: auto;
}

.montant-pour-don {
    font-size: 5rem;
    color: orange;
    font-weight: bold;
    margin-left: 17rem;
    line-height: 6rem;
}

.pour-don {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 6rem;
    width: 100%;
    text-align: center;

}

.detail-don {
    color : white;
    font-size : 2rem;
}

.detail-detail-don {
    color : white;
    font-size : 1.5rem;
    font-style: italic;
}

.info-impots {
    height: 11rem;
    font-size: 1.25rem;
    padding: 1rem 0rem;
    line-height: 2.5rem;
    text-align: center;
    font-weight: normal;
    cursor: pointer;
    color: #595959;
	font-family: BeVietnam,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,sans-serif;
}

.confiance {
    margin: auto;
    display: block;
    width: 7.5rem;
    margin-top: 5rem;
}

/* Popup Remerciement */

.merci-don {
    text-transform : uppercase;
    text-align : center;
    font-size : 2.5em;
    font-weight : bold;
    margin: 3rem 1rem;
}

.publique-bulle-don,
.publique-bulle-faire-don {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 72rem;
    background-color: #f5f5f5;
    border-radius: 2rem;
    box-shadow: 0rem 0rem 2rem 1rem #0606060f;
}

.publique-bulle-don {
    height: 53rem;
}

.text-merci-don {
    font-size : 1.5rem;
    padding: 0 4rem;
}

.entete-popup {
    font-size : 2rem;
    display: flex;
    background-color : white;
    padding: 1.5rem 4rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: 0rem 0rem 2rem 1rem #0606060f;
}

.btn-croix-merci-don {
    width: 3rem;
    cursor: pointer;
}

hr {
    width: 72rem;
}


/* Impots */

.popup-confiance {
    background-color: white;
    border-radius: 2rem;
    position: absolute;
    margin : auto;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    height: 24rem;
    font-size: 2rem;
    width: 61rem;
    line-height: 2.5rem;
    padding: 2rem 6rem 2rem 4rem;
}

.info-impots-popup,
.detail-impots-popup {
    font-size: 2rem;
    line-height: 2.5rem;
}

.info-impots-popup {
    font-weight : bold;
}

.confiance-popup {
    position: absolute;
    top: 32rem;
    right: 55rem;
    height: 13rem;
    width: 12.5rem;
}

/* Faire un don */

.publique-bulle-faire-don {
    height: 76rem;
}

.formulaire {
}

.row-don-input {
    text-align : center;
    font-size : 3rem;
    margin: 4rem 0;
}

.montant-don-input,
.prenom-don-input,
.nom-don-input,
.mail-don-input,
.entreprise-don-input,
.adresse-don-input,
.code-postal-don-input,
.ville-don-input,
.pays-don-input,
.carte-don-input,
.date-don-input,
.code-don-input {
	background-color: #fff;
	border-radius: 1rem;
	height: 4rem;
	font-size: 2rem;
	border : 0.2rem solid #b9b9b9;
}
.montant-don-input.has-error,
.prenom-don-input.has-error,
.nom-don-input.has-error,
.mail-don-input.has-error,
.entreprise-don-input.has-error,
.adresse-don-input.has-error,
.code-postal-don-input.has-error,
.ville-don-input.has-error,
.pays-don-input.has-error,
.carte-don-input.has-error,
.date-don-input.has-error,
.code-don-input.has-error {
	border : 0.2rem solid red;
}

.row-donateur {
    margin : 0.5rem 4rem;
    display: flex;
    align-items: baseline;
}

.info-donateur {
    font-size: 2rem;
    font-style: italic;
}

.champs-obligatoires {
    font-size: 1.5rem;
    font-style: italic;
}

.bulle-infos-perso {
    width: 65rem;
    height: 44rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0rem 0rem 2rem 1rem #0606060f;
    margin: auto;
    padding: 3rem 4rem;
}

.bulle-infos-bancaires {
    width: 65rem;
    height: 10rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0rem 0rem 2rem 1rem #0606060f;
    margin: auto;
    padding: 3rem 4rem;
}

.entreprise-label {
    font-size : 2rem;
    margin: 0rem 0rem 0rem 1rem;
}

.l2, .l3, .l4, .l5 {
    margin: 3rem 0;
}

.l1 {
    margin : 0;
    align-items: center;
}

.row-valider {
    margin : 3rem 0;
    justify-content: center;
}

.btn-valider {
    background-color: #0174be;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    line-height: 3.5rem;
    font-size: 3rem;
    border-radius: 1rem;
    width: 20rem;
}
select#country{
	font-size:2rem;
	border-radius: 1rem;
	border:0.2rem solid #b9b9b9
}
select#country.has-error{
	border:0.2rem solid red
}




#ieBody {
	padding: 100px 40px 40px 40px;
	background-color: #EEE;
	text-align: center;
	font-size: 18px;
}