/* ------------------------------- */
/* CSS by Armadiyo (Juillet 2025)  */
/*                                 */
/* www.armadiyo.com                */
/* ------------------------------- */

:root{
    --bleu-encre: #201A41;
    --bleu-encre-75: #2F2853;
    --bleu-encre-25: #B8B4CF;
    --ocre : #D38D31;
    --bleu-azur: #38BFF0;
    --bleu-hover: #2F2371;
    --lavande: #B8B4CF;
    --lavande-125: #5269BA;
    --lavande-100: #778DD8;
    --lavande-50: #A0AFE4;
    --lavande-25: #C8D0EF;
    --lavande-10: #D7DEF4;
    --moutarde-25: #FFF5B9;

    --complementaire: #DF4D79;

    --posDotStart: -5px;
    --posDotFinal: 0px;

    --widthDotStart: 0px;
    --widthDotFinal: 0px;

    --posBulleStart: 1200px;
    --posBulleFinal: 1000px;

    --posInfoStart: -1000px;
    --posInfoFinal: 0px;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: var(--bleu-encre);
}
body{
    background: #778DD8;
    padding: 0;
    margin: 0;
}

.preload{
    display: none;
}
.onlyOnTabletPortrait,
.onlyOnMobile,
.onlyForSmall{
    display: none;
}
.displayblock{
    display: block;
}
.displayinlineblock{
    display: inline-block;
}
.mb4{margin-bottom: 4px;}
.mb8{margin-bottom: 8px;}
.mb16{margin-bottom: 16px;}
.mb32{margin-bottom: 32px;}
.mb40{margin-bottom: 40px;}
.pb0{padding-bottom: 0px;}
.pb40{padding-bottom: 40px;}
.pb60{padding-bottom: 60px;}
.pb80{padding-bottom: 80px;}
.mh60{min-height: 60px;}
.mh65{min-height: 65px;}
.mh40{min-height: 40px;}
.tal{text-align: left;}

.page-mediateur h1,
.homepage h1{
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0em;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 0 15%;
    color: var(--bleu-encre);
}
.page-mediateur h2,
.homepage h2{
    font-family: 'TTNormsPro-Rg',sans-serif;
    /*font-size: 28px;*/
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 16px;
    padding: 0 5%;
    color: var(--bleu-encre);
}
.homepage h3{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
    padding: 0 15%;
    color: var(--bleu-encre);
}
.homepage-visuel{
    height: 285px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.homepage-visuel:before{
    content:'';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: block;
    height: 152px;
    /*background: linear-gradient(180deg, rgba(250, 237, 220, 0) 47.5%, #FAEDDC 100%);*/
}

.inner-page-background:before{
    content:'';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: block;
    height: 40px;
    background: linear-gradient(180deg, rgba(215, 222, 244, 0) 0%, #D7DEF4 100%);
}
a{
    cursor: pointer;
}
h1{
    font-size: 32px;
    line-height: 35px;
    margin:0;
}
h2{
    color: #201A41;
    font-size: 22px;
    line-height: 26px;
    font-family: 'TTNormsPro-Bd',sans-serif;
}
.fs24{
    font-size: 24px;
}
p{
    font-size: 14px;
    line-height: 16px;
}
strong, b{
 font-family: 'TTNormsPro-Bd',sans-serif;
}

.little-a{
    color: var(--bleu-encre);
    text-align: center;
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 110%;
    text-decoration: none;
}
.msg-alert{
    color: var(--lavande-100);
    text-align: center;
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 110%;
    margin-top: 18px;
}
.ligne-lavande{
    width: 100%;
    height: 1px;
    background-color: var(--lavande);
    margin: 20px 0px;
    padding: 0px;
}

/* --= Scrollbars =-- */

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--bleu-encre) transparent;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: var(--lavande-25);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--bleu-encre);
  border-radius: 20px;
  border: 3px solid var(--lavande-25);
}

/* --= formulaires =-- */
input:focus,
textarea:focus,
input:focus-within,
textarea:focus-within,
input:focus-visible,
textarea:focus-visible{
    outline: 2px solid var(--lavande-100);
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}
input:-moz-focusring,
textarea:-moz-focusring{
    outline: 2px solid var(--lavande-100);
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}
button, input, optgroup, select, textarea{
    border: 0;
    font-family: 'TTNormsPro-Rg',sans-serif;
}
input[type='number'],
input[type='text']  {
    border: 1px solid var(--lavande-25);
    background: white;
    font-size: 13px;
    line-height: 15px;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
}
input[type='number']::placeholder,
input[type='text']::placeholder,
input[type='email']::placeholder{
    font-size: 13px;
    line-height: 160%;
    color: var(--lavande-125);
    opacity: 1;
}
::-webkit-input-placeholder {
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125);
    opacity:  1;
}
:-moz-placeholder { /* Firefox 18- */
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125);
    opacity:  1;
}
::-moz-placeholder { /* Firefox 19+ */
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125);  
    opacity:  1;
}
:-ms-input-placeholder {  
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125); 
    opacity:  1;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125); 
    opacity:  1;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125); 
    opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125); 
    opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125); 
    opacity:  1;
}
textarea{
    border: 1px solid var(--lavande-25);
    background: white;
    font-size: 13px;
    line-height: 160%;
    width: 90%;
    padding: 16px;
    border-radius: 16px;
    min-height: 240px;
    margin: 0 auto;
    resize : both;
    min-width : 90%;
    max-width : 90%;    
}
textarea::placeholder{
    font-size: 13px;
    line-height: 15px;
    color: var(--lavande-125);
}

