:root {
  --font-family-nunito: 'Nunito', sans-serif;
  /* Couleurs principales */
  --color-primary: #F6F7F8;
  --color-close: rgb(255, 255, 255);
  --color-primary-dark: #767171;
  --color-secondary: #222222;
  --color-popup: #F6F7F8;
  --color-border: #eeeeee;
  --color-green: #6ed06e;
  --color-darkgreen: #6aaa64;
  --color-yellow: #d1b036;
  --color-red: #d14d36;
  --color-blue: #a8d136;
  --color-bg: #f6f7f8;
  --color-txt-main: #33363f;
  --color-card-bg: #fff;
  --color-title-size: 2rem;
  --color-value-size: 1.4rem;
  --color-gray: #ebebeb;
  --color-stats: #e4e3e3;
  --color-secondarystats: #222222;
  --color-primary-dark-stat: #767171;
  --color-connexion: #ffffff;
  
  --color-ticks: #c2c2c2;
  --color-white: #ffffff;
  --color-validate: #ffffff;
  --color-dotback: #6ed06e;
  --color-dotborder: #ffffff;
  --color-helpborder: #bbb;
  --text-black: #000;
  --bg-modal: #f6f7f8;
}


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

html, body {
  height: 100%;
  font-family: 'Nunito', sans-serif;
  display: flex;
  background: var(--color-white);
  flex-direction: column;
}

