body {
  font-family: Po02;
  overflow-x: hidden;
}


/* Permet d'activer/désactiver la sélection sur le site des visiteurs (clients)
* Décommente pour activer la non sélection ou commente pour le cas contraire
*/

* {
  user-select: none;
}

.mask {
  display: none !important;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 3%;
  font-size: 14px;
  justify-content: space-between;
  height: 75px;
  background: #fffa;
  z-index: 2;
  box-shadow: 0 1px 20px #0002;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

header>div {
  display: flex;
  gap: 10px;
  align-items: center;
}

header .menus,
header .menus>ul,
header .menus ul li a,
header .menus ul li,
header .othersMenu,
header .othersMenu a {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: var(--pprimary);
}

header .menus>ul>li {
  margin: 0 2px;
  position: relative;
}

header .menus>ul>li>a.active {
  color: var(--ssecondary);
}

header .menus>ul>li>a:hover {
  color: var(--ssecondary);
}

header ul li ul.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

header ul li ul {
  position: absolute;
  top: 30px;
  background: #fafafa;
  box-shadow: 0 1px 20px #0002;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

header .menus ul li ul li a:hover {
  background: #0001;
}

header .menus ul li ul li a {
  display: block;
  padding: 7px 10px;
  margin: 1px 0;
  width: 100%;
  border-radius: 5px;
}

.othersMenu {
  position: relative;
}

.othersMenu .profileBox hr.hr {
  height: 1px;
  border: 0;
  background: var(--ssecondary-3);
  margin: 10px auto 30px;
  width: 100%;
  max-width: 100px;
}

.othersMenu .profileBox figure img {
  margin: 10px 0 5px;
  border-radius: 50%;
  box-shadow: 0 1px 20px #0003;
  width: 100px;
}

.othersMenu .profileBox figure {
  text-align: center;
}

.othersMenu .profileBox li:not(:first-child) {
  padding: 7px 20px;
  cursor: pointer;
  box-shadow: 0 1px 10px #0001;
  border-radius: 5px;
  display: flex;
  align-items: center;
  background: #fff;
  margin: 3px 20px;
  gap: 10px;
}

.othersMenu .profileBox li:last-child {
  color: var(--ssecondary);
}

.othersMenu .profileBox.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

.a_connected {
  cursor: pointer;
}

.othersMenu .profileBox {
  position: absolute;
  top: -5px;
  background: #fff;
  border-radius: 20px;
  right: -10px;
  box-shadow: 0 1px 20px #0002;
  padding: 30px 0;
  max-width: 280px;
  min-width: 280px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.logoBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logoBox span.mio {
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 1px 20px #0003;
  color: var(--pprimary);
}

header .logoBox img {
  width: 70px;
  margin-right: 40px;
}

header .menus ul li a {
  padding: 3px 7px;
}

.othersMenu a {
  padding: 8px 15px 8px 10px;
  border-radius: 20px;
  box-shadow: 0 1px 20px #0002;
}

.othersMenu a.account span:not(.mio) {
  display: inline-block;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.othersMenu a.account {
  gap: 5px;
}

.othersMenu a.partner {
  background: var(--ssecondary);
  color: #fff;
  font-weight: lighter;
}

.sec {
  color: var(--ssecondary);
}

.pri {
  color: var(--pprimary);
}

.art {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: 30px 5%;
  background: url('../img/deco.svg');
  gap: 30px;
  justify-content: center;
}

.art>* {
  max-width: 550px;
  width: 50%;
  min-width: 300px;
}

.art h2,
.art h1 {
  font-family: Po01;
  max-width: 400px;
  margin-bottom: 10px;
}

.art h1 {
  max-width: 100%;
}

.art p a {
  padding: 10px 20px;
  border-radius: 5px;
  background: var(--ssecondary);
  color: #fff;
  display: inline-flex;
  font-weight: bold;
  box-shadow: 0 2px 10px #0003;
}

.btn_next:hover {
  box-shadow: 0 1px 20px #0002;
  background: #fff1;
}

.btn_next {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  gap: 15px;
  color: #fff;
  margin-top: 20px;
  border-radius: 20px;
  padding: 3px 10px 3px 5px;
}

.btn_next span.mio {
  padding: 7px;
  border-radius: 50%;
  color: var(--ssecondary);
  box-shadow: 0 3px 10px var(--ssecondary-3);
  background: #fff;
}

.art p {
  max-width: 600px;
}

.art img {
  border-radius: 20px;
}

.art:not(.process)::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #0005;
  z-index: -1;
}

.art:not(.process)>div {
  width: 100%;
  max-width: 600px;
}

.art:not(.process) {
  background: url('../img/bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: brightness(0.2);
  -webkit-backdrop-filter: brightness(0.2);
  color: #eee;
  position: relative;
  justify-content: left;
}

.art:not(.process) img {
  height: 0 !important;
}

.art2 {
  padding: 70px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.art2>div:first-child h2 {
  margin: 0 auto 10px;
  max-width: 370px;
}

.art2>div:first-child {
  margin: 0 auto;
  max-width: 600px;
  margin-bottom: 20px;
  text-align: center;
}

.art2>div.fl h3 {
  font-family: Po02;
  margin-bottom: 10px;
}

.art2>div.fl {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: Po01;
}

.art2 .fl .item {
  max-width: 400px;
  background: var(--ssecondary-1);
  padding: 30px 20px;
  border-radius: 20px;
  width: 100%;
}

.art2 .flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.art2 .flex a:last-child,
.accepterCookie {
  background: var(--ssecondary);
  color: #fff;
}

.art2 .flex a,
.accepterCookie {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 1px 20px #0001;
  color: var(--pprimary);
  background: #fffa;
}

.moyensPaiements {
  padding: 80px 5%;
  text-align: center;
}

.moyensPaiements .boxFlexs img {
  width: 250px;
  border-radius: 10px;
}

.art.slim:not(.process)::before {
  border-radius: 50px;
  background: linear-gradient(to bottom right, var(--pprimary-5), var(--ssecondary-2));
}

.art.slim.v2 {
  background: url('../img/p1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: brightness(.5);
  -webkit-backdrop-filter: brightness(.5);
}

.art.slim.c1,
.art.slim.c2 {
  background: url('../img/ce.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: brightness(.5);
  -webkit-backdrop-filter: brightness(.5);
}

.art.slim.c2 {
  background: url('../img/co.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: brightness(.5);
  -webkit-backdrop-filter: brightness(.5);
}

.art.slim.ceo:not(.process)::before {
  background: #0008;
}

.art.slim.v2:not(.process)::before {
  background: linear-gradient(to bottom right, #004a, var(--ssecondary-3));
}

.art.slim>div {
  text-shadow: 1px 1px 3px #0008;
}

.navs {
  padding: calc((90vh) / 2) 5% 30px;
  background: url('../img/deco.svg');
  margin-top: calc((-90vh) / 2)
}

.navs ul li,
.navs ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navs ul {
  overflow-x: auto;
  gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 10px #0001;
}

.navs ul li a:hover {
  color: var(--ssecondary-5);
}

.navs ul li.selected a {
  color: var(--pprimary);
  font-weight: bold;
}

.navs li span.mio {
  font-size: 18px;
}

.navs li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.art.slim {
  background: url('../img/rb4.jpg') #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50px;
  margin: 30px 5%;
  border-radius: 50px;
  min-height: calc(100vh - 170px);
}

.moyensPaiements figure figcaption {
  padding: 10px 20px;
}

.moyensPaiements figure {
  box-shadow: 0 1px 20px #0002;
  border-radius: 20px;
  padding: 5px;
  background: #fff;
}

.moyensPaiements a {
  color: var(--pprimary);
  font-weight: bold;
  text-decoration: underline;
}

.moyensPaiements p {
  max-width: 500px;
  text-align: center;
  margin: 10px auto 0;
}

.moyensPaiements .boxFlexs {
  padding: 30px 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.hr {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pprimary-5);
  gap: 15px;
}

.hr hr {
  height: 1px;
  border: 0;
  width: 100%;
  max-width: 100px;
  background: var(--pprimary-1);
}

.choice .flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1000px;
}


.choice .flex span.mio {
  display: inline-flex;
  padding: 10px 30px 10px 10px;
  margin-bottom: 10px;
  border-radius: 10px 15px 40px 7px;
  background: rgb(3, 136, 25);
  font-weight: lighter;
  color: #fff;
}

.choice .flex>div:nth-child(2) span.mio,
.choice .flex>div:nth-child(6) span.mio {
  background: crimson;
}

.choice .flex>div:nth-child(3) span.mio,
.choice .flex>div:nth-child(7) span.mio {
  background: #310080;
}

.choice .flex>div:nth-child(4) span.mio {
  background: orangered;
}

.choice .flex>div p {
  margin-top: 10px;
}

.choice .flex>div {
  width: 100%;
  max-width: 220px;
  padding: 10px 20px 20px;
  border-radius: 20px;
  box-shadow: 0 1px 20px #0002;
}

.process li>span {
  border-radius: 50%;
  background: var(--ssecondary);
  color: #fff;
  font-family: Po01;
  font-weight: bold;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 10px;
}

.process li h3 {
  font-family: Po02;
  color: var(--ssecondary);
}

.process li p {
  font-size: 14px;
}

.process.art,
.prices {
  height: auto;
  padding: 70px 5%;
}

.process.art {
  background: linear-gradient(to bottom right, #ff4f4033, #ff4f4055), url('../img/deco.svg');
  min-height: 100vh;
}

.process li {
  display: flex;
  gap: 15px;
  align-items: start;
  padding: 15px 20px;
  border-radius: 20px;
  /* background: #fffa; */
  margin: 2px 0;
  box-shadow: 0 1px 20px #0001;
}

.process .CallToAction {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  background: var(--ssecondary);
  margin-top: 20px;
}

.CallToAction {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.panel footer>div {
  padding: 70px 20px 50px;
}

body.panel footer {
  margin-top: 0;
  border-radius: 0;
}

.slim .CallToAction {
  border-radius: 20px;
}

.process .flx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.process.art img {
  /* box-shadow: 0 1px 10px #0005; */
}

.prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url('../img/deco.svg');
}

.prices>p {
  max-width: 400px;
  text-align: center;
  margin: 5px 0 15px;
}

.packs.active {
  margin-left: -100%;
}

.packs {
  display: flex;
  gap: 20px;
  min-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.packs .pack {
  width: 100%;
  max-width: 290px;
  padding: 30px 20px;
  box-shadow: 0 3px 20px #0001;
  border-radius: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pack .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.pack .head span.mio {
  color: #1faf1f;
}

.pack:nth-child(2) .head span.mio {
  color: #0078da;
}

.pack:nth-child(3) .head span.mio {
  color: #da4100;
}

.pack .head span:not(.mio) {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  position: absolute;
  top: 15px;
  font-weight: bold;
  font-size: 12px;
}

.pack .namePack {
  margin: 25px 0 15px;
  font-family: Po02;
  font-size: 25px;
}

.pack .banner {
  position: absolute;
  top: 25px;
  right: -30px;
  padding: 5px 20px;
  text-transform: uppercase;
  transform: rotateZ(40deg);
  text-align: center;
  background: var(--secondary);
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  width: 150px;
}

.pack>p {
  opacity: .7;
}

.pack .hr {
  margin: 20px 0;
}

.amountDuration {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.amountDuration h2 {
  font-size: 30px;
}

.amountDuration span .pri {
  opacity: 1 !important;
  font-weight: bold;
  font-family: Po01;
  color: royalblue;
}

.amountDuration span {
  opacity: .7;
}

.pack:nth-child(3) .subscribeBtns:hover {
  background: #da410022;
  color: #da4100;
}

.pack:nth-child(3) .subscribeBtns {
  background: #da4100;
  border: solid 2px #da4100;
}

.pack:nth-child(2) .subscribeBtns:hover {
  background: #0078da22;
  color: #0078da;
}

.pack:nth-child(2) .subscribeBtns {
  background: #0078da;
  border: solid 2px #0078da;
}

.subscribeBtns:hover {
  background: #1faf1f22;
  color: #1faf1f;
}

.boxContainers.v2 {
  padding: 30px 5%;
}

.boxContainers.v3 .data>*:not(.ending) {
  margin-left: auto !important;
  margin-right: auto !important;
}

.endResult {
  width: 100%;
  max-width: 600px;
  padding: 10px 20px;
  background: var(--primary-1);
  border-radius: 10px;
  margin-bottom: 10px;
}

.qqFinal a.n.f {
  background: #cc0000;
  color: #fff;
  font-weight: bold;
}

.games .boutons.v3.v4 {
  gap: 20px;
  justify-content: unset !important;
}

.games .boutons.v3 {
  display: none;
}

.qqFinal a.n.c {
  background: #008800;
  color: #fff;
  font-weight: bold;
}

.qqFinal a.n {
  display: flex;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  box-shadow: 0 1px 5px #0002;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qqFinal {
  display: none;
}

.qqFinal .qF {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-bottom: 15px;
}

.qqFinal .legend,
.qqFinal .legend figure {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.qqFinal .legend {
  padding-top: 10px;
  border-top: solid 1px #0001;
}

.qqFinal .legend figure>span.text {
  color: #555;
  font-size: 12px;
  font-weight: bold;
}

.qqFinal .legend figure:last-child>span:not(.text) {
  background: #fff;
}

.qqFinal .legend figure:nth-child(2)>span:not(.text) {
  background: #cc0000;
}

.qqFinal .legend figure>span:not(.text) {
  display: flex;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #008800;
  box-shadow: 1px 1px 5px #0003;
}

.qqFinal .legend figure {
  flex-wrap: nowrap;
  gap: 5px;
}


.qqFinal {
  padding: 8px 20px;
  border-radius: 20px;
  box-shadow: 0 1px 10px #0002;
}

.boxContainers.v3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detailPrice {
  font-size: 16px;
  font-weight: 100;
  font-family: 'Po02';
}

.othersNavs.v2 figure img {
  width: 100%;
  border-radius: 10px;
}

.info.v2 {
  max-width: 900px;
  margin: 20px 0;
}

.info.v3 {
  max-width: 900px;
  margin: 10px 0;
}

.othersNavs .cartes.active * {
  color: #fff !important;
}

.othersNavs .cartes.active:nth-child(4) {
  background: var(--pprimary) !important;
}

.othersNavs .cartes.active:nth-child(3) {
  background: var(--ssecondary) !important;
}

.othersNavs .cartes.active:nth-child(2) {
  background: #56058d !important;
}

.othersNavs .cartes.active {
  background: #0078da !important;
}

.othersNavs.v2 .cartes {
  min-width: 200px;
  cursor: pointer;
}

.othersNavs.v2,
.metho .othersNavs {
  flex-wrap: nowrap;
  overflow-x: auto;
  position: sticky;
  top: 75px;
}

.processPaiement>div li>p:not(.info)>span:not(.mio) {
  display: block;
  margin: 10px;
  max-width: 700px;
}

.processPaiement h3+p {
  padding-top: 10px;
}

.waBtns {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  background: #4ecb5c;
  gap: 10px;
  color: #fff;
  box-shadow: 0 1px 10px #0004;
  margin-top: 10px;
  cursor: pointer;
}

.waBtns img {
  width: 20px;
}

.waBtns.v2 {
  margin: 0;
  margin-top: 10px;
}

.waBtns.v2 {
  background: var(--ssecondary);
}

.bst {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}

.othersNavs.sujets .cartes {
  cursor: pointer;
}

.processPaiement {
  display: flex;
  width: 100%;
  overflow: hidden;
  max-width: 1000px;
}

.processPaiement>div.active {
  margin-left: -100%;
}

.metho .processPaiement>div.active {
  margin-left: 0;
  display: none;
}

.processPaiement>div h2 {
  margin-bottom: 20px;
}

.processPaiement>div:not(.allComp) {
  min-width: 100%;
  padding: 30px 20px;
  border-radius: 20px;
  margin-top: 20px;
  background: var(--pprimary-1);
}

.processPaiement.vff .allComp.active {
  display: none;
}

.processPaiement.vff .allComp {
  width: 100%;
  padding-top: 0;
}

.othersNavs.v2 figure {
  padding: 0 20px 10px;
}

.boxContainers.v2 .price h2:not(.barre) {
  display: flex;
  align-items: end;
  gap: 10px;
}

h2 div {
  position: relative;
  margin-top: 20px;
}

h2.barre {
  text-decoration: line-through;
  font-size: 16px;
  opacity: .7;
  position: absolute;
  top: -15px;
}

.amountDuration h2 span {
  display: none;
}

.subscribeBtns {
  display: block;
  margin: 20px 0;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background: #1faf1f;
  font-weight: bold;
  box-shadow: 0 1px 20px #0002;
  cursor: pointer;
  border: solid 2px #1faf1f;
}

.pack:nth-child(1) .head span:not(.mio) {
  color: #222;
  background: #2221;
}

.pack:nth-child(2) .head span:not(.mio) {
  color: #0078da;
  background: #0078da11;
}

.pack:nth-child(3) .head span:not(.mio) {
  color: #da4100;
  background: #da410011;
}

.pack .details>span {
  opacity: .7;
  display: inline-block;
  margin-bottom: 10px;
}

.pack .details ul li span.gg {
  color: var(--pprimary);
}

.pack .details ul li span.rr {
  color: var(--ssecondary);
}

.pack .details ul li span.mio {
  font-size: 16px;
  font-weight: lighter;
  opacity: .7;
}

.pack .details ul li .sec {
  font-weight: bold;
}

.pack .details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}

.rubriquesTarifs {
  display: flex;
  align-items: center;
  background: var(--ssecondary-3);
  border-radius: 20px;
  gap: 10px;
  margin: 10px 0 50px;
  box-shadow: 0 1px 20px #0001;
  padding: 2px;
}

.games .audiosPlayers .timeRemaining {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 3px;
  width: 85px;
  justify-content: center;
}

.games .audiosPlayers .playStop {
  display: inline-block;
  padding: 3px;
  border-radius: 50%;
  cursor: pointer;
  border: solid 1px #fff;
}

.games .audiosPlayers .aud_progression .progressAudio {
  width: 0%;
  height: 100%;
  background: #fff;
}

.games .audiosPlayers .aud_progression {
  display: flex;
  align-items: center;
  height: 12px;
  background: #fff3;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.games .audiosPlayers {
  display: flex;
  margin-top: 10px;
  padding: 8px 10px;
  background: #111;
  border-radius: 10px;
  gap: 10px;
  color: #fff;
  align-items: center;
}

.rubriquesTarifs>div.active {
  background: var(--ssecondary);
  box-shadow: 0 1px 10px #0001;
  color: #fff;
}

.rubriquesTarifs>div {
  display: flex;
  align-items: center;
  padding: 7px 20px;
  border-radius: 20px;
  margin: 2px;
  cursor: pointer;
  gap: 10px;
}

.rubPackages {
  display: flex;
  overflow: hidden;
  align-items: start;
  width: 100%;
}

footer {
  background: linear-gradient(to bottom right, #ff4f4055, #ff4f4022), url('../img/deco.svg');
  border-radius: 30% 50% 0 0 / 50px 50px 0 0;
  margin-top: -250px;
}

footer h3 {
  margin-bottom: 20px;
  font-size: 25px;
}

.info {
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--secondary-1);
  color: #221;
  display: flex;
  align-items: start;
  gap: 10px;
}

.info span.mio {
  color: var(--ssecondary);
}

.prices .info {
  margin: -20px 0 50px;
  max-width: 650px;
}


footer>div>div img {
  width: 120px;
  margin: 0 auto;
}

footer>div>div li {
  border-bottom: 1px solid #111;
  width: max-content;
  padding: 1px 0;
  margin-bottom: 5px;
}

footer>div>div a {
  color: #333;
}

footer>div>div a img {
  width: 40px;
}

footer>div>div {
  width: 100%;
  max-width: 300px;
}

footer>div h2 {
  font-family: Po02;
  margin-top: 10px;
}

footer>div p {
  margin: 10px 0;
}

footer>div {
  padding: 250px 20px 50px;
  display: flex;
  align-items: start;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: #0001;
}

footer>p {
  padding: 10px 20px;
  text-align: center;
  background: var(--ssecondary);
  color: #fff;
}

.hide,
.hide_flex {
  display: none !important;
}

.flx a:last-child {
  color: #000;
  background: #fff;
  font-weight: lighter;
}

.boxCookie.active,
.informations.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

.boxCookie,
.informations {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 5%;
  background: #0002;
  display: flex;
  align-items: end;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.informations .head span.mio {
  font-size: 60px;
  font-weight: lighter;
  color: var(--ssecondary-5);
  display: inline-block;
}

.informations .head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.informations .head h2 {
  color: var(--ssecondary);
}

.informations {
  padding: 20px 5%;
  align-items: center;
  flex-direction: column;
}

.boxCookie>div,
.informations>div {
  box-shadow: 0 1px 20px #0002;
  padding: 30px 20px;
  border-radius: 10px;
  background: #fff;
  max-width: 700px;
}

.informations>div {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 20px 20px;
  overflow: hidden;
  max-height: max-content;
}

.informations .messageInfo {
  margin: 10px 0 5px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.accepterInfo:hover {
  background: var(--pprimary);
  color: #fff;
}

.accepterInfo {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--pprimary-2);
  color: var(--pprimary);
  cursor: pointer;
}

.boxCookie .part {
  display: flex;
  align-items: start;
  gap: 20px;
}

.boxCookie .part img {
  width: 100%;
  max-width: 70px;
  min-width: 50px;
}

.accepterCookie:hover {
  color: #fff;
  background: var(--ssecondary);
}

.accepterCookie {
  background: var(--ssecondary-2);
  color: var(--ssecondary);
  cursor: pointer;
  margin-top: 15px;
}

div.mq.active2 {
  background: #fff1;
  color: var(--pprimary);
}

div.mq.active {
  bottom: 40px;
}

div.mq {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--pprimary-5);
  /*font-weight: bold;
  */
  font-size: 18px;
  padding: 2px 10px 2px 1px;
  display: flex;
  box-shadow: 0 -1px 20px #0002;
  transition: all .3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  gap: 2px;
  color: #fff;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

div.mq marquee {
  padding: 7px 0;
}

div.mq>span {
  padding: 7px 20px;
  background: var(--pprimary);
  color: #fff;
  border-radius: 5px;
}

span.inf {
  display: inline-block;
  margin-right: 300px;
}

.boxDisc img {
  background: #fff;
  border-radius: 50%;
}

.boxDisc>img {
  cursor: pointer;
  width: 55px;
  box-shadow: 0 1px 15px #0005;
}

.boxDisc {
  position: fixed;
  bottom: 85px;
  right: 3%;
}

.boxDisc figcaption .head img {
  width: 40px;
  margin: 0 12px 0 7px;
  background: transparent;
  border-radius: 0;
}

.boxDisc figcaption .head span.mio {
  cursor: pointer;
  padding: 7px;
  border-radius: 50%;
  box-shadow: 0 1px 20px #0001;
}

.boxDisc figcaption .foot .btns img {
  width: 40px;
}

.boxDisc figcaption .foot .btns p span {
  display: block;
  opacity: .8;
  font-size: 12px;
}

.boxDisc figcaption .foot .btns {
  display: flex;
  align-items: center;
  background: #67d44922;
  width: 90%;
  gap: 20px;
  border-radius: 1px 10px 10px 1px;
  padding: 7px 10px;
  border-left: solid 3px #67d449;
  cursor: pointer;
}

.boxDisc figcaption .foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  overflow-y: auto;
  flex: 1;
}

.boxDisc figcaption .body {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

.boxDisc figcaption .head {
  padding: 8px 20px 8px 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 5px #0001;
}

.boxDisc .foot {
  position: relative;
  top: 20px;
  visibility: 0;
  opacity: 0;
  transition: all .7s ease;
}

.boxDisc.active .foot {
  top: 0;
  visibility: 1;
  opacity: 1;
  transition: all .7s ease .5s;
}

.boxDisc.active figcaption {
  display: flex;
  flex-direction: column;
  height: 800px;
  max-height: 500px;
  overflow: hidden;
}

.boxDisc figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border-radius: 20px;
  box-shadow: 0 1px 50px #0003;
  width: 310px;
  height: 0;
  max-height: max-content;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.loginOrSign.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

.loginOrSign {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0008;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.loginOrSign>div {
  width: 100%;
  max-width: 850px;
  background: #000 url('../img/lbg2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  box-shadow: 0 1px 20px #0003;
  height: 95%;
  overflow: hidden;
  display: flex;
  justify-content: left;
  background-position-x: 70px;
}

.loginOrSign .contains form>div p {
  text-align: center;
  margin-bottom: 25px;
}

.loginOrSign .contains form>div>span.sec:hover,
.loginOrSign .contains form span a.sec:hover {
  text-decoration: underline;
}

.loginOrSign .contains form>div>span.sec {
  cursor: pointer;
}

.loginOrSign .contains form>div img {
  width: 90px;
  display: block;
  margin: 0 auto 15px;
}

.loginOrSign .contains form input:focus {
  border-color: var(--primary);
}

.loginOrSign .contains form input,
.loginOrSign .contains form button[type=submit],
.sendGame2 {
  width: 100%;
  padding: 5px 15px;
  border-radius: 5px;
  background: var(--primary-1);
  color: var(--pprimary);
  font-family: Po02;
  font-size: 18px;
  outline: 0;
  border: solid 2px var(--primary-3);
  margin-bottom: 10px;
}

.sendGame2 {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  margin-top: 5px;
}

.loginOrSign .contains form button[type=submit]:hover,
.sendGame2:hover {
  background: var(--pprimary);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 1px 20px #0003;
}

.loginOrSign .contains form.active {
  margin-left: -100%;
}

.loginOrSign .contains form button[type=submit] {
  width: 100%;
  padding: 10px 20px;
  background: var(--pprimary-2);
  color: var(--pprimary);
  border: 0;
  margin-top: 20px;
}

.hr.hr2 hr {
  margin: 10px 0;
  background: #0002;
}

.loginOrSign .contains form label {
  display: block;
  margin-bottom: 3px;
}

.loginOrSign .contains form h2 span.mio {
  padding: 8px;
  box-shadow: 0 1px 20px #0002;
  border-radius: 50%;
  cursor: pointer;
}

.loginOrSign .contains form h2 {
  font-family: Po02;
  font-weight: lighter;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pprimary);
}

.loginOrSign .contains form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 30px 20px;
}

.loginOrSign .contains .fl input {
  border-right: none;
  border-radius: 5px 0 0 5px;
}

.loginOrSign .contains .fl span.mio {
  padding: 4px 10px;
  display: inline-block;
  background: var(--primary-1);
  border: solid 2px var(--primary-3);
  border-left: none;
  color: var(--primary);
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  margin-bottom: 10px;
}

.cancelResetPass {
  padding: 10px 20px;
  display: block;
  color: #fff;
  background: var(--ssecondary);
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 1px 20px #0001;
}

.loginOrSign .contains .fl {
  display: flex;
  align-items: stretch;
}

.loginOrSign .contains {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 350px;
  min-width: 300px;
  box-shadow: 1px 0 20px #0002;
  overflow: hidden;
  display: flex;
}

.loginOrSign .t_hide.active {
  height: 150px;
}

.loginOrSign .t_hide {
  height: 0;
  max-height: max-content;
  overflow: hidden;
}

.boutons {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.boutons>div.prev:hover {
  background: var(--ssecondary);
  color: #fff;
}

.boutons>div:hover {
  background: var(--pprimary);
  color: #fff;
  font-weight: bold;
}

.boutons>div.prev {
  background: var(--ssecondary-2);
  color: var(--ssecondary);
}

.boutons>div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--pprimary);
  background: var(--pprimary-2);
  cursor: pointer;
}

.loginOrSign.sign>div {
  justify-content: end;
  background-position-x: 0 !important;
  background: #000 url(../img/lbg4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.elementsFormChange {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.elementsFormChange>div {
  min-width: 100%;
  width: 100%;
}

.elementsFormChange>div.active {
  margin-left: -100%;
}

.iti {
  width: 100%;
  margin-bottom: 10px;
}

.notifChoice>div {
  box-shadow: 0 1px 50px #0001;
  border-radius: 20px;
  padding: 20px 20px 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: #fff;
  width: 100%;
  max-width: 450px;
  max-height: 100%;
  overflow-y: auto;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.notifChoice h2 {
  font-weight: bold;
  font-family: Po01;
  font-size: 22px;
}

.notifChoice h2 {
  color: var(--primary);
}

.notifChoice .messageNotif {
  margin: 20px 0;
  padding: 20px;
  border-radius: 30px;
  background: var(--primary-1);
  text-align: center;
}

.notifChoice .messageNotif {
  margin: 20px 0;
  padding: 0;
  text-align: unset;
  background: transparent;
}

.notifChoice .btns span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: 0 1px 20px #0001;
  margin-bottom: 3px;
  cursor: pointer;
}

.notifChoice .btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notifChoice .btns span:first-child:hover {
  background: var(--primary-2);
}

.notifChoice .btns span:first-child {
  background: var(--primary-1);
  color: var(--primary);
}

.notifChoice .btns span:last-child:hover {
  background: #dc143c22;
}

.notifChoice .btns span:last-child {
  background: #dc143c11;
  color: crimson;
}

.notifChoice .btns span {
  display: inline-flex;
  border-radius: 15px;
}

.notifChoice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 7%;
  display: flex;
  align-items: end;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  z-index: 2;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.notifChoice {
  justify-content: unset;
}

.notifChoice.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

.boxContainers .rubs a.active {
  background: var(--ssecondary);
  color: #fff;
}

.boxContainers .rubs a {
  padding: 10px 20px;
  border-radius: 20px;
  color: var(--pprimary);
}

.boxContainers .rubs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  padding: 3px;
  box-shadow: -1px 1px 20px #0002;
  margin-bottom: 30px;
}

h3.v3 {
  margin-bottom: 15px;
  padding-top: 50px;
}

.boxContainers {
  padding: 70px 5%;
}

.sunContains>div.active {
  display: none;
}

.sunContains>div {
  min-width: 100%;
}

.sunContains .data h3,
.sunContains .data .h4 {
  font-family: Po02;
  color: var(--pprimary);
}

.sunContains .data {
  margin-top: 20px;
}

.sunContains .plan img {
  width: 100%;
}

.sunContains .plan>div:not(.dataa) {
  max-width: 250px;
  min-width: 150px;
  width: 100%;
}

.sunContains .plan p {
  padding-top: 10px;
}

.sunContains .plan {
  gap: 20px;
  padding: 20px;
  background: var(--primary-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px auto 0;
  color: var(--pprimary);
  max-width: 1100px;
}

.plan .btnss {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btnss.v2 {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.othersNavs {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 0 5px 30px;
}

.pri2 {
  color: var(--primary);
}

.sec2 {
  color: var(--secondary);
}

.arrangements {
  position: relative;
  padding: 80px 20px 5px;
  margin-top: -80px;
  border-bottom: solid 7px var(--primary-2);
  pointer-events: none;
}

.sessionName {
  font-weight: lighter;
  margin: 20px 0 5px;
}

.startGame {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.startGame:hover {
  background: var(--pprimary);
  color: #fff;
}

.startGame {
  padding: 10px 20px;
  background: #fafafa;
  box-shadow: 0 1px 10px #0001;
  border-radius: 5px;
  margin-top: 10px;
  background: #fff;
  color: var(--pprimary);
  font-weight: bold;
  cursor: pointer;
}

.startGame.v2 {
  background: var(--pprimary);
  color: #fff;
  border-radius: 10px;
}

.othersNavs.sujets .cartes>p {
  display: flex;
  align-items: center;
  gap: 5px;
}

.othersNavs .cartes>p {
  padding: 0 20px 30px;
}

.othersNavs .cartes:last-child:not(#carte)>h4,
.othersNavs.sujets #carte.cartes.open>h4 {
  color: var(--pprimary);
}

.othersNavs .cartes:nth-child(5):not(#carte)>h4 {
  color: #eb546d;
}

.othersNavs .cartes:nth-child(4):not(#carte)>h4 {
  color: var(--pprimary);
}

.othersNavs .cartes:nth-child(3):not(#carte)>h4 {
  color: var(--ssecondary);
}

.othersNavs .cartes:nth-child(2):not(#carte)>h4 {
  color: #56058d;
}

.othersNavs .cartes:nth-child(1):not(#carte)>h4 {
  color: #0078da;
}

.othersNavs .cartes>h4 {
  padding: 0 20px;
  margin: 20px 0 10px;
  color: #555;
}

.info.v2.p {
  margin-top: 30px;
  text-align: left;
  margin-bottom: 0;
}

.allComp {
  padding-top: 70px;
}

.allComp .processPaiement .combi div.info h4 {
  margin: 15px 0 5px;
}

.allComp .processPaiement .combi div.info h3 {
  color: unset;
  font-family: Po01;
}

.allComp h2.subjectsTitle span.mio {
  padding: 6px 8px;
  background: var(--ssecondary);
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.allComp h2.subjectsTitle div a {
  font-family: Po02;
  font-size: 16px;
  font-weight: lighter;
  margin-top: 0;
}

.allComp h2.subjectsTitle div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.allComp h2.subjectsTitle {
  width: 100%;
  max-width: 800px;
  padding: 10px 20px;
  background: var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  font-family: Po02;
  font-weight: lighter;
}

.processPaiement.vff .allComp h2.subjectsTitle {
  /* align-items: start; */
  flex-wrap: nowrap;
  font-size: 18px;
  cursor: pointer;
}

.processPaiement.vff .allComp .processPaiement {
  margin-bottom: 20px;
}

.allComp .processPaiement>div {
  max-width: 100%;
}

.allComp .processPaiement div.info.v2 {
  position: relative;
  margin: 10px 0 20px;
  background: #fffa;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
}

.combi.vff>h4 {
  font-weight: lighter;
  font-size: 19px;
}

.corrige {
  color: var(--secondary);
  display: inline-block;
  margin: 15px 0 5px;
}

.allComp .processPaiement.active,
.processPaiement.vff .allComp .processPaiement.active {
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transition: all .3s ease;
}

.allComp .processPaiement {
  display: block;
  max-width: 100%;
  height: 6000px;
  max-height: max-content;
  transition: all .8s ease;
}

.othersNavs.sujets .cartes>h4 {
  margin: 10px 0 0;
}

.othersNavs .cartes:last-child:not(#carte)>span.mio,
.othersNavs.sujets #carte.cartes.open>span.mio {
  background: var(--pprimary);
}

.othersNavs .cartes:nth-child(5):not(#carte)>span.mio {
  background: #eb546d;
}

.othersNavs .cartes:nth-child(4):not(#carte)>span.mio {
  background: var(--pprimary);
}

.othersNavs .cartes:nth-child(3):not(#carte)>span.mio {
  background: var(--ssecondary);
}

.othersNavs .cartes:nth-child(2):not(#carte)>span.mio {
  background: #56058d;
}

.othersNavs .cartes:nth-child(1):not(#carte)>span.mio {
  background: #0078da;
}

.othersNavs .cartes>span.mio {
  background: #000;
  color: #fff;
  border-radius: 20px 10px 50px 20px;
  padding: 10px 30px 10px 20px;
}

.othersNavs .cartes:last-child a:hover {
  color: #fff;
  background: var(--pprimary);
}

.othersNavs .cartes:nth-child(5) a:hover {
  color: #fff;
  background: #eb546d;
}

.othersNavs .cartes:nth-child(4) a:hover {
  color: #fff;
  background: var(--pprimary);
}

.othersNavs .cartes:nth-child(3) a:hover {
  color: #fff;
  background: var(--ssecondary);
}

.othersNavs .cartes:nth-child(2) a:hover {
  background: #56058d;
  color: #fff;
}

.othersNavs .cartes:nth-child(1) a:hover {
  color: #fff;
  background: #0078da;
}

.othersNavs .cartes a:hover {
  background: #000;
  color: #fff;
}

.othersNavs .cartes:last-child a {
  color: var(--pprimary);
}

.othersNavs .cartes:nth-child(5) a {
  color: #eb546d;
}

.othersNavs .cartes:nth-child(4) a {
  color: var(--pprimary);
}

.othersNavs .cartes:nth-child(3) a {
  color: var(--ssecondary);
}

.othersNavs .cartes:nth-child(2) a {
  color: #56058d;
}

.othersNavs .cartes:nth-child(1) a {
  color: #0078da;
}

.othersNavs .cartes a {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  background: #fff;
  color: #555;
  box-shadow: 1px 1px 20px #0001;
}

.othersNavs.sujets {
  justify-content: center;
}

.othersNavs.sujets.vff {
  justify-content: unset;
}

.othersNavs .cartes:hover {
  box-shadow: 0 1px 10px #0001;
}

.othersNavs .cartes:last-child:not(#carte),
.othersNavs.sujets #carte.cartes.open {
  background: var(--pprimary-1);
}

.othersNavs .cartes:nth-child(5):not(#carte) {
  background: #eb546d11;
}

.othersNavs .cartes:nth-child(4):not(#carte) {
  background: var(--pprimary-1);
}

.othersNavs .cartes:nth-child(3):not(#carte) {
  background: var(--ssecondary-1);
}

.othersNavs .cartes:nth-child(2):not(#carte) {
  background: #56058d11;
}

.othersNavs .cartes:nth-child(1):not(#carte) {
  background: #0078da11;
}

.othersNavs .cartes {
  border-radius: 20px;
  background: #00000011;
  width: 100%;
  max-width: 300px;
}

.plan .btnss a:hover:first-child {
  background: var(--ssecondary);
  color: #fff;
}

.plan .btnss a:first-child {
  background: var(--ssecondary);
  color: white;
  border-radius: 20px;
  box-shadow: 0 1px 20px #0002;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.plan .btnss a:hover {
  background: #fff;
  color: var(--pprimary);
}

.plan .btnss a {
  cursor: pointer;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  background: #fffa;
  text-align: center;
}

.sunContains {
  display: flex;
  align-items: start;
  flex-wrap: nowrap;
  overflow: hidden;
}

.boxContainers.vx .sunContains {
  overflow: unset;
  align-items: normal;
}

.ending {
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 1px 1px 20px #0001;
  margin: 20px 10px;
  max-width: 600px;
}

.flexy {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

span sup {
  font-weight: bold;
  display: inline-block;
  color: rgb(19, 225, 98);
  font-size: 12px;
  transform: rotateZ(-7deg);
  -webkit-transform: rotateZ(-7deg);
  -moz-transform: rotateZ(-7deg);
  -ms-transform: rotateZ(-7deg);
  -o-transform: rotateZ(-7deg);
}

.ending a {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  background: var(--secondary-2);
  color: var(--ssecondary);
  padding: 10px 20px;
  border-radius: 20px;
}

h3.v2 {
  padding-top: 50px;
}

.dataSettings>div:last-child .itm.active {
  margin-left: -100%;
}

.dataSettings>div:last-child .itm>span.mio {
  padding: 8px;
  cursor: pointer;
  background: var(--pprimary-1);
  color: var(--pprimary);
  display: inline-block;
  border-radius: 50%;
  margin-left: 20px;
  display: none;
}

.dataSettings>div:last-child .itm {
  min-width: 100%;
}

.dataSettings>div:last-child {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  padding: 0;
}

.dataSettings>div:first-child h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.dataSettings>div:first-child {
  max-width: 350px;
}

.dataSettings>div {
  padding: 30px 20px;
  width: 100%;
}

.dataSettings .cli b {
  display: block;
  margin-bottom: 10px;
}

.dataSettings .cli:last-child h3 {
  color: var(--ssecondary);
}

.dataSettings .cli:last-child {
  background: var(--ssecondary-1);
  color: unset;
}

.dataSettings .cli.active {
  background: var(--primary-2);
}

.dataSettings .cli {
  padding: 10px 20px;
  border-radius: 10px;
  background: #0001;
  margin-bottom: 10px;
  color: var(--pprimary);
  cursor: pointer;
}

.dataSettings {
  position: relative;
  padding: 5px;
  background: var(--pprimary-1);
  margin: 20px 0;
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  gap: 20px;
}

.subEnd {
  padding: 20px;
  background: var(--pprimary-1);
  border-radius: 20px;
  margin-top: 10px;
  max-width: 800px;
}

.subEnd li ul {
  margin: 0 0 10px;
}

.subEnd li ul li>span {
  display: inline-flex;
  align-items: center;
}

.subEnd>p+ul>li>ul {
  width: 100%;
  overflow-x: auto;
}

.subEnd li ul li>span:nth-child(1) {
  width: 25px;
}

.subEnd li ul li>span:nth-child(4) {
  width: 40px;
}

.subEnd li ul li>span:nth-child(2) {
  min-width: 270px;
  width: 270px;
}

.subEnd li ul li>span:nth-child(3) {
  width: 75px;
}

.subEnd li ul li span span {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  margin-left: 5px;
}

/* .subEnd li ul {
  width: 100%;
  max-width: 600px;
} */

.processPaiement.vf>div {
  margin: 0;
  padding-top: 20px;
}

.processPaiement.vf .taches p,
.processPaiement.vf h3.sec+p {
  font-size: 22px;
  padding-top: 5px;
  line-height: 28px;
}

.processPaiement.vf .contss {
  border: var(--ssecondary) 1px dotted;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 10px 0 20px;
}

.processPaiement.vf {
  position: relative;
  margin-top: 20px;
}

.processPaiement.vf::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/logo.png');
  background-size: 120px;
  pointer-events: none;
  opacity: .05;
  z-index: -1;
}

.processPaiement.vf h4 {
  margin: 20px 0 5px !important;
}

.processPaiement.vff {
  max-width: 900px !important;
  width: 100%;
  margin: 20px auto;
  background: #fff;
}

.subEnd li ul li {
  padding: 10px 25px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 3px 0;
  text-align: center;
  width: fit-content;
  max-width: 600px;
}

.boxContainers form {
  padding: 30px 20px;

}

.boxContainers label {
  font-weight: bold;
  color: var(--pprimary);
  display: block;
  margin: 10px 0 5px;
}

.boxContainers .fl span.mio,
.notifChoice.v2 .fl span.mio {
  margin-bottom: 10px;
}

.boxContainers .fl,
.notifChoice.v2 .fl {
  display: flex;
  align-items: center;
}

.boxContainers input,
.boxContainers textarea,
.notifChoice.v2 input,
.boxContainers button[type=submit],
.boxContainers .fl span.mio,
.notifChoice.v2 .fl span.mio,
.boxContainers select,
#selTaches {
  width: 100%;
  outline: 0;
  width: 100%;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 17px;
  color: #444;
  background: var(--primary-1);
  border: 3px solid var(--primary-3);
  max-width: 500px;
  margin-bottom: 10px;
  font-family: Po02;
}

#selTaches {
  width: auto;
  margin: 5px 0 0;
}

.boxContainers .b-box .bbox {
  width: 100%;
  max-width: 300px;
}

.boxContainers .bbox input {
  max-width: 100%;
}

.boxContainers .bbox {
  width: 100%;
  max-width: 800px;
}

.boxContainers .b-box {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.boxContainers textarea {
  max-width: 100%;
  min-height: 200px;
  resize: none;
}

.boxContainers .fl span.mio,
.notifChoice.v2 .fl span.mio {
  width: auto;
  font-family: MIO;
  font-size: 20px;
}

.boxContainers button[type=submit],
.notifChoice.v2 button[type=submit] {
  border: 0;
  background: var(--ssecondary);
  color: #fff;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.dataSettings>div:last-child h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dataSettings>div:last-child h2 span.mio {
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  background: var(--pprimary-1);
  display: none;
}

.detailsPlan b {
  display: inline-block;
  margin-bottom: 10px;
}

.detailsPlan ul li span {
  text-transform: capitalize;
  font-weight: bold;
}

.detailsPlan ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 5px 0;
}

.detailsPlan.active {
  height: 400px;
  padding: 20px;
}

.detailsPlan {
  background: #fff5;
  margin-top: 10px;
  border-radius: 20px;
  max-width: 400px;
  overflow: hidden;
  height: 0;
  max-height: max-content;
}

.seeDetailsPlan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 20px #0002;
}

.tarifsBox #prices h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tarifsBox #prices h2 span.mio {
  padding: 8px;
  cursor: pointer;
  background: var(--secondary-1);
  border-radius: 50%;
}

.tarifsBox #prices {
  border-radius: 20px;
  background: #fff;
  width: 100%;
  padding: 30px 20px;
}

.tarifsBox.active {
  visibility: visible;
  opacity: 1;
  transition: all .5s ease;
}

.tarifsBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0005;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 50px 3%;
  z-index: 2;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.fnx {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.notifss.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

.notifss {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFC8;
  z-index: 2;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.notifss>h2 span.mio {
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--ssecondary-1);
}

.notifss>h2 {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  color: var(--ssecondary);
  padding: 0 10px;
}



.notificationsBox {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  height: 100%;
}

.contents>div:first-child {
  padding: 10px;
}

.contents>div {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 250px;
  overflow-y: auto;
  max-width: 300px;
  transition: all .3s ease;
}

.contents .readable {
  border-radius: 20px;
  background: #fff5;
  padding: 30px 20px;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  min-width: 300px;
}

.readable .contentNotif p {
  padding: 5px 15px;
  border-radius: 20px;
  background: #fff;
  color: var(--secondary);
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 1px 1px 10px #0001;
}

.readable .contentNotif {
  padding: 20px;
  border-radius: 20px;
  background: #00000005;
  margin-top: 30px;
  color: var(--main);
}

.readable h2 .mio {
  box-shadow: 1px 1px 5px #0001;
  background: var(--secondary-1);
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  color: var(--secondary);
}

.readable h2 {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--secondary);
}

.contents .notifs.r {
  background-color: #fff2;
}

.contents .notifs {
  position: relative;
  padding: 8px 15px;
  background: #fff;
  box-shadow: 0 1px 10px #0001;
  border-radius: 10px;
  margin-bottom: 5px;
  margin-right: 10px;
  cursor: pointer;
}

.contents .notifs h4 {
  color: var(--secondary);
}

.contents .notifs.r h4 {
  color: #333;
}

.contents .notifs.r p {
  font-weight: lighter;
}

.contents .notifs p {
  height: 38px;
  max-width: 100%;
  text-overflow: ellipsis;
  margin: 3px 0 6px;
  font-weight: bold;
  overflow: hidden;
}

.btnDel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ssecondary);
  background: var(--ssecondary-1);
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: 20px;
  box-shadow: 1px 1px 2px #0001;
  cursor: pointer;
  max-width: max-content;
}

.dateNot {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 5px;
}

.dateNot.hist {
  justify-content: unset;
  gap: 4px;
}

.games,
.resultGames2,
.resultGames3,
.games3,
.games2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: normal;
  scale: 0;
}

.resultGames2 .taches.v2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.taches.v2 a {
  margin: 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.games3 {
  justify-content: center;
}

.resultGames2.active,
.games.active,
.games3.active,
.games2.active {
  scale: 1;
  transition: all .3s;
}

.resultGames2 {
  display: flex;
  justify-content: center;
  background: #FEFEF6;
  overflow: hidden;
}

.games.mask2 {
  position: relative;
}

.games.mask2 .qn>div {
  width: 100% !important;
  max-width: 100% !important;
}

.notifChoice.v3 h2 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.v3 h2 span.mio {
  padding: 7px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 10px #0001;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.games.mask2 .qn {
  /* display: block; */
  flex-wrap: wrap;
}

.games .load img,
.games3 .load img,
.games2 .load img {
  width: 70px;
  margin-bottom: 10px;
}

.games .load.active,
.games2 .load.active,
.games3 .load.active,
.games .resultat.active,
.games3 .resultat.active,
.games2 .resultat.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

.games .load,
.games2 .load,
.games3 .load,
.games .resultat {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.games .resultat .longAppreciation {
  display: block;
  font-size: 16px;
  margin-top: 5px;
  line-height: 18px !important;
}

.games .correctOrIncorrect.f {
  background: #ff000011;
  color: red;
}

.games .correctOrIncorrect.c {
  background: #1faf1f11;
  color: #1faf1f;
}

.games .correctOrIncorrect.active {
  display: flex;
}

.games .correctOrIncorrect {
  padding: 7px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 10px #0001;
  margin: 20px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  display: none;
}

.games .resultat figure a img {
  display: block;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin: 10px auto;
  box-shadow: 0 1px 5px #0001;
}

.games .resultat>div {
  padding: 50px 3% 30px;
  overflow-y: auto;
}

.games .resultat .plan.v3 {
  position: relative;
}

.games .resultat .plan.v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-2) url('../img/logo.png');
  background-repeat: repeat;
  background-size: 200px;
  opacity: .05;
  pointer-events: none;
}


.games .resultat {
  text-align: unset;
  align-items: unset;
  overflow: hidden;
}

.games>div.chooseQuest span.n.active {
  background: var(--ssecondary-2);
  border: solid 1px var(--ssecondary-5);
}

.games>div.chooseQuest span.n.ok {
  background: var(--ssecondary);
}

.games>div.chooseQuest span.n {
  display: inline-flex;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  border: solid 2px var(--pprimary-2);
  width: 40px;
  height: 40px;
  background: #fff3;
  min-height: 40px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.boutons.v2 .prev.active {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.games>div.chooseQuest.active {
  width: 0;
  transition: all .3s ease;
}

.games>div.chooseQuest {
  position: relative;
  color: #fff;
  width: 100%;
  max-width: 65px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 0 10px #0001;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  background: #000;
  transition: all .3s ease;
}

.openclosequest {
  position: fixed;
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  color: #000;
  top: 0;
  left: 0;
  box-shadow: 0 1px 20px #0002;
  display: flex;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}

.chooseQuest b {
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.games .playing .qn>div:first-child img {
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 1px 20px #0002; */
}

.games .playing .qn>div:first-child {
  max-width: 600px;
  min-width: 500px;
  margin-bottom: 30px;
}

.games .playing .qn>div {
  width: 100%;
}

.games .playing .qn.active {
  display: none;
}

.games .playing .qn {
  display: flex;
  gap: 50px;
  margin-top: 30px;
  min-width: 100%;
}

.games .playing .indQuest .p {
  font-size: 16px;
  font-family: Po02;
}

.games .playing .qn h3 {
  text-align: center;
  font-weight: lighter;
  font-size: 25px;
  font-family: Po02;
  margin: 10px 0;
}

.games .box-choices label.active,
.games .box-choices label.active:hover {
  background: var(--primary-3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--primary);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.games .box-choices label.vrai.active,
.games .box-choices label.vrai:hover {
  font-weight: bold;
}

.games .box-choices label.vrai,
.games .box-choices label.vrai:hover {
  background: #0704;
  color: #070;
  border-color: #0707;
}

.games .box-choices label.faux,
.games .box-choices label.faux.active,
.games .box-choices label.faux.active:hover,
.games .box-choices label.faux:hover {
  background: #f002;
  border-color: #f004;
  color: crimson;
}

.games .box-choices label:hover {
  background: var(--primary-2);
}

.games3 .progressBar,
.games .progressBar {
  border-radius: 10px;
  height: 10px;
  margin-top: 5px;
  width: 100%;
  background: var(--pprimary-1);
  overflow: hidden;
}

.progressBar .barProgression {
  width: 100%;
  background: var(--ssecondary);
  height: 100%;
  border-radius: 10px;
}

.games3 .progressBar .barProgression {
  width: 100%;
  background: var(--ssecondary);
  height: 100%;
  border-radius: 10px;
}

.games3 .timing .text b,
.games .timing .text b {
  font-family: Po01;
}

.games3 .timing .text,
.games .timing .text {
  font-weight: bold;
}

.games3 .timing.active,
.games .timing.active {
  width: 100%;
  left: 0;
}

.games3 .timing,
.games .timing {
  position: fixed;
  bottom: 0;
  width: calc(100% - 65px);
  height: 60px;
  background: #fff;
  left: 67px;
  box-shadow: 0 -1px 10px #0002;
  border-radius: 5px 5px 0 0;
  padding: 10px 20px;
}

.games3 .timing {
  position: sticky;
  bottom: 0;
}

.games .box-choices label {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: var(--primary-1);
  color: var(--pprimary);
  border: solid 3px var(--primary-2);
  cursor: pointer;
}

.box-choices div.info h4 {
  margin: 20px 0 7px;
}

div.info {
  position: relative;
}

div.info::before,
div.info.v2::before,
div.info.v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: url('../img/logo.png');
  background-size: 120px;
  opacity: .05;
}

div.info.v3::before {
  z-index: 0;
  opacity: .05;
}

.allComp .info.v2::before {
  opacity: .1;
}

.allComp .info:not(.v2) {
  margin-top: 10px;
}

.games .playing .indQuest {
  display: flex;
  align-items: end;
  margin-bottom: -10px;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
  font-family: Po01;
}

.games .playing {
  position: relative;
  padding: 30px 3%;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.allquestions {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.games3 .allquestions,
.games2 .allquestions {
  flex: 1;
  overflow: hidden;
}

.games2 .allquestions,
.games3 .allquestions,
.games3 h2,
.games2 h2 {
  padding: 20px;
}

.allquestions .qn {
  display: flex;
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.games3 .allquestions .qn>div>div:not(.footer),
.games2 .allquestions .qn>div>div:not(.footer) {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.qn .info.v3 {
  max-height: 300px;
  overflow-y: auto;
}

.qn .info.v3 h2 {
  padding: 0 !important;
  margin-bottom: 15px;
}

.games3 .qn .footer .wordsCountsContaners {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.games3 .syntheses {
  display: none;
}

.allquestions .qn .footer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: nowrap !important;
  justify-content: space-between;
  align-items: end;
}

.allquestions .qn>div.active {
  margin-left: -100%;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.qn .footer>div {
  margin: 0;
  display: block;
}

.qn .footer .wordsCounts {
  margin: 0;
  display: inline;
}

.games3 .allquestions .qn>div,
.games2 .allquestions .qn>div {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex: 1;
  min-width: 100%;
  flex-direction: column;
}

.games3 h3,
.games3 h2,
.games2 h3,
.games2 h2 {
  padding-bottom: 0px;
}

.wordsCounts {
  display: flex;
  align-items: center;
}

.allquestions textarea,
.allquestions .textareaHidden {
  display: block;
  width: 100%;
  min-height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
  font-family: Po02;
  resize: none;
  border: none;
  outline: 0;
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-1);
  font-size: 18px;
}

.games3 .allquestions textarea,
.games2 .allquestions textarea {
  display: flex;
  flex: 1;
  margin-bottom: 10px;
  min-height: 0;
}

.boxContainers.metho .othersNavs .cartes {
  width: auto;
  cursor: pointer;
}

.boxContainers.metho .othersNavs .cartes>h4 {
  margin: 10px 0;
  text-align: center;
  white-space: nowrap;
}

.boxContainers.metho .processPaiement ul li:nth-child(1) {
  margin-bottom: 5px;
  font-weight: bold;
}

.boxContainers.metho .processPaiement ul li:not(:nth-child(1)) {
  padding: 3px 0;
}

.boxContainers.metho .processPaiement ul {
  background-color: #fff5;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0 1px 20px #0001;
  color: var(--pprimary);
}

.boxContainers.metho .processPaiement>div>div>p:not(.info) {
  padding: 8px 20px;
  border-radius: 10px;
  background: var(--pprimary-1);
  color: var(--pprimary);
  margin: 10px 0 20px;
}

.boxContainers.metho .processPaiement {
  max-width: 100%;
}

.metho div img.cri {
  display: block;
  width: 100%;
  max-width: 750px;
  border-radius: 5px;
  box-shadow: 0 1px 10px #0001;
  margin-bottom: 20px;
}

.indication .shareLink img {
  width: 35px;
  margin-top: 8px;
}

.center {
  max-width: 900px;
  margin: 0 auto;
}

.center ul {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 1px 10px #0001;
}

#othersDesignCards.cartes span.mio {
  padding: 3px 10px;
  border-radius: 10px;
  background: #fffa !important;
  color: var(--ssecondary) !important;
}

#othersDesignCards.cartes h4 {
  padding: 0;
  margin: 0;
  color: var(--pprimary) !important;
  font-weight: lighter;
}

#othersDesignCards.cartes {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  padding: 8px 20px;
  background: var(--pprimary-1) !important;
  color: var(--ssecondary) !important;
  box-shadow: 0 1px 2px #0001;
}

.subjectsSubTitle {
  padding: 10px 20px;
  border-radius: 10px;
  margin: 5px 0 10px;
  /* max-width: 400px; */
  font-weight: lighter;
  display: flex;
  align-items: center;
  background: var(--primary-1);
  justify-content: space-between;
}

.combi.vff.v2 {
  margin: 0 !important;
  padding: 0;
  height: 0;
  transition: all .3s;
}

.combi.vff {
  margin: 10px 0 20px !important;
  height: 9000px;
  max-height: max-content;
  transition: all .3s;
  overflow: hidden;
}

/* .allComp.vff {
  max-width: 1000px;
  margin: 0 auto;
} */

.log-maintenace {
  width: 100px;
  margin-bottom: 15px;
}

.countdown figure>figcaption {
  background: #fff;
  color: var(--ssecondary);
  font-family: Po02;
  padding: 3px 2px;
  text-transform: uppercase;
}

.countdown figure>div {
  font-size: 28px;
  padding: 5px;
  background: #0003;
}

.countdown figure {
  background: var(--ssecondary);
  border-radius: 10px;
  box-shadow: 0 1px 10px #0002;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-family: Po01;
  font-weight: bold;
  width: 60px;
}

#player {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#player #toggle {
  display: inline-flex;
  outline: none;
  gap: 10px;
  align-items: center;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  font-family: Po02;
  font-size: 16px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#player canvas {
  width: 100%;
  height: 100px;
}

.readAgain {
  display: inline-flex;
  position: absolute;
  top: -10%;
  left: 20px;
  transform: translateY(-50%);
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  align-items: center;
  gap: 10px;
  color: #F71;
  box-shadow: 0 1px 3px 1px #0001;
  background: #fff;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: max-content;
}

#speech-canvas {
  width: 300px !important;
  height: 150px !important;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  margin-top: 10px;
  scale: 0;
  pointer-events: none;
  max-width: 300px;
  /* Caché par défaut, affiché pendant la synthèse vocale */
}

#speech-canvas.active {
  scale: 1;
  transition: all .3;
  -webkit-transition: all .3;
  -moz-transition: all .3;
  -ms-transition: all .3;
  -o-transition: all .3;
}

.games3,
.games2 {
  gap: 0;
  background: #FEFEF6;
}

.games3 .sup,
.games2 .sup {
  width: 450px;
  min-width: 260px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.games3 .sup ul li,
.games2 .sup ul li {
  display: block;
}

.games3 .sup ul li.startGame:not(.v2):hover,
.games2 .sup ul li.startGame:not(.v2):hover {
  background: var(--pprimary-2) !important;
  color: var(--pprimary);
}

.games3 .playing,
.resultGames2>div,
.games2 .playing,
.resultGames2>div {
  width: 100%;
  margin: 20px 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #fff;
  box-shadow: 1px 1px 10px #00000008;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resultGames2>div {
  background: #fff;
  max-width: 1000px;
  box-shadow: 1px 1px 20px #0001;
  margin: 0;
  border-radius: 0;
  padding: 30px 20px;
  overflow-y: auto;
}

.games3 .playing .head,
.games2 .playing .head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 5px #0001;
  padding: 10px 20px;
  display: none;
}

.games3 .playing .head {
  display: flex;
}

.games3 .sup {
  display: none;
}

.games3 .playing {
  max-width: 1000px;
}

.resultGames2 .notes>div>span {
  font-family: Po01;
}

.resultGames2 .notes>div,
.resultGames2 .encouragement {
  background: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  box-shadow: 0 1px 20px #0001;
}

.resultGames2 .encouragement {
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: lighter;
  box-shadow: 0 1px 20px #0001;
  border: solid 1px var(--secondary-3);
  margin: 0 0 20px;
}

.resultGames2 .notes .note {
  font-size: 30px;
  font-family: Po01;
  font-weight: bold;
  color: var(--ssecondary);
}

.textAppreciate {
  padding: 10px 0;
  border-bottom: solid var(--ssecondary) 1px;
  margin: 10px 0 20px;
  font-size: 18px;
  font-weight: bold;
}

.cecrl.note {
  display: block;
  text-align: center;
}

.resultGames2 .notes {
  display: flex;
  gap: 10px;
}

.resultGames2 .works .taches {
  border: solid 1px #0001;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin: 5px 0;
}

.listen_ia {
  display: flex;
  align-items: center;
  gap: 20px;
}

.answers_ia.none {
  display: none;
}

.taches audio {
  width: 100%;
}

.resultGames2 .works {
  padding: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: var(--primary-1);
}

.tache_ia h3+div,
.tache_ia h3+ul {
  border-left: 5px solid var(--primary);
  border-radius: 0 20px 20px 0;
  padding: 10px 20px;
  margin: 10px 0 20px;
  background: var(--primary-1);
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  -ms-border-radius: 0 20px 20px 0;
  -o-border-radius: 0 20px 20px 0;
  box-shadow: 0 1px 20px #fff1;
}

/* .tache_ia > h3 + ul, .tache_ia > h3 + ul {
  margin: 5px 0 20px;
} */

.tache_ia h3+ul li {
  padding: 2px 0;
}

.tache_ia h3 {
  font-family: Po02;
  font-size: 25px;
  font-weight: lighter;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.tache_ia {
  margin-top: 50px;
}

.noTime2 {
  opacity: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.games3 .noTime2 {
  opacity: 1;
}

.circular {
  position: relative;
  width: 110px;
  height: 110px;
  background: conic-gradient(var(--secondary) 360deg, var(--secondary-1) 0deg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--pprimary);
  box-shadow: 0 1px 2px #0001;
  margin: 15px 0;
}

.value.v2 {
  font-family: Po01;
  font-weight: bold;
  color: var(--secondary);
  display: block;
  text-align: center;
}

.lighter {
  font-family: Po02 !important;
  font-weight: lighter !important;
}

.circular span {
  position: absolute;
  display: block;
  width: 90px;
  height: 90px;
  background: #fff;
  color: var(--secondary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  font-family: Po01;
  font-weight: bold;
}

.caracters {
  background: #fff;
  box-shadow: 1px 1px 10px #0001;
  padding: 10px;
  border-radius: 10px;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  flex-wrap: wrap;
  width: 225px;
}

.caracters .letter:hover {
  background: #0001;
}

.caracters .letter {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 5px;
  border: solid 1px #0003;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.tsss {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 10px;
}

.tss {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 5px 10px;
  box-shadow: 1px 1px 5px #0001;
  border-radius: 10px;
  background: #fff;
  opacity: .3;
  font-weight: bold;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.tss.active {
  opacity: 1;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.countdown {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

#mainte main {
  position: relative;
}

#mainte main::before {
  content: '';
  position: absolute;
  top: 75%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
  opacity: .03;
  background: url('/assets/img/logo.png');
  background-size: 100%;
  z-index: -1;
}

#maintenance.boxContainers {
  padding: 20px 5%;
}

.loaddingGeneral>div img {
  width: 60px;
}

.loaddingGeneral>div {
  padding: 12px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 20px #0002;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 400px;
  width: 100%;
}

.loaddingGeneral.active,
.viewPDF.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s;
}

.loaddingGeneral,
.viewPDF {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 5%;
  background: #fff5;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2;
  display: flex;
  align-items: end;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.viewPDF {
  padding: 0;
  align-items: unset;
  flex-direction: column;
}

.viewPDF #pdf-container #pdf-canvas,
.viewPDF #pdf-container #pdf-frame {
  width: 100%;
  height: auto;
}

.viewPDF span.mio {
  position: fixed;
  bottom: 20px;
  right: 30px;
  padding: 15px;
  background: var(--ssecondary);
  color: #f0f0f0;
  border-radius: 50%;
  box-shadow: 0 1px 5px #0003;
  cursor: pointer;
  z-index: 1;
}

.viewPDF #pdf-container {
  display: flex;
  flex: 1;
  justify-content: center;
  text-align: center;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 1px 20px #0002;
}

@media screen and (max-width: 1420px) {
  header {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 1335px) {
  .tHide {
    display: none !important;
  }
}

@media screen and (max-width: 1185px) {
  .hide {
    display: block !important;
  }

  .hide_flex {
    display: flex !important;
  }

  .tHide {
    display: flex !important;
  }

  header {
    padding: 10px 5%;
  }

  .menus {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    max-width: 330px;
    background: #fff;
    box-shadow: 1px 0 20px #0003;
    padding: 20px;
    overflow-y: auto;
    z-index: 1;
  }

  .menus.active {
    left: 0;
  }

  .menus .othersMenu {
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  header .menus,
  header .menus>ul {
    display: block;
  }

  .menus>a img {
    width: 90px;
  }

  .menus .header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .menus .header span.mio {
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: auto;
  }

  .menus .header span {
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 1px 20px #0002;
    width: 100px;
    text-align: left;
  }

  .menus>ul>li ul {
    position: unset;
  }

  .menus>ul {
    margin: 20px 0;
  }

  .menus>ul>li {
    padding: 5px 0;
    border-radius: 10px;
    font-size: 16px;
    /* background: #eee; */
    margin-bottom: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: unset !important;
  }

  header ul li ul li a:hover {
    font-weight: bold !important;
    background: transparent !important;
  }

  header ul li ul li a {
    font-weight: lighter !important;
  }

  header ul li ul {
    transform: none;
    height: 0;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    max-height: max-content;
    box-shadow: unset;
    background: var(--pprimary-1);
  }

  header .menus>ul>li {
    margin: 0;
  }

  header ul li ul.active {
    height: 500px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 980px) {
  footer>div>div {
    max-width: 100%;
    width: 42%;
  }

  footer>div {
    justify-content: space-between;
    gap: 50px;
  }

  .games {
    gap: 10px;
  }

  .games .playing>div {
    max-width: 700px;
    margin: 0 auto;
  }

  .games .playing .qn>div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  .games .playing {
    margin-bottom: 70px;
  }

  .games .playing .qn {
    display: block;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 850px) {

  .games3 .playing .head,
  .games2 .playing .head {
    display: flex;
  }

  .games3 .sup:first-child,
  .games2 .sup:first-child {
    display: none;
  }

  .games3 .playing,
  .games2 .playing {
    margin-left: 20px;
    margin-right: 20px;
  }

  .loginOrSign {
    padding: 20px;
  }

  .loginOrSign>div {
    background-position-x: 10%;
  }
}

@media screen and (max-width: 800px) {
  .contentGrilleNotation {
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  .grille_notation>div {
    min-width: unset !important;
  }
}

@media screen and (max-width: 650px) {
  .item .contents>div {
    min-width: 100%;
    max-width: 100%;
  }

  .item .contents {
    gap: 0;
  }

  .item .contents .readable {
    min-width: 100%;
  }

  .item .contents>div.active:first-child {
    margin-left: -100%;
  }
}

@media screen and (min-width: 380px) and (max-width: 750px) {
  .boutons:not(.v2)>div.prev {
    background: #fff3;
    color: #fff;
  }

  .boutons:not(.v2)>div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--pprimary);
    background: #fff;
    cursor: pointer;
  }

  .loginOrSign .contains {
    background: #000a;
    color: #fff;
  }

  .loginOrSign .contains form h2 span.mio {
    background: #fff1;
  }

  .loginOrSign .contains form h2 {
    color: #fff;
  }

  .loginOrSign .contains form input::placeholder {
    color: #fffa;
    font-size: 16px;
  }

  .loginOrSign .contains form input:focus {
    border-color: #fffa;
  }

  .loginOrSign .contains form input,
  .loginOrSign .contains form button[type=submit],
  .loginOrSign .contains .fl span.mio {
    background: #fff2;
    color: #eee;
    border: solid 2px #fff5;
  }

  .loginOrSign .contains form button[type=submit]:hover {
    background: var(--ssecondary);
  }

  .loginOrSign .contains form button[type=submit] {
    background: #fff2;
    color: #fff;
    width: auto;
  }
}

@media screen and (max-width: 750px) {
  .loginOrSign>div {
    background-position-x: 30%;
  }

  .loginOrSign .contains {
    max-width: 100%;
  }

  .process {
    flex-wrap: wrap;
  }

  .process.art>* {
    width: 100%;
    min-width: 100%;
  }

  .process.art>img {
    max-width: 300px;
    min-width: auto;
  }

  .process>div ul li {
    width: 100%;
    max-width: 300px;
  }

  .process>div>div>p {
    text-align: center;
  }

  .process>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process>div ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }


  .art:not(.process) {
    background-size: cover;
    background-position: center;
  }

}

@media screen and (max-width: 720px) {
  .plan {
    flex-wrap: wrap;
  }

  .plan div img {
    width: 70px !important;
  }


  .fnx {
    flex-wrap: wrap;
    gap: 0;
  }
}

@media screen and (max-width: 680px) {
  .art {
    flex-wrap: wrap;
  }

  .art>* {
    width: 100%;
    min-width: 100%;
  }

  .art>img {
    order: 0;
  }

  .art>div {
    order: 1;
  }

  .process.art {
    padding: 70px 10px;
  }
}

@media screen and (max-width: 655px) {
  .packs .pack {
    max-width: 400px;
  }
}

@media screen and (max-width: 630px) {

  .art.slim {
    background: url('../img/rb3.jpg') #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    margin: 30px 5%;
    border-radius: 50px;
    min-height: calc(100vh - 170px);
  }

  .process>div ul li {
    max-width: 100%;
  }

  .loginOrSign {
    padding: 0;
  }

  .loginOrSign>div {
    height: 100%;
    padding: 0;
    border-radius: 0;
  }

  .loginOrSign .contains {
    border-radius: 0;
  }

  .art.slim {
    border-radius: 0;
    margin: 0;
    min-height: calc(100vh - 70px);
  }

  .art.slim:not(.process)::before {
    border-radius: 0;
  }

  .navs {
    padding: 0;
    margin: 0;
  }


  .dataSettings>div:last-child .itm>span.mio {
    display: inline-block;
  }


  .dataSettings>div.active:last-child {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
  }

  .dataSettings>div:first-child {
    max-width: 100%;
  }

  .dataSettings>div:last-child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
  }
}

@media screen and (max-width: 600px) {

  .games3 .sup,
  .games2 .sup {
    display: none;
  }

  .games3 .playing,
  .games2 .playing {
    margin: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  .noTime2 {
    opacity: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
  }

  .art2>div.fl {
    flex-wrap: wrap;
  }

  .art2 .fl .item {
    max-width: 100%;
  }
}

@media screen and (max-width: 530px) {
  .boxContainers .b-box .bbox {
    max-width: 100%;
  }

  .boxContainers .b-box {
    flex-wrap: wrap;
    gap: 0;
  }

  header>.othersMenu a.partner {
    display: none;
  }

  .othersMenu .profileBox {
    min-width: 280px;
  }
}

@media screen and (max-width: 510px) {
  .choice .flex>div {
    max-width: 100%;
  }

  footer>div>div {
    max-width: 100%;
    width: 100%;
  }

  .hideMobile {
    display: none;
  }

  @media (max-width: 700px) {
    .db-hero__stats {
      grid-template-columns: repeat(1, 1fr) !important;
    }
  }
}

@media screen and (max-width:400px) {

  .othersNavs.sujets.vff {
    justify-content: unset;
  }

  .boutons.v2 {
    flex-wrap: wrap;
  }

  .boutons.v2>div span.mio {
    display: none;
  }

  .games .playing .qn h3 {
    font-size: 20px;
  }

  .othersMenu {
    position: unset;
  }

  .othersMenu .profileBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
    padding: 70px 0;
  }

  .allComp h2.subjectsTitle span.mio {
    display: none;
  }
}

@media screen and (max-width: 380px) {

  .grille_notation>div {
    flex-wrap: wrap !important;
  }

  .info {
    flex-wrap: wrap;
  }

  .loginOrSign>div {
    background-position-x: 50%;
  }

  .loginOrSign .contains {
    background: #fffe;
  }

  .art h1 {
    font-size: 22px;
  }

  .boxDisc figcaption {
    width: 280px;
  }

  header .logoBox img {
    margin-right: 0;
  }

  .art:not(.process) {
    background-position-x: 20%;
  }

  div.mq>span {
    display: none;
  }

  .boxCookie .part {
    flex-wrap: wrap;
  }

  .subEnd li ul li {
    gap: 20px;
    padding: 10px 15px;
    justify-content: space-between;
    text-align: center;
  }

  .subEnd li ul li>span:nth-child(1) {
    display: none;
  }
}

@media screen and (max-width: 335px) {
  .flx a.partner {
    margin-top: 0;
  }

  .rubriquesTarifs {
    scale: .7;
  }
}

@media screen and (max-width: 325px) {
  .boutons.v2 .next {
    text-align: right;
    justify-content: end;
  }

  .boutons.v2>div {
    width: 100%;
  }

  .boutons.v2>div span.mio {
    display: inline-block;
  }
}

.games .qn.none,
.games3 .qn.none,
.games .qn.none,
.games2 .qn.none {
  display: none !important;
}

.games .textareaHidden {
  display: none;
}

@media print {
  body {
    position: relative;
    overflow: auto !important;
  }

  body>div,
  header,
  main>div:not(.boxContainers.vx),
  .boxContainers.vx>div:not(.games),
  footer,
  figure {
    display: none !important;
  }

  .games {
    position: relative;
  }

  .games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: url('../img/logo.png');
    background-size: 120px;
    background-repeat: repeat;
    opacity: .02;
  }

  .games .qn.none {
    display: none !important;
  }

  .games .qn {
    display: block !important;
  }

  .games .qn>div {
    max-width: 100% !important;
    width: 100% !important;
  }

  .indication,
  .v2.v3.v4 {
    display: none !important;
  }

  div.info {
    border: solid 1px var(--ssecondary);
  }

  .games textarea {
    display: none;
  }

  .games textarea,
  .games .textareaHidden,
  .endResult {
    border: solid 1px var(--pprimary);
  }

  .allquestions .textareaHidden {
    width: 100%;
    max-width: 100%;
    min-height: 150px !important;
    height: max-content !important;
    display: block !important;
  }
}

.faq-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 0;
}

.faq-wrapper.noPad {
  padding: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.faq-header__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 15px;
}

.faq-header__subtitle {
  font-size: 15px;

  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.faq-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  ;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.08);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(37, 99, 235, 0.04);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-item.is-open .faq-question {
  background-color: var(--primary-1);
}

.faq-question__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.faq-item.is-open .faq-question__text {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.35s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-in-out;
}

.faq-item.is-open .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 4px 24px 20px;
  font-size: 14px;

  line-height: 1.75;
  border-top: 1px solid #E2E8F0;
  padding-top: 16px;
}


Empty state .faq-empty {
  text-align: center;
  padding: 48px 24px;

  font-size: 15px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  ;
}

@media (max-width: 480px) {
  .faq-header__title {
    font-size: 22px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 12px 18px 18px;
  }
}

.contentGrilleNotation {
  display: flex;
  gap: 80px;
  justify-content: center;
  padding: 30px 3% !important;
  max-width: 100%;
  width: max-content;
  border-radius: 20px !important;
}

.contentGrilleNotation>div {
  width: 100%;
  max-width: 400px;
}

.grille_notation {
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.grille_notation>div>span.mio {
  font-size: 30px !important;
}

.grille_notation>div {
  display: flex;
  gap: 10px;
  min-width: 300px;
}

.grille_notation>div>div {
  padding: 8px 20px;
  border-radius: 10px;
  width: 100%;
}

.ce-section {
  --ce-radius: 18px;
  --ce-radius-sm: 10px;
  --ce-gap: 1.1rem;
  --ce-font: 'Po02', sans-serif;
  font-family: var(--ce-font);
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--ce-gap);
  padding: 50px 20px 30px;
}

/* ── En-tête ── */
.ce-header {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.ce-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--ce-radius-sm);
  background: var(--primary-1);
  border: 1.5px solid var(--primary-3);
  flex-shrink: 0;
}

.ce-icon-wrap .mio {
  font-size: 1.6rem;
  color: var(--primary);
}

.ce-header__text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.ce-title {
  color: var(--pprimary);
  margin: 0;
  line-height: 1.2;
}

.ce-subtitle {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: #666;
  margin: 0;
}

.ce-subtitle .mio {
  font-size: .95rem;
  color: var(--primary);
  opacity: .7;
}

/* ── Carte principale ── */
.ce-main-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--pprimary) 100%);
  border-radius: var(--ce-radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 32px var(--primary-4);
}

.ce-main-card__inner {
  display: grid;
  grid-template-columns: 210px 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

/* ── Quota box ── */
.ce-quota-box {
  border-radius: var(--ce-radius-sm);
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.ce-quota-box.badge--free {
  background: rgba(207, 72, 48, .2);
  border: 1.5px solid rgba(207, 72, 48, .4);
}

.ce-quota-box.badge--premium {
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.ce-quota-box__top {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.ce-quota-box__icon {
  font-size: 1.1rem;
}

.badge--free .ce-quota-box__icon {
  color: #f9b98b;
}

.badge--premium .ce-quota-box__icon {
  color: #c8d4ff;
}

.ce-quota-box__title {
  font-size: .88rem;
  font-weight: 700;
}

.badge--free .ce-quota-box__title {
  color: #f9b98b;
}

.badge--premium .ce-quota-box__title {
  color: #fff;
}

.ce-quota-box__desc {
  font-size: .76rem;
  line-height: 1.5;
  margin: 0;
}

.badge--free .ce-quota-box__desc {
  color: #fad5c8;
}

.badge--premium .ce-quota-box__desc {
  color: rgba(255, 255, 255, .72);
}

.ce-quota-box__btn {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .3rem;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 700;
  padding: .42rem .8rem;
  border-radius: 8px;
  transition: background .18s, transform .15s;
}

.ce-quota-box__btn .mio {
  font-size: .85rem;
}

.ce-quota-box__btn:hover {
  background: var(--ssecondary);
  transform: translateY(-1px);
}

/* ── Stats principales ── */
.ce-stat-main {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-left: 1.2rem;
}

.ce-stat-main--sep {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.ce-stat-main__label {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ce-stat-main__label .mio {
  font-size: .9rem;
}

.ce-stat-main__value {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.ce-stat-main__total {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  margin-left: .15rem;
}

.ce-stat-main__unit {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
}

.ce-stat-main__value--alert {
  font-size: 1.25rem;
  color: #ffd580;
}

.ce-stat-locked {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, .4) !important;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.ce-stat-locked .mio {
  font-size: 1rem;
}

/* ── Barre de progression ── */
.ce-progress-bar {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, .2);
  border-radius: 99px;
  overflow: hidden;
}

.ce-progress-fill {
  height: 100%;
  width: var(--pct, 0%);
  background: #fff;
  border-radius: 99px;
  transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

.ce-progress-sub {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
}

/* ── Reminder ── */
.ce-reminder {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--ce-radius-sm);
  padding: .7rem 1rem;
  font-size: .81rem;
  color: rgba(255, 255, 255, .88);
  line-height: 1.55;
}

.ce-reminder__icon {
  font-size: 1.05rem;
  color: #ffd580;
  flex-shrink: 0;
  margin-top: .1rem;
}

.ce-reminder__text strong {
  color: #ffd580;
}

/* ── Cartes stats ── */
.ce-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.ce-stat-card {
  background: #fff;
  border: 1.5px solid var(--primary-2);
  border-radius: var(--ce-radius-sm);
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  box-shadow: 0 2px 12px var(--primary-1);
  transition: transform .15s, box-shadow .18s;
}

.ce-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-2);
}

.ce-stat-card--locked {
  background: #f8f8fa;
  border-color: #e0e0e8;
  opacity: .72;
}

.ce-stat-card--niveau {
  background: color-mix(in srgb, var(--niv-color) 8%, #fff);
  border-color: color-mix(in srgb, var(--niv-color) 28%, transparent);
}

.ce-stat-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ce-stat-card__label {
  font-size: .7rem;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ce-stat-card__icon {
  font-size: 1.05rem;
}

.ce-stat-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.ce-stat-card__sub {
  font-size: .82rem;
  font-weight: 500;
  opacity: .55;
}

.ce-stat-card__value--locked {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .95rem;
  font-weight: 700;
  color: #bbb;
}

.ce-stat-card__value--locked .mio {
  font-size: 1rem;
}

.ce-stat-card__sub-line {
  font-size: .7rem;
  color: #aaa;
  margin-top: -.05rem;
}

/* ── Liens rapides ── */
.ce-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.ce-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .85rem .5rem;
  background: var(--primary-1);
  border: 1.5px solid var(--primary-2);
  border-radius: var(--ce-radius-sm);
  text-decoration: none;
  color: var(--pprimary);
  font-size: .78rem;
  font-family: var(--ce-font);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  transition: background .18s, border-color .18s, transform .15s, box-shadow .18s;
}

.ce-link .mio {
  font-size: 1.3rem;
  color: var(--primary);
  transition: color .18s;
}

.ce-link:hover {
  background: var(--primary-2);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-2);
}

.ce-link:hover .mio {
  color: var(--pprimary);
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .ce-main-card__inner {
    grid-template-columns: 1fr 1fr;
  }

  .ce-quota-box {
    grid-column: 1 / -1;
  }

  .ce-stat-main {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: .75rem;
  }

  .ce-stat-main--sep {
    border-left: none;
  }

  .ce-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ce-main-card {
    padding: 1.1rem;
  }

  .ce-main-card__inner {
    grid-template-columns: 1fr;
  }

  .ce-stat-main__value {
    font-size: 1.65rem;
  }

  .ce-links {
    grid-template-columns: 1fr;
  }

  .ce-link {
    flex-direction: row;
    justify-content: flex-start;
    gap: .65rem;
    padding: .75rem 1rem;
  }
}

@media (max-width: 360px) {
  .ce-title {
    font-size: 1rem;
  }

  .ce-stat-card__value {
    font-size: 1.2rem;
  }
}

.cel-section {
  --cel-radius: 14px;
  --cel-radius-sm: 9px;
  --cel-font: 'Po02', sans-serif;
  --cel-gap: 1rem;
  font-family: var(--cel-font);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── En-tête section ── */
.cel-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cel-section__title {
  font-family: var(--cel-font);
  font-weight: 800;
  color: var(--pprimary);
  margin: 0 0 .3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.cel-section__tag {
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 99px;
  background: var(--secondary-2);
  color: var(--secondary);
  border: 1px solid var(--secondary-3);
  text-transform: uppercase;
  letter-spacing: .04em;
  vertical-align: middle;
}

.cel-section__subtitle {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: #888;
  margin: 0;
}

.cel-section__subtitle .mio {
  font-size: .95rem;
  color: var(--primary);
  opacity: .7;
}

.cel-link-inline {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-4);
  font-weight: 600;
  transition: border-color .2s;
}

.cel-link-inline:hover {
  border-color: var(--primary);
}

/* ── Progression globale ── */
.cel-progress-global {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.cel-progress-global__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: #666;
  font-family: var(--cel-font);
}

.cel-progress-global__pct {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.cel-progress-global__bar {
  width: 100%;
  height: 8px;
  background: var(--primary-1);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--primary-2);
}

.cel-progress-global__fill {
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--primary), var(--pprimary));
  border-radius: 99px;
  transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

/* ── Filtres ── */
.cel-filters {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
}

.cel-filter {
  font-family: var(--cel-font);
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 99px;
  border: 1.5px solid var(--primary-3);
  background: transparent;
  color: #777;
  cursor: pointer;
  transition: all .18s;
}

.cel-filter.active,
.cel-filter:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── Grille ── */
.cel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.cel-grid--compact {
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

/* ── État vide ── */
.cel-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #bbb;
  font-size: .9rem;
  font-family: var(--cel-font);
}

.cel-empty .mio {
  font-size: 2.5rem;
  display: block;
  margin-bottom: .5rem;
  color: #ddd;
}

/* ── Carte standard ── */
.cel-card {
  background: #fff;
  border-radius: var(--cel-radius);
  border: 1.5px solid var(--primary-2);
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .18s, border-color .18s;
  box-shadow: 0 2px 10px var(--primary-1);
  user-select: none;
}

.cel-card:hover:not(.lock) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-2);
  border-color: var(--primary-3);
}

.cel-card.lock {
  background: #f7f7fa;
  border-color: #e4e4ee;
  cursor: default;
  opacity: .72;
}

.cel-card.done {
  border-color: var(--primary-3);
  background: var(--primary-1);
}

/* ── Tête de carte ── */
.cel-card__head {
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* ── Avatar ── */
.cel-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.lock-avatar {
  background: #e8e8f0;
  color: #aaa;
}

.open-avatar {
  background: var(--primary-2);
  color: var(--primary);
}

.done-avatar {
  background: var(--primary);
  color: #fff;
}

.cel-card__head-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.cel-card__name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--pprimary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.lock .cel-card__name {
  color: #aaa;
}

.cel-card__badge-niv {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  padding: .1rem .42rem;
  border-radius: 5px;
  line-height: 1.4;
  width: fit-content;
}

/* ── CTA ── */
.cel-card__cta {
  display: flex;
  align-items: center;
  gap: .1rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.done .cel-card__cta {
  color: var(--secondary);
}

.cel-card__cta .mio {
  font-size: .9rem;
}

/* ── Barre de progression carte ── */
.cel-card__progress {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.cel-card__progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(0, 0, 0, .07);
  border-radius: 99px;
  overflow: hidden;
}

.cel-card__progress-fill {
  height: 100%;
  width: var(--p, 0%);
  background: var(--c, var(--primary));
  border-radius: 99px;
  transition: width .8s cubic-bezier(.4, 0, .2, 1);
}

.cel-card__progress-score {
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Carte compacte (actualité) ── */
.cel-card--compact {
  flex-direction: row;
  align-items: center;
  padding: .7rem .9rem;
  gap: .6rem;
}

.cel-card--compact .cel-card__icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.cel-card--compact.lock .cel-card__icon-wrap {
  background: #e8e8f0;
  color: #aaa;
}

.cel-card--compact.open .cel-card__icon-wrap {
  background: var(--primary-2);
  color: var(--primary);
}

.cel-card--compact.done .cel-card__icon-wrap {
  background: var(--primary);
  color: #fff;
}

.cel-card--compact .cel-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.cel-card--compact .cel-card__name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--pprimary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cel-card--compact.lock .cel-card__name {
  color: #aaa;
}

.cel-card__score {
  font-size: .7rem;
  font-weight: 600;
}

.cel-card__score--locked {
  color: #bbb;
}

.cel-card__score--todo {
  color: #aaa;
}

.cel-card--compact .cel-card__action {
  font-size: .9rem;
  color: var(--primary-4);
  flex-shrink: 0;
}

.cel-card--compact.done .cel-card__action {
  color: var(--secondary);
}

.cel-card--compact.lock .cel-card__action {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 860px) {

  .cel-grid,
  .cel-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cel-grid {
    grid-template-columns: 1fr;
  }

  .cel-grid--compact {
    grid-template-columns: 1fr;
  }

  .cel-section__title {
    font-size: 1.1rem;
  }

  .cel-progress-global__pct {
    font-size: 1.1rem;
  }
}

/* ── Conteneur ── */
.eed-wrap {
  --eed-font: 'Po02', sans-serif;
  --eed-radius: 16px;
  --eed-radius-sm: 10px;
  font-family: var(--eed-font);
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

/* ── Hero ── */
.eed-back {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  margin-bottom: .5rem;
  transition: color .18s;
  margin-bottom: 15px;
}

.eed-back:hover {
  color: var(--primary);
}

.eed-back .mio {
  font-size: 20px;
}

.eed-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.eed-hero__left {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.eed-hero__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pprimary);
  margin: 0;
  line-height: 1.2;
}

.eed-hero__accent {
  color: var(--secondary);
}

.eed-hero__meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #888;
  margin: 0;
}

.eed-hero__meta .mio {
  font-size: .95rem;
  color: var(--primary);
  opacity: .7;
}

.eed-hero__meta strong {
  color: #555;
}

.eed-badge-actu {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .8rem;
  font-weight: 700;
  background: var(--secondary-1);
  color: var(--secondary);
  border: 1px solid var(--secondary-3);
  padding: .15rem .55rem;
  border-radius: 99px;
}

.eed-badge-actu .mio {
  font-size: .8rem;
}

.eed-hero__right {
  flex-shrink: 0;
  max-width: 350px;
}

.eed-info-box {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: var(--primary-1);
  border: 1px solid var(--primary-2);
  border-radius: var(--eed-radius-sm);
  padding: .7rem .9rem;
  font-size: .9rem;
  color: #666;
  line-height: 1.5;
}

.eed-info-box .mio {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.eed-info-box strong {
  color: var(--pprimary);
}

/* ── Sujets d'actualité ── */
.eed-actu-section {
  background: var(--secondary-1);
  border: 1.5px solid var(--secondary-3);
  border-radius: var(--eed-radius);
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.eed-actu-header {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.eed-actu-header .mio {
  font-size: 1.3rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: .05rem;
}

.eed-actu-header strong {
  font-size: .1.2rem;
  color: var(--secondary);
  display: block;
}

.eed-actu-header p {
  font-size: .9rem;
  color: var(--secondary);
  opacity: .75;
  margin: .1rem 0 0;
}

.eed-actu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.eed-actu-card {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1.5px solid var(--secondary-3);
  border-radius: var(--eed-radius-sm);
  padding: .55rem .85rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .18s;
  min-width: 160px;
}

.eed-actu-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--secondary-2);
}

.eed-actu-card__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.eed-actu-card__info {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  flex: 1;
}

.eed-actu-card__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pprimary);
}

.eed-actu-card__comment {
  font-size: .75rem;
  color: #888;
}

.eed-actu-card__arrow {
  font-size: 1rem;
  color: var(--secondary);
}

/* ── Liste combinaisons ── */
.eed-combis {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.eed-combi {
  background: #fff;
  border: 1.5px solid var(--primary-2);
  border-radius: var(--eed-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--primary-1);
  transition: box-shadow .18s;
}

.eed-combi:target {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-2), 0 4px 20px var(--primary-2);
}

/* ── En-tête combinaison ── */
.eed-combi__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .9rem 1.1rem;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}

.eed-combi__header:hover {
  background: var(--primary-1);
}

.eed-combi__header-left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 0;
}

.eed-combi__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-1);
  border: 2px solid var(--primary-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.eed-combi__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pprimary);
  display: block;
}

.eed-combi__total {
  font-weight: 400;
  margin-left: .2rem;
}

.eed-combi__actu-tag {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: .15rem;
}

.eed-combi__actu-tag .mio {
  font-size: .75rem;
}

.eed-combi__header-right {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.eed-combi__toggle {
  font-size: 1.2rem;
  color: #bbb;
  transition: transform .25s;
  flex-shrink: 0;
}

.eed-combi.is-open .eed-combi__toggle {
  transform: rotate(180deg);
}

.eed-combi.is-open .eed-combi__header {
  background: var(--primary-1);
}

.eed-combi.is-open .eed-combi__num {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── Boutons d'action ── */
.eed-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--eed-font);
  font-size: .78rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .18s, background .18s;
  white-space: nowrap;
  border: none;
}

.eed-btn .mio {
  font-size: .95rem;
}

.eed-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--primary-4);
}

.eed-btn--primary:hover {
  background: var(--pprimary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--primary-4);
}

.eed-btn--secondary {
  background: var(--primary-1);
  color: var(--pprimary);
  border: 1.5px solid var(--primary-3);
}

.eed-btn--secondary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.eed-btn--lg {
  padding: .6rem 1.3rem;
  font-size: .85rem;
  border-radius: 10px;
}

.eed-btn--lg .mio {
  font-size: 1.05rem;
}

/* ── Corps combinaison (collapse) ── */
.eed-combi__body {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1.5px solid var(--primary-2);
  position: relative;
}

/* 
.eed-combi__body::before, .eed-popup-task::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/logo.png);
  background-size: 120px;
  /* background-attachment: fixed;
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
} */

.eed-combi.is-open .eed-combi__body {
  display: flex;
}

.eed-combi__tasks {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Tâche ── */
.eed-task {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.eed-task__label {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--secondary);
}

.eed-task__num {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--secondary-1);
  border: 1px solid var(--secondary-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  color: var(--secondary);
  flex-shrink: 0;
}

.eed-task__content {
  font-size: 1rem;
  color: #333;
  line-height: 1.65;
  padding: .75rem 1rem;
  background: #fafafa;
  border-radius: var(--eed-radius-sm);
  border: 1px solid #f0f0f5;
}

.eed-task__content>h4 {
  margin-top: 10px;
}

.eed-task__content>p {
  font-size: 1rem;
}

/* ── Footer combinaison ── */
.eed-combi__footer {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1.2rem;
  background: var(--primary-1);
  border-top: 1px solid var(--primary-2);
  flex-wrap: wrap;
}

/* ── Retour sessions ── */
.eed-footer-nav {
  display: flex;
  justify-content: center;
  padding-top: .5rem;
}

.eed-back-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--eed-font);
  font-size: .82rem;
  font-weight: 700;
  padding: .6rem 1.4rem;
  border-radius: 99px;
  background: var(--primary-1);
  border: 1.5px solid var(--primary-3);
  color: var(--pprimary);
  text-decoration: none;
  transition: background .18s, transform .15s;
}

