@charset "UTF-8";
/*--------------------------------------------------------------------------------------------------------------------*/
/* FONT
/*--------------------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: "Gotham-Book";
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Book.woff") format("woff");
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Book.woff2") format("woff2");
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2122;
}
@font-face {
  font-family: "Gotham-Black";
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Black.woff") format("woff");
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Black.woff2") format("woff2");
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2122;
}
@font-face {
  font-family: "Gotham-Medium";
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Medium.woff") format("woff");
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Medium.woff2") format("woff2");
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2122;
}
@font-face {
  font-family: "Gotham-Light";
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Light.woff") format("woff");
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Light.woff2") format("woff2");
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2122;
}
@font-face {
  font-family: "Gotham-Ultra";
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Ultra.woff") format("woff");
  src: url("//d1h8fl8on3a554.cloudfront.net/fonts/Gotham/Gotham-Ultra.woff2") format("woff2");
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2122;
}
.screen--1 {
  padding-bottom: 0 !important;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(194, 157, 57, 0.3);
  border-top-color: #C29D39;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 24px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------------------------------------------------------------*/
/* INPUT
/*--------------------------------------------------------------------------------------------------------------------*/
input[type=email],
input[type=tel],
input[type=text],
select {
  outline: none;
  border: none;
  border-radius: 5px;
  background: #FFF;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  color: rgb(30, 13, 0);
  font-family: "Gotham-Medium", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

input::-webkit-input-placeholder {
  color: rgba(30, 13, 0, 0.88);
}

input::-moz-placeholder {
  color: rgba(30, 13, 0, 0.88);
}

input:-moz-placeholder {
  color: rgba(30, 13, 0, 0.88);
}

input:-ms-input-placeholder {
  color: rgba(30, 13, 0, 0.88);
}

.checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.checkbox-wrapper [type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox-wrapper [type=checkbox] ~ label,
.checkbox-wrapper [type=checkbox] + label {
  color: rgba(30, 13, 0, 0.88);
  position: relative;
  display: inline-block;
  padding-left: 26px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 37.5em) {
  .checkbox-wrapper [type=checkbox] ~ label,
  .checkbox-wrapper [type=checkbox] + label {
    padding-left: 30px;
  }
}
.checkbox-wrapper [type=checkbox] ~ label a,
.checkbox-wrapper [type=checkbox] + label a {
  color: rgba(30, 13, 0, 0.88);
}
.checkbox-wrapper [type=checkbox] ~ label:before,
.checkbox-wrapper [type=checkbox] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #FFF;
  box-sizing: border-box;
}
@media screen and (min-width: 37.5em) {
  .checkbox-wrapper [type=checkbox] ~ label:before,
  .checkbox-wrapper [type=checkbox] + label:before {
    width: 20px;
    height: 20px;
    border-radius: 5px;
  }
}
.checkbox-wrapper [type=checkbox]:not(:checked) ~ label:before,
.checkbox-wrapper [type=checkbox]:not(:checked) + label:before {
  background: #FFF;
}
.checkbox-wrapper [type=checkbox]:checked ~ label:before,
.checkbox-wrapper [type=checkbox]:checked + label:before {
  background: #fff;
  border-color: #C29D39;
}
.checkbox-wrapper [type=checkbox]:checked ~ label:after,
.checkbox-wrapper [type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 4px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #C29D39;
  border-width: 0 2px 2px 0;
  box-sizing: border-box;
  transform: rotate(45deg);
}
@media screen and (min-width: 37.5em) {
  .checkbox-wrapper [type=checkbox]:checked ~ label:after,
  .checkbox-wrapper [type=checkbox]:checked + label:after {
    left: 6px;
    top: 3px;
    width: 8px;
    height: 13px;
  }
}
.checkbox-wrapper .error ~ label:before,
.checkbox-wrapper .error + label:before {
  border: 2px solid red;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* MIXINS
/*--------------------------------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gotham-Book", sans-serif;
}

p {
  margin: 0;
}

.page-wrapper {
  background: url("../images/bck-screen1-k76znNw.jpg") no-repeat center top #1e0d00;
  background-size: cover;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 43.75em) {
  .page-wrapper {
    background: url("../images/bck-screen-desktop-Zem2o_t.png") no-repeat center top #1e0d00;
    background-size: cover;
  }
}

.page-header {
  position: relative;
  z-index: 2;
  padding: 18px 10px 0;
}
.page-header .logo img {
  width: 115px;
  display: block;
  margin: 0 auto 50px;
}
@media screen and (min-width: 37.5em) {
  .page-header .logo img {
    width: 150px;
  }
}
.page-header .catchphrase {
  width: 280px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.page-header .pastille {
  width: 113px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
@media screen and (min-width: 37.5em) {
  .page-header .pastille {
    right: auto;
    left: 65%;
    transform: translateX(-50%);
  }
}

#calendar {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#calendar .visuel {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
#calendar .login-title-img {
  display: block;
  width: 281px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#calendar .container {
  background: url("../images/bck-texture-INt5A11.png") no-repeat center top rgba(248, 244, 237, 0.85);
  background-size: 100% 100%;
  width: 340px;
  margin-inline: auto;
  margin-top: -13px;
  padding: 40px 20px;
  border-radius: 20px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 37.5em) {
  #calendar .container {
    width: 450px;
  }
}
#calendar .container h4 {
  color: #1E0D00;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-family: "Gotham-Black", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 37.5em) {
  #calendar .container h4 {
    font-size: 15px;
  }
}
#calendar .container .btn-lba {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #1e0d00;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  display: inline;
}
@media screen and (min-width: 37.5em) {
  #calendar .container .btn-lba {
    font-size: 15px;
  }
}
#calendar .container .btn-lba__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1e0d00;
  color: #fff;
  font-size: 9px;
  vertical-align: middle;
  line-height: 1;
  text-transform: none;
  font-family: "Arial", sans-serif;
}
#calendar .container hr {
  border-color: #1E0D00;
  width: 200px;
  margin: 18px auto;
}
#calendar .container .login-intro {
  color: #1e0d00;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 400;
}
#calendar .container form, #calendar .container .bloc-formulaire {
  width: 264px;
  margin: 0 auto;
}
@media screen and (min-width: 37.5em) {
  #calendar .container form, #calendar .container .bloc-formulaire {
    width: 300px;
  }
}
#calendar .container .legal {
  margin-top: 13px;
  color: #1E0D00;
  text-align: center;
  font-size: 9px;
  font-weight: 400;
  line-height: 11px; /* 122.222% */
}
#calendar .container .legal a {
  color: #1E0D00;
  text-decoration: underline;
}
#calendar .container .bloc-formulaire h2 {
  text-align: left;
}
#calendar .container .form-group {
  margin-bottom: 13px;
}
#calendar .container .form-group:not(.checkbox-wrapper) label {
  display: none;
}
#calendar .container .checkbox-wrapper [type=checkbox] ~ label,
#calendar .container .checkbox-wrapper [type=checkbox] + label {
  color: #1e0d00;
}
#calendar .container .checkbox-wrapper [type=checkbox] ~ label a,
#calendar .container .checkbox-wrapper [type=checkbox] + label a {
  color: #1e0d00;
  text-decoration: underline;
}
#calendar .container .cta {
  width: 232px;
  height: 53px;
  margin: 16px auto 0;
  border-radius: 41px;
  border: 1.767px solid #fff9a5;
  background: linear-gradient(90deg, #fff9a5 0%, #fbe793 6%, #f8e684 10%, #f3d768 16%, #f1ce58 19%, #f9e682 49%, #fae888 51%, #f5da70 72%, #f4d76b 76%, #eec448 86%, #fff9a5 100%);
  font-size: 16px;
  font-family: "Gotham-Black", sans-serif;
  font-weight: 400;
  color: #7A4320;
}
@media screen and (min-width: 37.5em) {
  #calendar .container .cta {
    width: 300px;
  }
}
#calendar .container .mandatory {
  text-align: center;
  font-size: 10px;
  color: #1e0d00;
  margin-top: 10px;
}
#calendar .container .form-error {
  color: #c0392b;
  font-size: 13px;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}