/* HEADER */
.header {
  width: 100vw;
  height: clamp(52px, 4cqh, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0 15px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  left: 0;
  top: 0;
  border-radius: 0;
  container-type: size;
}

.header-icon-row {
  display: flex;
  gap: 8px;
}

.header-btn {
  background: var(--color-primary);
  border: none;
  border-radius: clamp(5px,10cqh,30px);
  width: clamp(30px,70cqh,70px);
  height: clamp(30px,70cqh,70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.header-btn img {
  width: clamp(10px,40cqh,50px);
  height: clamp(10px,40cqh,50px);
  display: block;
}
.header-btn:active {
  transform: scale(0.95);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.header-title-wrapper {
  flex: 1;
  display: flex;
  justify-content: center; /* centre le bloc à largeur réduite */
}
.header-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: fit-content;
  line-height: 1.1;
}

.main-title {
  font-weight: bold;
  font-size: clamp(18px, 45cqh, 34px); /* min 18px, max 22px selon largeur écran */
  color: var(--color-secondary);
  letter-spacing: 0.5px;
}

.subtitle {
  font-size: clamp(12px, 25cqh, 16px); /* min 12px, max 14px */
  color: var(--color-primary-dark);
  letter-spacing: 0.3px;
  margin-top: -2px;
}

/* Prend tout l’espace restant sans scroll */
.big_container {
  flex: 1;
  /*background-color: white;*/
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Container à ratio fixe : 9/16 */
.container {
  height: 100%;
  aspect-ratio: 9 / 16;
  padding-left: 10px;
  padding-right: 10px;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  container-type: inline-size;
}

/* HEADER */
.score_header {
  width: 100%;
  aspect-ratio: 37 / 9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;   
  align-items: flex-end;     
}

.round_block {
  height: 100%;
  flex: 1.5;
  display: flex;
  flex-direction: column;      
  justify-content: space-between; 
  align-items: center;
  gap: 5px;
}

.rounds {
  width: 100%;
  height: 100%;
  display: flex;
  padding-left: 3px;
  flex-direction: row;
  justify-content: flex-start; 
  align-items: flex-end;
}
.rounds span {
  color: var(--color-primary-dark);
  font-size: clamp(0.8rem, 5cqw, 1.9rem);
  font-family: 'Nunito', Arial, sans-serif;
  margin: 0;
  font-weight: 600;
}

.cercles_block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;      
  justify-content: space-between; 
  align-items: center;
}
.cercle_boite {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;      
  justify-content: space-between; 
  align-items: center;
  padding: 3px;
}
.cercle {
  width: 100%;
  background-color: var(--color-primary);
  border-radius: clamp(5px,1.5cqw,30px);
  aspect-ratio: 1 / 1;
  border: 1.5px solid var(--color-border);
}
.cercle.green  { background: var(--color-green); border-color: var(--color-green); }
.cercle.blue   { background: var(--color-blue); border-color: var(--color-blue); }
.cercle.yellow { background: var(--color-yellow); border-color: var(--color-yellow); }
.cercle.red    { background: var(--color-red); border-color: var(--color-red); }
.cercle.gray   { background: var(--color-primary); border-color: var(--color-gray); } /* ou autre couleur neutre */

.score_block {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;      
  justify-content: space-between; 
  align-items: flex-end;
  padding-left: 10px;
  gap: 5px;
}

.little_score_block {
  flex: 1;                       /* prend toute la hauteur dispo si parent en flex-column */
  width: fit-content;            /* hug width (comme Figma) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
}
.score_title {
  width: 100%;
  height: 100%;
  padding-left: 3px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; 
  align-items: flex-end; /* aligne en bas */
}
.score_title span {
  color: var(--color-primary-dark);
  font-size: clamp(0.8rem, 5cqw, 1.9rem);
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 600;
  margin: 0;
}
.real_score_block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;      
  justify-content: space-between; 
  align-items: center;
}
.score_boite {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 3px;
  flex-direction: column;      
  justify-content: space-between; 
  align-items: flex-start;
}
.score{
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: clamp(5px,1.5cqw,30px);
  padding-left: clamp(8px, 1.3cqw, 30px);
  padding-right: clamp(8px, 1.3cqw, 30px);
  display: flex;
  flex-direction: row;      
  justify-content: center; 
  align-items: center;
}
.score span {
  color: var(--color-secondary);
  font-size: clamp(0.8rem, 5cqw, 1.9rem);
  font-size: clamp(0.8rem, 5cqw, 2.5rem);
  font-family: 'Nunito', Arial, sans-serif;
  margin: 0;
  font-weight: 600;
}

/* VIDEO GUESS SLIDER BLOCK */
.video_guess_slider {
  width: 100%;
  aspect-ratio: 7.7 / 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ou autre selon ton design */
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
}
.video_block {
  width: 100%;
  aspect-ratio: 12 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
}

.video_block video {
  object-fit: contain;
  background: #000000;
  border-radius: clamp(18px,4cqw,50px);
  display: block;
}

/* GUESS + */
.guess_block {
  width: 100%;
  aspect-ratio: 75.8 / 9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;     /* ← centrage vertical */
  align-items: center; 
}

.ecart {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;      
  justify-content: center;
  align-items: flex-start;
}
.ecart span {
  color: var(--color-primary-dark);
  font-size: 13px;
  font-family: 'Nunito', Arial, sans-serif;
  margin: 0;
  font-weight: 600;
}

.guess {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;      
  justify-content: center;
  align-items: flex-end;
}
.guess span {
  color: var(--color-darkgreen);
  font-size: clamp(0.8rem, 8cqw, 4rem);
  font-family: 'Nunito', Arial, sans-serif;
  margin: 0;
  font-weight: 600;
}
.guess span.blue   { color: var(--color-blue); }
.guess span.green  { color: var(--color-green); }
.guess span.yellow { color: var(--color-yellow); }
.guess span.red    { color: var(--color-red); }

.plus_score {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;      
  justify-content: center;
  align-items: flex-start;
}
.plus_score span {
  color: var(--color-primary-dark);
  font-size: clamp(0.8rem, 5cqw, 1.9rem);
  font-family: 'Nunito', Arial, sans-serif;
  margin: 0;
  font-weight: 600;
  opacity: 0;
  transform: translateY(50%);          /* Position de base, invisible ET à sa place */
  transition: 
    opacity 0.23s cubic-bezier(.46,.03,.52,.96),
    transform 0.32s cubic-bezier(.46,.03,.52,.96);  /* Smooth montée */
}
.plus_score span.visible {
  opacity: 1;
  transform: translateY(0%);
}
.plus_score span.blue   { color: var(--color-blue); }
.plus_score span.green  { color: var(--color-green); }
.plus_score span.yellow { color: var(--color-yellow); }
.plus_score span.red    { color: var(--color-red); }

/* SLIDER */
.slider_block {
  display: flex;
  width: 100%;
  aspect-ratio: 47.2 / 9;
  gap: 3px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; 
}
.slider_column {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 3px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; 
}
.true_year_row {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; 
}
.true_year {
  top: 0;
  left: 0;
  position: inherit;
  transform: translateX(-30%);
  font-size: clamp(0.8rem, 5cqw, 1.9rem);
  font-weight: 700;
  color: var(--color-secondary);
  pointer-events: none;
  transition: left 0.2s cubic-bezier(.46,.03,.52,.96);
  z-index: 2;
}
.true_year.visible  { color: var(--color-green); }
.slider_row {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center; 
}
.slider_marker_dot {
  position: absolute;
  top: 50%;                 /* centre verticalement */
  left: 0;
  width: clamp(8px, 6.5cqw, 35px);
  height: clamp(8px, 6.5cqw, 35px);
  border-radius: 50%;
  background: var(--color-dotback);
  border: clamp(1px, 0.7cqw, 4px) solid var(--color-dotborder);
  box-shadow: 0 1px 4px rgba(110,208,110,0.16);
  transform: translate(0%, -50%) translateY(-0px);
  opacity: 0;
  pointer-events: none;
  transition: left 0.18s cubic-bezier(.46,.03,.52,.96), opacity 0.13s;
  z-index: 2;
}
.slider_marker_dot.visible {
  opacity: 1;
}
.slider {
  width: 100%;
  accent-color: var(--color-green);
  z-index: 1;
}
.slider_ticks {
  width: 96%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; 
}
.tick {
  width: 0.5cqw;
  min-width: 2px;
  max-width: 7px;
  height: 2cqw;
  min-height: 9px;
  max-height: 20px;
  background: var(--color-ticks);
  border-radius: 5px;
}
.tick.major {
  width: 0.5cqw;
  min-width: 2px;
  max-width: 7px;
  height: 3.4cqw;
  min-height: 15px;
  max-height: 28px;
  background: var(--color-green);
}
.slider_labels {
  width: 104%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.slider_labels span {
  color: var(--color-secondary);
  font-size: clamp(0.2rem, 4.0cqw, 1.9rem);
  font-family: 'Nunito', Arial, sans-serif;
}

/* ===================== SLIDER CUSTOM TRACK + THUMB ===================== */

/* Chrome, Safari, Edge */
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
}
.slider::-webkit-slider-runnable-track {
  background: linear-gradient(
    to right,
    var(--slider-active, var(--color-green)) 0%,
    var(--slider-active, var(--color-green)) var(--slider-progress, 0%),
    var(--color-primary) var(--slider-progress, 0%),
    var(--color-primary) 100%
  );
  height: clamp(8px, 2cqw, 30px); /* augmente la hauteur ! */
  border-radius: clamp(8px, 2cqw, 30px);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: var(--slider-active, var(--color-green));   /* MÊME variable que la barre ! */
  width: clamp(8px, 5.8cqw, 40px);;
  height: clamp(8px, 5.8cqw, 40px);;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(110,208,110,0.13);
  margin-top: calc(-0.5 * (clamp(8px, 5.8cqw, 40px) - clamp(8px, 2cqw, 30px)));
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s;
}

/* Firefox */
.slider::-moz-range-track {
  background: linear-gradient(
    to right,
    var(--slider-active, var(--color-green)) 0%,
    var(--slider-active, var(--color-green)) var(--slider-progress, 0%),
    var(--color-primary) var(--slider-progress, 0%),
    var(--color-primary) 100%
  );
  height: 8px;
  border-radius: 5px;
}
.slider::-moz-range-thumb {
  background: var(--slider-active, var(--color-green));
  width: 17px;
  height: 17px;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(110,208,110,0.13);
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s;
}

/* IE & Edge legacy */
.slider::-ms-fill-lower {
  background: var(--slider-active, var(--color-green));
  border-radius: 5px;
}
.slider::-ms-fill-upper {
  background: var(--color-primary);
  border-radius: 5px;
}
.slider::-ms-thumb {
  background: var(--slider-active, var(--color-green));
  width: 17px;
  height: 17px;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(110,208,110,0.13);
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s;
}

/* Focus style clean */
.slider:focus {
  outline: none;
}

/* BOTTOM 3 FRAMES */
.validation_block {
  display: flex;
  width: 100%;
  aspect-ratio: 65 / 9;
  flex-direction: row;
  justify-content: space-between;     /* ← centrage vertical */
  align-items: center; 
}

.validation_1 {
  width: 100%;
  height: 100%;
}

.validation {
  height: 100%;
  aspect-ratio: 30 / 9;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;     /* ← centrage vertical */
  align-items: center; 
}
.validation_btn {
  width: 100%;
  aspect-ratio: 35 / 9;
  font-family: var(--font-family-nunito);
  font-size: clamp(0.8rem, 6cqw, 2.5rem);
  border-radius: clamp(5px,1.5cqw,30px);
  background: var(--color-green);
  color: var(--color-validate);
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.validation_btn:hover {
  background: var(--color-green);
}
.validation_btn:active {
  transform: scale(0.95);
}

.validation_btn:not(:active) {
  transform: scale(1);
}

.validation_2 {
  width: 100%;
  height: 100%;
}

/* FOOTER */
.bottom_block {
  width: 100%;
  aspect-ratio: 161,1 / 9;
  padding: 10px;
  flex-direction: row;
  justify-content: space-between;     /* ← centrage vertical */
  align-items: center; 
  text-align: center;
}

.bottom_text {
  color: var(--color-secondary);
  font-size: clamp(0.3rem, 3cqw, 1.7rem);
}

.toast-message {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: opacity 0.3s, bottom 0.3s;
  max-width: 90vw;      /* Empêche de dépasser sur mobile */
  text-align: center;   /* Centrage texte si retour à la ligne */
  word-break: break-word; /* Coupe proprement sur petits écrans */
  white-space: nowrap;      /* NE PAS passer à la ligne */
  overflow: hidden;         /* Coupe ce qui dépasse */
  text-overflow: ellipsis;  /* Ajoute "…" si ça dépasse */
  max-width: 95vw;          /* Limite la largeur à 95% de l'écran */
}

/* Quand visible, même règle */
.toast-message.visible {
  opacity: 1;
  bottom: 48px;
  pointer-events: auto;
}

button, .btn, .end_btn, .heart_btn {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent; /* Enlève le flash bleu mobile */
}

/* Accessibilité : remplace le focus bleu par un vert doux */
button:focus-visible,
.btn:focus-visible,
.end_btn:focus-visible, .heart_btn:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

/* OVERLAY */


#orientation-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;   /* bloque toute interaction derrière, sauf si tu veux pointer-events: auto; */
}

.overlay-spacer_top {
  width: 100%;
  height: 10%;
}

.overlay-img-row {
  width: 100%;
  height: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-img {
  height: 100%;
  object-fit: contain;
}

.overlay-text-column {
  width: 100%;
  height: 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay-text_1 {
  width: 100%;
  color: #fff;
  font-size: 1.0rem;
  text-align: center;
  width: 90vw;
  line-height: 1.4;
  font-family: 'Nunito', Arial, sans-serif;
}

.overlay-text_2 {
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  width: 90vw;
  line-height: 1.4;
  font-family: 'Nunito', Arial, sans-serif;
}

.overlay-spacer_bottom {
  width: 100%;
  height: 10%;
}

.hidden { display: none !important; }
[hidden] { display: none !important; }

:root[data-theme="dark"] {
    /* Fond et éléments principaux */
    --color-primary: #3A3A3C;
    --color-primary-dark: #aaa;
    --color-primary-menu: #121212;
    --color-connexion: #3A3A3C;

    /* Texte / contrastes inversés */
    --color-secondary: #c7c7c7;
    --color-txt-main: #e0e0e0;
    --text-black: #ffffff;

    /* Arrière-plans */
    --color-bg: #121212;
    --color-card-bg: #2e2e2e;
    --bg-modal: #1c1c1c;

    /* Bordures et gris */
    --color-border: #444;
    --color-gray: #444;
    --color-ticks: #3A3A3C;

    /* Couleurs thématiques (adaptées mais toujours reconnaissables) */
    --color-green: #2c8a4b;
    --color-darkgreen: #2c8a4b;
    --color-yellow: #dbb82c;
    --color-red: #d83928;
    --color-blue: #4c835d;

    /* Tailles inchangées */
    --color-title-size: 2rem;
    --color-value-size: 1.4rem;

    /* Blanc réel si besoin */
    --color-white: #0E0E0F;
    --color-validate: #c7c7c7;
    --color-dotback: #105928;
    --color-dotborder: #aaa;
    --color-popup: #1f1f1f;
    --color-helpborder: #444;
    --color-stats: #e4e3e3;
    --color-secondarystats: #222222;
    --color-primary-dark-stat: #3A3A3C;
    --color-close: #3A3A3C;
}

:root[data-theme="light"] {
  --font-family-nunito: 'Nunito', sans-serif;
  /* Couleurs principales */
  --color-primary: #F6F7F8;
  --color-primary-menu: #ffffff;
  --color-close: rgb(255, 255, 255);
  --color-primary-dark: #767171;
  --color-secondary: #222222;
  --color-popup: #F6F7F8;
  --color-border: #eeeeee;
  --color-green: #6ed06e;
  --color-darkgreen: #6aaa64;
  --color-yellow: #d1b036;
  --color-red: #d14d36;
  --color-blue: #a8d136;
  --color-bg: #f6f7f8;
  --color-txt-main: #33363f;
  --color-card-bg: #fff;
  --color-title-size: 2rem;
  --color-value-size: 1.4rem;
  --color-gray: #ebebeb;
  --color-stats: #e4e3e3;
  --color-secondarystats: #222222;
  --color-primary-dark-stat: #767171;
  --color-connexion: #ffffff;
  
  --color-ticks: #c2c2c2;
  --color-white: #ffffff;
  --color-validate: #ffffff;
  --color-dotback: #6ed06e;
  --color-dotborder: #ffffff;
  --color-helpborder: #bbb;
  --text-black: #000;
  --bg-modal: #f6f7f8;
}


@media (prefers-color-scheme: dark) {
  :root:not([data-theme="dark"]):not([data-theme="light"]) {
    /* Fond et éléments principaux */
    --color-primary: #3A3A3C;
    --color-primary-dark: #aaa;
    --color-primary-menu: #121212;
    --color-connexion: #3A3A3C;

    /* Texte / contrastes inversés */
    --color-secondary: #c7c7c7;
    --color-txt-main: #e0e0e0;
    --text-black: #ffffff;

    /* Arrière-plans */
    --color-bg: #121212;
    --color-card-bg: #2e2e2e;
    --bg-modal: #1c1c1c;

    /* Bordures et gris */
    --color-border: #444;
    --color-gray: #444;
    --color-ticks: #3A3A3C;

    /* Couleurs thématiques */
    --color-green: #2c8a4b;
    --color-darkgreen: #2c8a4b;
    --color-yellow: #dbb82c;
    --color-red: #d83928;
    --color-blue: #4c835d;

    /* Tailles inchangées */
    --color-title-size: 2rem;
    --color-value-size: 1.4rem;

    --color-white: #0E0E0F;
    --color-validate: #c7c7c7;
    --color-dotback: #105928;
    --color-dotborder: #aaa;
    --color-popup: #1f1f1f;
    --color-helpborder: #444;
    --color-stats: #e4e3e3;
    --color-secondarystats: #222222;
    --color-primary-dark-stat: #3A3A3C;
    --color-close: #3A3A3C;
  }
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]):not([data-theme="light"]) {
    --font-family-nunito: 'Nunito', sans-serif;
    --color-primary: #F6F7F8;
    --color-primary-menu: #ffffff;
    --color-close: rgb(255, 255, 255);
    --color-primary-dark: #767171;
    --color-secondary: #222222;
    --color-popup: #F6F7F8;
    --color-border: #eeeeee;
    --color-green: #6ed06e;
    --color-darkgreen: #6aaa64;
    --color-yellow: #d1b036;
    --color-red: #d14d36;
    --color-blue: #a8d136;
    --color-bg: #f6f7f8;
    --color-txt-main: #33363f;
    --color-card-bg: #fff;
    --color-title-size: 2rem;
    --color-value-size: 1.4rem;
    --color-gray: #ebebeb;
    --color-stats: #e4e3e3;
    --color-secondarystats: #222222;
    --color-primary-dark-stat: #767171;
    --color-ticks: #c2c2c2;
    --color-white: #ffffff;
    --color-validate: #ffffff;
    --color-dotback: #6ed06e;
    --color-dotborder: #ffffff;
    --color-helpborder: #bbb;
    --text-black: #000;
    --bg-modal: #f6f7f8;
    --color-connexion: #ffffff;
  }
}


/* {
  outline: 1px dotted red;
}