.eed-back-btn:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.eed-back-btn .mio {
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   POPUP CORRIGÉ
═══════════════════════════════════════ */
.eed-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 60, .55);
  z-index: 2;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(2px);
  animation: eedFadeIn .2s ease;
}

.eed-overlay.is-open {
  display: flex;
}

@keyframes eedFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes eedSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eed-popup {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(54, 45, 134, .2);
  animation: eedSlideUp .25s cubic-bezier(.4, 0, .2, 1);
}

/* En-tête popup */
.eed-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1.5px solid var(--primary-2);
  gap: 1rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-1), var(--pprimary-1));
}

.eed-popup__head-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.eed-popup__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eed-popup__icon .mio {
  font-size: 1.3rem;
}

.eed-popup__title {
  font-family: var(--eed-font);
  font-size: 17px;
  font-weight: 800;
  color: var(--pprimary);
  margin: 0;
  line-height: 1.2;
}

.eed-popup__sub {
  font-size: 13px;
  color: #888;
  margin: .1rem 0 0;
}

.eed-popup__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pprimary);
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}

.eed-popup__close:hover {
  background: var(--primary-3);
  transform: scale(1.1);
}

.eed-popup__close .mio {
  font-size: 1.1rem;
}

/* Corps popup — scrollable */
.eed-popup__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