#calendar .login-legal {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 14px 20px;
}
#calendar .login-legal p {
  color: #1E0D00;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 9px;
  line-height: 16px;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 37.5em) {
  #calendar .login-legal p {
    font-size: 10px;
  }
}
#calendar .login-legal p a {
  color: #1E0D00;
  text-decoration: underline;
}
#calendar .login-wheel {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 180px;
  max-height: 472px;
  overflow: hidden;
  margin-top: -25px;
}
#calendar .login-wheel__aiguille {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 34px;
}
#calendar .login-wheel__roue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 447px;
}

.footer-sante {
  position: relative;
  z-index: 2;
  background: #1E0D00;
  padding: 10px;
}
.footer-sante p {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  margin: 0;
}
.footer-sante p a {
  color: #fff;
  text-decoration: underline;
}

/* ─── Game page ──────────────────────────────────────────────────────────── */
.wheel-page {
  position: relative;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 37.5em) {
  .wheel-page {
    margin: 0 auto;
    flex: 1;
  }
}
.wheel-page--already {
  margin-top: -17px;
  flex: 1;
}
.wheel-page--already img {
  width: 289.344px;
  transform: rotate(-6.22deg);
  box-shadow: -19px 123px 35px 0 rgba(0, 0, 0, 0.01), -12px 79px 32px 0 rgba(0, 0, 0, 0.11), -7px 44px 27px 0 rgba(0, 0, 0, 0.38), -3px 20px 20px 0 rgba(0, 0, 0, 0.64), -1px 5px 11px 0 rgba(0, 0, 0, 0.74);
  position: relative;
  z-index: 5;
  top: -18px;
}