div.input-email{
    border-radius: 8px;
    border: 2px solid var(--lavande-100);
    padding: 0px 4px;
    text-align: left;
    height: 38px;
    vertical-align: middle;
    position: relative;
    display: inline-block;
    width: 100%;
    background: linear-gradient(180deg, #00B0E5 0%, #0090BC 50%) !important;   
}
div.input-email input[type='email']{
    padding: 16px;
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 13px;
    width: 90% !important;
    border-radius: 8px 0px 0px 8px;
    height: 32px;
    margin: 0;
    position: absolute;
    left: 1px;
    top: 1px;
}
div.input-email input[type='email']:focus{
    border:0;
}
div.input-email button{
    height: 32px;
    width: 10%;
    margin: 0;
    background: transparent;
    color: white;
    text-align: center;
    position: absolute;
    right: 1px;
    top: 1px;
    cursor: pointer;
}
div.input-email button i{
    color: white;
}

/* --= Popover Invitation Partage des données personnelles =-- */
.popover-jaune{
    position: fixed;
    width: 290px;
    border-radius: 24px;
    padding: 22px 24px;
    background: var(--ocre);
    box-shadow: 0px 20px 60px 0px rgba(32, 26, 65, 0.50);
    z-index: 50;
    transition: all 0.5s;
}
.popover-jaune:before{
    content:'';
    background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="27" height="26" viewBox="0 0 27 26" fill="none"><path d="M0 13L27 26V0L0 13Z" fill="%23D38D31"/></svg>');
    width: 27px;
    height: 26px;
    display: block;
    position: absolute;
    left: -26px;
    bottom: 24px;
}
.popover-jaune p:first-child{
    color: var(--bleu-encre);
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 20px;
    font-style: normal;
    line-height: 23px;
    margin-bottom: 16px;
}
.popover-jaune p:last-child{
    color: var(--bleu-encre);
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 20px;
    font-style: normal;
    line-height: 140%;
}
.popover-jaune .btn-oui,
.btn-oui{
    color: white;
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 110%;
    padding-right: 24px !important;
    text-align: left;
}
.popover-jaune .btn-oui:after,
.btn-oui:after{
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 12px;
    z-index: 12;
}

.invitation-donnees-personnelles{
    pointer-events: none;
    top: 18px;
    left: var(--posBulleStart);
    opacity: 0;
}
.invitation-donnees-personnelles-open{
    pointer-events: auto;
    left: var(--posBulleFinal);
    opacity: 1;
}
.invitation-reagir{
    position: absolute;
    pointer-events: none;
    bottom: 10%;
    left: var(--posBulleStart);
    opacity: 0;
}
.invitation-reagir-open{
    pointer-events: auto;
    left: var(--posBulleFinal);
    opacity: 1;
}


.btn-nonmerci{
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 110%;
    text-align: left;
    padding: 0 14px 0 0;
    margin-right: 16px;
    position: relative;
}
.btn-nonmerci:after{
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 12;
}
.btn-nonmerci:hover{
    background: transparent !important;
}

.btn-custom{
    position: absolute !important;
    bottom: -60px;
    max-width: 245px;
}
.btn-merci{
    position: absolute !important;
    bottom: -40px;
    max-width: 245px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-mobile-filtre{
    text-align: left;
}
.btn-duree:after{
    content: '\f252';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 12;
}
.btn-down:after{
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 12;
}

.btn-close{
    padding-right: 30px !important;
}
.btn-close:after{
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    z-index: 12;
}

.btn-filtre-open:after{
    content: '\f00d';
}

.alertMsg{
    display: none;
    background-color: white;
    border-radius: 16px;
    padding: 32px 60px 32px 60px !important;
    max-width: 640px;
    text-align: center;
}
.alertMsg p{
    line-height: 24px;
    font-weight: 800;
    line-height: 120%;
}
.btn-close-alertMsg{
    margin-top:16px;
}

.lnk-passer{
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 12px;
    font-style: bold;
    line-height: 110%;
    text-align: center;
    padding: 0 14px 0 0;
    text-decoration: none;
    position: relative;
}
.lnk-passer:after{
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 12;
}
.lnk-passer:hover{
    text-decoration: underline;
}

/* --= featherlight =-- */
.lightbox {
    display: none;
}
.lightbox-text {
    background-color: white;
    border-radius: 16px;
    padding: 64px 60px 32px 60px !important;
    max-width: 640px;
}
#infosPersos .lightbox-text{
    border-radius: 32px;
}
.lightbox-text h1{
    margin-top: 16px;
    margin-bottom: 8px;
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 24px;
    font-style: normal;
    line-height: normal;
}
.lightbox-text .titre-lightbox-text{
    margin-top: 16px;
    margin-bottom: 8px;
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 24px;
    font-style: normal;
    line-height: normal;
}
.lightbox-text p{
    line-height: 16px;
    line-height: 120%;
    margin-bottom: 8px;
}

.lightbox-img {
    padding: 50px 0px 0px 0px !important;
}
.featherlight:last-of-type{
    background: rgba(119, 141, 216, 0.95) !important;
}
.btn-close-lightbox{
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
}
.btn-close-lightbox-inner{
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    /*top: 32px;*/
    top: 52px;
}
.btn-close-lightbox-inner,
.btn-close-lightbox{
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding-right: 22px !important;
}
.btn-close-lightbox-inner:after,
.btn-close-lightbox:after{
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 12;
}
.btn-close-lightbox-inner:hover:after,
.btn-close-lightbox:hover:after{
    color: white;
}
.featherlight-close{
    display: none;
}
.featherlight-content {
    background: transparent !important;
}

/*
.featherlight-content .zoomImg img,
.featherlight-content .lightbox-img img{
    height: 80vh;
    width: auto;
    border-radius: 16px;
}
*/
.featherlight .featherlight-content{
    padding: 0 !important;
}
.featherlight-content .zoomImg img,
.featherlight-content .lightbox-img img{
    width: 100%;
    max-width: 888px;
}

.btn-dark:after{
    color: white;
}




.btn-next{
    padding-right: 28px !important;
}
.btn-next:after{
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 12;
}

/* --= Timeline =-- */
.timeline{
    margin: 16px auto;
} 
.timeline .grid-parent{
    color: var(--bleu-encre);
    font-size: 12px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.2px;
}
.progressbar{
    width:320px;
    background-color: white;
    height: 6px;
    position: relative;
    margin: 10px auto;
    border-radius: 6px;
}
.progressbar .dot{
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 8px;
    border: 4px solid var(--lavande-100);
    position: absolute;
    top: -4px;
    left:var(--posDotStart);
    transition: all 0.5s;
}
.progressbar .dot:before{
    content: '';
    position: absolute;
    display: inline-block;
    width:var(--widthDotStart);
    background-color: var(--lavande-100);
    height: 7px;
    right: 10px;
    top: 0px;
    border-radius: 6px 0px 0px 6px;
    transition: all 0.5s;
}
.progressbar-active .dot:before{
    width:var(--widthDotFinal);
}
.progressbar-active .dot{
    left:var(--posDotFinal);
}

/* Boutons */
.btn{
    display: inline-block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}
.btn-condition{
    display: none;
}
.btn span{
    display: inline-block;
}
.btn-fixe{
    z-index: 50;
}

.btn-size-xl{
    border-radius: 8px;
    /*
    min-height: 50px;
    height: 50px;
    line-height: 50px;
    */
    padding: 14px 20px;
}
.btn-size-xl span{
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    /*
    font-family: 'TTNormsPro-Bd',sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    */
}
.btn-size-l{
    border-radius: 8px;
    /*
    min-height: 35px;
    height:40px;
    line-height: 40px;
    */
    padding: 8px 20px;
}
.btn-size-l span{
    font-size: 14px;
    line-height: 14px;
    font-weight: normal;
    font-family: 'TTNormsPro-Bd',sans-serif;
}

.btn-size-m{
    border-radius: 6px;
    /*
    min-height: 32px;
    height: 32px;
    line-height: 32px; 
    */
    padding: 8px 20px;
}
.btn-size-m span{
    font-size: 14px;
    line-height: 14px;
}

.btn-size-s{
    border-radius: 4px;
    /*
    min-height: 24px;
    height: 24px;
    line-height: 24px;
    */
    padding: 6px 12px;
}
.btn-size-s span{
    font-size: 12px;
    line-height: 12px;
}

.btn-size-xs{
    border-radius: 4px;
    /*
    min-height: 24px;
    height: 24px;
    line-height: 24px;
    */
    padding: 0px 6px;
}
.btn-size-xs span{
    font-size: 10px;
    line-height: 22px;
    height: 22px;
}

.btn-dark{
    background: linear-gradient(180deg, #404C8D 0%, var(--bleu-encre) 50%);
}
.btn-dark span,.btn-dark p,.btn-dark strong{
    color: #fff;
}
.btn-light{
    background: linear-gradient(180deg, #FFF 19.79%, #E3E9F7 50%);
}
.btn-light span{
    color: var(--bleu-encre);
}
.btn-grey{
    background: linear-gradient(180deg, #C8D0EF 0%, #A0AFE4 50%);
}
.btn-grey span{
    color: var(--bleu-encre);
}
.btn-ocean{
    background: linear-gradient(180deg, #00B0E5 0%, var(--lavande-100) 50%);
}
.btn-ocean span{
    color: #fff;
}
.btn-azur{
    background: linear-gradient(180deg, #00B0E5 0%, var(--bleu-azur) 50%);
}
.btn-azur span{
    color: #fff;
}

.btn-disable{
    background: var(--lavande);
}
.btn-disable span{
    color: #8178B0;
}
.btn-disable:after{
    color: #8178B0 !important;
}
.btn:not(.btn-disable):hover, .btn100:not(.btn-disable):hover{
    /*background: var(--bleu-encre);*/
    background: linear-gradient(180deg, #404C8D 0%, #201A41 50%);
}
.btn:not(.btn-disable):hover span, .btn100:not(.btn-disable):hover span{
    color: #ffffff;
}
.btn:not(.btn-disable):hover p, .btn100:not(.btn-disable):hover p,
.btn:not(.btn-disable):hover strong, .btn100:not(.btn-disable):hover strong{
    color: #ffffff;
}
.bloc-bleu-encre .btn:not(.btn-disable):hover, .bloc-bleu-encre .btn100:not(.btn-disable):hover{
    background: white;
}
.bloc-bleu-encre .btn:not(.btn-disable):hover span, .bloc-bleu-encre .btn100:not(.btn-disable):hover span{
    /*color: var(--bleu-encre);*/
    color: var(--bleu-hover);
}

.btn-slide{
    width: auto !important;
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 10px 40px 0px #FFFFFF;
}

.btn-reagir{
    position: relative;
}
.btn-reagir:after {
    content: '\f075';
    font-family: 'Font Awesome 6 Free';
    color: white;
    position: absolute;
    right: 20px;
    top: 8px;
    font-size: 16px;
    line-height: 32px;
    z-index: 12;
}
.btn-nouveau-participant{
    position: fixed;
    border-radius: 16px;
    padding: 8px 20px;
    right: 40px;
    bottom: 30px;
    background: white;
    z-index: 900;
}
.btn-nouveau-participant span{
    color: var(--lavande-100);
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 15px;
    padding-right: 16px;
}
.btn-nouveau-participant:after {
    content: '\f234';
    font-family: 'Font Awesome 6 Free';
    color: var(--lavande-100);
    position: absolute;
    right: 10px;
    bottom: 9px;
    font-size: 15px;
    z-index: 12;
}
.btn-nouveau-participant:hover:after {
    color: white;
}

.btn-plus{
    position: relative;
    padding-right: 25px;
    text-align: left;
}
.btn-plus:after {
    content: '\2b';
    font-family: 'Font Awesome 6 Free';
    color: white;
    position: absolute;
    right: 8px;
    top: 10px;
    font-size: 12px;
    z-index: 12;
}


.btn-question{
    position: relative;
}
.btn-question:after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    color: white;
    position: absolute;
    right: 20px;
    top: 8px;
    font-size: 16px;
    line-height: 32px;
    z-index: 12;
}

.btn-telecharger-pdf{
    position: relative;
}
.btn-telecharger-pdf:after {
    content: '\f019';
    font-family: 'Font Awesome 6 Free';
    color: white;
    position: absolute;
    right: 20px;
    top: 8px;
    font-size: 16px;
    line-height: 32px;
    z-index: 12;
}

.btn-recevoir-pdf{
    position: relative;
}
.btn-recevoir-pdf:after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    color: white;
    position: absolute;
    right: 20px;
    top: 8px;
    font-size: 16px;
    line-height: 32px;
    z-index: 12;
}


.btn-ext{
    padding-right: 28px;
    text-align: left;
}
.btn-ext:after {
    content: '\f08e';
    font-family: 'Font Awesome 6 Free';
    color: white;
    position: absolute;
    right: 8px;
    top: 3px;
    font-size: 12px;
    z-index: 12;
}
.btn-ext span{
    font-family: 'TTNormsPro-Bd',sans-serif;
    line-height: 20px;
}

.btn-ext2 span{
    padding-right: 28px;
    text-align: left;
    position: relative;
}
.btn-ext2 span:after {
    content: '\f08e';
    font-family: 'Font Awesome 6 Free';
    color: white;
    position: absolute;
    right: 8px;
    top: 3px;
    font-size: 12px;
    z-index: 12;
}

.btn100{
    width: 100%;
    display: block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.posBottomPage{
    position: fixed;
    left: 50%;
    transform:translateX(-50%);
    padding-bottom: 32px;
    bottom: 0px;
    z-index: 50;
    padding-top: 40px;
}

.fs12{font-size: 12px;}
.fs13{font-size: 13px;}
.fs14{font-size: 14px;}
.fs16{font-size: 15px;}
.fs16{font-size: 16px;}
.fs18{font-size: 18px;}

.typopicto{
    color: #FFF;
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    padding-left: 5px;
}
.nav-menu .typopicto{
    color: var(--lavande-100);
    float: right;
    padding-right: 15px;
    margin-top: 3px;
}


.cta-homepage p{
    font-size: 12px;
}
.slider-homepage{
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    padding-top: 24px !important;
}

section.container{
    width: 100%;
    max-width: 680px;
    height: 100%;
    min-height: 100vh;
    background: #FAEDDC;
    background: var(--lavande-10);
    background: linear-gradient(90deg, rgba(215,222,244,0) 0px, rgba(215,222,244,0) 49px,rgba(215,222,244,1) 49px, rgba(215,222,244,1) 631px, rgba(215,222,244,1) 631px, rgba(215,222,244,0) 631px, rgba(215,222,244,0) 100%);
    margin: 0px auto;
    display: block;
    position: relative;
    z-index: 5;
    text-align: center;
    overflow: clip;
}
section.container_simple{
    width: 100%;
    max-width: 680px;
    background: #FAEDDC;
    background: var(--lavande-10);
    background: linear-gradient(90deg, rgba(215,222,244,0) 0px, rgba(215,222,244,0) 49px,rgba(215,222,244,1) 49px, rgba(215,222,244,1) 631px, rgba(215,222,244,1) 631px, rgba(215,222,244,0) 631px, rgba(215,222,244,0) 100%);
    margin: 0px auto;
    display: block;
    position: relative;
    z-index: 5;
    text-align: center;
    overflow: clip;
}
.inner{
    width: 100%;
    max-width: 582px;
    display: inline-block;
    position: relative;
    z-index: 5;
    padding: 24px 24px;
    margin: 0px auto; 
    padding-bottom: 80px;
}
.inner-nopad{
    width: 100%;
    max-width: 582px;
    display: inline-block;
    position: relative;
    z-index: 5;
    padding: 0px 24px;
    margin: 0px auto; 
}
.inner-full{
    width: 100%;
    max-width: 582px;
    display: inline-block;
    position: relative;
    z-index: 5;
    padding: 0px;
    margin: 0px auto;
}
.inner-full-bloc{
    width: 100%;
    background-color: #fff;
    display: inline-block;
    position: relative;
    z-index: 5;
    padding: 24px 24px;
    border-radius: 32px;
    margin: 0px auto 0px auto;
    box-shadow: 1px 10px 22px 0px rgba(32,26,65,0.2);
    /*
    display:flex;
    justify-content: space-around;
    */
}
.inner-full-bloc-size-s{
    width: 100%;
    background-color: #fff;
    display: inline-block;
    position: relative;
    z-index: 5;
    padding: 8px 24px;
    border-radius: 32px;
    margin: 0px auto 0px auto;
    box-shadow: 1px 10px 22px 0px rgba(32,26,65,0.2);
    /*
    display:flex;
    justify-content: space-around;
    */
}

.bloc-bleu-encre div,
.bloc-bleu-encre p{
    color: white;
}
.bloc-bleu-encre h3{
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    color: white;
    margin-bottom: 8px;
}

.background-degrades{
    position: relative;
    height: 100%;
    min-height: 100vh;
    overflow: clip;
}
.background-degrades::before {
    content: "";
    width: 50%;
    height: 100%;
    min-height: 100vh;
    background: linear-gradient(163.77deg, rgba(32, 26, 65, 0.75) 0%, rgba(32, 26, 65, 0) 78.65%);

    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
}
.background-degrades::after {
    content: "";
    width: 50%;
    height: 100%;
    min-height: 100vh;
    background: linear-gradient(17.57deg, rgba(32, 26, 65, 0.75) -6.19%, rgba(32, 26, 65, 0) 63.85%);
    position: fixed;
    z-index: 1;
    right: 0;
    bottom: 0;
}

.logo-debat{
    position: fixed;
    left: 10%;
    top: 80px;
    z-index: 6;
}

.chosen-container-single .chosen-single span{
    color: white;
    font-size: 14px;
}
.chosen-container .chosen-results li{
    color: white;
    font-size: 13px;
    padding: 6px 8px !important;
}
.item-select{
    font-size: 14px;
    border-radius: 6px !important;
    border: 0 !important;
    box-shadow: none !important;
    webkit- box-shadow: none !important;
    background: linear-gradient(180deg, #1A5393 0%, #113865 50%) !important;
    padding: 16px;
    color: white;
    width: 100%;
}
.chosen-container-single .chosen-single{
    border-radius: 6px !important;
    border: 0 !important;
    box-shadow: none !important;
    webkit- box-shadow: none !important;
    background: linear-gradient(180deg, #C8D0EF 0%, #A0AFE4 50%) !important;
}
.chosen-container-single .chosen-single span{
    font-size: 12px;
    color: var(--bleu-encre) !important;
}
.chosen-container .chosen-results{
    border-radius: 6px !important;
    background: var(--bleu-encre) !important;
    color: white;
    margin: 0 !important;
    padding: 0 0 6px 0 !important;
}
.chosen-container-single .chosen-drop{
    margin-top: 4px !important;
    border: 0 !important;
}
.chosen-container li.active-result{
    background-color: var(--bleu-encre);
    font-size: 12px;
}
.chosen-container li.result-selected{
    background-color: var(--bleu-encre);
    font-size: 12px;
}
.chosen-container .chosen-results li.highlighted{
    background-color: var(--bleu-encre) !important;
    background: none !important;
    color: var(--lavande-50) !important;
}

/* --- Bloc en savoir plus --- */
.bloc-info-ensavoirplus{
    position: fixed;
    pointer-events: none;
    left: 49px;
    bottom: var(--posInfoStart);
    opacity: 0;
    width: 100%;
    max-width: 582px;
    z-index: 100;
    padding: 32px 24px 12px 24px;
    margin: 0px auto;
    background-color: #fff;
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0px -1.60501px 2.04777px 0px rgba(14, 41, 52, 0.06), 0px -3.85706px 4.92108px 0px rgba(14, 41, 52, 0.09), 0px -7.2625px 9.26595px 0px rgba(14, 41, 52, 0.11), 0px -12.95506px 16.52887px 0px rgba(14, 41, 52, 0.13), 0px -24.23101px 30.91543px 0px rgba(14, 41, 52, 0.16), 0px -58px 74px 0px rgba(14, 41, 52, 0.22);
    transition: all 0.5s;
}
.bloc-info-ensavoirplus-open{
    bottom: var(--posInfoFinal);
    pointer-events: auto;
    opacity: 1;
    display: block;
}
.info-ensavoirplus{
    padding: 24px 24px;
    display: inline-block;
    overflow: auto;
}

/* --- Bloc en savoir plus --- */
.bloc-methodologie{
    position: fixed;
    pointer-events: none;
    left: 49px;
    bottom: var(--posInfoStart);
    opacity: 0;
    width: 100%;
    max-width: 582px;
    z-index: 100;
    padding: 32px 24px 12px 24px;
    margin: 0px auto;
    background-color: #fff;
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0px -1.60501px 2.04777px 0px rgba(14, 41, 52, 0.06), 0px -3.85706px 4.92108px 0px rgba(14, 41, 52, 0.09), 0px -7.2625px 9.26595px 0px rgba(14, 41, 52, 0.11), 0px -12.95506px 16.52887px 0px rgba(14, 41, 52, 0.13), 0px -24.23101px 30.91543px 0px rgba(14, 41, 52, 0.16), 0px -58px 74px 0px rgba(14, 41, 52, 0.22);
    transition: all 0.5s;
}
.bloc-methodologie-open{
    bottom: var(--posInfoFinal);
    pointer-events: auto;
    opacity: 1;
    display: block;
}
.info-methodologie{
    padding: 24px 24px;
    display: inline-block;
    overflow: auto;
}
.info-methodologie .titre-methodo{
    font-size: 20px;
}

/* --- FOOTER --- */
footer{
    position: relative;
    /*position: fixed;
    bottom: 32px;*/
    z-index: 6;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    padding-bottom: 24px;
}
footer a{
    color: var(--bleu-encre);
    font-size: 11px;
    font-style: normal;
    line-height: normal;
    text-decoration-line: underline;
    margin:0px 7px;
}
.bg-bleu-encre footer a{
    color: white;
}

/* --- MENU --- */
.menu{
    position: fixed;
    top: 32px;
    z-index: 20;
    cursor: pointer;
}
.menu button{
    width: 88px;
    height: 32px;
    border: 0;
    border-radius: 32px;
    padding: 0px;
    background-color: #fff;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: 1px 10px 22px 0px rgba(32,26,65,0.5);
}
.menu button span{
    font-size: 13px;
    line-height: 17px;
    text-align: right;
    position: absolute;
    right: 37px;
    top: 8px;
}
.menu-open button{
    width: 230px;
    height: 190px;
    display: inline-block;
    border-radius: 16px;
    box-shadow: 1px 10px 22px 0px rgba(32,26,65,0.2);
}
.menu-open button.btn-mediateur{
    width: 280px;
    height: 285px;
}

.icon-burger{
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 12;
    cursor: pointer;
}
.icon-burger:after{
    content: '\f0c9';
    font-family: 'Font Awesome 6 Free';
    color: white;
    background-color: #E63B11;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    position: absolute;
    right: -1px;
    top: 0px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    cursor: pointer;
    z-index: 12;
}
.menu-open .icon-burger:after{
    content: '\f00d';
}

.menu nav{
    width: 100%;
    display: none;
    position: absolute;
    top: 10px;  
    left: 0px;
    z-index: 11;
}
.menu-open nav{
    display: inline-block;
}
.menu nav ul{
    list-style: none;
    opacity: 0;
    transition: opacity 3s;
}
.menu-open nav ul{
    opacity: 1;
}
.menu nav ul li{
    width: 100%;
}
.menu nav ul li a{
    color: var(--bleu-fonce);
    text-align: left;
    text-decoration: none;
    padding: 0px 20px;
}
.menu nav ul li.menu-lvl1{
    padding:4px 0px;
}
.menu nav ul li.menu-lvl1 a{
    font-family: 'TTNormsPro-Bd';
    font-size: 15px;
    font-weight: normal;
}
.menu nav ul li.menu-lvl2{
    padding: 4px 0px;
}
.menu nav ul li.menu-lvl2 a{
    font-size: 13px;
}
.menu nav ul li.menu-lvl3{
    padding:5px 0px;
}
.menu nav ul li.menu-lvl3 a{
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: var(--lavande-100);
}
.menu nav ul li.menu-lv3-exit{
    padding:4px 0px;
}
.menu nav ul li.menu-lv3-exit a{
    font-family: 'TTNormsPro-Bd',sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #E63B11;
}
.menu nav ul li.menu-lv3-exit .typopicto{
   color: #E63B11;
}
.menu nav ul li.menu-borderb{
    height: 0px;
    padding: 4px 0 0px 0;
    margin: 0px 0px 4px 0px;
    border-bottom: 1px solid #ccc;
}
.menu-open nav ul{
    -webkit-animation: 0.5s ease 0s normal 1 fadein;
    animation: 0.5s ease 0s normal 1 fadein;
}
@keyframes fadein{
    0% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes fadein{
    0% { opacity:0; }
    100% { opacity:1; }
}

.bloc-filter{
    position: sticky;
    position: -webkit-sticky;
    top: 32px;
    z-index: 9;
}
.bloc-filter-themes{
    padding : 15px 24px;
}

.bloc-blanc{
    background-color: #fff;
    position: relative;
    padding: 20px 20px;
    border-radius: 24px;
    margin: 24px auto;
    box-shadow: 1px 10px 22px 0px rgba(32,26,65,0.2);
    display:block;
    justify-content: space-around;
}
.bloc-blanc:after{
    content: '';
    clear: both;
}
.etiquette-titre{

    color: var(--bleu-encre);
    text-align: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform : translateX(-50%);
    white-space: nowrap;
    font-family: "TTNormsPro-Bd";
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    background-color: #fff; 
    padding: 12px 16px;
    border-radius: 20px; 
    box-shadow: 1px 10px 20px 0px rgba(32,26,65,0.2);
    justify-content: space-around;
}
.etiquette-titre:after{
    content: '';
    clear: both;
}

.etiquette-reponse{
    color: var(--bleu-encre);
    text-align: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform : translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    background-color: #fff; 
    padding: 12px 16px;
    border-radius: 20px; 
    box-shadow: 1px 10px 20px 0px rgba(32,26,65,0.2);
    justify-content: space-around;
}

.etiquette-bonne-reponse, .etiquette-fausse-reponse{
    padding: 12px 16px 12px 38px;
}
.etiquette-bonne-reponse:before{
    content:"";
    position: absolute;
    display: block;
    background: url('../../images/good.svg') no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    left:6px;
    top: 8px;
}

.etiquette-fausse-reponse:before{
    content:"";
    position: absolute;
    display: block;
    background: url('../../images/wrong.svg') no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    left:6px;
    top: 8px;
}

.bloc-resultats-texte,
.bloc-texte{
    text-align: left;
    font-size: 15px;
    line-height: 22px;
}
.bloc-resultats-texte a,
.bloc-texte a{
    color: #1A5393;
    text-decoration: none;
}
.bloc-texte p,
.bloc-resultats-texte p{
    text-align: left;
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 8px;
}

.bloc-resultats-texte ul,
.bloc-texte ul{
    list-style: none;
    margin-bottom: 8px;
}
.bloc-texte ul li,
.bloc-resultats-texte ul li{
    text-align: left;
    font-size: 15px;
    line-height: 21px;
    padding-left: 20px;
    position: relative;
    margin:4px 0px;
}
.bloc-texte ul li:before,
.bloc-resultats-texte ul li:before{
    content: '';
    /*background:url('../../images/puce@2x.svg') no-repeat;*/
    background:url('../../images/puce@2x.png') no-repeat;
    background-size: contain;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 6px;
    top: 6px;
}

.bloc-image{
    display: block;
    position: relative;
    margin-top: 16px;
}

.bloc-image img{
    width: 100%;
    height: auto;
    border-top: 2px solid var(--lavande-50, #A0AFE4);
    border-bottom: 2px solid var(--lavande-50, #A0AFE4);
}
.btn-agrandir{
    font-family: 'TTNormsPro-Bd', sans-serif;
    position: absolute;
    left: 50%;
    transform : translateX(-50%);
    bottom: -6px; 
    color: var(--bleu-encre);
    font-size: 12px;
    line-height: normal;
    border-radius: 4px;
    background: #A0AFE4;
    padding: 4px 24px 4px 8px;
    cursor: pointer;
}
.btn-agrandir:after{
    content:"";
    position: absolute;
    display: block;
    background: url('../../images/label.png') no-repeat;
    width: 12px;
    height: 12px;
    right:7px;
    top: 6px;
}

.bloc-texte,.bloc-texte p{
    color: var(--bleu-encre);
    font-size: 16px;
    font-style: normal;
    line-height: 160%;
    text-align: left;
    margin-top: 16px;
}
.bloc-texte{
    padding-bottom: 16px;
}

.videoplayer{
    padding: 7px 0px;
}
.videoplayer img{
    max-width: 100%;
}
.bloc-themrap{
    border-top: 1px solid var(--lavande-100);
    padding: 15px 0px;
    color: var(--bleu-encre);
    font-size: 16px;
    font-style: normal;
    line-height: 160%;
    text-align: left;
}

.tag-theme{
    padding: 0px 6px 0px 2px;
    border-radius: 0px 4px 4px 0px;
    background: #A0AFE4;
    color: var(--bleu-encre);
    position: relative;
    height: 16px;
    line-height: 16px;
    font-size: 11px;
    display: inline-block;
    margin-left: 12px;
}
.tag-theme:before{
    content:"";
    position: absolute;
    display: block;
    background: url('../../images/corner.png') no-repeat;
    width: 13px;
    height: 16px;
    left: -12px;
    top: 0px;
}

.intro-quiz h2,.intro-quiz p,.intro-quiz a{
    font-size: 16px;
    line-height: 20px;
}
.intro-quiz a{
    font-size: 13px;
    text-decoration: underline;
}
.intro-quiz p,.intro-quiz a{
    color: var(--lavande-100);
}

.bloc-resultats h2{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 18px;
    line-height: 24px;
    margin: 0px auto 16px auto;  
}

.parcours-title-h2{
    font-size: 16px;
    line-height: 18px;
    margin: 8px auto;
}
.parcours-title-h3{
    font-size: 20px;
    font-weight: normal;
    line-height: 22px;
    line-height: 120%;
}
.page-parcours h4{
    font-size: 25px;
    font-weight: normal;
    line-height: normal; 
}

.question-title{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 22px;
    line-height: 120%;
    text-align: left;
    margin-bottom: 16px;
}
.question-subtitle{
    text-align: left;
    color: var(--lavande-125);
    font-size: 12px;
    line-height: 120%;
}

.reponses-subtitle{
    background-color: var(--lavande-10);
    color: var(--bleu-encre);
    text-align: left;
    font-size: 14px;
    line-height: 120%;
    border-radius: 8px;
    padding: 8px 8px 8px 8px !important;
    margin-bottom: 10px;
    margin-top: 5px;
}
.reponses-subtitle p,li{
    text-align: left;
    color: var(--bleu-encre);
    font-size: 14px;
    line-height: 120%;
}
.reponses-subtitle ul{
    list-style: none;
}
.reponses-subtitle li{
    margin: 6px 0px;
    position: relative;
    padding-left: 25px;
}
.reponses-subtitle li:before{
    content:'';
    background: url('../../images/good.svg') no-repeat;
    background-size: contain;
    width: 16px;
    height: 17px;
    display: block;
    position: absolute;
    left: 0px;
    top: 1px;
}

.reagir-title{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: var(--lavande-100);
    width: 75%;
    margin: 0px auto 8px auto;
}
.reagir-subtitle{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 25px;
    line-height: 120%;
    text-align: center;
    color: var(--bleu-encre);
    margin: 0px auto 32px auto;
}

.results-title{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    width: 50%;
    margin: 0px auto 8px auto;
}
.results-subtitle{
    font-family: 'TTNormsPro-Bd', sans-serif;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    line-height: 120%;
}

.merci-title{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    margin: 20px auto 8px auto;
    padding: 0px 10%;
}
.merci-subtitle{
    text-align: center;
    font-size: 25px;
    font-weight: normal;
    font-family: 'TTNormsPro-Rg', sans-serif;
    line-height: normal;
}
.merci-subtitle-encadre{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    font-family: 'TTNormsPro-Rg', sans-serif;
    line-height: normal;
    background-color: white;
    padding: 8px 16px;
    border-radius: 24px;
    display: inline-block;
}
.merci-visuel{
    top: 0px;
    height: 222px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.merci-visuel:before{
    content:'';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: block;
    height: 171px;
    background: linear-gradient(180deg, rgba(211, 141, 49, 0) 0%, var(--bleu-encre) 99.99%, #E3EDF8 100%);
}

.page-aproposde h1{
    font-size: 32px;
    line-height: 35px;
    margin: 0px auto 24px auto;
}
.page-aproposde h2{
    font-size: 22px;
    line-height: 24px;
    text-align: left;
    margin: 16px auto 8px auto;
}
.page-aproposde p{
    text-align: left;
    margin: 0px auto 8px auto;
    font-size: 15px;
    line-height: 22px;
}

.page-quietesvous .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.page-quietesvous h1{
    font-family: 'TTNormsPro-Bd', sans-serif;
    text-align: left;
    color: var(--bleu-encre);
    font-size: 24px;
    line-height: 120%;
    margin: 0px auto 16px auto;
    padding-right: 60px;
}
.page-quietesvous h2{
    font-family: 'TTNormsPro-Rg', sans-serif;
    color: var(--bleu-encre);
    font-size: 16px;
    line-height: 19px;
    text-align: left;
    margin: 0px auto 8px auto;
    padding-right: 60px;
}
.page-quietesvous p{
    text-align: left;
    margin: 0px auto 4px auto;
    line-height: 16px;
}

.parcours-header{
    height: 80px;
    background-color: white;
    padding: 8px 0px;
    text-align: left;
    border-bottom: 1px solid #AECBEA;
}
.parcours-title-header{
    font-family: 'TTNormsPro-Bd', sans-serif;
    color: var(--bleu-encre);
    font-size: 14px;
    line-height: 1em;
    text-align: left;
    padding: 0px 28px;
    margin-top: 8px;
    margin-bottom: 6px;
}

/* Header parcours */
.parcours-header ul,
ul.resultats-parcours{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0px 38px;
    z-index: 6;
}
.parcours-header ul:after,
ul.resultats-parcours:after{
    content: '';
    width: calc(100% - 64px);
    height: 3px;
    background: #AECBEA;
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -2;
}
.parcours-header ul li,
ul.resultats-parcours li{
    position: relative;
    line-height: 30px;
    min-width: 16px;
    text-align: center;
    font-size: 14px;
    font-family: 'TTNormsPro-Bd',sans-serif;
}
.parcours-header ul li:after,
ul.resultats-parcours li:after{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 16px;
    background-color: white;
    border: 3px solid #AECBEA;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 0px;
}
.parcours-header ul li.intro:after,
ul.resultats-parcours li.intro:after{
    border: 3px solid var(--bleu-encre);
}

.parcours-header ul li.active,
ul.resultats-parcours li.active{
    color: var(--bleu-encre);
}

.parcours-header ul li.active:after,
ul.resultats-parcours li.active:after{
    background-color: var(--lavande-100);
    border: 3px solid var(--lavande-100);
}
.parcours-header ul li.past:after,
ul.resultats-parcours li.past:after{
    background-color: var(--bleu-encre);
    border: 3px solid var(--bleu-encre);
}
.parcours-header ul li.past,
ul.resultats-parcours li.past{
    color: white;
}
.parcours-header ul li.reponse-bonne,
.parcours-header ul li.reponse-fausse,
ul.resultats-parcours li.reponse-bonne,
ul.resultats-parcours li.reponse-fausse{
    color: transparent;
}
.parcours-header ul li.reponse-bonne:after,
ul.resultats-parcours li.reponse-bonne:after{
    background: url('../../images/good.svg') no-repeat;
    background-size: cover;
    background-color: #1A968C;
    border: 3px solid #1A968C;
}
.parcours-header ul li.reponse-fausse:after,
ul.resultats-parcours li.reponse-fausse:after{
    background: url('../../images/wrong.svg') no-repeat;
    background-size: cover;
    background-color: #E08B65;
    border: 3px solid #E08B65;
}


.parcours-visuel{
    height: 172px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.parcours-visuel:before{
    content:'';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: block;
    height: 40px;
    /*background: linear-gradient(180deg, rgba(227, 237, 248, 0) 0%, #E3EDF8 100%);*/
    /*background: linear-gradient(180deg, rgba(250, 237, 220, 0) 0%, #FAEDDC 100%);*/
    background: linear-gradient(180deg, rgba(215, 222, 244, 0) 0%, #D7DEF4 100%);

}
/* -== AVIS ==- */
.parcours-avis{
    padding: 0px 0px;
    text-align: left;
}
 .parcours-avis ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0px 38px;
    z-index: 6;
    height: 32px;
}
.parcours-avis ul:after{
    content: '';
    width: calc(100% - 128px);
    height: 2px;
    background: var(--lavande-50);
    position: absolute;
    left: 64px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -2;
}
.parcours-avis ul li{
    position: relative;
    line-height: 30px;
    min-width: 16px;
    text-align: center;
    color: transparent;
}
.parcours-avis ul li:first-child{
  width: 25%;
  text-align: left;
}
.parcours-avis ul li:last-child {
  width: 25%;
  text-align: right;
}

.parcours-avis ul li:first-child:after,
.parcours-avis ul li:last-child:after{
    display: none;
}
.parcours-avis ul li:after{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: var(--lavande-50);
    display: block;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 5px;
}
.parcours-avis ul li.active:after{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('../../images/slider-dot@2x.png') no-repeat;
    background-size: 100%;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 5px;
}
.parcours-avis ul li.past:after{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('../../images/slider-dot-past@2x.png') no-repeat;
    background-size: 100%;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 5px;
}

/* -== Journey ==- */
.bloc-info{
    /*
    
    position: absolute;
    padding-bottom: 24px;
    left: 50%;
    top: 270px;
    transform: translateX(-50%);
    
    top: 50%;
    transform: translate(-50%,calc(50% - 330px));
    */
    
}
.info-title{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    width: 90%;
    color: var(--lavande-100);
    margin: 0 auto 8px auto;
}

.info-subtitle{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 25px;
    color: var(--bleu-encre);
    width: 70%;
    line-height: normal;
    text-align: center;
    margin: 0 auto 24px auto;
}
.info-content{
    width: 90%;
    /*padding: 0px 50px;*/
    margin: 0 auto 16px auto;
    font-size: 16px;
    line-height: 140%;
}
.info-content p{
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 20px;
}
.info-image img{
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
}

/* -== Proposition ==- */
.proposition-intro-title{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    width: 50%;
    color: var(--lavande-100);
    margin: 0 auto 8px auto;
}
.proposition-intro-subtitle{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 25px;
    line-height: normal;
    text-align: center;
    margin: 0 auto 24px auto;
}
.proposition-intro p{
    padding: 0px 50px;
}
.bloc-proposition-title{
    width: 75%;
    margin-bottom: 36px;
    text-align: left;
}
.proposition-title{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 14px;
    line-height: normal;
    text-align: left;
}
.bloc-proposition-title a{
    font-family: 'TTNormsPro-Bd', sans-serif;
    text-align: left;
    font-size: 10px;
    font-style: normal;
    line-height: 110%; /* 11px */
    letter-spacing: 0.2px;
    text-decoration: underline;
}

.proposition-citation{
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    background: white;
    padding: 16px 24px;
    border-radius: 32px 32px 0px 32px;
    position: relative;
    margin-bottom: 24px;
}
.proposition-citation:before{
    content:'';
    background:url('data:image/svg+xml,<svg width="32" height="25" viewBox="0 0 32 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.4429 11.6912C11.6861 12.2304 12.6558 13.0392 13.352 14.1176C14.0482 15.1961 14.3963 16.4706 14.3963 17.9412C14.3963 20.049 13.7249 21.7647 12.3823 23.0882C11.0396 24.3627 9.32401 25 7.23543 25C5.14685 25 3.40637 24.3382 2.01399 23.0147C0.671328 21.6912 0 20 0 17.9412C0 16.9608 0.12432 15.9804 0.37296 15C0.621601 14.0196 1.16861 12.549 2.01399 10.5882L6.34033 0H13.7249L10.4429 11.6912ZM28.0466 11.6912C29.2898 12.2304 30.2595 13.0392 30.9557 14.1176C31.6519 15.1961 32 16.4706 32 17.9412C32 20.049 31.3287 21.7647 29.986 23.0882C28.6434 24.3627 26.9277 25 24.8392 25C22.7506 25 21.0101 24.3382 19.6177 23.0147C18.2751 21.6912 17.6037 20 17.6037 17.9412C17.6037 16.9608 17.728 15.9804 17.9767 15C18.2253 14.0196 18.7723 12.549 19.6177 10.5882L23.9441 0H31.3287L28.0466 11.6912Z" fill="%23201A41"/></svg>') no-repeat;
    width: 32px;
    height: 25px;
    position: absolute;
    left: 24px;
    top: -12px;
}
.proposition-citation:after{
    content:'';
    background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="15" viewBox="0 0 26 15" fill="none"><path d="M0 0V15H26L0 0Z" fill="white"/></svg>') no-repeat;
    width: 26px;
    height: 25px;
    position: absolute;
    right: -26px;
    bottom: -10px;
}
.proposition-nom{
    color: var(--bleu-encre);
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-align: left;
    background: var(--lavande-100);
    padding: 4px 8px;
    border-radius: 12px;
    position: absolute;
    right: 16px;
    bottom: -10px;
}
.proposition-avis{
    background: white;
    padding: 12px;
    border-radius: 12px;
    position: relative;
    margin-bottom: 32px;
    /*min-height: 100px;*/
}
.proposition-avis p{
    max-height: 120px;
    overflow: auto;
    display: inline-block;
    padding-right: 8px;
    padding-bottom: 16px;
    font-size: 12px;
    line-height: 160%;
}

.proposition-avis:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 35px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 77.22%);
    border-radius: 0px 0px 12px 12px;
    bottom: 0px;
    left: 0px;
    z-index: +1;
}
.btn-avis-proposition{
    position: absolute;
    bottom: -10px;
    right: 32px;
    white-space: nowrap;
    z-index: 15;
}

.avis-reactions{
    background: white;
    padding: 20px 24px;
    border-radius: 24px;
    max-width: 460px;
    margin: 0 auto;
}
.avis-reactions .grid-100{
    margin-bottom: 12px;
}
.btn-avis-reaction{
    position: relative;
    text-align: left;
    padding: 0px 20px;
}
.btn-avis-reaction-active{
    background: linear-gradient(180deg, #404C8D 0%, #201A41 50%);
}
.btn-avis-reaction span{
    width: 100%;
    display: inline-block;
    height: 32px;
    line-height: 32px;
}
.btn-avis-reaction-active span{
    color: white;
}
.btn-avis-reaction .zone_saisie_avis{
    display: none;
    padding-bottom: 8px;
}
.btn-avis-reaction .zone_saisie_avis textarea{
    width: 100%;
    min-height: 100px;
    border-radius: 4px;
    padding: 8px 10px;
    background: var(--lavande-10);
    font-size: 12px;
    font-style: normal;
    line-height: normal;
}
.btn-avis-reaction .zone_saisie_avis textarea:focus{
    background: white;
}
.btn-avis-reaction:after {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 12px;
    z-index: 12;
}
.btn-avis-reaction-active:after{
    color: white;
}
.btn-avis-reaction:hover:after{
    color: white;
}
.btn-jesuisdaccord:after {
    content: '\f164';
    font-family: 'Font Awesome 6 Free';
}
.btn-jenesuispasdaccord:after {
    content: '\f165';
    font-family: 'Font Awesome 6 Free';
}
.btn-jedonnemonavis:after {
    content: '\f075';
    font-family: 'Font Awesome 6 Free';
}



.btn-jenaipasdavis{
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 110%;
}

.bloc-actions-fin{
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
}
.bloc-actions-fin-etape{
    /*
    height: 66px;
    */
    height: auto;
}

.bloc-actions-fin-etape-cloture{
    height: auto;
}

.bloc-actions-fin-etape,
.bloc-actions-fin-etape-cloture{
    font-size: 16px;
    font-weight: 400;
}

/* Recapitulatif */

.libelle-etape{
    margin-top: 16px;
    text-align: left;
}
.libelle-etape p{
    background-color: var(--bleu-encre);
    display: inline-block;
    padding: 0px 0px 0px 14px;
    border-radius: 24px;
    height: 26px;

}
.libelle-etape span{
    background-color: var(--lavande-100);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
}
.libelle-etape p,
.libelle-etape span{
    font-size: 16px;
    color: white;
    font-weight: 700;
}
.titre-etape{
    margin-top: 16px;
    text-align: left;
    font-size: 20px;
    font-weight: bold;

    line-height: 130%;
}
.recap-step-titre{
    font-size: 16px;
    font-weight: bold;
}
.recap-step-label{
    margin-top: 16px;
    padding-bottom: 8px;
    font-size: 13px;
    font-weight: normal;
    color: var(--lavande-100);
}
.recap-step-img{
    width: 100%;
    border: 1px solid var(--bleu-encre-25) ;
    border-radius: 4px;
    margin: 8px 0px;
}
.recap-step-reactions-label{
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: normal;
    color: white;
    background-color: var(--lavande-100);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
}
.recap-step-reactions-label strong{
    color: white;
}
.recap-step-reactions{
    font-size: 14px;
    font-size: 500;
    line-height: 130%;
    padding: 8px;
    background-color: var(--moutarde-25);
    color: var(--bleu-encre);
    border-radius: 8px;
    border: 1px solid var(--lavande-100);
}
.actions-pdf{}
.bloc-step ul li{
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    padding-left: 1em; text-indent: -1em; 
}
.bloc-step ul li:before{
    content:'\f111';
    font-family: 'Font Awesome 6 Free';
    color: var(--lavande-100);
    font-size: 8px;
    padding-top: 2px;
    padding-right: 5px;
}
.bloc-step ul{
    list-style: none;
}
.bloc-step p{
    line-height: 130%;
}
.bloc-step .etiquette-reponse{
    color: var(--bleu-encre);
    text-align: center;
    position: relative;
    top: unset;
    left: unset;
    transform : unset;
    background-color: transparent; 
    box-shadow: unset;
    border: 1px solid var(--lavande-100);
    display: inline-block;
}

/* -== //// ==- */
.txttests{
    border-top: 1px solid #DED5CE;
    padding: 10px 0px 0px 0px;
    margin: 12px auto;
}

.txttests p{
    color: var(--complementaire);
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    margin-bottom: 10px;
}
.etapesOnMobile{
    display: none;
}
.mobile-liste-themes{
    display: none;
}
.mobile-filtre-themes{
    display: none;
}

/* Loader blanc */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 44px;
  height: 44px;
  margin: 4px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* loader bleu */
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: #778DD8;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0);
    opacity: 1;
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
    
  }
  100% {
    transform: translate(24px, 0);
    
  }
}


.bloc-resultats-priorisation{
    /*border-bottom: 3px dashed var(--lavande-50);*/
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}
.bloc-resultats-priorisation:after{
    content: '';
    width: 100%;
    height: 3px;
    display: block;
    background-image: linear-gradient(to right, rgba(160, 175, 228, 1) 80%, rgba(160, 175, 228, 0) 0%);
    background-position: bottom;
    background-size: 35px 3px;
    background-repeat: repeat-x;
}
.bloc-resultats-priorisation ul{
    list-style: none;
}
.bloc-resultats-priorisation ul li{
    border: 2px solid #fff;
    padding: 8px 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-family: 'TTNormsPro-Bd', sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 140%;
}


/* Visualisation PDF */

@page {
    size: A4 portrait;
    margin-top: 5mm;
    margin-right: 10mm;
    margin-bottom: 20mm;
    margin-left: 10mm;
    @bottom-right{
        content: counter(page) "/" counter(pages);
    }
}
.page-pdf{
    background-color: white;
    margin: 0px auto;
    text-align: center;
}
.page-pdf #content{
    margin: 0px auto;
    width: 80%;
    max-width: 80%;
    /*max-width: 582px;*/
}
.page-pdf .inner-nopad,
.page-pdf .inner{
    max-width: unset;
}
.page-pdf .bloc-blanc{
    background: transparent;
    box-shadow: unset;
    border: 1px solid var(--bleu-encre);
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    margin: 0px auto;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: left;
}
.page-pdf .bloc-step-up{
    background-color: #fff;
    position: relative;
    padding: 20px 20px 0px 20px;
    border: 1px solid var(--bleu-encre);
    border-radius: 24px 24px 0px 0px;
    border-bottom: 0px;
    margin: 24px auto 0px auto;
    display:block;
}
.page-pdf .bloc-step-down{
    background-color: #fff;
    position: relative;
    padding: 0px 20px 20px 20px;
    border: 1px solid var(--bleu-encre);
    border-radius: 0px 0px 24px 24px;
    border-top: 0px;
    margin: 0px auto 24px auto;
    display:block;
}
.page-pdf .bloc-merci-fin-etape{
    padding-top: 0px;
}
.page-pdf .merci-title{
    font-size: 40px;
    margin: 0px auto 20px auto;
}
.page-pdf .merci-subtitle-encadre{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    font-family: 'TTNormsPro-Rg', sans-serif;
    line-height: normal;
    color: white;
    background-color: var(--lavande-100);
    padding: 8px 16px;
    border-radius: 24px;
    display: inline-block;
    margin: 0 auto;
}
.page-pdf .recap-step-reactions{
    font-size: 14px;
    font-size: 500;
    line-height: 130%;
    padding: 8px;
    background-color: transparent;
    color: var(--bleu-encre);
    border-radius: 8px;
    border: 1px solid var(--bleu-encre);
}
.page-pdf .libelle-etape,
.page-pdf .titre-etape{
    margin-top: 16px;
    font-size: 18px;
}
.page-pdf .libelle-etape p{
    background-color: var(--lavande-10);
    color: var(--bleu-encre);
}

.pagedjs_first_page:before{
    content:'';
    background: url('../../images/logo-debat-pdf@2x.png') no-repeat;
    background-size: 100% auto;
    width: 120px;
    height: 104px;
    display: block;
    position: absolute;
    top: 10mm;
    left: 10mm;
}
@media print {
    html,body {
        margin: 0;
        padding: 0;
    }
    ul:empty {
        display: none;
    }
    .bloc-etape{
        page-break-inside: avoid;
    }
    header, footer {
        position: fixed;
    }
    header {
        top: 0;
    }
    footer {
        bottom: 0;
    }
    #pageFooter{
        position: fixed;
        background-color: #fff;
        height: 70px;
        padding: 15px 5px;
        border-top: 1px solid var(--bleu-encre);
        bottom: 0px;
        left: 10mm;
        width: 190mm;
        text-align: left;
    }
    .print_footer_url{
        font-family: 'TTNormsPro-Bd', sans-serif;
        font-size: 12px;
        font-weight: 700;
    }
    .print_footer_date{
        font-family: 'TTNormsPro-Reg', sans-serif;
        font-size: 10px;
        font-weight: 400;
    }
    .print_footer_pages{
        font-family: 'TTNormsPro-Bd', sans-serif;
        font-size: 10px;
        font-weight: 700;
        color: var(--lavande-100);
        z-index: 999;
        height: 20px;
        line-height: 18px;
        
    }
    .pagedjs_margin-content{
        position: absolute;
        right: 42px;
        bottom: 34px;
        font-family: 'TTNormsPro-Bd', sans-serif;
        font-size: 10px;
        font-weight: 700;
        background-color: var(--lavande-100);
        color: white;
        padding: 2px;
        width: 32px !important;
        height: 20px;
        border-radius: 16px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        line-height: 14px;
        z-index: 999;
    }    
}

@media all and (max-width: 1024px) {
    .hideOnSmall{
        display: none !important;
    }
    .onlyForSmall{
        display: block !important;
    }
    .mb16OnSmall{
        margin-bottom: 16px !important;
    }
    .pb0OnSmall{
        padding-bottom: 0px !important;
    }
    
    .menu{
        right: 28px !important;
        top: 24px;
    }
    /*
    .homepage .inner-nopad p{
        padding: 20px 0px !important;
    }
    */
    .page-mediateur section.container,
    .homepage section.container{
        padding-bottom: 0px;
    }
    .page-mediateur h1,
    .homepage h1{
        font-size: 28px;
        line-height: 110%;
        padding: 0;
    }
    .page-mediateur h2,
    .homepage h2{
        /*font-size: 26px;*/
        font-size: 18px;
        line-height: 110%;
        padding: 0;
    }
    .page-mediateur h3,
    .homepage h3{
        padding: 0;
        margin-bottom: 0;
    }
    .homepage .intro:first-child{
        margin-top: -60px !important;
    }
    .homepage p{
        padding: 10px 0 !important;
    }
    footer{
        position: relative;
        margin-top: 48px;
    }
    .inner-full-bloc{
        width: 90%;
        padding: 16px 28px !important;
    }
    
    /* --= Boutons =-- */    
    .btn-size-xl{
        padding: 14px 10px;
    }
    .btn-reagir span,
    .btn-question span{
        padding-right: 20px;
    }


    /* --= Splashscreen =-- */
    .splashscreen{
        width: 100%;
        /*max-width: 680px;*/
        height: 100%;
        min-height: 100vh;
        background: linear-gradient(180deg, rgba(119, 141, 216, 0.95) 0%, rgba(32, 26, 65, 0.95) 100%);
        margin: 0px auto;
        position: relative;
        z-index: 100;
        text-align: center;
    }
    .splashscreen .timeline{
        position: fixed;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);   
    }
    .splashscreen .timeline .grid-parent{
        color: white;
    }
    .splashscreen .lds-ring{
        position: fixed;
        bottom: 40%;
        left: calc(50% - 15px);
        transform: translateX(-50%);
    }
    .splashscreen .logo-mobile-debat{
        position: fixed;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);  
    }
    .splashscreen .logo-mobile-cndp{
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
    }

    .bloc-filter{
        display: none;
    }

    .tile{
        max-width: 100%;
        background-position: 0px -20px;
    }

    .footer a{
        margin: 0 2px;
    }

    .intro{
        margin-top: 0px !important;
    }
    .proposition-intro p{
        padding: 0px 18px;
    }
    .parcours-avis ul{
        padding: 0px 28px;
    }

    .bloc-proposition-title{
        width: 100%;
        padding: 0px;
    }

    .lightbox-img img{
        width: 100% !important;
        height: auto !important;
    }
}

@media all and (max-width: 821px) {
    .onlyOnTabletPortrait{
        display: block !important;
    }
    .btn-nouveau-participant{
        display: none;
    }
}

@media all and (max-width: 582px) {
    .onlyOnMobile{
        display: block !important;
    }
    .splashscreen .progressbar{
        width: 184px;
    }
    .hideOnMobile{
        display: none !important;
    }
    .background-degrades:before,
    .background-degrades:after{
        display: none;
    }
    
    .mh65{
        min-height: auto;
    }
    section.container{
        background: rgb(215,222,244);
        padding-bottom: 100px;
    }
    .pt0-mobile{
        padding-top: 0px;
    }

    .menu-open button{
        width: 318px;
    }
    h1{
        font-size: 24px;
        line-height: 26px;
    }
    .parcours-title-h2{
        width: 100%;
        font-size: 13px;
        line-height: 15px;
    }
    
    .invitation-donnees-personnelles{
        display: none;
    }
    .invitation-donnees-personnelles-open{
        display: block;
    }
    .invitation-reagir{
        display: none;
    }
    .invitation-reagir-open{
        display: block;
    }

    .posBottomPage{
        height: 100px !important;
        padding-top: 20px;
    }
    .lightbox-text{
        padding: 20px 30px !important;
    }
    .btn-close-lightbox-inner{
        top: 0px !important;
    }
    .proposition-avis p{
        overflow: unset;
    }
    .proposition-avis:after{
        display: none;
    }
    .proposition-citation{
        padding: 26px 24px;
    }
    .inner-avec-bloc-blanc{
        padding: 24px 0px;
    }
    .overlay-bleu-ocean{
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--lavande-100);
        opacity: 0.9;
        z-index: 5;
    }
    .btn-custom{
        position: relative !important;
        bottom: 0px !important;
        max-width: auto;
    }


    .mobile-liste-themes{
        display: none;
        text-align: left;
        border-radius: 8px;
        background-color: white; 
        width: calc(100% - 48px);
        padding: 20px 20px 30px 20px;
        position:fixed;
        left: 24px;
        bottom: 64px;
        z-index: 12;
    }
    .mobile-liste-themes a{
        font-size: 12px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-decoration: none;
        padding: 10px;
    }
    .mobile-liste-themes ul{
        list-style: none;
        width: 100%;
        margin-top: 10px;
    }
    .mobile-liste-themes ul li{
        width: 100%;
        padding: 0px;
        border-bottom: 1px solid #AECBEA;
        text-align: left;
    }
    .mobile-liste-themes ul li.duree-choisie a{
        background: linear-gradient(180deg, #404C8D 0%, #201A41 50%);
        color: white;
        position: relative;
    }
    .mobile-liste-themes ul li.duree-choisie a:after{
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        z-index: 12;
    }
    .mobile-liste-themes ul li a{
        font-family: 'TTNormsPro-Bd', sans-serif;
        display: block;
        font-size: 12px;
        font-style: normal;
        line-height: normal;
        text-decoration: none;
        padding: 10px;
    }
    .mobile-liste-themes ul li p{ 
        color: var(--complementaire);
        font-size: 12px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        padding: 10px;
    }    

    .parcours-header{
        height: 80px;
    }
    .etapesOnMobile{
        font-family: 'TTNormsPro-Bd', sans-serif;
        width: 80px;
        padding:4px 0px;
        line-height: 1;
        display: inline-block;
        border-radius: 16px;
        text-align: center;
        border: 3px solid #1A5393;
        background: #1A5393;
        font-size: 14px;
        font-style: normal;
        line-height: normal;
        margin-left: 24px;
        margin-top: 18px;
    }
    .etapesOnMobile-intro{
        border: 3px solid var(--bleu-encre);
        background: white;
    }
    .etapesOnMobile-mauvaise-reponse{
        width: 80px;
        padding:4px 0px;
        line-height: 1;
        display: inline-block;
        border-radius: 16px;
        text-align: center;
        margin-left: 24px;
        margin-top: 18px;
        background: #E08B65;
        border: 3px solid #E08B65;
        color: white;
        position: relative;
    }
    .etapesOnMobile-mauvaise-reponse:after{
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        font-size: 12px;
        z-index: 12;
        color: white;
    }
   .etapesOnMobile-bonne-reponse{
        width: 80px;
        padding:4px 0px;
        line-height: 1;
        display: inline-block;
        border-radius: 16px;
        text-align: center;
        margin-left: 24px;
        margin-top: 18px;
        background: #1A968C;
        border: 3px solid #1A968C;
        position: relative;
    }
    .etapesOnMobile-bonne-reponse:after{
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        font-size: 12px;
        z-index: 12;
        color: white;
    }
    

    .btn-agrandir{
        text-wrap: nowrap;
    }
    .invitation-reagir-open:before{
        content:'';
        background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="27" viewBox="0 0 26 27" fill="none"><path d="M13 27L26 0H0L13 27Z" fill="%23D38D31"/></svg>');
        width: 26px;
        height: 27px;
        display: block;
        position: absolute;
        left:50%;
        transform: translateX(-50%);
        top: unset;
        bottom: -26px;
    }
    .featherlight-content .zoomImg img{
        width: 100%;
        height: auto;
    }
    .invitation-donnees-personnelles{
        transition: none;
    }
    .invitation-donnees-personnelles-open:before{
        display: none;
    }
    .invitation-donnees-personnelles-open{
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }
    
    footer a{
        display: block;
        width: 100%;
        margin-bottom: 8px;
    }
    .btn-slide span{
        text-wrap: nowrap;
    }

    .homepage .btn-size-xl span{
        font-size: 14px;
    }
    .w100{
        float: none !important;
        margin-left: auto;
        margin-right: auto  ;
    }
    .bloc-merci-fin-etape{
        padding-bottom: 32px !important;
    }
    /*
    .bloc-actions-fin-etape{
        height: 96px !important;
    }
    */
    .bloc-actions-fin-etape .grid-60{
        padding: 10px 0px;
    }
    .bloc-bleu-encre{
        padding-bottom: 0px;
    }
    .bloc-bleu-encre h3{
        margin-bottom: 16px;
    }
    
    .bloc-info{
        position: relative;
        padding-top: 24px;
        padding-bottom: 48px;
        left: unset;
        top: unset;
        transform: unset;
    }
    .page-quietesvous .inner{
        padding-top: 120px;
        padding-bottom: 24px;
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
    }
    .featherlight .featherlight-content{
        width: 94% !important;
    }

    .actions-pdf{
        bottom: 70px;
    }
    .actions-pdf .btn-size-xl{
        padding: 10px;
    }
    .actions-pdf .btn-size-xl span{
        font-size: 14px;
    }
    .bloc-recap{
        padding-left: 20px;
        padding-right: 20px;
    }

    .lightbox-text .titre-lightbox-text{
        font-size: 20px;
    }

    .page-quietesvous .posBottomPage{
        height: 120px !important;
    }
}


/* Désactive complètement hover sur mobile */
@media (max-width: 1024px), (hover: none), (pointer: coarse) {
    .btn-choix:hover,
    .btn-choix:active,
    .btn-choix:focus {
        background: inherit !important;
        transition: none !important;
    }
    
    /* Force les bonnes couleurs selon l'état */
    .btn-choix.btn-dark:hover,
    .btn-choix.btn-dark:active,
    .btn-choix.btn-dark:focus {
        background: linear-gradient(180deg, #404C8D 0%, var(--bleu-encre) 50%) !important;
    }
    
    .btn-choix.btn-grey:hover,
    .btn-choix.btn-grey:active,
    .btn-choix.btn-grey:focus {
        background: linear-gradient(180deg, #C8D0EF 0%, #A0AFE4 50%) !important;
    }
    
    /* 🔥 AJOUTE ÇA - Force la couleur du texte ! */
    .btn-choix.btn-dark:hover span,
    .btn-choix.btn-dark:active span,
    .btn-choix.btn-dark:focus span,
    .btn-choix.btn-dark:hover p,
    .btn-choix.btn-dark:active p,
    .btn-choix.btn-dark:focus p,
    .btn-choix.btn-dark:hover strong,
    .btn-choix.btn-dark:active strong,
    .btn-choix.btn-dark:focus strong{
        color: white !important;
    }
    
    .btn-choix.btn-grey:hover span,
    .btn-choix.btn-grey:active span,
    .btn-choix.btn-grey:focus span,
    .btn-choix.btn-grey:hover p,
    .btn-choix.btn-grey:active p,
    .btn-choix.btn-grey:focus p,
    .btn-choix.btn-grey:hover strong,
    .btn-choix.btn-grey:active strong,
    .btn-choix.btn-grey:focus strong {
        color: var(--bleu-encre) !important;
    }

}