/* Bloc tâche dans popup */
.eed-popup-task {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  position: relative;
}

.eed-popup-task__header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--secondary-2);
}

.eed-popup-task__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.eed-popup-task__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary);
}

/* Sujet dans popup */
.eed-popup-task__sujet-wrap {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.eed-popup-task__section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.eed-popup-task__section-label .mio {
  font-size: .9rem;
}

.eed-popup-task__sujet {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  padding: .85rem 1.1rem;
  background: #fafafa;
  border-radius: var(--eed-radius-sm);
  border: 1px solid #eee;
}

/* Corrigé dans popup */
.eed-popup-task__corrige-wrap {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.eed-popup-task__corrige {
  font-size: 16px;
  color: #2a4a3a;
  line-height: 1.7;
  padding: .85rem 1.1rem;
  background: #f0faf5;
  border-radius: var(--eed-radius-sm);
  border: 1.5px solid #b2dfcc;
}

.eed-popup-task__section-label--corrige {
  color: #1aa76d;
}

.eed-popup-task__section-label--corrige .mio {
  color: #1aa76d;
}

.eed-popup-task__prop {
  font-size: 16px;
  color: var(--primary);
  line-height: 1.7;
  padding: .85rem 1.1rem;
  background: #f0f0fa;
  border-radius: var(--eed-radius-sm);
  border: 1.5px solid var(--primary);
}

.eed-popup-task__section-label--prop {
  color: var(--primary);
}

.eed-popup-task__section-label--prop .mio {
  color: var(--primary);
}

/* Séparateur entre tâches */
.eed-popup-task+.eed-popup-task {
  padding-top: 1.5rem;
  border-top: 1px dashed var(--primary-2);
}

/* Pied popup */
.eed-popup__foot {
  padding: .9rem 1.4rem;
  border-top: 1px solid var(--primary-2);
  display: flex;
  justify-content: flex-end;
  background: #fafbff;
  flex-shrink: 0;
}

.eed-popup__close-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--eed-font);
  font-size: 14px;
  font-weight: 700;
  padding: .6rem 1.4rem;
  border-radius: 99px;
  background: var(--primary-1);
  border: 1.5px solid var(--primary-3);
  color: var(--pprimary);
  cursor: pointer;
  transition: background .18s;
}