.wheel-page__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 40px;
  color: #fff;
}
.wheel-page__body--already {
  padding: 0;
}

.wheel-page__subtitle {
  font-family: "Gotham-Book", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  max-width: 300px;
  line-height: 1.5;
}
.wheel-page__subtitle strong {
  font-family: "Gotham-Black", sans-serif;
}

.wheel-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 447px;
  margin: 0 auto 0;
  flex-shrink: 0;
  filter: drop-shadow(0 4.975px 10.946px rgba(0, 0, 0, 0.34)) drop-shadow(0 19.403px 19.403px rgba(0, 0, 0, 0.3)) drop-shadow(0 43.782px 26.369px rgba(0, 0, 0, 0.18)) drop-shadow(0 78.111px 31.344px rgba(0, 0, 0, 0.05)) drop-shadow(0 121.894px 34.329px rgba(0, 0, 0, 0.01));
}
.wheel-container .wheel__roue {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  transform-origin: center center;
  will-change: transform;
}
.wheel-container .wheel__aiguille {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 27px;
  pointer-events: none;
  filter: drop-shadow(0 10.448px 18.359px rgba(0, 0, 0, 0.75));
}
.wheel-container .wheel__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 113px;
  z-index: 2;
  pointer-events: none;
}

.cta--loading {
  opacity: 0.45;
  cursor: not-allowed;
}

#btn-spin {
  width: 260px;
  position: relative;
  z-index: 5;
  top: -14px;
}

#wheel-error {
  display: none;
  color: #FF6B6B;
  font-family: "Gotham-Book", sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: 14px;
  padding: 0 20px;
}

/* ── Result screen ── */
.wheel-game__result {
  display: none;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.5s ease;
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
}
.wheel-game__result.wheel-result--visible {
  opacity: 1;
}

.wheel-result__bravo {
  font-family: "Gotham-Ultra", sans-serif;
  text-align: center;
  color: #FFF;
  font-weight: 400;
  font-size: 42px;
  line-height: 35px; /* 83.556% */
  text-transform: uppercase;
  padding: 12.045px 10.325px;
  background: #AD1411;
  transform: rotate(-2.017deg);
  margin-bottom: -18px;
  position: relative;
  z-index: 3;
}

.wheel-result__prize-box {
  background: url("../images/bck-texture-INt5A11.png") no-repeat center top rgba(248, 244, 237, 0.85);
  background-size: 100% 100%;
  border-radius: 15px;
  padding: 50px 22px 45px;
  width: calc(100% - 40px);
  max-width: 340px;
  text-align: center;
  margin: 0 auto 32px;
}
@media screen and (min-width: 37.5em) {
  .wheel-result__prize-box {
    max-width: 450px;
    width: 100%;
  }
}
.wheel-result__prize-box .wheel-result__conditions {
  font-size: 10px;
  color: rgba(30, 13, 0, 0.6);
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.4;
}
.wheel-result__prize-box .cta {
  width: 293px;
  margin-top: 16px;
}

.wheel-result__won {
  font-family: "Gotham-Black", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1E0D00;
  text-transform: uppercase;
  margin: 0 0 10px;
}

