/* POLICES */

/* Chance Regular */
@font-face {
    font-family: 'Chance';
    src: url('font/Chance/Chance-Regular.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Chance Medium */
@font-face {
    font-family: 'Chance';
    src: url('font/Chance/Chance-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Chance Medium Italic */
@font-face {
    font-family: 'Chance';
    src: url('font/Chance/Chance-MediumItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

/* Chance Bold */
@font-face {
    font-family: 'Chance';
    src: url('font/Chance/Chance-Bold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Chance Bold Italic */
@font-face {
    font-family: 'Chance';
    src: url('font/Chance/Chance-BoldItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* Chance Italic */
@font-face {
    font-family: 'Chance';
    src: url('font/Chance/Chance-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
	font-family: 'Chance black';
	src: url('font/Chance/Chance-Black.ttf') format('truetype');
	font-weight: 600;
}
@font-face {
	font-family: 'Chance black';
	src:  url('font/Chance/Chance-BlackItalic.otf') format('opentype');
	font-weight: 600;
    font-style: italic;
}
@font-face {
	font-family: 'Calson';
	src: url('font/Calson/CaslonGraphiqueEF.otf') format('opentype');
	font-weight: 400;
}

/* Mise en page du body */
body, html {
  height: 100%;
  margin: 0;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  font-family: "Chance";
}
a {
	text-decoration: none;
}
ul {
	list-style: none;
	padding: 0;
}
button, img {
  user-select: none;
}
img {
	touch-action: manipulation;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0; /* Rendre la flèche invisible */
  pointer-events: none; /* Désactiver les clics sur la flèche */
}

/* Displays */
.flex {
	display: flex;
}
.inline-flex {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}


/* Couleurs */

.bg-white {
	background: white;
}
.bg-blue {
	background: #282D87;
}
.bg-red {
	background: #F00A0A;
}
.bg-red-2 {
	background: #D04101;
}
.bg-purple {
	background: #821946;
}
.bg-yellow {
	background: #FFDD00;
}
.bg-salmon {
	background: #FF555A;
}
.bg-lightblue {
	background: #00B9FF;
}
.bg-lightgrey {
	background: #ACACAC;
}
.bg-transparent {
	background: none;
}
.bg-orange {
	background: #D04101;
}
.bg-green {
	background: #008F3D;
}
.bg-brown {
	background: #947801;
}
.bg-grey {
	background: #ACACAC;
}	
.font-blue {
	color: #282D87;
}
.font-red {
	color: #F00A0A;
}
.font-black {
	color: black;
}
.font-lightgrey {
	color: #ACACAC;
}
.font-yellow {
	color: #FFDD00;
}
.font-purple {
	color: #821946;
}
.font-light-blue {
	color: #00B9FF;
}
.font-white {
	color: white;
}
.f-light {
	font-family: "Chance";
	font-weight: 300;
}
.f-regular {
	font-family: "Chance";
}
.f-black {
	font-family: "Chance black";
}
.f-calson {
	font-family: "Calson";
}
.f-300 {
	font-weight: 300;
}
.f-600 {
	font-weight: 600;
}
.f-900 {
	font-weight: 900;
}
.f-mini {
	font-size : 10px;
}
.f-small {
	font-size : 12px;
}
.f-inter {
	font-size : 14px;
}
.f-medium {
	font-size : 16px;
}
.f-medplus {
	font-size : 18px;
}
.f-large {
	font-size: 20px;
}
.f-xlarge {
	font-size: 24px;
}
.f-xxlarge {
	font-size: 28px;
}
.f-titre {
	font-size: 36px;
}
.f-big {
	font-size: 48px;
}
.f-xtrem {
	font-size: 80px;
}
.line-80 {
	line-height: 80%;
}
.line-150 {
	line-height: 150%;
}
.f-uppercase {
	text-transform: uppercase;
}
.center {
	text-align: center !important;
}
.hidden {
	display: none !important;
}

/* SCROLL */
/* Personnalisation du scrollbar */
::-webkit-scrollbar {
  width: 10px; /* Largeur de la barre verticale */
  height: 10px; /* Hauteur de la barre horizontale */
  z-index: 50;
  pointer-events: auto;
  
}

::-webkit-scrollbar-track {
  background: #f4f4f4; /* Couleur du rail */
  border-radius: 5px; /* Arrondi du rail */
  pointer-events: auto;
}

::-webkit-scrollbar-thumb {
  background: #282D87; /* Couleur du curseur */
  border-radius: 5px; /* Arrondi du curseur */
  cursor: pointer;
  pointer-events: auto;
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Couleur du curseur au survol */
}


/* Boutons */
button {
	border-radius: 20px;
	padding: 8px 34px;
	border: none;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 10px;
	text-align: center;
    display: block;
    margin: 0 auto;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.3s ease;
	font-family: "Chance";
}
button:hover{
	transform: scale(1.05);
}

/* FLECHES */

swiper-container::part(button-prev),
swiper-container::part(button-next) {
	color: transparent;
	background-image: url("img/FLECHE.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	height: 27px;
	width: 16px;
	padding-right: 40px;
	margin-top: -13.5px;
	pointer-events: auto;
}
swiper-container::part(button-prev) {
 	transform: rotateY(180deg);
}
swiper-container::part(button-prev).swiper-button-disabled,
swiper-container::part(button-next).swiper-button-disabled {
	display: none !important;
}

/* RECURRENTS */
.savoir {
	font-family: 'Calson';
	color: white;
	margin-bottom: 5px;
	line-height: 80%;
}
.savoir p {
	width: fit-content;
	padding: 10px 5px;
	font-size: 28px;
}


/* Conteneur du slider */
#Window {
  width: 1140px;
  height: 642px;
  overflow: hidden; /* Cache les slides qui dépassent */
  position: relative;
  box-shadow: 0px 0px 10px black;
  display: none;
  pointer-events: auto;
}

/* Mobile Hide */
.mobile {
	display: none!important;
}

/* Navigation */
navigation {
	position: relative;
	width: 292px;
	height: 292px;
}
.navigation .bouton-menu {
	position: absolute;
	right: 10px;
	bottom: 8px;
	z-index: 150;
	cursor: pointer;
	transition: transform 0.3s ease;
	width: 59px;
	height: 59px;
	pointer-events: auto;
}
.navigation .bouton-menu:hover {
	transform: scale(1.2);
}
.circle-menu {
  position: absolute;
  bottom: -126px;
  right: -156px;
  width: 500px;
  height: 500px;
  background: white;
  z-index: 120;
  border-radius: 50%;
  display: none;
}
.circle-menu ul {
	margin-top: 56px;
    width: 39%;
    margin-left: 17%;
}
.circle-menu li {
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: right;
  cursor: pointer;
  pointer-events: auto;
}
.circle-menu li:hover {
	font-family: "Chance Black";
}
.circle-menu li a {
	color: #282D87;
}
#slider-container {
	width: calc( 1140px * 3);
	height: 642px;
	position: absolute;
	transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth transition */
}

/* Styles des slides */
.slide {
  min-width: 1140px;
  height: 642px;
  display: inline-block;
  justify-content: center; /* Centre le contenu à l'intérieur des slides */
  align-items: center;
  background-color: #007bff; /* Couleur de fond pour chaque slide */
  color: white;
  font-size: 2rem;
  transition: transform 0.5s ease-in-out;
}
swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
swiper-slide.invertbg {
   background-image: url("img/Degrade-Inverse.svg");
   background-position: center center;
   background-size: cover;
}
.swiper-v, .swiper-h {
   background-image: url("img/Degrade.svg");
   background-position: center center;
   background-size: cover;
}

/* HOME */

.home .column-1 {
	width: 325px;
	margin: 25px;
	height: 100%;
}
.home .column-2 {
	width: 260px;
	margin: 25px;
	height: 100%;
}
.home .introw {
	width: 100%;
	margin-top: 58px;
	text-align: left;
	margin-bottom: 40px;
	opacity: 0;
	/* transform: rotate3d(1, 0, 0, 900deg); */
	transition: opacity 1.5s ease;
}
.home .introw.visible {
	opacity: 1;
    /*transform: rotate3d(1, 0, 0, 0deg);  Remet la carte à sa position initiale */
}
.home hr {
	height: 1px;
	color: white;
	background: white;
	width: 90%;
	margin: 10px 0;
    border: none;
}
.home .row {
	font-weight: 600;
	text-transform: uppercase;
	margin: 32px 0 20px;
	width: 100%;
    justify-content: center; /* Centre horizontalement */
    align-items: center;     /* Centre verticalement */
    height: 100%;
	cursor: pointer;
	perspective: 1000px;
	pointer-events: auto;
}
.home .row.bottom {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.5s ease, transform 0.5s ease-out;
}
.home .row.top {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.5s ease, transform 0.5s ease-out;
}
.home .row.visible {
	opacity: 1;
    transform: translateY(0);
}
.home .row .centrage {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.home .row .inner-flip,
.cartes .inner-flip {
	transition: transform 1.2s;
    transform-style: preserve-3d;
    position: relative;
	width: 100%;
    height: 100%;
	pointer-events: auto;
}
.home .row h2 {
	padding: 0 9px;
	font-size: 21px;
    line-height: 20px;
}
.home .row .gagnants .flip-card-back h2,
.home .row .fabrication .flip-card-back h2,
.home .row .securite .flip-card-back h2 {
	font-size: 14px;
	padding: 0 15px;
	line-height: 14px;
}
.faq-slider {
	opacity : 0;
}
.home .row h2 img {
	width: fit-content;
	margin: 0 auto 15px;
}
.home .faq h2 img {
    width: 70px;
	margin: 0 auto 10px;
}
.home .row .plus {
   background-image: url("img/Home/plus.svg");
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
   width: 19px;
   height: 19px;
   position: absolute;
   top: 7px;
   right: 12px;
   transition: transform 0.3s ease-in;
   perspective: 1000px;
}
.home .row .plus-blanc {
   background-image: url("img/Home/plus-blanc.svg");
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
   width: 19px;
   height: 19px;
   position: absolute;
   top: 7px;
   right: 12px;
   z-index: 20;
   transition: transform 0.3s ease-in;
   perspective: 1000px;
}
.home .row .plus:hover,
.home .row .plus-blanc:hover {
	transform: rotateY(180deg);
}
.home .row.H1 {
	height: 294px;
}
.home .row.H2 {
	height: 220px;
}
.home .faq {
	cursor: pointer;
	pointer-events: auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
	text-transform: uppercase;
}
.home .faq.H3 {
	height: 220px;
	border-radius: 10px;
	transition: transform 0.3s ease;
}
.home .faq.H3:hover {
	transform: scale(0.8);
}
.home .faq.H3 h2 img {

}
.home .faq.H3 h2 {

}

/* TEST PARALLAX */
    .parallax-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 230%;
      height: 100%;
      -webkit-background-size: cover;
      background-size: cover;
      background-position: center;
    }

/* Flip Cards */

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.flip-card-back {
  transform: rotateY(180deg);
  display: block;
}
.flip-card-back div {
	padding: 10px;
}
.flip-card-back p {
	text-transform: none;
	font-size: 14px;
	margin: 10px 0;
}
.home .row .gagnants .flip-card-back p,
.home .row .fabrication .flip-card-back p,
.home .row .securite .flip-card-back p {
	font-size: 12px;
	padding: 0 10px;
	line-height: 14px;
	font-weight: 100;
}
.flip-card-back img {
	width: 21px;
	height: 21px;
	cursor: pointer;
	pointer-events: auto;
	display: block;
  	margin: 0 auto;
}

/* FAQ */

.questions {
	background-color: white;
}
.questions .close {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	pointer-events: auto;
	z-index: 20;
}
.questions .close img {
	width: 25px;
	height: 25px;
	filter: invert(1);
}
.page-faq {
    width: 80%;
    margin: 20px auto;
	height: 80%
}
.accordeon {
	height: 70%;
	overflow: auto;
	pointer-events: auto;
}
.accordeon .item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.accordeon .question {
    font-weight: bold;
    cursor: pointer;
	pointer-events: auto;
	padding: 0 15px;
}
.accordeon .reponse {
    display: none;
    margin-top: 5px;
	padding: 5px 50px;
}

/* GAGNANTS */
.ariane-gagnants {
	position: absolute;
	right: 15px;
	top: 0;
}
.ariane-gagnants h2,
.ariane-chances h2 {
	font-weight: 300;
}
/* PREMIER SLIDE */

.gagnants .bloc-gauche {
	width: 55%;
	margin: 0;
}
.gagnants .bloc-droit {
	width: 40%;
	margin: 0 5% 0 0;
	display: flex;
    flex-direction: column;
}
.gagnants .bloc-droit .gains {
	justify-content: center;
    align-items: center;
	margin-top: 20px;
}
.gagnants .bloc-droit .gains span {
	padding-right: 10px;
}
.gagnants .bloc-droit .gains p {
	margin-left: 10px;
	text-align: left;
	font-weight: 900;
}
.carte-france {
	width: 451px;
	height: 473px;
	position: relative;
	top: 20%;
    left: 5%;
	background-image: url("img/Gagnants/France/Full-France.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.carte-france div {
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.carte-france div.cache {
	opacity: 0;
}
.carte-france div:hover {
	z-index: 20;
	opacity: 0;
}
.gagnants .bloc-droit .back img {
	width: 13px;
	height: auto;
	transform: rotate(180deg);
	margin-right: 10px;
	cursor: pointer;
	pointer-events: auto;
	vertical-align: initial;
}
.bretagne {
	background-image: url("img/Gagnants/France/Bretagne-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 140px;
	height: 82px;
	position: absolute;
	top: 115px;
    left: 1px;
	z-index: 15;
}
.bourgogne {
	background-image: url("img/Gagnants/France/Bourgogne-franche-comte-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 146px;
	height: 112px;
	position: absolute;
	top: 140px;
    left: 269px;
}
.hauts {
	background-image: url("img/Gagnants/France/Hauts-de-france-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 98px;
	height: 120px;
	position: absolute;
	top: 0px;
    left: 220px;
}
.loire {
	background-image: url("img/Gagnants/France/Pays-de-la-loire-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 118px;
	height: 116px;
	position: absolute;
	top: 130px;
    left: 87px;
}
.auvergne {
	background-image: url("img/Gagnants/France/Auvergne-rhone-alpes-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 174px;
	height: 130px;
	position: absolute;
	top: 219px;
    left: 241px;
}
.est {
	background-image: url("img/Gagnants/France/Grand-est-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 164px;
	height: 140px;
	position: absolute;
	top: 49px;
    left: 287px;
}
.centre {
	background-image: url("img/Gagnants/France/Centre-val-de-loire-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 104px;
	height: 131px;
	position: absolute;
	top: 112px;
    left: 176px;
	z-index: 12;
}
.provence {
	background-image: url("img/Gagnants/France/Provence-alpes-cotes-d-azur-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 117px;
	height: 102px;
	position: absolute;
	top: 299px;
    left: 317px;
}
.aquitaine {
	background-image: url("img/Gagnants/France/Nouvelle-aquitaine-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 151px;
	height: 210px;
	position: absolute;
	top: 201px;
    left: 111px;
}
.normandie {
	background-image: url("img/Gagnants/France/Normandie-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 129px;
	height: 98px;
	position: absolute;
	top: 54px;
    left: 106px;
}
.occitanie {
	background-image: url("img/Gagnants/France/Occitanie-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 175px;
	height: 127px;
	position: absolute;
	top: 304px;
    left: 162px;
	z-index: 15;
}
.ile-france {
	background-image: url("img/Gagnants/France/Ile-de-france-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 72px;
	height: 58px;
	position: absolute;
	top: 97px;
    left: 222px;
	z-index: 15;
}
.corse {
	background-image: url("img/Gagnants/France/Corse-1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 25px;
	height: 55px;
	position: absolute;
	top: 418px;
    left: 392px;
}
.carte-dom-tom {
	width: 69px;
	height: 417px;
	position: absolute;
	top: 100px;
    left: 522px;
	background-image: url("img/Gagnants/Dom-tom/Dom-tom-desktop.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.carte-dom-tom p {
	margin-top: 60px;
}
.carte-dom-tom .polynesie p {
	margin-top: 54px;
}
.carte-dom-tom div {
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.carte-dom-tom div:hover {
	z-index: 20;
	opacity: 0;
}
.polynesie {
	background-image: url("img/Gagnants/Dom-tom/Polynesie.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 69px;
	height: 53px;
	position: absolute;
	top: 0px;
    left: 0px;
}
.reunion {
	background-image: url("img/Gagnants/Dom-tom/Reunion.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 56px;
	height: 51px;
	position: absolute;
	top: 77px;
    left: 1px;
}
.guadeloupe {
	background-image: url("img/Gagnants/Dom-tom/Guadeloupe.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 66px;
	height: 59px;
	position: absolute;
	top: 157px;
    left: 3px;
}
.martinique {
	background-image: url("img/Gagnants/Dom-tom/Martinique.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 47px;
	height: 57px;
	position: absolute;
	top: 247px;
    left: 5px;
}
.guyane {
	background-image: url("img/Gagnants/Dom-tom/Guyane.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 47px;
	height: 57px;
	position: absolute;
	top: 343px;
    left: 10px;
}
.gagnants .bloc-gauche h3 {
	width : 180px;
	margin: 30px auto 0;
}
.gagnants .premier .nota,
.gagnants .second .nota {
	position: absolute;
	bottom: 8px;
	left: 15px;
	z-index: 50;
}
.ariane-gagnants img,
.gagnants .bloc-droit img,
.fabrication .bloc-droit img {
	width: auto;
	display: inline;
	vertical-align: bottom;
	max-width: 35px;
}
.gagnants .bloc-droit .qui-gagnants {
	margin-bottom: 160px;
}
.gagnants .bloc-droit .points-vente {
	margin-bottom: -16px;
}
.gagnants .bloc-droit .points-vente img,
.gagnants .bloc-droit .en-ligne img {
	max-width: 22px;
	margin-right: 5px;
}
.gagnants .bloc-droit button {
	margin-top: 50px;
    margin-bottom: 40px;
}
.gagnants .bloc-droit button a,
.gagnants .bloc-droit button a:active,
.gagnants .bloc-droit button a:visited {
	color: #282D87;
}
.gagnants .bloc-droit .chiffres-cles span {
	font-size: 150px;
}
.gagnants .bloc-droit li {
	text-transform: uppercase;
}
.gagnants .bloc-droit .gains span {
	font-size: 90px;
	border-right: 1px solid white;
}

/* SECOND SLIDE */

.gagnants .second {
	text-align: left;
}
.gagnants .second p {
	margin: 0;
}
.gagnants .second .bloc-gauche {
	width: calc(45% - 130px);
	padding: 0 15px 0 70px;
}
.gagnants .second .bloc-gauche .tableau {
	padding: 30px 0;
}
.gagnants .second .bloc-gauche .tableau .f-xtrem {
	font-size: 65px;
}
.gagnants .second .bloc-gauche .tableau .gauche,
.gagnants .second .bloc-gauche .tableau .droite {
	width: 45%;
}
.gagnants .second .bloc-gauche .tableau .gauche {
	padding-right: 5%;
}
.gagnants .second .bloc-gauche .tableau .droite {
	padding-left: 5%;
}
.gagnants .second .bloc-gauche .tableau.f-medplus {
	font-size: 15px;
}
.gagnants .second .bloc-gauche .tableau .gauche div,
.gagnants .second .bloc-gauche .tableau .droite div {
	margin-bottom: 25px;
	height: 162px;
}
.gagnants .second .bloc-gauche img {
	width: auto;
	display: inline;
}
.gagnants .second .bloc-centre {
	width: calc(40% - 130px);
	padding: 0 15px;
	border-left: 1px solid white;
}
.gagnants .second .bloc-centre img {
    width: 100%;
}
.gagnants .second .bloc-droit {
	width: calc(35% - 130px);
	padding: 0 0 0 15px;
	border-left: 1px solid white;
}
.gagnants .second .bloc-droit .savoir {
	margin-top: 40px;
}
/* CHANCES */

.chances {
	
}
.ariane-chances {
	position: absolute;
	right: 15px;
	top: 0;
}
.ariane-chances img {
	width: auto;
	display: inline;
	vertical-align: bottom;
	max-width: 35px;
}
.chances .bloc-gauche {
    width: 45%;
	margin: 0 10% 5% 0;
}
.chances .bloc-gauche .titre {
	text-align: left;
	max-width: 75%;
}
.chances .bloc-droit {
	width: 35%;
	margin: 0;
	flex-direction: column;
}
.chances .bloc-droit .savoirtxt {
	text-align: left;
}
.chances .logotypes {
	width: 100%;
	/*height: 326px;*/
}
.chances .logotypes table {
	width: 100%;
	border-collapse: collapse;
}
.chances .logotypes td {
	width: 25%;
	height: 60px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	transition: transform 0.3s ease;
}
.chances .logotypes td:hover {
	background-image: url('img/Chances/Boom.png');
	transform: scale(1.8);
}
.chances .logotypes h4 {
	margin-bottom: 2px;
}
.chances .logotypes img {
	width: auto;
	max-width: 75%;
	margin: 0 auto;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.3s ease;
	padding: 5px;
	height: auto;
}
.chances .logotypes img:hover{
	transform: scale(1.2);
}
.chances .bloc-droit img {
	height: auto;
	width: auto;
	margin: 0 auto;
	max-height: 280px;
}
.chances .bloc-droit .quel-gain {
	position: relative;
}
.chances .bloc-droit .quel-gain .prix {
	border-radius: 50%;
	width: 70px;
	height: 55px;
	position: absolute;
	right: 50px;
	top: -35px;
	padding: 15px 0 0;
	background-color: #F00A0A;
}
.chances .bloc-droit .chiffres-cles {
	margin-left: 25px;
    text-align: center;
    font-size: 14px;
}
.chances .bloc-droit .chiffres-cles img {
	width: 70px;
	height: 70px;
}
.chances .bloc-droit .chiffres-cles .force {
	margin-bottom: 15px;
}
.chances .second .bloc-gauche img {
	max-width: 200px;
	height: auto;
	margin: 0 auto;
}

/* Bulle */
.chances .second .bloc-gauche .tbody-container {
	position: relative;
}
.chances .second .bloc-gauche .bulle {
	position: absolute;
    background-image: url(img/Chances/Bulle-rouge.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 120px;
    height: 137.38px;
    color: white;
    text-align: center;
    line-height: 1.4;
	right: -90px;
    top: -35px;
	opacity: 0;
	z-index: 1;
}
.chances .second .bloc-gauche .bulle span {
	position: absolute;
    left: 24px;
    width: 70%;
    top: 27%;
	font-size: 12px;
	font-weight: 600;
}
.chances .second .bloc-gauche .table-container {
	width: fit-content; /* S'adapte à la largeur du tableau */
}
.chances .second .bloc-gauche table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
.chances .second .bloc-gauche thead th {
    position: sticky;
    top: 0; /* Rend l'en-tête fixe */
    z-index: 1; /* Place l'en-tête au-dessus du tbody */
}
.chances .second .bloc-gauche tbody {
	top: 20px;
    position: relative;
    display: block; /* Permet de définir une hauteur pour le tbody */
    max-height: 300px; /* Hauteur limite pour le défilement */
    overflow-y: auto;
	pointer-events: auto;
}
.chances .second .bloc-gauche tbody tr:last-child {
	margin-top: 20px;
}
.chances .second .bloc-gauche td {
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.3s ease;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.chances .second .bloc-gauche tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed; /* Assure que les colonnes de tbody s'alignent avec thead */
}
.chances .second .bloc-gauche tr:hover td {
    background-image: url('img/Chances/Rectangle-rouge.png');
    font-weight: 600;
	font-family: "Chance";
}
.chances .second .bloc-gauche tr:last-child:hover td {
    background-image: url('img/Chances/Rectangle-bleu.png');
    font-weight: 600;
	font-family: "Chance";
}
.chances .second .bloc-gauche .totalgain {
	margin-top: 40px;
}
.chances .second .bloc-gauche
.chances .second .bloc-droit {
	width: 32%;
    margin: 0;
	text-align: left;
}
.chances .second .bloc-droit h2 {
	width: fit-content;
	padding: 5px 10px;
	margin: 0;
	font-weight: 300;
}

/* OU VA MON ARGENT */

.ariane-chances {
	position: absolute;
	right: 15px;
	top: 0;
}
.ariane-chances img {
	width: auto;
	display: inline;
	vertical-align: middle;
	max-width: 35px;
	margin-left: 10px;
}
.argent .slide1 {
	justify-content: center;
    align-items: flex-start;
}
.argent .slide1 .bloc-gauche,
.argent .slide1 .bloc-droit {
	width: 40%;
	margin: 5% 5%;
	text-align: left;
}
.argent .slide1 .bloc-gauche h3 {
	margin-left: 20px;
}
.argent .slide1 .accordion {
	width: 100%;
	font-size: 15px;
	text-transform: uppercase;
	cursor: pointer;
	pointer-events: auto;
}
.argent .slide1 .accordion span.percent {
	font-size: 40px;
	font-weight: 900;
	margin-right: 15px;
}
.argent .slide1 .accordion div {
	width: calc(100% - 20px);
    display: flex;
    margin: 0 0 0 auto;
	justify-content: space-between;
	font-weight: 900;
}
.argent .slide1 .accordion p {
	display: flex;
	padding: 0px 0px 0px 20px;
	margin: 4px 0;
	align-items: center;
	font-size: 16px;
}
.argent .slide1 .accordion span.arrow {
	align-content: center;
	margin-right: 30px;
}
.argent .slide1 .accordion span.arrow img {
	width: 11px;
	height: 5.5px;
}
.argent .slide1 .accordion .texte {
	display: none;
	text-transform: none;
	padding: 15px 0;
	font-weight: 100;
	font-size: 17px;
}
/* POP-UP ARGENT */

.argent .slide1 .pop {
	background-image: url('img/Argent/Fond-bleu.svg');
	flex-direction: column;
	display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.argent .slide1 .pop .titre {
	width: 60%;
    text-align: left;
    font-size: 36px;
	margin-left: 60px;
}
.argent .slide1 .pop .bloc-gauche {
	width: 90%;
	flex-direction: row;
	margin: 35px 0 0 60px;
}
.argent .slide1 .pop .close {
	position: absolute;
	right: 25px;
	top: 25px;
}
.argent .slide1 .pop img {
	height: auto;
    margin: 0 auto 5px;
}
.argent .slide1 .pop p {
    margin: 0 auto;
}
.argent .slide1 .pop .bloc-gauche {
	text-align: center;
}
.argent .slide1 .pop .bloc-gauche .bande:nth-child(1) {
	margin-right: 30px;
}
.argent .slide1 .pop .bloc-gauche .bande:nth-child(1) div {
	padding: 7px 0;
}
.argent .slide1 .pop .bloc-gauche .bande:nth-child(2) {
	width: 100%;
}
.argent .slide1 .pop .bloc-gauche .bande div {
	margin: 20px 0;
}
.argent .slide1 .pop .bloc-gauche .pastiche {
	margin-left: 25px;
	border-radius: 30px;
	padding: 10px 25px;
	text-align: left;
}
.argent .slide1 .pop .bloc-gauche .bande .pastiche:nth-child(1) {
	width: 85%;
}
.argent .slide1 .pop .bloc-gauche .bande .pastiche:nth-child(2) {
	width: 55%;
}
.argent .slide1 .pop .bloc-gauche .bande .pastiche:nth-child(3) {
	width: 50%;
}
.argent .slide1 .nota {
	position: absolute;
	bottom: 8px;
	left: 15px;
	z-index: 50;
}
.argent .slide1 .accordion .texte p:first-child {
	margin-top : 10px;
}
.argent .slide1 .accordion .texte p {
	margin: 0;
	text-transform: uppercase;
	padding: 0;
	pointer-events: auto;
}
.argent .slide1 .accordion .texte a {
	text-decoration: none;
	color: white;
	font-family: "Chance Black";
}
.argent .slide1 .accordion .texte a:hover {
	color: #282D87;
}
.argent .slide1 .accordion div.bouton {
	display: inline-flex;
	justify-content: start;
	align-items: center;
}
.argent .slide1 .accordion button {
	border: 4px solid white;
	border-radius: 30px;
	margin: 15px 0;
	padding: 8px;
}
.argent .slide1 .accordion img {
	width: 10.07px;
	height: 16.07px;
	margin-left: 15px;
}

/* Camembert */

.argent .slide1 .Repart {
	display: none;
}

.argent .slide1 .Camembert {
	position: relative;
	height: 450px;
}
.argent .slide1 .Camembert .piece1 {
	position: absolute;
	top: 62px;
    left: 73px;
	transition: all 0.5s ease-out;
}
.argent .slide1 .Camembert .piece2 {
	position: absolute;
	left: 50px;
	transition: all 0.5s ease-out;
}
.argent .slide1 .Camembert .piece3 {
	position: absolute;
	top: 168px;
    left: 126px;
	transition: all 0.5s ease-out;
}
.argent .slide1 .Camembert .piece4 {
	position: absolute;
	top: 129px;
    left: 91px;
	transition: all 0.5s ease-out;
}
.argent .slide1 .Camembert .move {
	transform: translateX(50px);
}
.argent .slide1 .Camembert .initmove {
	transform: translateX(0);
}



.argent .slide1 .bloc-droit p:first-child {
	width: fit-content;
	margin: 15px auto;
	padding: 0 5px;
}
.argent .slide1 .bloc-droit .savoir {
	margin: -40px auto 0;
}
.argent .slide1 .bloc-droit .savoir p {
	margin: 0 auto;
	width: fit-content;
	line-height: 80%;
	padding: 5px 10px;
}
.argent .slide2 .titres {
	width: 60%;
	text-align: left;
	height: 28%;
	margin: 4% 7.5% 1%;
	align-items: flex-end;
	justify-content: end;
    display: flex;
	flex-direction: column;
}
.argent .slide2 .titres .titre-un,
.argent .slide2 .titres .titre-deux {
	align-self: flex-start;
}
.argent .slide2 .titres .titre-un h2,
.argent .slide2 .titres .titre-deux h2 {
    margin: 0;
}
.argent .slide2 .titres .titre-deux p {
	margin: 0;
}
.argent .slide2 .cartes {
	height: 200px;
	cursor: pointer;
	pointer-events: auto;
	perspective: 1000px;
	width: 86%;
    margin: 0 7%;
}
.argent .slide2 .flip-card-front:hover {
	animation: bounce 0.5s ease-in-out;
}
@keyframes bounce {
    0% { transform: translateX(0); }
    33% { transform: translateX(-5px); }
    66% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}
.argent .slide2 .flip-card-front, .argent .slide3 .flip-card-back {
	border-radius: 4px;
}
.argent .slide2 .cartes .inner-flip img {
   align-content: center;
   align-items: center;
   padding: 8px;
}
.argent .slide2 .cartes .inner-flip .flip-card-front img {
   height: 200px;
   width: 146px;
}
.argent .slide2 .cartes .inner-flip .flip-card-back .show {
   transition: all 0.3s ease;
}
.argent .slide2 .cartes .inner-flip .flip-card-back .show:hover {
   transform: translateY(5px);
}
.argent .mySwiperD  .flip-card-back p {
    font-size: 10.5px;
	line-height: 110%;
	margin-bottom: 10px;
}

.pop {
	position: absolute;
	top: 0;
	height: 95%;
	width: 92.5%;
	align-content: center;
    align-items: center;
	padding: 2.5% 2.5% 2.5% 5%;
}
.pop img {
	width: auto;
}
.pop .close {
	cursor: pointer;
	pointer-events: auto;
}
.pop .close img {
	width: 25px;
	height: 25px;
	padding: 0;
}
.argent .slide2 .pop .bloc-gauche {
	flex-direction: column;
	text-align: left;
	padding-right: 2%;
	width: 220%;
}
.argent .slide2 .pop .bloc-gauche div {
	margin-bottom: 15px;	
}
.argent .slide2 .pop .bloc-gauche .ensemble {
	width: 46%;
	font-size: 18px;
}
.argent .slide2 .pop .bloc-gauche hr {
	height: 1px;
    border: none;
	width: 100%;
	margin-bottom: 1em;
}
.argent .slide2 .pop .bloc-gauche button {
	display: flex;
	margin: 0;
	width: fit-content;
}
.argent .slide2 .pop .bloc-gauche .suite {
	width: 75%;
}

.pop .bloc-gauche .nota {
	position: absolute;
	bottom: 15px;
	left: 15px;
}
.argent .slide2 .pop .bloc-droit {
	text-align: right;
	align-items: flex-start;
    gap: 30px;
    height: 100%;
}
.argent .slide2 .pop .bloc-droit .logo {
    position: absolute;
	bottom: 15%;
    right: 10%;
}
.argent .slide2 .pop .bloc-droit .savoir {
    padding: 5px 10px;
	width: fit-content;
	margin-left: auto;
    text-align: right;
	color: white;
	margin-top: 8px;
}
.argent .slide2 .pop-video,
.fabrication .slide6 .pop-video {
	background: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
	z-index: 52;
	pointer-events: auto;
}
.argent .slide2 .pop-video .close,
.fabrication .slide6 .pop-video .close {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 15px;
	right: 15px;
	cursor: pointer;
	pointer-events: auto;
}
.argent .slide2 .pop-video iframe,
.fabrication .slide6 .pop-video iframe {
	display: flex;
	position: absolute;
	z-index: 50;
	top: 68px;
	left: 120px;
}

/* FABRICATION */

.fabrication .ariane-fabrication {
	position: absolute;
	right: 15px;
	top: 0;
	z-index: 50;
}
.fabrication .ariane-fabrication img {
	width: auto;
    display: inline;
    vertical-align: middle;
    max-width: 62px;
    margin-left: 10px;
}
.fabrication .ariane-fabrication h2 {
	font-weight: 300;
}
.fabrication .show {
	cursor: pointer;
	pointer-events: auto;
	z-index: 18;
}
.fabrication .show:hover {
	animation: grow 0.5s ease-in 1;
}
.fabrication .slide1 .fond {
	position: absolute;
	right: 0;
	top: 235px;
}
.fabrication .slide1 .Bloc-1,
.fabrication .slide1 .Bloc-2 {
	width: 40%;
	margin: 5% 5%;
}
.fabrication .slide1 .Bloc-1 {
	text-align: left;
}
.fabrication .slide1 .Bloc-1 h1 {
	font-size: 60px;
    line-height: 55px;
	margin: 0;
}
.fabrication .slide1 .Bloc-1 h4 {
	font-size: 18px;
	max-width: 90%;
}
.fabrication .slide1 .Bloc-2 {
	display: flex;
    flex-wrap: wrap;
	padding-bottom: 7%;
}
.fabrication .slide1 .Bloc-2 .Bulle {
    width: 150px;
    align-items: center;
    padding: 45px 40px;
	border-radius: 50%;
}
.fabrication .slide1 .Bloc-2 .Perso {
    position: relative;
    top: -36px;
    left: 15px;
}
.fabrication .slide1 .Bloc-2 .Perso img {
    object-fit: contain;
}

/* Slide 2 */
.fabrication .slide2 .fond {
	position: absolute;
	left: 0;
	top: 464px;
	z-index: 18;
}
.fabrication .slide2 .marcheurs {
	position: absolute;
	top: 387px;
	z-index: 15;
}
.fabrication .slide2 .Blocs {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.fabrication .slide2 .Bloc-1,
.fabrication .slide2 .Bloc-2 {
	width: 100%;
	justify-content: center;
	gap: 20px;
	position: relative;
}
@keyframes grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  75% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes shrink {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.fabrication .slide2 .Bloc-1 .etape {
	padding: 25px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	width: 200px;
    height: 200px;
	cursor: pointer;
	pointer-events: auto;
}
.fabrication .slide2 .Bloc-1 .grow {
	animation: grow 0.5s ease-in-out 1;
	animation-fill-mode: forwards;
	z-index: 10;
}
.fabrication .slide2 .Bloc-1 .shrink {
	animation: shrink 0.3s ease-in-out 1;
	animation-fill-mode: forwards;
	z-index: 5;
}
.fabrication .slide2 .Bloc-1 .plus {
	background-image: url(img/Home/plus-blanc.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
	position: absolute;
    top: 30px;
	left: 115px;
}
.fabrication .slide2 .Bloc-1 .face p {
	margin: 0;
	font-weight: 900;
	font-size: 23px;
}
.fabrication .slide2 .Bloc-1 .dos {
	display: none;
	padding: 14px;
	font-size: 0.55em;
	font-weight: 900;
	position: relative;
}
.fabrication .slide2 .Bloc-1 img {
	width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -20px;
    left: calc(50% - 10px);
}
.fabrication .slide2 .Bloc-2 {
	position: absolute;
	bottom: 15px;
	width: 40%;
}
.fabrication .slide2 .Bloc-2 .savoir {
	margin: 0 auto;
    padding: 5px 10px;
	width: fit-content;
	font-size: 23px;
}
.fabrication .slide2 .Bloc-2 p {
	font-size: 14px;
	width: 60%;
    margin: 5px auto 25px;
}


/* Slide 3 */
.fabrication .slide3 .fond {
	position: absolute;
	left: 0;
	top: 257px;
}
.fabrication .slide3 .populate {
	position: absolute;
	top: 295px;
	z-index: 15;
}
.fabrication .slide3 .marcheur-1 {
	position: absolute;
	top: 386px;
	left: 133px;
	z-index: 15;
}
.fabrication .slide3 .marcheur-2 {
	position: absolute;
	top: 182px;
    z-index: 15;
    right: 50px;
	width: 40px;
}
.fabrication .slide3 .Bloc-1 {
	width: 90%;
	position: relative;
}
.fabrication .slide3 .titre {
	font-size: 76px;
    text-align: left;
    width: 50%;
    line-height: 72px;
    padding-bottom: 25%;
}
.fabrication .slide3 p {
    position: absolute;
    width: 35%;
    left: 21%;
    text-align: left;
    top: 40%;
	font-size: 15px;
}
/* Slide 4 */
.fabrication .slide4 .fond {
	position: absolute;
	left: 0;
	top: 258px;
}
.fabrication .slide4 .marcheur-3 {
	position: absolute;
	left: 139px;
    top: 179px;
}
.fabrication .slide4 .marcheur-4 {
	position: absolute;
    right: 90px;
    top: 174px;
    width: 55px;
    height: 85px;
}
.fabrication .slide4 .Bloc-1,
.fabrication .slide5 .Bloc-1,
.fabrication .slide6 .Bloc-1 {
	width: 75%;
	position: relative;
}
.fabrication .slide4 .Bloc-1 {
	margin-bottom: 29px;
}
.fabrication .slide4 .steps,
.fabrication .slide5 .steps,
.fabrication .slide6 .steps {
	display: flex;
	gap: 25px;
	align-items: baseline;
}
.fabrication .slide5 .steps {
	padding-bottom: 25px;
}
.fabrication .slide4 .step,
.fabrication .slide5 .step,
.fabrication .slide6 .step {
	flex: 1 1 33.33%;
	padding: 0 10px;
}
.fabrication .slide4 .step .titre,
.fabrication .slide5 .step .titre,
.fabrication .slide6 .step .titre {
	margin: 15px auto 0;
}
.fabrication .slide4 .step img,
.fabrication .slide5 .step img,
.fabrication .slide6 .step img {
	margin: 0 auto;
    width: 100px;
}
.fabrication .slide4 .step p,
.fabrication .slide5 .step p,
.fabrication .slide6 .step p {
	font-size: 14px;
	margin: 0;
}
.fabrication .slide4 .step span,
.fabrication .slide5 .step span,
.fabrication .slide6 .step span {
	font-family: "Chance Black";
	margin: 15px 0 0;
	display: block;
}
.fabrication .slide4 .step .show,
.fabrication .slide5 .step .show,
.fabrication .slide6 .step .show {
	width: 19px;
	height: 19px;
	margin-top: 15px;
}
/* Slide 5 */
.fabrication .slide5 .fond {
	position: absolute;
	left: 0;
	top: 258px;
}
.fabrication .slide5 .marcheur-5 {
	position: absolute;
    right: 83px;
    top: 183px;
    width: 40px;
    height: 76px;
}
/* Slide 6 */
.fabrication .slide6 .fond {
	position: absolute;
	left: 0;
	top: 258px;
}
.fabrication .slide6 .marcheur-6 {
	position: absolute;
	left: 105px;
    top: 176px;
    width: 41px;
    height: 83px;
}
.fabrication .slide6 .steps {
    padding-bottom: 40px;
}

/* FABRICATION POP-UPS */
.fabrication .pop {
	display: none;
	z-index: 52;
	flex-direction: column;
	width: 90%;
	height: 95%;
	padding: 2.5% 5%;
}
.fabrication .pop img {
	object-fit: contain;
	height: 190px;
}
.fabrication .pop .close {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 15;
}
.fabrication .pop .close img {
	height: 36px;
}
.fabrication .pop .Bloc1,
.fabrication .pop .Bloc2,
.fabrication .pop .Bloc3 {
	display: flex;
	gap: 5px;
	width: 95%;
}
.fabrication .pop .Bloc1 div {
    padding-left: 5%;
    font-size: 15px;
    text-align: right;
    position: relative;
    padding-top: 35px;
	width: 40%;
}
.fabrication .pop .Bloc1 .Visuel {
	background-image: url(img/Fabrication/Mobile.jpg);
	background-size: cover;
	background-position: center center;
	width: 100%;
    padding: 0;
    margin: 0;
}
.fabrication .pop .Bloc1  {
	margin-bottom: 15px;
}
.fabrication .pop .Bloc1 div p {
	width: fit-content;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
	font-size: 24px;
}
.fabrication .pop .Bloc2 {
	flex-direction: column;
    text-align: left;
    padding: 0 0 20px 0;
}
.fabrication .pop .Bloc3 {
	display: flex;
	align-items: flex-start;
	gap: 10%;
	width: 90%;
    margin: 0 5%;
}
.fabrication .pop .Bloc3 .col {
	position: relative;
	text-align: left;
	font-size: 16px;
    padding-left: 5px;
	min-width: 125px;
	flex: 1 1 33.33%;
}
.fabrication .pop .Bloc3 .col img {
	width: 67px;
	height: auto;
	left: -74px;
	position: absolute;
}
.fabrication .pop-risques {
	width: 100%;
	height: 100%;
	padding: 0;
}
.fabrication .pop .slide-pop-1,
.fabrication .pop .slide-pop-2 {
    flex-direction: column;
	justify-content: flex-start;
	gap: 30px;
}
.fabrication .pop-risques .slide-pop-1 .Bloc1,
.fabrication .pop-risques .slide-pop-2 .Bloc1 {
	display: flex;
	flex-direction: row;
	height: 45%;
	width: 100%;
}
.fabrication .pop-risques .slide-pop-1 .Bloc1 .sachant,
.fabrication .pop-risques .slide-pop-2 .Bloc1 .sachant {
	width: 30%;
	display: flex;
    flex-direction: column;
    align-items: flex-end;
	font-size: 15px;
}
.fabrication .pop-risques .slide-pop-1 .Bloc1 .visuel {
	background-image: url(img/Fabrication/Touch.jpg);
	background-size: cover;
	background-position: center center;
	width: 100%;
    padding: 0;
    margin: 0;
}
.fabrication .pop-risques .slide-pop-2 .Bloc1 .visuel {
	background-image: url(img/Fabrication/Friends.jpg);
	background-size: cover;
	background-position: center center;
	width: 100%;
    padding: 0;
    margin: 0;
}
.fabrication .pop-risques p {
	font-weight: 600;
}
.fabrication .pop-risques .slide-pop-1 .Bloc2,
.fabrication .pop-risques .slide-pop-1 .Bloc3,
.fabrication .pop-risques .slide-pop-2 .Bloc2,
.fabrication .pop-risques .slide-pop-2 .Bloc3 {
	width: 50%;
	gap: 15px;
}
.fabrication .pop-risques .slide-pop-2 .Bloc3 i {
	font-size: 12px;
}
.fabrication .pop-risques img {
	height: auto;
}
.fabrication .pop-risques .slide-pop-1 .Bloc1 div,
.fabrication .pop-risques .slide-pop-2 .Bloc1 div {
	padding: 35px 88px 35px 35px;
    color: white;
    font-size: 16px;
}
.fabrication .pop-risques .slide-pop-1 .Bloc1 div p,
.fabrication .pop-risques .slide-pop-2 .Bloc1 div p {
	position: relative;
	right: 0;
	color: white;
	font-size: 21px;
	margin-bottom: 5px;
}
.fabrication .pop-risques .slide-pop-1 .Blocs,
.fabrication .pop-risques .slide-pop-2 .Blocs {
	flex-direction: row;
	align-items: flex-start;
	width: 80%;
}
.fabrication .pop .Bloc2 .slide-pop-1 .stepName {
    font-size: x-large;
}
.fabrication .pop .Bloc3 .slide-pop-1 .col,
.fabrication .pop .Bloc3 .slide-pop-2 .col {
   font-size: 16px;
}
.fabrication .pop .slide-pop-3 {
    flex-direction: column;
	gap: 30px;
}
.fabrication .pop .slide-pop-3 p {
    font-size: 18px;
}
.fabrication .pop-risques .slide-pop-3 .Blocs {
	flex-direction: row;
    align-items: flex-start;
	width: 90%;
	margin-left: 10%;
	height: 100%;
}
.fabrication .pop-risques .slide-pop-3 .Bloc1 {
	justify-content: flex-end;
    margin-top: 2%;
	width: 80%;
}
.fabrication .pop-risques .slide-pop-3 .Bloc1 div {
	width: 25%;
	color: white;
}
.fabrication .pop-risques .slide-pop-3 .Bloc2 {
	width: 40%;
}
.fabrication .pop-risques .slide-pop-3 .Bloc3 {
	width: 60%;
	background-image: url(img/Fabrication/Personnes-3.jpg);
	background-size: cover;
	background-position: center center;
	height: 100%;
	margin-left: 7%;
	margin-right: 0;
}
/*.fabrication .pop-risques .slide-pop-3 .Blocs .Bloc2,
.fabrication .pop-risques .slide-pop-3 .Blocs .Bloc3 {
	flex: 1 1 50%;
	flex-direction: column;
	gap: 0;
	text-align: left;
}
.fabrication .pop-risques .slide-pop-3 .Blocs .Bloc2 .stepName {
	margin-bottom: 10px;
}
.fabrication .pop-risques .slide-pop-3 .Blocs .Bloc2 .titre {
	line-height: 46px;
}
.fabrication .pop-risques .slide-pop-3 .Blocs .Bloc3 p {
	width: 85%;
}*/
.fabrication .pop-step1,
.fabrication .pop-step2,
.fabrication .pop-step3,
.fabrication .pop-step4,
.fabrication .pop-step5,
.fabrication .pop-step6,
.fabrication .pop-step7,
.fabrication .pop-step8 {
	width: 100%;
	height: 100%;
	padding: 0;
	display: none;
	align-items: inherit;
}
.fabrication .pop-step1 .Bloc1 {
    margin-left: 63%;
    margin-top: 20px;
}
.fabrication .pop-step1 .Bloc1 div {
    width: 30%;
	padding-left: 0;
}
.fabrication .pop-step1 .Bloc2 {
	flex-direction: row;
	align-items: center;
	width: 56%;
    margin-left: 7%;
    gap: 30px;
	padding: 0;
	margin-bottom: 10px;
}
.fabrication .pop-step1 .Bloc2 img {
	width: 80px;
	height: auto;
	margin-bottom: 10px;
}
.fabrication .pop-step1 .Bloc3 {
	width: 100%;
    margin: 0;
    gap: 0;
}
.fabrication .pop-step1 .Bloc3 img {
	height: auto;
}
.fabrication .pop-step2 {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
}
.fabrication .pop-step2 .Bloc1 {
    display: flex;
    gap: 0px;
    height: 100%;
    width: 45%;
}
.fabrication .pop-step2 .Bloc1 img {
    height: 100%;
}
.fabrication .pop-step2 .Bloc2 {
    display: flex;
    gap: 0px;
    height: 100%;
    width: 32%;
	justify-content: center;
	align-items: flex-start;
}
.fabrication .pop-step2 .Bloc2 img {
	height: 55px;
    margin-bottom: 10px;
}
.fabrication .pop-step3 .Bloc1,
.fabrication .pop-step5 .Bloc1 {
	width: 100%;
}
.fabrication .pop-step3 .Bloc1 img,
.fabrication .pop-step5 .Bloc1 img {
	width: 60%;
	height: auto;
}
.fabrication .pop-step3 .Bloc1 div,
.fabrication .pop-step5 .Bloc1 div {
    margin-left: 1%;
    padding-left: 5%;
    font-size: 17px;
    text-align: right;
    position: relative;
    padding-top: 39px;
    width: 27%;
    margin-top: 20px;
}
.fabrication .pop-step3 .Blocs,
.fabrication .pop-step5 .Blocs {
	display: flex;
	flex-direction: row;
	width: 67%;
	margin: 32px auto 0;
	gap: 25px;
}
.fabrication .pop-step3 .Bloc2,
.fabrication .pop-step5 .Bloc2 {
	flex-direction: row;
    margin: 0;
	width: auto;
	align-items: flex-start;
}
.fabrication .pop-step3 .Bloc2 img,
.fabrication .pop-step5 .Bloc2 img {
	height: 70px;
	width: auto;
	margin-top: 15px;
}
.fabrication .pop-step3 .Bloc3,
.fabrication .pop-step5 .Bloc3 {
	flex-direction: column;
    margin: 0 auto;
	gap: 0;
}
.fabrication .pop-step3 .Bloc3 p,
.fabrication .pop-step5 .Bloc3 p {
	text-align: left;
}
.fabrication .pop-step4 {
	flex-direction: row;
	gap: 25px;
}
.fabrication .pop-step4 .Bloc1 {
	display: flex;
    gap: 0px;
    height: 100%;
    width: 55%;
    justify-content: center;
    align-items: flex-start;
	flex-direction: column;
	padding: 0 9%;
}
.fabrication .pop-step4 .Bloc1 img {
	height: 55px;
}
.fabrication .pop-step4 .Bloc1 .stepName {
	margin: 10px 0;
	padding: 0;
	text-align: left;
}
.fabrication .pop-step4 .Bloc1 .titre {
	margin: 0;
	padding: 0;
	font-size: 48px;
	text-align: left;
	width: 100%;
}
.fabrication .pop-step4 .Bloc1 p {
	text-align: left;
}
.fabrication .pop-step4 .Bloc2 {
	display: flex;
    height: 100%;
    width: 45%;
}
.fabrication .pop-step4 .Bloc2 img {
	height: 100%;
	object-fit: cover;
}
.fabrication .pop-step6 .Bloc1 {
	display: flex;
    gap: 0px;
    height: auto;
    width: 100%;
}
.fabrication .pop-step6 .Bloc1,
.fabrication .pop-step6 .Bloc2 {
    width: auto;
}
.fabrication .pop-step6 .Bloc1 img,
.fabrication .pop-step6 .Bloc2 img {
    height: auto;
}
.fabrication .pop-step6 .Bloc2 img {
	width: 90px;
}
.fabrication .pop-step6 .Blocs {
	display: flex;
    flex-direction: row;
    width: 57%;
    margin: 100px auto 0;
    gap: 25px;
    align-items: flex-start;
    justify-content: center;
}
.fabrication .pop-step6 .Bloc3 {
	display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
	text-align: left;
	margin: 0;
}
.fabrication .pop-step7,
.fabrication .pop-step8 {
	flex-direction: row;
}
.fabrication .f-xxlarge {
    font-size: 48px;
    line-height: 42px;
}
.fabrication .pop-step7 .Bloc1 {
	width: 42%;
	height: 100%;
}
.fabrication .pop-step8 .Bloc1 {
	width: 45%;
    height: 100%;
}
.fabrication .pop-step7 .Bloc1 img {
	height: 100%;
}
.fabrication .pop-step8 .Bloc1 img {
    height: 80%;
    margin: auto 12%;
}
.fabrication .pop-step8 .Bloc1 img.fleche {
	position: absolute;
    height: 59%;
    bottom: 13%;
    left: 25%;
}
.fabrication .pop-step7 .Bloc2 {
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    margin-left: 7%;
	margin-top: 10%;
}
.fabrication .pop-step8 .Bloc2 {
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    margin-left: 7%;
}
.fabrication .pop-step7 .Bloc2 img,
.fabrication .pop-step8 .Bloc2 img {
	height: 55px;
	width: auto;
}
.fabrication .pop-step7 .Bloc3,
.fabrication .pop-step8 .Bloc3 {
	width: 20%;
    margin: 0 10% 0 0;
    text-align: right;
    font-size: 17px;
    position: absolute;
    right: 0;
    top: 20px;
}
.fabrication .pop-step7 .Bloc3 button {
	font-family: "Chance Black";
	margin-top: 10px;
	float: right;
}
.fabrication .pop-step7 .Bloc3 .savoir,
.fabrication .pop-step8 .Bloc3 .savoir {
    padding: 5px 10px;
    margin: 0 0 5px 0;
    font-size: 24px;
    text-align: center;
}
.fabrication .pop-step8 .Bloc3 span {
	font-size: 10px;
}
/* RESPONSIVE */

@media (max-width: 768px) {
	
	body, html {
	  height: 100%;
	  align-items: baseline;
	  position: absolute;
	  font-family: "Chance";
	}
	
	#Window {
	  display: inline-flex;
	  width: 100vw;
	  /*height: calc(var(--vh, 1vh) * 100);*/
	  height: 100%;
	  overflow: hidden;
	  position: relative;
	  /*box-shadow: 0px 0px 10px black;*/
	  pointer-events: auto !important;
	  
	}
	
	.disable-vertical {
	  touch-action: pan-x; /* Bloque le défilement vertical */
	  overflow-y: hidden;  /* Désactive le scroll vertical */
	}
	
	.mobile {
		display: flex!important;
		flex-direction: column;
        justify-content: center;
	}
	.desktop {
		display: none!important;
	}
	/*.mobile.header-fdj {
		background-image: url("img/Header-Mobile-FDJ.png");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center center;
		height: 50px;
		width: 100vw;
		position: fixed;
    	z-index: 500;
		top: 0;
	}
	.mobile.footer-fdj {
		background-image: url("img/Footer-Mobile-FDJ.png");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center center;
		height: 75px;
		width: 100vw;
		position: fixed;
		bottom: 0;
    	z-index: 500;
	}*/
	
	.pop .bloc-gauche .nota {
		position: absolute;
		bottom: 8px;
		left: 15px;
	}
	
	swiper-container::part(button-prev),
	swiper-container::part(button-next) {
		margin: 0;
		top: 92%;
	}

	/* Navigation */
	.navigation .bouton-menu {
		position: absolute;
		right: calc( 50vw - 29.5px );
		bottom: 10px;
		z-index: 150;
		transition: none;
	}
	.navigation .bouton-menu:hover {
		transform: none;
	}
	.circle-menu {
        bottom: -305px;
        right: -260px;
        width: 900px;
        height: 900px;
	}
	.circle-menu ul {
    	margin: 100px auto;
    	width: 80vw;
	}
	.circle-menu li {
		margin-bottom: 20px;
		text-align: center;
		font-size: 16px;
	}
	.circle-menu li {
		margin-bottom: 20px;
		text-align: center;
		font-size: 18px;
	}
	.ariane-gagnants,
	.ariane-argent,
	.ariane-chances,
	.ariane-fabrication,
	.ariane-securite {
		display: none;
	}
	
	/* Sliders */

	swiper-container {
	  width: 100vw;
	  /*height: 80vh;*/
	  /*height: calc( 100vh - 125px);
	  margin-top: -125px;*/
	}
	#slider-container {
		width: calc( 100vw * 3);
		/*height: calc( 100vh - 125px);*/
		/*height: 80vh;*/
		position: absolute;
		transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth transition */
	}
	swiper-slide {
  	   justify-content: center;
       align-items: center;
	   font-size: 14px;
	}
	swiper-slide img {
		width: 36%;
		margin: 0 auto;
		padding: 15px 0 15px 0;
	}

	/* Styles des slides */
	.slide {
	  min-width: 100vw;
	 /* height: calc( 100vh - 125px);*/
	  height: 80vh;
	  display: inline-block;
	  justify-content: center; /* Centre le contenu à l'intérieur des slides */
	  align-items: center;
	  color: white;
	  font-size: 2rem;
	  transition: transform 0.5s ease-in-out;
	}
	.swiper-v, .swiper-h {
	  background-image: url("img/Degrade-Mobile.svg");
	}
	
	/******* HOME *********/
	.home .introw {
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		margin: 0;
		font-size: 16px;
		font-family: "Chance";
		line-height: 100%;
	}
	.home .introw hr {
		margin: 12px auto 0;
	}
	.home .introw .f-medium {
		font-size: 18px;
		font-weight : 400;
		line-height: 100%;
		margin: 5px;
	}
	.home .introw .f-large {
		font-size: 20px;
		width: fit-content;
		margin: 0 auto;
		font-weight: 300;
	}
	.home .page-home {
        width: calc(100% - 20px);
        margin: 5% 10px 25%;
        height: 70%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
		align-items: stretch;
	}
	.home .flip-card-front {
		position: relative;
		width: auto;
    	height: 132.5px;
		flex: 1 1 48%;
    	box-sizing: border-box;
		text-transform: uppercase;
		line-height: 11pt;
		padding: 0 0 20px 0;
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.6s ease, transform 0.6s ease-out;
		pointer-events: auto;
	}
	.home .flip-card-front.visible {
		opacity: 1;
		transform: translateY(0);
	}
	.home .mobile .flip-card-front:nth-child(5) img {
		zoom: 2;
		padding: 15px 0 10px 0;
	}
	.home .mobile div.flip-card-front:last-child {
		flex: auto;
		padding: 0;
		text-align: left;
		height: auto;
	}
	.home .mobile div.flip-card-front:last-child img {
		width: 13%;
        position: relative;
		margin: 0 0 0 20px;
		padding: 8px;
	}
	.home .faq-menu-mobile {
		display: flex;
		align-items: center;
		width: 100%;
	}
	.home .pop {
        height: calc(90% + 10px);
        width: 70%;
        margin-left: -10px;
        padding: 10% 15%;
	}
	.home .pop .close {
        position: absolute;
		top: 15px;
        right: 15px;
	}
	.home .pop h2 {
        font-family: "Chance Black";
		margin: 0 0 10%;
		text-transform: uppercase;
		font-size: 180%;
	}
	.home .pop p {
        font-family: "Chance";
		font-weight: 600;
		margin: 7% 0;
		line-height: 150%;
	}
	.home .pop button {
		font-family: "Chance Black";
        margin: 0 auto;
		font-size: 12px;
	}
	.page-faq {
		width: 90%;
		margin: 20px auto 25%;
		height: 70%;
	}
	.accordeon {
		height: 67%;
	}

	/********* GAGNANTS *********/
	/* Slide 1 */
	.gagnants .carte-mini-france {
		background-image: url("img/Gagnants/Mini-france.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		width: 42px;
		height: 40px;
		margin: 0 auto;
		position: absolute;
        top: 20px;
        right: 20px;
	}
	.gagnants .carte-small-france {
		background-image: url("img/Gagnants/france-small.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		width: 151px;
		height: 147px;
		margin: 25px auto 0;
		pointer-events: auto;
	}
	.gagnants .chiffres-cles h2 span {
		font-size: 70px;
	}
	.gagnants .points-vente h2,
	.gagnants .en-ligne h2 {
		display: flex;
        align-items: center;
        width: fit-content;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
		font-size: 160%;
	}
	.gagnants .points-vente img,
	.gagnants .en-ligne img {
		padding: 0 10px;
		width: 20px;
		height: auto;
	}
	.gagnants .premier h3 {
		width: 60%;
        margin: 5% auto 25px auto;
        font-family: "Chance";
        text-align: center;
	}
	.gagnants .second h3 {
		width: 60%;
        margin: 15% auto 25px auto;
        font-family: "Chance";
        text-align: center;
	}
	.gagnants a {
		pointer-events: auto;
	}
	.gagnants button {
		font-family: "Chance Black";
		font-size: 15px;
	}
	.gagnants .premier button a,
	.gagnants .premier button a:visited,
	.gagnants .premier button a:link,
	.gagnants .premier button a:active {
		color: #282D87
		pointer-events: auto;
	}
	
	/* Slide2 */
	
	.gagnants .carte-france {
		width: 360.8px;
		height: 378.4px;
		top: auto;
		left: auto;
	}
	.bretagne {
		width: 110px;
        height: 65.6px;
        top: 92px;
        left: 2px;
	}
	.bourgogne {
		width: 134.8px;
        height: 88.6px;
        top: 111.5px;
        left: 205px;
	}
	.hauts {
		width: 77px; /* 98px - 20% */
		height: 96px; /* 120px - 20% */
		top: 0px;
		left: 176px;
	}
	.loire {
		width: 97.4px;
        height: 90.8px;
        top: 105px;
        left: 67px;
	}
	.auvergne {
		width: 139.2px; /* 174px - 20% */
		height: 104px; /* 130px - 20% */
		top: 175px;
		left: 193px;
	}
	.est {
		width: 136px;
        height: 111px;
        top: 39px;
        left: 225.5px;
	}
	.centre {
		width: 82.8px;
        height: 104.8px;
        top: 89px;
        left: 139.5px;
        z-index: 12;
	}
	.provence {
		width: 93.6px; /* 117px - 20% */
		height: 81.6px; /* 102px - 20% */
		top: 240px;
		left: 254px;
	}
	.aquitaine {
		width: 124.8px;
        height: 168px;
        top: 161px;
        left: 86px;
	}
	.normandie {
		width: 102.2px;
        height: 81.4px;
        top: 41px;
        left: 85px;
	}
	.occitanie {
		width: 140px;
        height: 100.6px;
        top: 245px;
        left: 129.5px;
        z-index: 15;
	}
	.ile-france {
		width: 56px;
        height: 46.4px;
        top: 77px;
        left: 178px;
        z-index: 15;
	}
	.corse {
		width: 20px; /* 25px - 20% */
		height: 44px; /* 55px - 20% */
		top: 335px;
		left: 313px;
	}
	.gagnants .dom-tom-mobile {
		background-image: url("img/Gagnants/Dom-tom/Dom-tom-Notext.png");
        background-repeat: no-repeat;
		width: 328px;
        display: flex;
        flex-wrap: wrap;
        margin: 15px auto 0;
        row-gap: 0;
        column-gap: 20px;
		pointer-events: auto;
		height: 45px;
	}
	.gagnants .dom-tom-mobile div {
		/*flex: 1 1 48%;
		box-sizing: border-box;*/
	}
	.gagnants .dom-tom-mobile div span {
		position: relative;
    	top: 10px;
		width: 75px;
        display: block;
	}
	.gagnants .dom-tom-mobile div img {
		margin: 0 auto;
		width: fit-content;
		height: auto;
	}
	.gagnants .nota {
		position: absolute;
		bottom: 8px;
		left: 15px;
		z-index: 50;
	}
	.gagnants .nom {
		display: flex;
		flex-direction: row;
		font-size: 9px;
		margin-bottom: 15px;
		width: 375px;
	}
	.mob-dom-tom {
		background-image: url("img/Gagnants/Dom-tom/Dom-tom-white.png");
        background-size: 328px;
        background-repeat: no-repeat;
		width: 328px;
        margin: 0 auto;
        pointer-events: auto;
        height: 45px;
	}
	/*.mob-polynesie {
		background-image: url("img/Gagnants/Dom-tom/Polynesie.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		position: relative;
        width: 59px;
        height: 53px;
        left: 12px;
        top: 4px;
	}
	.mob-reunion {
		background-image: url("img/Gagnants/Dom-tom/Reunion.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
        width: 47px;
        height: 51px;
        position: relative;
        top: 4px;
        left: -1px;
	}
	.mob-guadeloupe {
		background-image: url("img/Gagnants/Dom-tom/Guadeloupe.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
        width: 56px;
        height: 59px;
        position: relative;
        top: -2px;
        left: -2px;
	}
	.mob-martinique {
		background-image: url("img/Gagnants/Dom-tom/Martinique.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
        width: 41px;
        height: 57px;
        position: relative;
        top: 1px;
        left: -12px;
	}
	.mob-guyane {
		background-image: url("img/Gagnants/Dom-tom/Guyane.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
        width: 41px;
        height: 57px;
        position: relative;
        top: 1px;
        left: -12px;
	}*/
	.gagnants .pop {
        height: calc(90% + 10px);
        width: 80%;
        padding: 10% 10%;
		z-index: 15;
		text-align: center;
	}
	.gagnants .pop .close {
        position: absolute;
		top: 15px;
		right: 15px;
	}
	.gagnants .pop .back {
        display: none;
	}
	.gagnants .pop h2 {
        font-family: "Chance Black";
		margin: 0 0 10%;
		text-transform: uppercase;
		font-size: 180%;
	}
	.gagnants .pop p {
        font-family: "Chance";
		font-weight: 900;
		margin: 0;
		line-height: 120%;
        font-size: 20px;
	}
	.gagnants .pop button {
		font-family: "Chance Black";
        margin: 0 auto;
		font-size: 12px;
	}
	.gagnants .pop .gains {
		flex-direction: column;
	}
	.gagnants .pop .liste li {
		padding: 2px 0;
	}
	.gagnants .troisieme {
		font-size: 20px;
	}
	.gagnants .troisieme .f-xxlarge {
		font-size: 49px;
        font-weight: bold;
        line-height: 80%;
        margin-bottom: 15px;
	}
	.gagnants .troisieme .tableau {
		width: 85%;
		margin: 10% 7.5%;
		font-size: 16px;
	}
	.gagnants .troisieme .tableau .f-xtrem {
		font-size: 65px;
	}
	.gagnants .troisieme .tableau .f-uppercase {
		font-weight: bold;
	}
	.gagnants .troisieme .tableau .gauche,
	.gagnants .troisieme .tableau .droite {
		width: 50%;
	}
	.gagnants .troisieme .tableau .gauche div,
	.gagnants .troisieme .tableau .droite div {
		height: 160px;
	}
	.gagnants .troisieme p {
		margin: 0;
	}
	.gagnants .quatrieme p {
		font-size: 20px;
    	font-weight: bold;
	}
	.gagnants .quatrieme img {
		width: 90%;
		height: auto;
		padding: 0;
	}
	.gagnants .cinquieme .savoir,
	.gagnants .cinquieme .f-light {
		width: 80%;
    	margin: 0 10% 7.5%;
	}
	.gagnants .cinquieme .f-xtrem {
    	margin: 0;
	}
	.gagnants .cinquieme .savoir p {
		margin: 0;
	}
	.gagnants .cinquieme div:nth-child(2) p {
		font-size: 18px;
		font-weight: bold;
	}
	.gagnants .cinquieme .savoir p {
		font-size: 20px;
		font-weight: 300;
		display: inline-flex;
	}
	.gagnants .cinquieme .savoir p:nth-child(2) {
		margin-left: -15px;
	}
	.gagnants .cinquieme .f-medium {
		line-height: 130%;
		font-size: 18px;
	}
	
	/********* CHANCES *********/
	/* Slide 1 */
	.chances .trefle {
		background-image: url("img/Chances/trefle.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		width: 37px;
		height: 51px;
		margin: 0 auto;
		position: absolute;
        top: 20px;
        right: 20px;
	}
	.chances .premier .titre,
	.chances .premier .logotypes {
		width: 90%;
		margin: 0 5%;
		color: white;
		font-size: 16px;
	}
	.chances .premier .tdl {
		flex-wrap: wrap;
		align-items: center;
	}
	.chances .premier .tdl div {
		width: 33.33%;
        box-sizing: border-box;
	}
	.chances .premier .tdl div img {
		width: fit-content;
        height: auto;
        display: block;
	}
	.chances .pop {
        height: 100%;
        width: 100%;
        padding: 0;
		z-index: 350;
		text-align: center;
	}
	.chances .pop .close {
        position: absolute;
		top: 15px;
		right: 15px;
		z-index: 25;
	}
	.chances .pop .logo {
		position: absolute;
    	z-index: 25;
    	width: 75%;
    	left: 12.5%;
	}
	.chances .pop .logo img {
		width: 140px;
    	margin-top: 0;
	}
	.chances .pop .ticket-image {
		position: relative;
		width: 80%;
        margin: 0% 10%;
	}
	.chances .pop .ticket-image img {
		width: 100%;
        height: auto;
        max-height: 280px;
        max-width: 220px;
        image-rendering: optimizequality;
        object-fit: contain;
	}
	
	.chances .pop .ticket-image .prix {
		border-radius: 50%;
		width: 60px;
		height: 45px;
		position: absolute;
		right: 5%;
		top: -15px;
		padding: 15px 0 0;
	}
	.chances .pop .chiffres-cles a button {
		color: #282D87;
	}
	.chances .pop .chiffres-cles .force {
		width: 90%;
		margin: 5% 5% 10%;
	}
	.chances .pop .chiffres-cles .force h2 {
		font-size: 17px;
	}
	.chances .premier .pop .tdl-lots {
		width: 90%;
		margin: 0 5%;
	}
	.chances .premier .pop .tdl-lots .f-large {
		font-size: 18px;
		font-weight: 900;
	}
	.chances .premier .pop .tdl-lots table:first-child {
		border-top: 1px solid white;
	}
	.chances .pop .tdl-lots .table-container table {
		width: 100%;
	}
	.chances .pop .tdl-lots .table-container .entete {
		padding: 10px 15px;
	}
	.chances .pop .tdl-lots table thead {
		font-size: 12px;
	}
	.chances .pop .tdl-lots table tbody tr {
		/*height: 24px;*/
		pointer-events: auto;
	}
	.chances .pop .tdl-lots table tbody td {
		font-size: 12px;
	}
	.chances .pop .tdl-lots table tbody .f-regular {
		height: 40px;
		font-family: "Chance";
		font-weight: 600;
	}
	.chances .pop .tdl-lots table tbody tr:last-child {
		border: 1px solid white;
		background-color: rgba(255,255,255,0.4);
	}
	
	/* Bulle */
	/* .chances .second .bloc-gauche .tbody-container { */
		/* position: relative; */
	/* } */
	.chances .pop .tdl-lots .bulle {
		position: absolute;
		background-image: url(img/Chances/Bulle-rouge.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		width: 120px;
		height: 137.38px;
		color: white;
		text-align: center;
		line-height: 1.4;
		z-index: 1;
		transform: rotate(-90deg);
		display: none;
	}
	.chances .pop .tdl-lots .bulle span {
		position: absolute;
		left: 24px;
		width: 70%;
		top: 27%;
		font-size: 11px;
		font-weight: 600;
		transform: rotate(90deg);
	}
	
	
	.chances .pop .le-savez {
		width: 80%;
		margin: 0 10%;
	}
	.chances .pop .le-savez h2 {
		width: fit-content;
		padding: 5px 10px;
		font-weight: 300;
		margin: 0 auto;
		font-size: 26px;
	}
	.chances .pop .le-savez p {
		line-height: 150%;
	}
	
	/********* ARGENT *********/
	
	/* Slide 1 */
	
	.argent swiper-slide.invertbg {
		background-image: url(img/Degrade-Mobile.svg);
	}
	.argent .slide1 {
		justify-content: center;
    	align-items: center;
		display: flex;
    	flex-direction: column;
	}
	.argent .slide1 .logo-argent,
	.argent .second .logo-argent {
        position: absolute;
        z-index: 25;
        width: auto;
        right: 14px;
        top: -30px;
	}
	.argent .slide1 .logo-argent img,
	.argent .second .logo-argent img {
        height: 28px;
        margin-top: 25px;
        width: 28px;
	}
	.argent .slide1 swiper-slide {
		flex-direction: column;
	}
	.argent .slide1 .bloc-gauche h3 {
		text-align: center;
        width: 75%;
        margin: 0 auto 15px;
        font-size: 14px;
	}
	.argent .slide1 .accordion {
		width: 100%;
		font-size: 15px;
		text-transform: uppercase;
		pointer-events: auto;
	}
	.argent .slide1 .accordion p a {
		pointer-events: auto;
	}
	.argent .slide1 .accordion div {
    	width: 100%;
	}
	.argent .slide1 .bloc-gauche {
    	width: 100%;
		position: relative;
        z-index: 25;
		margin-top: 0;
	}
	.argent .slide1 .bloc-gauche span.percent {
    	font-size: 25px;
	}
	.argent .slide1 .bloc-droit {
    	width: 80%;
        margin: -45px 10% 0;
	}
	
	/* Camembert */
	
	.argent .slide1 .Repart {
		display: block;
	}
	
	.argent .slide1 .Camembert {
		display: none;
		position: relative;
		height: 31vh;
		left: -17px;
	}
	.argent .slide1 .Camembert .piece1 {
		position: absolute;
		top: 35px;
        left: 27px;
		transition: all 0.5s ease-out;
	}
	.argent .slide1 .Camembert .piece1 img {
		width: 47%;
	}
	.argent .slide1 .Camembert .piece2 {
		position: absolute;
		left: 50px;
		top: 9px;
		transition: all 0.5s ease-out;
	}
	.argent .slide1 .Camembert .piece3 {
		position: absolute;
		top: 87px;
        left: 73px;
		transition: all 0.5s ease-out;
	}
	.argent .slide1 .Camembert .piece3 img {
		width: 47%;
	}
	.argent .slide1 .Camembert .piece4 {
		position: absolute;
		top: 71px;
        left: 48px;
		transition: all 0.5s ease-out;
	}
	.argent .slide1 .Camembert .piece4 img {
		width: 47%;
	}
	.argent .slide1 .Camembert .move {
		transform: translateX(50px);
	}
	.argent .slide1 .Camembert .initmove {
		transform: translateX(0);
	}
	
	
	.argent .slide1 .bloc-droit img {
    	width: 75%;
        margin: 5px auto 0;
        padding: 0;
	}
	.argent .slide1 .bloc-droit p:first-child {
		margin: -10px auto 15px;
	}
	.argent .slide1 .accordion p {
		font-size: 14px;
	}
	.argent .slide1 .bloc-droit .savoir {
		margin: -20px auto 0;
	}
	.argent .slide1 .bloc-droit .savoir .bg-red {
    	background-color: #282D87;
	}
	.argent .slide1 .bloc-droit .savoir p {
    	font-size: 18px;
	}
	.argent .slide1 .bloc-droit .savoir button {
    	color: white;
	}
	.argent .slide1 .pop {
		padding: 0;
		height: 100vh;
		width: 100vw;
		z-index: 30;
		flex-direction: column;
	}
	.argent	.pop-mobile {
		position: absolute;
		top: 0;
		height: 42%;
		z-index: 30;
		pointer-events: auto;
	}
	.argent	.pop-mobile .close {
		position: absolute;
		right: 15px;
		pointer-events: auto;
	}
	.argent	.pop-mobile .contenu {
		flex-direction: column;
		justify-content: center;
    	align-items: center;
        height: 90%;
        width: 80%;
        margin: 10% 10% 0;
		font-weight: 600;
	}
	.argent	.pop-mobile .contenu .titre {
		text-transform: uppercase;
		font-size: 16px;
		font-family: "Chance Black";
		font-weight: 600;
		margin-bottom: 25px;
	}
	.argent	.pop-mobile .contenu a,
	.argent	.pop-mobile .contenu a:active,
	.argent	.pop-mobile .contenu a:visited {
		text-decoration: underline;
		text-transform:  uppercase;
		font-family: "Chance black";
		color: #282D87;
		pointer-events: auto;
	}
	.argent	.pop-mobile .contenu .bouton {
		display: inline-flex;
		justify-content: start;
		align-items: center;
		border: 4px solid white;
		border-radius: 30px;
		margin: 15px 0;
		padding: 0;
	}
	.argent	.pop-mobile .contenu .bouton button {
		padding: 2px 10px;
		font-family: "Chance Black";	
	}
	.argent	.pop-mobile .contenu .bouton img {
		width: 10.07px;
   		height: 16.07px;
	}
	.argent .slide1 .pop {
		background-image: url(img/Argent/Fond-bleu-mobile.svg);
		background-position: center;
        background-size: cover;
	}
	.argent .slide1 .pop .titre {
		font-size: 18px;
		margin-bottom: 20px;
        margin-left: 10%;
	}
	.argent .slide1 .pop .bloc-gauche {
		margin: 0 5%;
		flex-direction: column;
	}
	.argent .slide1 .pop .bloc-gauche p {
		margin: 15px 5% 5px;
    	text-align: left;
	}
	.argent .slide1 .pop .bloc-gauche .pastiche {
		margin: 0;
    	text-align: left;
		display: flex;
	}
	.argent .slide1 .pop .nota {
		display: none;
	}
	.argent .slide1 .pop .bloc-gauche .pastiche img {
		margin: 0 0 0 15px;
		padding: 5px 0 0 15px;
	}
	.argent .slide1 .pop .bloc-gauche .pastiche:nth-child(4) {
		width: 80%;
	}
	.argent .slide1 .pop .bloc-gauche .pastiche:nth-child(6) {
		width: 70%;
	}
	.argent .second .bloc {
    	width: 90%;
		margin: 0 5%;
		color: white;
		display: flex;
		flex-direction: column;
	}
	.argent .second .titre .titre-un .f-big {
    	font-size: 24px;
		margin-top: 0;
	}
	.argent .second .titre .titre-un h2 {
    	margin-bottom: 0;
		font-family: "Chance Black";
	}
	.argent .second .titre .titre-deux .f-xlarge {
    	font-size: 16px;
	}
	.argent .second .titre .titre-deux p {
    	margin-top: 0;
	}
	.argent .second .cartes {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: space-evenly;
    	align-items: center;
		padding: 0 22px;
	}
	.argent .second .cartes div {
		width: 43%;
		box-sizing: border-box;
		pointer-events: auto;
	}
	.argent .second .cartes div img {
		width: 100%;
		height: auto;
		padding: 0;
	}
	.argent .second .pop {
		background-color: rgba(0,0,0,0.7);
		position: absolute;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
		z-index: 30;
		padding: 0;
	}
	.argent .second .pop .pop-interne {
		width: 90vw;
		margin: 0 5vw;
		display: flex;
		border-radius: 10px;
		flex-direction: column;
		pointer-events: auto;
	}
	.argent .second .pop .pop-interne .close {
		position: absolute;
        right: 35px;
		z-index: 40;
		margin-top: 15px;
		pointer-events: auto;
	}
	.argent .second .pop .pop-interne .show {
		height: 30px;
	}
	.argent .second .pop .pop-interne div:last-child {
		padding: 15%;
		width: 70%;
	}
	.argent .second .pop-big {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100vw;
		z-index: 30;
		padding: 0;
	}
	.argent .second .pop-big .central {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 90%;
		width: 80vw;
		margin: 0 10vw;
	}
	.argent .second .pop-big .central .f-big {
		font-size: 40px;
	}
	.argent .second .pop-big .central .f-inter {
		font-size: 18px;
	}
	.argent .second .pop-big .central .f-light {
		margin: 5px 0;
	}
	.argent .second .pop-big .central .ensemble {
		font-family: "Chance";
		font-weight: 900;
		margin-bottom: 5vh;
		font-size: 24px;
	}
	.argent .second .pop-big .central hr {
		height: 1px;
    	border: none;
	}
	.argent .second .pop-big .central .nota {
		position: absolute;
		bottom: 8px;
		left: 15px;
	}
	
	.argent .second .pop-video,
	.fabrication .mySwiper16 .pop-video {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(0, 0, 0, 0.9);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  z-index: 1000;
	  	pointer-events: auto;
	}
	.argent .second .pop-video .close,
	.fabrication .mySwiper16 .pop-video .close {
		width: 25px;
		height: 25px;
		position: absolute;
		top: 15px;
		right: 15px;
		cursor: pointer;
		pointer-events: auto;
	}
	.argent .second .pop-video iframe,
	.fabrication .mySwiper16 .pop-video iframe {
		 width: 90%; /* Largeur adaptative pour les petits écrans */
		 max-width: 800px; /* Largeur maximale */
		 height: auto; /* Hauteur proportionnelle */
		 border-radius: 8px; /* Coins arrondis */
	}
	
	.argent .page-deux .savoir {
		font-size: 26px;
		padding: 5px 10px;
	}
	.argent .page-deux .logo {
		width: 55%;
	}
	.argent .page-deux .logo img {
		width: 100%;
		padding: 0;
	}
	.argent .second .pop-big .close {
		position: absolute;
        right: 15px;
		z-index: 40;
		pointer-events: auto;
	}
	.argent .second .pop-big .close img {
		width: 25px;
		height: 25px;
	}
	
	/********* FABRICATION *********/
	
	.fabrication .ariane-fabrique {
		position: absolute;
		top: 15px;
		right:15px;
	}
	.fabrication .ariane-fabrique img {
		width: 65px;
		height: auto;
	}
	.fabrication .mobile .center-bloc {
		height: 43vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 40vh;
        width: 100%;
        gap: 5px;
	}
	.fabrication .mobile .famille {
		border-bottom: 2px solid white;
        width: 1150vw;
        height: 2px;
        position: absolute;
        top: 38%;
		left: 50vw;
	}
	.fabrication .mobile .famille div {
		position: absolute;
		z-index: 0;
	}
	.fabrication .mobile .famille .Perso-1 {
		width: 130px;
        top: -112px;
        left: 83px;
	}
	.fabrication .mobile .famille .Perso-2 {
		width: 99px;
        top: -85px;
        left: 55vw;
	}
	.fabrication .mobile .famille .Perso-3 {
		width: 104px;
        top: -86px;
        left: 220vw;
	}
	.fabrication .mobile .famille .Perso-4 {
		width: 130px;
        top: -85px;
        left: 315vw;
	}
	.fabrication .mobile .famille .illustre-1 {
        width: 250px;
        top: -138px;
        left: 268vw;
	}
	.fabrication .mobile .famille .Perso-5 {
		width: 100px;
        top: -81px;
        left: 352vw;
	}
	.fabrication .mobile .famille .illustre-2 {
		width: 325px;
        top: -88px;
        left: 358vw;
	}
	.fabrication .mobile .famille .Perso-6 {
		width: 130px;
        top: -76px;
        left: 519vw;
	}
	.fabrication .mobile .famille .illustre-3 {
		width: 330px;
        top: -83px;
        left: 457vw;
	}
	.fabrication .mobile .famille .Perso-7 {
		width: 100px;
        top: -81px;
        left: 621vw;
	}
	.fabrication .mobile .famille .illustre-4 {
        width: 312px;
        top: -105px;
        left: 558vw;
	}
	.fabrication .mobile .famille .Perso-8 {
        width: 98px;
        top: -82px;
        left: 652vw;
	}
	.fabrication .mobile .famille .illustre-5 {
		width: 312px;
        top: -96px;
        left: 659vw;
	}
	.fabrication .mobile .famille .Perso-9 {
		width: 95px;
        top: -82px;
        left: 822vw;
	}
	.fabrication .mobile .famille .illustre-6 {
		width: 271px;
        top: -110px;
        left: 765vw;
	}
	.fabrication .mobile .famille .Perso-10 {
		width: 100px;
        top: -81px;
        left: 920vw;
	}
	.fabrication .mobile .famille .illustre-7 {
		width: 337px;
        top: -85px;
        left: 856vw;
	}
	.fabrication .mobile .famille .Perso-11 {
		width: 94px;
        top: -79px;
        left: 954vw;
	}
	.fabrication .mobile .famille .illustre-8 {
        width: 228px;
        top: -92px;
        left: 970vw;
	}
	.fabrication .mobile .famille .Perso-12 {
		width: 110px;
        top: -73px;
        left: 1051vw;
	}
	.fabrication .mobile .famille .illustre-9 {
        width: 351px;
        top: -62px;
        left: 1053vw;
	}
	.fabrication .mobile swiper-slide {
		flex-direction: column;
		justify-content: flex-start;
		height: 100%;
	}
	.fabrication .mobile swiper-slide.slidea,
	.fabrication .mobile swiper-slide.slideb {
		justify-content: center;
	}
	.fabrication .mobile swiper-slide img {
		padding: 0;
	}
	.fabrication .mobile swiper-slide.intro {
		justify-content: center;
		margin-top: auto;
	}
	.fabrication .mobile swiper-slide .picto {
        width: auto;
        height: 80px;
        padding: 0;
	}
	.fabrication .mobile swiper-slide .marcheur {
		position: absolute;
		width: auto;
	}
	.fabrication .mobile swiper-slide .illustre {
		width: 100vw;
        height: 152px;
        display: flex;
        align-content: flex-end;
        flex-wrap: wrap;
	}
	.fabrication .mobile swiper-slide .stepName {
		font-size: 22px;
	}
	.fabrication .mobile swiper-slide .f-xxlarge {
		font-size: 32px;
		line-height: 34px;
		padding: 0 10%;
		width: 80%;
		text-align: center;
		margin-bottom: 15px;
	}
	.fabrication .mobile swiper-slide p {
		width: 90%;
        padding: 0 5% 5%;
        text-align: center;
        position: relative;
        top: 0;
        left: 0;
        font-size: 15px;
		margin: 0;
		font-weight: 600;
	}
	.fabrication .mobile swiper-slide .show {
		width: 25px;
		height: auto;
		cursor: pointer;
		pointer-events: auto;
	}
	.fabrication .mobile swiper-slide .Bloc-pop .step {
		font-size: 24px;
	}
	/* Slide A */
	.fabrication .slidea .Bloc1 {
		padding: 5% 0;
		position: relative;
	}
	.fabrication .slidea h2 {
		margin: 15px 0 0 0;
        font-size: 26px;
        font-family: "Chance Black";
        line-height: 28px;
	}
	.fabrication .slidea h4 {
		margin: 5px 0;
		font-size: 20px !important;
	}
	.fabrication .slidea p {
		font-size: 13px !important;
		margin: 0;
	}
	.fabrication .slidea .bulle {
        border-radius: 50%;
        padding: 15px;
        width: 45vw;
        height: 45vw;
        display: flex;
        align-items: center;
        margin-left: 24.5vw;
        justify-content: space-evenly;
		margin-top: 15px;
		margin-bottom: 15px;
	}
/* 	.fabrication .slidea .ligne {
        width: 50%;
        position: absolute;
        top: 34.5%;
        border: none;
        background: white;
        z-index: -1;
        height: 2px;
        left: 50%;
	} */
	.fabrication .slidea .Perso {
/*         width: 130px;
        position: absolute;
        top: 17%;
        z-index: -1;
        right: -29px; */
	}
	/* Slide B */
	
	.fabrication .slideb {
		overflow: hidden;
	}
	.fabrication .slideb .Blocs {
		padding: 0;
	}
	.fabrication .slideb .Bloc-1 {
		flex-direction: column;
		align-items: center;
		gap: 4px;
	}
	.fabrication .slideb .etape {
        border-radius: 50%;
        padding: 10px;
        width: 33vw;
        height: 33vw;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
		pointer-events: auto;
	}
/* 	.fabrication .slideb .ligne {
        width: 100%;
        position: absolute;
        top: 48%;
        border: none;
        background: white;
        z-index: -1;
        height: 2px;
        left: 0;
	} */
	.fabrication .slideb .Perso {
/*         width: 99px;
        position: absolute;
        top: 27.5%;
        z-index: -1;
        left: 10px; */
	}
	.fabrication .slideb .etape .plus {
        background-image: url(img/Home/plus-blanc.svg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 16px;
        height: 16px;
        position: relative;
        cursor: pointer;
		pointer-events: auto;
        display: block;
        margin: 0 auto;
	}
	.fabrication .slideb .etape .face {
        display: flex;
    	flex-direction: column;
    	align-items: center;
	}
	.fabrication .slideb .etape .face .titre {
        font-size: 18px;
	}
	.fabrication .slideb .etape .face p {
        font-size: 12px !important;
		font-family: 'Chance black';
		padding: 0;
	}
	.fabrication .slideb .Bloc-2 {
		margin-top: 10px;
		/*border-bottom: 2px solid white;*/
	}
	.fabrication .slideb .Bloc-2 .savoir {
		width: fit-content;
		padding: 5px 10px;
		margin: 0 auto;
        font-size: 17px;
	}
	.fabrication .slideb .Bloc-2 p {
		padding-bottom: 4%;
		font-size: 13px;
	}
	.fabrication .slideb .dos {
		display: none;
	}
	.fabrication .slideb .Bloc-3 {
		display: none;
		width: 150%;
		height: 100%;
		background-color: rgba(0,0,0,0.85);
		position: absolute;
        top: 0;
		align-items: center;
		left: -25%;
	}
	.fabrication .slideb .Bloc-3 .bulle {
		border-radius: 50%;
    	height: 110vw;
		display: flex;
        flex-direction: column;
        justify-content: center;
		padding: 20vw;
	}
	.fabrication .slideb .Bloc-3 .bulle .plus {
		background-image: url("img/croix.png");
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 25px;
        height: 25px;
        position: relative;
        cursor: pointer;
		pointer-events: auto;
        display: block;
        margin: 0 auto 30px;
	}
	.fabrication .slideb .Bloc-3 .bulle img {
		padding: 0;
	}
	.fabrication .slideb .Bloc-3 .bulle.bg-blue .show {
		display: none;
	}
	.fabrication .slideb .pop-creation,
	.fabrication .slideb .pop-prevention {
		display: none;
		background-image: unset !important;
		z-index: 25;
		position: absolute;
		height: 100%;
	}
	.fabrication .slideb .pop-creation swiper-slide,
	.fabrication .slideb .pop-prevention swiper-slide {
		justify-content: center;
		overflow: hidden;
	}
	.fabrication .slideb .pop-creation swiper-slide img,
	.fabrication .slideb .pop-prevention swiper-slide img {
		width: 100%;
		margin: 15px 0 0;
	}
	.fabrication .slideb .pop-creation swiper-slide.top,
	.fabrication .slideb .pop-prevention swiper-slide.top {
		justify-content: flex-start;
	}
	.fabrication .slideb .pop-creation swiper-slide.bottom,
	.fabrication .slideb .pop-prevention swiper-slide.bottom {
		justify-content: flex-end;
	}
	.fabrication .slideb .pop-creation swiper-slide .savoir,
	.fabrication .slideb .pop-prevention swiper-slide .savoir {
		padding: 5px 10px;
		font-size: 21px;
		margin: 0 auto;
	}
	.fabrication .slideb .pop-prevention swiper-slide .image {
		height: 60%;
		width: 100%;
	}
	.fabrication .slideb .pop-prevention swiper-slide:last-child .image {
		height: 60%;
		width: 100%;
	}
	.fabrication .slideb .pop-creation swiper-slide .Bloc-centre,
	.fabrication .slideb .pop-prevention swiper-slide .Bloc-centre {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 30%;
		width: 60%;
		align-content: center;
		font-size: 16px;
	}
	.fabrication .slideb .pop-creation .close,
	.fabrication .slideb .pop-prevention .close {
		width: 25px;
		height: 25px;
		position: absolute;
		top: 15px;
		right: 15px;
		z-index: 30;
		margin: 0;
		pointer-events: auto;
	}
	.fabrication .slideb .pop-creation .close img,
	.fabrication .slideb .pop-prevention .close img {
		margin: 0;
	}
	.fabrication .slideb .pop-creation .titre,
	.fabrication .slideb .pop-prevention .titre {
		margin-bottom: 0;
	}
	.fabrication .slideb .pop-creation .col {
		display: flex;
		flex-direction: column;
		width: 90%;
		margin: 0 5% 20px;
	}
	.fabrication .slideb .pop-creation .col p {
		font-size: 15px;
	}
	.fabrication .slideb .pop-creation .col img {
		width: 25%;
        height: auto;
        margin: 0 auto;
	}
	.fabrication .slideb .pop-creation .savoir {
		width: fit-content;
		margin: 0 auto;
		padding: 5px 10px;
		font-size: 18px;
	}
	
	
	/* Slide 1 */
	.fabrication .slide1 .Fond {
		width: 95%;
		height: auto;
		position: absolute;
        top: 12px;
		/* border-bottom: 2px solid white; */
		/* padding: 0 0 15px 0; */
		/* height: 253px; */
	}
	.fabrication .slide1 .Bloc1 {
		width: 80%;
		margin-top: 65px;
	}
	.fabrication .slide1 .Bloc1 h2 {
		font-size: 20px;
		font-family: "Chance Black";
	}
	.fabrication .slide1 .Bloc1 p {
		font-size: 13px;
		line-height: 18px;
		width: 100%;
        padding: 0;
	}
	.fabrication .slide1 .marcheur {
		height: 73px;
        top: 33px;
        left: 33%;
		position: relative !important;
	}
	/* Slide 2 */
	.fabrication .slide2 {
       /*  margin-top: 103px !important; */
	}
	.fabrication .slide2 .marcheur {
		height: 71px;
        /*top: 81px;*/
		margin-top: -71px;
        right: 40px;
	}
	.fabrication .slide2 .picto {
        height: 150px !important;
		top: 1vh;
        position: relative;
	}
	/* Slide 3 */
	.fabrication .slide3 {
        /* margin-top: 173px !important; */
	}
	.fabrication .slide3 .marcheur {
		height: 69px;
        margin-top: -69px;
        left: 39px;
	}
	/* Slide 4 */
	.fabrication .slide4 {
        /* margin-top: 173px !important; */
	}
	.fabrication .slide4 .picto {
		top: -4.5vh;
        position: relative;
	}
	/* Slide 5 */
	.fabrication .slide5 {
        /* margin-top: 173px !important; */
	}
	.fabrication .slide5 .marcheur {
        height: 69px;
        margin-top: -69px;
        right: 49px;
	}
	/* Slide 6 */
	.fabrication .slide6 {
        /* margin-top: 173px !important; */
	}
	.fabrication .slide6 .marcheur {
		height: 69px;
        margin-top: -69px;
        left: 49px;
	}
	/* Slide 7 */
	.fabrication .slide7 {
        /* margin-top: 173px !important; */
	}
	.fabrication .slide7 .picto {
        height: 150px !important;
		top: 1vh;
        position: relative;
	}
	/* Slide 8 */
	.fabrication .slide8 {
        /* margin-top: 173px !important; */
	}
	.fabrication .slide8 .marcheur {
		height: 69px;
        margin-top: -69px;
        right: 44px;
	}
	/* Slide 9 */
	.fabrication .slide9 {
        /* margin-top: 173px !important; */
	}
	.fabrication .slide9 .marcheur {
        height: 69px;
        margin-top: -69px;
        left: 57px;
	}
	/* Slide 10 */
	.fabrication .slide10 {
        /* margin-top: 193px !important; */
	}
	.fabrication .slide10 .marcheur {
        height: 69px;
        margin-top: -69px;
        left: 36px;
	}
	
	/* POP INLAY */
	.fabrication .popswipe {
		width: 100%;
        position: absolute;
        left: 0;
		margin: 0;
		z-index: 25;
		top: 0;
	}
	.fabrication .popswipe .close {
		width: 30px;
		height: 30px;
		position: absolute;
		right: 15px;
		top: 15px;
		z-index: 30;
		pointer-events: auto;
	}
	.fabrication .popswipe .close img {
		width: 25px;
		height: 25px;
	}
	.fabrication .popswipe swiper-slide {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.fabrication .popswipe swiper-slide.bottom {
		justify-content: flex-end;
	}
	.fabrication .popswipe swiper-slide.center {
		justify-content: center;
	}
	.fabrication .popswipe swiper-slide.top {
		justify-content: flex-start;
	}
	.fabrication .popswipe .Bloc-pop {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 10px;
		width: 90%;
		height: 45%;
        margin-top: 10%;
	}
	.fabrication .popswipe .Bloc-pop.top {
		justify-content: flex-start;
	}
	.fabrication .popswipe .Bloc-pop.bottom {
		justify-content: flex-end;
	}
	.fabrication .popswipe .Bloc-pop-split {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 10px;
		width: 90%;
	}
	.fabrication .popswipe .bloc-pics {
		display: flex;
        flex-direction: row;
        margin: 0 auto;
		gap: 10px;
	}
	.fabrication .popswipe .bloc-pics img {
		width: 80px;
		height: auto;
	}
	.fabrication .popswipe .step {
		font-size: 18px;
		flex: none;
        padding: 0;
	}
	.fabrication .popswipe .titre {
		font-size: 30px;
        font-weight: 900;
        text-align: center;
        width: auto;
        line-height: 100%;
        padding: 0;
	}
	.fabrication .popswipe p {
		width: 96% !important;
        padding: 0 2% 2% !important;
	}
	.fabrication .popswipe .bigger {
		font-size: 18px !important;
	}
	.fabrication .popswipe .wide {
		width: 100%;
        background-size: cover;
        height: 32%;
        background-position: center center;
        background-repeat: no-repeat;
	}
	.fabrication .popswipe .wide.mid {
		height: 45%;
	}
	.fabrication .popswipe .wide-sm {
		width: 100%;
        background-size: cover;
        height: 40%;
		margin: 15px 0;
        background-position: center center;
        background-repeat: no-repeat;
	}
	.fabrication .popswipe .savoir {
		padding: 5px 10px;
		font-size: 22px;
        margin-bottom: 15px;
	}
	.fabrication .popswipe button {
		margin: 15px auto;
		font-size: 16px;
	}
}