.eed-popup__close-btn:hover {
  background: var(--primary-2);
}

.eed-popup__close-btn .mio {
  font-size: 1rem;
}

.conseils>ul {
  background: var(--secondary-1);
  border-radius: 20px;
}

.lvl-1 {
  background-color: #D4EFDF;
}

.lvl-2 {
  background-color: #E9F7EF;
}

.lvl-3 {
  background-color: #FEF9E7;
}

.lvl-4 {
  background-color: #FDEBD0;
}

.lvl-5 {
  background-color: #FADBD8;
}

.lvl-6 {
  background-color: #EBDEF0;
}

/* Couleurs de texte (les versions foncées pour le contraste) */
.lvl-1__text {
  color: #145A32;
}

.lvl-2__text {
  color: #196F3D;
}

.lvl-3__text {
  color: #7D6608;
}

.lvl-4__text {
  color: #7E5109;
}

.lvl-5__text {
  color: #7B241C;
}

.lvl-6__text {
  color: #512E5F;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .eed-hero {
    flex-direction: column;
  }

  .eed-hero__right {
    max-width: 100%;
    width: 100%;
  }

  .eed-hero__title {
    font-size: 1.2rem;
  }

  .eed-combi__header {
    flex-wrap: wrap;
    gap: .5rem;
  }

  .eed-combi__header-right {
    width: 100%;
    justify-content: flex-end;
  }

  .eed-btn__label {
    display: none;
  }

  .eed-btn {
    padding: .45rem .6rem;
  }

  .eed-btn--lg .eed-btn__label,
  .eed-combi__footer .eed-btn--lg span:not(.mio) {
    display: inline;
  }

  .eed-actu-card {
    min-width: calc(50% - .25rem);
  }

  .eed-popup {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    align-self: flex-end;
  }

  .eed-popup__body {
    padding: 1rem;
  }

  .eed-popup__head {
    padding: .9rem 1rem;
  }

  .eed-overlay {
    align-items: flex-end;
    padding: 0;
  }
}