#result-label {
  font-family: "Gotham-Black", sans-serif;
  color: #AD1411;
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#result-label span {
  font-size: 16px;
  line-height: 26px;
  display: block;
  margin-top: 10px;
}
#result-label sup {
  font-size: 30px;
  vertical-align: super;
}

#result-desc {
  font-family: "Gotham-Book", sans-serif;
  font-size: 15px;
  color: #1E0D00;
  text-align: center;
  font-weight: 400;
  line-height: 16px; /* 106.667% */
  margin: 0;
}
#result-desc strong {
  font-family: "Gotham-Black", sans-serif;
}

.wheel-result__recettes {
  width: 100%;
  padding-bottom: 70px;
}
@media screen and (max-width: 37.5em) {
  .wheel-result__recettes {
    padding: 0 0 70px 25px;
  }
}
.wheel-result__recettes h3 {
  text-align: center;
  font-family: "nexa-rust-sans-black-2", sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 30px; /* 111.111% */
  letter-spacing: -1.08px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFF9A5 0%, #FBEF93 6%, #F8E684 10%, #F3D768 16%, #F1CE58 19%, #F9E682 49%, #FAE888 51%, #F5DA70 72%, #F4D76B 76%, #EEC448 86%, #FFF9A5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
}
@media screen and (min-width: 37.5em) {
  .wheel-result__recettes .recettes {
    display: flex;
    align-items: stretch;
    gap: 21px;
    width: 100%;
    justify-content: center;
    padding: 0;
  }
}
.wheel-result__recettes .recettes .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
}
.wheel-result__recettes .recettes .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.wheel-result__recettes .recettes .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  font-size: 0;
  transition: background 0.2s, transform 0.2s;
}
.wheel-result__recettes .recettes .slick-dots li button::before {
  display: none;
}
.wheel-result__recettes .recettes .slick-dots li.slick-active button {
  background: #C29D39;
  transform: scale(1.3);
}
.wheel-result__recettes .recettes .recette {
  width: 202px;
  height: 272px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 37.5em) {
  .wheel-result__recettes .recettes .recette {
    margin-right: 21px;
  }
}
.wheel-result__recettes .recettes .recette .top {
  width: 202px;
  height: 136px;
}
.wheel-result__recettes .recettes .recette .top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wheel-result__recettes .recettes .recette .bottom {
  background: #FFF;
  padding: 18px 13px 28px;
  height: 136px;
}
.wheel-result__recettes .recettes .recette .bottom h4 {
  color: #AD1411;
  text-align: center;
  font-family: "Gotham-Black", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.wheel-result__recettes .recettes .recette .bottom p {
  color: #000;
  text-align: center;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

/* ── Already played screen ── */
.wheel-already {
  background: url("../images/bck-texture-INt5A11.png") no-repeat center top rgba(248, 244, 237, 0.85);
  background-size: 100% 100%;
  border-radius: 15px;
  padding: 32px 37px 48px;
  width: 340px;
  text-align: center;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 37.5em) {
  .wheel-already {
    width: 450px;
  }
}
.wheel-already__title {
  font-family: "Gotham-Ultra", sans-serif;
  font-size: 16px;
  line-height: 16px; /* 100% */
  font-weight: 400;
  color: #1E0D00;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.wheel-already hr {
  width: 200px;
  height: 1px;
  background: #1E0D00;
  border-color: #1E0D00;
  margin: 20px auto;
}
.wheel-already__text {
  font-family: "Gotham-Book", sans-serif;
  font-size: 15px;
  color: #1E0D00;
  line-height: 16px; /* 106.667% */
  margin-bottom: 20px;
}
.wheel-already .cta {
  width: 264px;
}

/* ─── Modales ──────────────────────────────────────────────────────────── */
.modal-content {
  border-radius: 0.9375rem;
  background: url("../images/bck-texture-INt5A11.png") no-repeat center top rgba(248, 244, 237, 0.85);
  background-size: cover;
  padding: 30px 16px;
  max-width: 340px;
  margin: 0 auto;
}
.modal-content .modal__close {
  border: none;
  background: none;
  position: absolute;
  top: 13px;
  right: 13px;
  cursor: pointer;
  color: #1E0D00;
  font-size: 20px;
}
.modal-content p {
  color: #1E0D00;
  font-family: "Gotham-Book", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-align: center;
}
.modal-content p a {
  color: #1e0d00;
}
.modal-content .lba {
  width: 330px;
}
.modal-content .lba__logo {
  display: block;
  margin: 0 auto 25px;
  width: 96px;
}
.modal-content .avent__logo {
  display: block;
  margin: 0 auto 25px;
  width: 135px;
}
.modal-content h2 {
  color: #1E0D00;
  text-align: center;
  font-family: "Gotham-Black", sans-serif;
  font-size: 16px;
  line-height: 18px; /* 112.5% */
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
.modal-content hr {
  width: 200px;
  height: 1px;
  background: #1E0D00;
  border-color: #1E0D00;
  margin: 20px auto;
}
.modal-content .programmes {
  max-width: 375px;
  margin: 0 auto;
}
.modal-content .programmes .programme {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.modal-content .programmes .programme__num {
  width: 26px;
  height: 26px;
  border-radius: 20px;
  background: linear-gradient(90deg, #FFF9A5 -26.92%, #FBEF93 -17.69%, #F8E684 -11.54%, #F3D768 -2.31%, #F1CE58 2.31%, #F9E682 48.46%, #FAE888 51.54%, #F5DA70 83.85%, #F4D76B 90%, #EEC448 105.38%, #FFF9A5 126.92%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
.modal-content .programmes .programme__num p {
  color: #7A4320;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Gotham-Black", sans-serif;
  font-size: 17px;
  font-weight: 400;
}
.modal-content .programmes .programme__text p {
  color: #1E0D00;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
}
.modal-content .programmes .programme__text p strong {
  font-family: "Gotham-Black", sans-serif;
  text-transform: uppercase;
}
.modal-content .programmes .programme:last-child {
  margin-bottom: 30px;
}
.modal-content .liste p {
  font-family: "Gotham-Medium", sans-serif;
  color: #1E0D00;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px; /* 114.286% */
  text-align: left;
  position: relative;
  z-index: 99999;
}
.modal-content .liste p a {
  color: #1E0D00;
  text-decoration: underline;
}
.modal-content .labonneapp {
  position: absolute;
  right: -85px;
  bottom: -185px;
}

@media screen and (min-width: 37.5em) {
  .mobile {
    display: none !important;
  }
}

@media screen and (max-width: 37.5em) {
  .desktop {
    display: none !important;
  }
}

/* ─── Modal Classement ─────────────────────────────────── */
.modal-leaderboard-dialog {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: none;
}

.leaderboard-nav {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  width: 31.887px;
  height: 31.886px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.leaderboard-nav--prev {
  left: -16px;
}
.leaderboard-nav--next {
  right: -16px;
}
.leaderboard-nav:hover {
  opacity: 0.8;
}
.leaderboard-nav:disabled {
  opacity: 0.3;
  cursor: default;
}
.leaderboard-nav img {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
.leaderboard-nav span {
  position: relative;
  z-index: 1;
  color: #7A4320;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Gotham-Black", sans-serif;
  font-size: 32.227px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.modal-leaderboard {
  width: 330px;
  min-height: 400px;
  position: relative;
  overflow: visible;
}
.modal-leaderboard h2 {
  margin-top: 10px;
  margin-bottom: 4px;
}

.leaderboard-dots-sep {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.leaderboard-dots-sep span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C29D39;
  display: block;
}
.leaderboard-dots-sep--bottom {
  margin-top: 16px;
  margin-bottom: 0;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.leaderboard-row__rank {
  width: 36px;
  flex-shrink: 0;
  color: #fff;
  font-family: "Gotham-Book", sans-serif;
  font-size: 16px;
  font-weight: 390;
  text-align: left;
}
.leaderboard-row__pseudo {
  flex: 1;
  color: #fff;
  font-family: "Gotham-Book", sans-serif;
  font-size: 16px;
  font-weight: 390;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}
.leaderboard-row__score {
  flex-shrink: 0;
  color: #C29D39;
  font-family: "Gotham-Book", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
.leaderboard-row--current .leaderboard-row__rank,
.leaderboard-row--current .leaderboard-row__pseudo {
  font-weight: 700;
}
.leaderboard-row:last-child {
  border-bottom: none;
}

.leaderboard-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  padding: 40px 0;
}

.leaderboard-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.leaderboard-actions__cta {
  width: 303px !important;
  height: 39.296px;
  text-decoration: none;
}
.leaderboard-actions__cta span {
  color: #7A4320;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Gotham-Black", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.leaderboard-actions__cta--outline {
  background: none !important;
  border: 1px solid #C29D39;
}
.leaderboard-actions__cta--outline span {
  color: #C29D39;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/_variables.scss%22,%22../../assets/styles/components/spinner.scss%22,%22../../assets/styles/components/input.scss%22,%22../../assets/styles/app.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAAA;AACA;AAAA;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AC7CJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;IAAK;;;ACbT;AACA;AAAA;AAEA;AAAA;AAAA;AAAA;EAII;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aFkCY;EEjCZ;EACA;;;AAGJ;EAAkC;;;AAElC;EAAyB;;;AAEzB;EAAwB;;;AAExB;EAA6B;;;AAE7B;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZJ;AAAA;IAaQ;;;AAGJ;AAAA;EACI;;AAIR;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAbJ;AAAA;IAcQ;IACA;IACA;;;AAIR;AAAA;EAEI;;AAGJ;AAAA;EAEI;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAdJ;AAAA;IAeQ;IACA;IACA;IACA;;;AAKR;AAAA;EAEI;;;ACxHR;AACA;AAAA;AAoBA;EACI;EACA;EACA;;;AAGJ;EACI,aHiBY;;;AGdhB;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AA9BI;EAwBR;IASQ;IACA;;;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AA9CA;EA2CJ;IAKQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAjEA;EA4DJ;IAOQ;IACA;IACA;;;;AAKZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAxGA;EA+FJ;IAWQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA,aH9EI;EG+EJ;EACA;;AArHJ;EA6GA;IAUQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAtIJ;EA2HA;IAaQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AA9KJ;EA4KA;IAIQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKJ;EACI;;AAIR;EACI;;AAGI;EACI;;AAMR;AAAA;EAEI;;AAEA;AAAA;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aHjMI;EGkMJ;EACA;;AAxOJ;EA8NA;IAYQ;;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA,aHlOI;EGmOJ;EACA;EACA;EACA;;AA1QJ;EAoQA;IAQQ;;;AAGJ;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;;AAMZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;;AAOZ;AAEA;EACI;EACA;EACA;EACA;EACA;;AA/UI;EA0UR;IAOQ;IACA;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AAIR;EACI,aHhVY;EGiVZ;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,aHvVQ;;;AG2VhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIR;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA,aHrZY;EGsZZ;EACA;EACA;EACA;;;AAGJ;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AAIR;EACI,aHxaY;EGyaZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAreI;EA6dR;IAUQ;IACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;;AAIR;EACI,aHrdY;EGsdZ;EACA;EACA;EACA;EACA;;;AAGJ;EACI,aH9dY;EG+dZ;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;;AAIR;EACI,aHvfY;EGwfZ;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,aH7fQ;;;AGigBhB;EACI;EACA;;AAjiBA;EA+hBJ;IAIQ;;;AAGJ;EACI;EACA,aH/gBQ;EGghBR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAzjBA;EA4jBJ;IAEQ;IACA;IACA;IACA;IACA;IACA;;;AAOJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AA7mBR;EAumBI;IAQQ;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA,aHxmBJ;EGymBI;EACA;EACA;;AAGJ;EACI;EACA;EACA,aHlnBJ;EGmnBI;EACA;EACA;;;AAOpB;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAzqBI;EAiqBR;IAUQ;;;AAGJ;EACI,aHzoBQ;EG0oBR;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI,aH/pBQ;EGgqBR;EACA;EACA;EACA;;AAGJ;EACI;;;AAIR;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA,aHlsBQ;EGmsBR;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA,aH7tBQ;EG8tBR;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,aHpwBJ;EGqwBI;EACA;;AAKJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI,aHnxBR;EGoxBQ;;AAKZ;EACI;;AAMR;EACI,aHlyBI;EGmyBJ;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;EACA;EACA;;;AAz1BA;EA61BR;IAEQ;;;;AAx1BJ;EA41BJ;IAEQ;;;;AAIR;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EAAU;;AACV;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA,aH33BQ;EG43BR;EACA;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,aHh7BQ;EGi7BR;EACA;EACA;;AAGJ;EACI;EACA;EACA,aHz7BQ;EG07BR;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA,aHr8BQ;EGs8BR;EACA;EACA;;AAIA;AAAA;EAEI;;AAIR;EACI;;;AAIR;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,aH1+BI;EG2+BJ;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI%22,%22file%22:%22app.output.css%22%7D */