@media (max-width: 400px) {
  .eed-task__content {
    font-size: .82rem;
  }

  .eed-combi__tasks {
    padding: .85rem;
  }
}

/* ── Section ── */
.ees-section {
  --ees-font: 'Po02', sans-serif;
  --ees-radius: 16px;
  --ees-radius-sm: 10px;
  font-family: var(--ees-font);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* ── En-tête ── */
.ees-header {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.ees-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pprimary);
  margin: 0;
}

.ees-subtitle {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: #888;
  margin: 0;
}

.ees-subtitle .mio {
  font-size: .95rem;
  color: var(--primary);
  opacity: .7;
}

.ees-link-cta {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-3);
  transition: border-color .2s;
}

.ees-link-cta:hover {
  border-color: var(--primary);
}

.ees-link-cta .mio {
  font-size: .85rem;
}

/* ── Onglets années ── */
.ees-year-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.ees-year-tab {
  font-family: var(--ees-font);
  font-size: .95rem;
  font-weight: 700;
  padding: .55rem 1.6rem;
  border-radius: 12px;
  border: 2px solid var(--primary-3);
  background: #fff;
  color: #999;
  cursor: pointer;
  transition: all .2s;
}

.ees-year-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-1);
}

.ees-year-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-4);
}

/* ── Panel ── */
.ees-panel {
  display: none;
  flex-direction: column;
  gap: .85rem;
}

.ees-panel.active {
  display: flex;
}

.ees-panel__summary {
  font-size: .8rem;
  color: #aaa;
  font-family: var(--ees-font);
}

/* ── Grille ── */
.ees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ── Carte ── */
.ees-card {
  background: #fff;
  border: 1.5px solid #eaeaf5;
  border-radius: var(--ees-radius);
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  cursor: pointer;
  transition: transform .18s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.ees-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--primary));
  border-radius: var(--ees-radius) var(--ees-radius) 0 0;
  opacity: 0;
  transition: opacity .2s;
}

.ees-card:not(.lock):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(88, 88, 248, .12);
  border-color: var(--accent, var(--primary));
}

.ees-card:not(.lock):hover::before {
  opacity: 1;
}

/* États */
.ees-card--locked {
  background: #f8f8fb;
  border-color: #e8e8f0;
  cursor: default;
  opacity: .72;
}

.ees-card--done {
  background: #f0fbf6;
  border-color: #a8e6c8;
}

.ees-card--done::before {
  opacity: 1;
}

.ees-card--started {
  border-color: var(--secondary-3);
}

.ees-card--started::before {
  opacity: 1;
}

/* ── Icône principale ── */
.ees-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--accent) 22%, transparent);
  flex-shrink: 0;
}

.ees-card__icon-wrap .mio {
  font-size: 1.4rem;
  color: var(--accent);
}

.ees-card--locked .ees-card__icon-wrap {
  background: #eee;
  border-color: #ddd;
}

.ees-card--locked .ees-card__icon-wrap .mio {
  color: #bbb;
}

/* ── Badge statut ── */
.ees-card__badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .62rem;
  font-weight: 800;
  padding: .18rem .55rem;
  border-radius: 99px;
  letter-spacing: .06em;
  width: fit-content;
}

.ees-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ees-card__badge--todo {
  background: var(--primary-1);
  color: var(--primary);
  border: 1px solid var(--primary-3);
}

.ees-card__badge--todo .ees-card__badge-dot {
  background: var(--primary);
}

.ees-card__badge--started {
  background: var(--secondary-1);
  color: var(--secondary);
  border: 1px solid var(--secondary-3);
}

.ees-card__badge--started .ees-card__badge-dot {
  background: var(--secondary);
}

.ees-card__badge--done {
  background: #e0f8ed;
  color: #1aa76d;
  border: 1px solid #a8e6c8;
}

.ees-card__badge--done .ees-card__badge-dot {
  background: #1aa76d;
}

.ees-card__badge--locked {
  background: #f0f0f5;
  color: #bbb;
  border: 1px solid #e0e0ea;
}

.ees-card__badge--locked .ees-card__badge-dot {
  background: #ccc;
}

/* ── Nom session ── */
.ees-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pprimary);
  line-height: 1.25;
}

.ees-card--locked .ees-card__name {
  color: #bbb;
}

/* ── Nb combinaisons ── */
.ees-card__combi {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: #aaa;
  font-weight: 500;
}

.ees-card__combi .mio {
  font-size: .85rem;
  color: var(--accent);
  opacity: .6;
}

.ees-card--locked .ees-card__combi .mio {
  color: #ccc;
}

/* ── Barre de progression ── */
.ees-card__progress {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .1rem;
}

.ees-card__progress-track {
  flex: 1;
  height: 5px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
}

.ees-card__progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width .8s cubic-bezier(.4, 0, .2, 1);
  min-width: 0;
}

.ees-card__progress-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── CTA ── */
.ees-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: .1rem;
  padding-top: .5rem;
  border-top: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
}

.ees-card__cta-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ees-card__cta-arrow .mio {
  font-size: .9rem;
  color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .ees-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .ees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 440px) {
  .ees-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg: #f5f5fb;
  --card-bg: #ffffff;
  --border: #e4e4f0;
  --text: #1a1a2e;
  --text-2: #666680;
  --text-3: #aaaacc;
  --radius: 14px;
  --radius-sm: 8px;
}

.nw {
  max-width: 900px;
  margin: 30px auto 70px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* ── Hero ── */
.hero {
  text-align: center;
}

.htag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 14px;
  background: #fff;
}

.htag svg {
  width: 12px;
  height: 12px;
}

.hero h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero p {
  /* font-size: 13px; */
  color: var(--text-2);
  max-width: 420px;
  margin: 0 auto;
  /* line-height: 1.6; */
}

/* ── Layout ── */
.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* ── Carte ── */
.panel2 {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* overflow: hidden; */
  box-shadow: 0 2px 16px rgba(88, 88, 248, .07);
}

.phead {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.phi {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary-1);
  border: 1px solid var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phi svg {
  color: var(--primary);
}

.pht {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.phs {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 1px;
}

.pbody {
  padding: 14px 18px;
}

/* ── Lignes de saisie ── */
.irow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.irow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.irow:first-child {
  padding-top: 0;
}

.idot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.imeta {
  flex: 1;
  min-width: 0;
}

.ilabel {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.irange {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 1px;
}

.irow input {
  width: 88px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  background: #fafafa;
  color: var(--text);
  text-align: right;
  outline: none;
  font-family: var(--font);
  transition: border-color .15s, box-shadow .15s;
}

.irow input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-1);
  background: #fff;
}

.irow input.verr {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px #cf483018;
}

/* ── Footer carte ── */
.pfoot {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.bcalc {
  flex: 1;
  padding: 11px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .18s, transform .1s;
  font-family: var(--font);
}

.bcalc:hover {
  background: var(--pprimary);
}

.bcalc:active {
  transform: scale(.98);
}

.bcalc:disabled {
  background: #f0f0f8;
  color: var(--text-3);
  cursor: default;
  transform: none;
}

.brst {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
  padding: 0;
}

.brst:hover {
  background: #f0f0f8;
}

/* ── État vide ── */
.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  gap: 12px;
}

.ering {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty p {
  font-size: 15px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
  max-width: 230px;
}

/* ── Résultat final ── */
.rfinal {
  margin: 14px 18px 10px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--pprimary));
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rfl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rfmed {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rftitle {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.rfsub {
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  margin-top: 2px;
}

.rfbadge {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}

.progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, .25);
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  transition: width .7s cubic-bezier(.4, 0, .2, 1);
}

/* ── Liste résultats ── */
.rlist {
  padding: 0 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fafafa;
  gap: 8px;
}

.rrL {
  display: flex;
  align-items: center;
  gap: 9px;
}

.rrico {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rrname {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.rrscore {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 1px;
}

.rpbar {
  height: 3px;
  background: #e8e8f5;
  border-radius: 99px;
  margin-top: 4px;
  overflow: hidden;
  width: 80px;
}

.rpfill {
  height: 100%;
  border-radius: 99px;
  transition: width .7s cubic-bezier(.4, 0, .2, 1);
}

/* ── Badges NCLC ── */
.pill {
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
}

.p-green {
  background: #e8f5e9;
  color: #1b5e20;
}

.p-teal {
  background: #e0f2f1;
  color: #004d40;
}

.p-blue {
  background: #ededfd;
  color: var(--pprimary);
}

.p-amber {
  background: #fff8e1;
  color: #e65100;
}

.p-red {
  background: #fce4ec;
  color: #880e4f;
}

.p-gray {
  background: #f0f0f8;
  color: var(--text-2);
}

/* ── Tip ── */
.rtip {
  margin: 0 18px 14px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: #fff8e1;
  border: 1px solid #ffe082;
  font-size: 14px;
  color: #e65100;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.rtip.v2 {
  color: var(--primary);
  background: var(--primary-2);
  border-color: var(--primary-4);
}

.rtip svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .main {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 20px;
  }
}

.startGame2:hover {
  transform: translateY(-2px);
  transition: all .3s ease;
  background: var(--primary-1);
  text-decoration: unset;
}

.startGame2 {
  display: flex;
  max-width: max-content;
  margin: 20px auto;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: underline;
}

.db-wrap {
  --db-font: 'Po02', sans-serif;
  --db-radius: 18px;
  --db-radius-sm: 11px;
  font-family: var(--db-font);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem 3rem;
  font-size: 16px;
}

/* ── Hero ── */
.db-hero {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.5rem;
  align-items: start;
}

.db-hero__left {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.db-hero__greeting {
  font-size: 15px;
  color: #888;
  font-weight: 600;
}

.db-hero__name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pprimary);
  line-height: 1.1;
  margin: 0;
}

.db-hero__sub {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin: .25rem 0 .75rem;
}

.db-hero__ctas {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.db-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.3rem;
  border-radius: 99px;
  font-family: var(--db-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s;
}

.db-cta .mio {
  font-size: 1rem;
}

.db-cta--primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 3px 12px var(--secondary-3);
}

.db-cta--primary:hover {
  background: var(--ssecondary);
  transform: translateY(-1px);
}

.db-cta--ghost {
  background: var(--primary-1);
  color: var(--pprimary);
  border: 1.5px solid var(--primary-3);
}

.db-cta--ghost:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

/* ── Grille stats héro ── */
.db-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

/* ── Carte stat ── */
.db-stat-card {
  background: #fff;
  border: 1.5px solid var(--primary-2);
  border-radius: var(--db-radius-sm);
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  box-shadow: 0 2px 12px var(--primary-1);
}

.db-stat-card--featured {
  border-color: var(--niv, var(--primary));
  background: color-mix(in srgb, var(--niv, var(--primary)) 6%, #fff);
}

.db-stat-card__label {
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .3rem;
  line-height: 16px;
}

.db-stat-card__label .mio {
  font-size: .85rem;
}

.db-stat-card__value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--pprimary);
  line-height: 1.1;
}

.db-stat-card__value span {
  font-size: .9rem;
  font-weight: 500;
  color: #aaa;
  margin-left: .1rem;
}

.db-stat-card__value--big {
  font-size: 2.2rem;
}

.db-stat-card__value--empty {
  color: #ccc;
}

.db-stat-card__bar {
  width: 100%;
  height: 4px;
  background: var(--primary-1);
  border-radius: 99px;
  overflow: hidden;
  margin: .15rem 0;
}

.db-stat-card__bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width .8s cubic-bezier(.4, 0, .2, 1);
}

.db-stat-card__sub {
  font-size: 12px;
  color: #aaa;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Grille 4 blocs ── */
.db-blocs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ── Bloc épreuve ── */
.db-bloc {
  background: #fff;
  border: 1.5px solid color-mix(in srgb, var(--bc) 25%, transparent);
  border-radius: var(--db-radius);
  padding: 1.1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: 0 2px 16px color-mix(in srgb, var(--bc) 8%, transparent);
  transition: transform .15s, box-shadow .18s;
}

.db-bloc:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--bc) 18%, transparent);
}

/* En-tête bloc */
.db-bloc__head {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.db-bloc__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.db-bloc__icon .mio {
  font-size: 1.3rem;
  color: var(--bc);
}

.db-bloc__title-wrap {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}

.db-bloc__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--pprimary);
  line-height: 1.2;
}

.db-bloc__badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: 11px;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 99px;
  width: fit-content;
}

.db-bloc__badge .mio {
  font-size: .75rem;
}

.db-bloc__badge--done {
  background: #e8f5e9;
  color: #1b5e20;
}

.db-bloc__badge--going {
  background: #e8eaf6;
  color: #1a237e;
}

.db-bloc__badge--todo {
  background: #f5f5f5;
  color: #aaa;
}

/* Compteur */
.db-bloc__count {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  margin-top: .15rem;
}

.db-bloc__count-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bc);
  line-height: 1;
}

.db-bloc__count-sep {
  font-size: 1rem;
  color: #ccc;
}

.db-bloc__count-tot {
  font-size: 1rem;
  font-weight: 600;
  color: #aaa;
}

.db-bloc__count-unit {
  font-size: 12px;
  color: #aaa;
  margin-left: .2rem;
  align-self: flex-end;
  padding-bottom: .2rem;
}

.db-bloc__sub-count {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: 12px;
  color: #aaa;
  margin-top: -.3rem;
}

.db-bloc__sub-count .mio {
  font-size: .85rem;
}

/* Barre progression */
.db-bloc__bar-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.db-bloc__bar {
  flex: 1;
  height: 6px;
  background: color-mix(in srgb, var(--bc) 12%, transparent);
  border-radius: 99px;
  overflow: hidden;
}

.db-bloc__bar-fill {
  height: 100%;
  background: var(--bc);
  border-radius: 99px;
  transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

.db-bloc__pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--bc);
  white-space: nowrap;
}

/* Félicitations */
.db-bloc__congrats {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: 12px;
  color: #1b5e20;
  background: #e8f5e9;
  border-radius: 8px;
  padding: .45rem .7rem;
  line-height: 1.4;
}

.db-bloc__congrats .mio {
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA bloc */
.db-bloc__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem;
  border-radius: var(--db-radius-sm);
  background: color-mix(in srgb, var(--bc) 10%, transparent);
  color: var(--bc);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--db-font);
  margin-top: auto;
  transition: background .18s, transform .15s;
}

.db-bloc__cta .mio {
  font-size: 1rem;
}

.db-bloc__cta:hover {
  background: color-mix(in srgb, var(--bc) 18%, transparent);
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .db-blocs {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-hero {
    grid-template-columns: 1fr;
  }

  .db-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .db-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-blocs {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-hero__name {
    font-size: 1.75rem;
  }
}

@media (max-width: 460px) {
  .db-blocs {
    grid-template-columns: 1fr;
  }

  .db-hero__stats {
    grid-template-columns: 1fr 1fr;
  }
}