
@font-face {
  font-family: 'Helvetica Modeal';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/helvetica.woff2') format('woff2');
}
@font-face {
  font-family: 'Helvetica Modeal';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/helvetica-bold.woff2') format('woff2');
}

:root {
  --green: #003E2E;
  --dark-green: #172A31;
  --light-green: #008E6F;
  --yellow: #FFFFB7;
  --beige: #F6F6EA;
  --paper: #FFFEF9;
  --coral: #FF4225;
  --ice: #D9FFF9;

  --green-900: #002B20;
  --green-850: #003526;
  --green-800: #003E2E;
  --green-700: #0A5240;
  --green-600: #0E6B52;
  --green-500: #008E6F;
  --green-400: #2FA98B;
  --green-300: #6FC6AE;
  --green-200: #AFE2D4;
  --green-100: #DBF2EB;
  --green-50:  #EEF8F4;

  --neutral-0:   #FFFEF9;
  --neutral-50:  #F6F6EA;
  --neutral-100: #ECEBDC;
  --neutral-200: #DCDCCB;
  --neutral-300: #C4C4B2;
  --neutral-400: #9C9C8C;
  --neutral-500: #74746A;
  --neutral-600: #54544D;
  --neutral-700: #3A3A37;
  --neutral-800: #25282A;
  --neutral-900: #172A31;

  --surface-page: var(--green-800);
  --surface-page-light: var(--beige);
  --surface-card: var(--paper);
  --surface-card-dark: #0A4634;
  --surface-raised: #0E6B52;
  --surface-inset: var(--green-900);

  --text-strong: var(--green-900);
  --text-body: #2A3B36;
  --text-muted: #6A766F;
  --text-faint: #95A09A;
  --text-on-green: var(--paper);
  --text-on-green-muted: rgba(255,254,249,0.66);
  --text-on-green-faint: rgba(255,254,249,0.42);
  --text-accent: var(--yellow);
  --text-link: var(--light-green);

  --accent: var(--yellow);
  --accent-ink: var(--green-800);
  --accent-verdant: var(--light-green);
  --focus-ring: var(--light-green);
  --selected-ring: var(--yellow);

  --border-light: rgba(23,42,49,0.12);
  --border-on-green: rgba(255,254,249,0.18);
  --border-strong: rgba(23,42,49,0.24);

  --status-info: var(--ice);
  --status-success: var(--light-green);
  --status-warn: #E7B23B;
  --status-danger: var(--coral);
  --status-danger-soft: #FFE6E1;

  --highlight-bg: var(--yellow);
  --highlight-ink: var(--green-800);

  --font-sans: 'Helvetica Modeal', 'Arimo', Helvetica, 'Helvetica Neue', Arial, sans-serif;
  --font-display: var(--font-sans);
  --weight-regular: 400;
  --weight-bold: 700;

  --text-display: clamp(2.5rem, 5.5vw, 4.125rem);
  --text-h1: clamp(2rem, 3.6vw, 3rem);
  --text-h2: clamp(1.5rem, 2.4vw, 2rem);
  --text-h3: 1.375rem;
  --text-h4: 1.125rem;
  --text-lead: 1.125rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  --leading-display: 1.0;
  --leading-tight: 1.1;
  --leading-snug: 1.2;
  --leading-body: 1.45;
  --leading-relaxed: 1.6;

  --tracking-tight: -0.02em;
  --tracking-wide: 0.02em;
  --tracking-eyebrow: 0.14em;

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem;
  --config-max: 1180px;

  --radius-xs: 0.375rem;
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 2.25rem;
  --radius-full: 999px;

  --shadow-xs: 0 1px 2px rgba(0,43,32,0.06);
  --shadow-sm: 0 2px 10px rgba(0,43,32,0.07);
  --shadow-md: 0 12px 32px -14px rgba(0,43,32,0.24);
  --shadow-lg: 0 28px 64px -22px rgba(0,43,32,0.34);
  --shadow-xl: 0 40px 90px -30px rgba(0,43,32,0.42);
  --shadow-selected: 0 0 0 2px var(--yellow), 0 14px 34px -16px rgba(0,43,32,0.38);
  --shadow-on-green: 0 22px 54px -24px rgba(0,0,0,0.6);
  --glow-yellow: 0 12px 30px -14px rgba(0,43,32,0.45);

  --ease-brand: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.15s;
  --dur-base: 0.3s;
  --dur-slow: 0.55s;
  --dur-reveal: 0.6s;

  --focus-width: 3px;
  --focus-offset: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: var(--font-sans);
  line-height: var(--leading-snug);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}
body { margin: 0; background-color: var(--surface-page); color: var(--text-body); }
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: var(--text-link); text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
::selection { background: var(--yellow); color: var(--green-800); }

.mod-mark {
  padding: 0.06em 0.36em;
  color: var(--highlight-ink);
  background-color: var(--highlight-bg);
  border-radius: 0.34em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.mod-eyebrow {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.005em;
}

@keyframes mod-focus-in { from { outline-offset: 7px; outline-color: transparent; } }
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: var(--radius-xs);
  animation: mod-focus-in .35s var(--ease-brand);
}

.mod-capsule {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 356 412' fill='none'%3E%3Cpath d='M356 329.627C356 339.494 355.214 349.284 352.364 358.884C344.078 386.814 323.393 403.447 291.078 409.615C281.368 411.468 271.535 411.91 261.679 411.945C235.6 412.043 209.521 411.98 183.443 411.98H177.595V344.877C177.036 349.578 176.145 354.252 174.768 358.884C166.483 386.814 145.798 403.447 113.483 409.615C103.773 411.468 93.9404 411.91 84.0839 411.945C58.0051 412.043 31.9263 411.98 5.84748 411.98H0V0.250483C1.74129 0.173288 2.84275 0.0750396 3.95232 0.0750396C33.5704 0.089075 63.1966 -0.191634 92.7984 0.250483C108.324 0.489085 123.429 3.39442 137.302 9.85774C159.032 19.9843 170.63 36.3707 175.716 56.7642C176.583 60.2169 177.182 63.6836 177.595 67.1644V0.250483C179.336 0.173288 180.438 0.0750396 181.547 0.0750396C211.165 0.089075 240.792 -0.191634 270.393 0.250483C285.919 0.489085 301.024 3.39442 314.898 9.85774C336.627 19.9843 348.225 36.3707 353.311 56.7642C355.409 65.1714 355.992 73.6839 355.992 82.2525C355.992 164.711 355.992 247.169 356 329.627Z' fill='%23172A31'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 356 412' fill='none'%3E%3Cpath d='M356 329.627C356 339.494 355.214 349.284 352.364 358.884C344.078 386.814 323.393 403.447 291.078 409.615C281.368 411.468 271.535 411.91 261.679 411.945C235.6 412.043 209.521 411.98 183.443 411.98H177.595V344.877C177.036 349.578 176.145 354.252 174.768 358.884C166.483 386.814 145.798 403.447 113.483 409.615C103.773 411.468 93.9404 411.91 84.0839 411.945C58.0051 412.043 31.9263 411.98 5.84748 411.98H0V0.250483C1.74129 0.173288 2.84275 0.0750396 3.95232 0.0750396C33.5704 0.089075 63.1966 -0.191634 92.7984 0.250483C108.324 0.489085 123.429 3.39442 137.302 9.85774C159.032 19.9843 170.63 36.3707 175.716 56.7642C176.583 60.2169 177.182 63.6836 177.595 67.1644V0.250483C179.336 0.173288 180.438 0.0750396 181.547 0.0750396C211.165 0.089075 240.792 -0.191634 270.393 0.250483C285.919 0.489085 301.024 3.39442 314.898 9.85774C336.627 19.9843 348.225 36.3707 353.311 56.7642C355.409 65.1714 355.992 73.6839 355.992 82.2525C355.992 164.711 355.992 247.169 356 329.627Z' fill='%23172A31'/%3E%3C/svg%3E") center/contain no-repeat;
}

.mod-grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.3; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

@keyframes mod-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes mod-fade-up-sm { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
@keyframes mod-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mod-scale-in { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: none; } }
@keyframes mod-pop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
@keyframes mod-ring-draw { from { stroke-dashoffset: var(--dash); } }
@keyframes mod-sheen { 0% { transform: translateX(-120%) rotate(8deg); } 100% { transform: translateX(220%) rotate(8deg); } }
@keyframes mod-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes mod-breathe { 0%,100% { transform: scale(1); opacity:.55 } 50% { transform: scale(1.04); opacity:.72 } }
@keyframes mod-check-draw { from { stroke-dashoffset: 30; } to { stroke-dashoffset: 0; } }
@keyframes mod-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes mod-spin { to { transform: rotate(360deg); } }

.mod-reveal { opacity: 0; animation: mod-fade-up var(--dur-reveal) var(--ease-brand) forwards; animation-delay: var(--d, 0ms); }
.mod-reveal-sm { opacity: 0; animation: mod-fade-up-sm 0.5s var(--ease-brand) forwards; animation-delay: var(--d, 0ms); }
.mod-in-scale { opacity: 0; animation: mod-scale-in 0.45s var(--ease-brand) forwards; animation-delay: var(--d, 0ms); }

.mod-scroll { scrollbar-width: thin; scrollbar-color: rgba(10,82,64,0.32) transparent; }
.mod-scroll::-webkit-scrollbar { width: 10px; height: 10px; }
.mod-scroll::-webkit-scrollbar-track { background: transparent; }
.mod-scroll::-webkit-scrollbar-thumb { background: rgba(10,82,64,0.22); border-radius: 999px; border: 3px solid transparent; background-clip: padding-box; }
.mod-scroll::-webkit-scrollbar-thumb:hover { background: rgba(10,82,64,0.38); background-clip: padding-box; }
.mod-scroll-dark { scrollbar-color: rgba(255,254,249,0.22) transparent; }
.mod-scroll-dark::-webkit-scrollbar-thumb { background: rgba(255,254,249,0.18); }

.mod-btn {
  transition: transform .18s var(--ease-brand), filter .3s, box-shadow .3s, background .3s, border-color .3s;
  will-change: transform;
}
.mod-btn:hover { transform: translateY(-1px); }
.mod-btn:active { transform: scale(.975); }
.mod-btn.is-filled:hover { filter: brightness(.96); box-shadow: var(--shadow-md); }
.mod-btn.is-ghost:hover { background: rgba(0,142,111,.10); }
.mod-btn.is-outline:hover { background: rgba(0,142,111,.08); }
.mod-btn:disabled { opacity: .42; cursor: not-allowed; transform: none; filter: none; box-shadow: none; }

.mod-slide { position: relative; display: inline-grid; overflow: hidden; vertical-align: bottom; }
.mod-slide-a, .mod-slide-b { grid-area: 1 / 1; white-space: nowrap; transition: transform .42s var(--ease-brand); }
.mod-slide-b { transform: translateY(115%); }
.mod-btn:hover .mod-slide-a { transform: translateY(-115%); }
.mod-btn:hover .mod-slide-b { transform: translateY(0); }
.mod-btn:disabled .mod-slide-a { transform: none; }
.mod-btn:disabled .mod-slide-b { transform: translateY(115%); }

.mod-group-enter { animation: mod-fade-up .5s var(--ease-brand) both; }

.mod-hr-green { height: 1px; background: rgba(255,254,249,.10); border: 0; }

@keyframes mod-curtain-in { from { transform: translateY(101%); } to { transform: translateY(0); } }
@keyframes mod-curtain-out { from { transform: translateY(0); } to { transform: translateY(-101%); } }
@keyframes mod-logo-in { from { opacity: 0; transform: translateY(16px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes mod-logo-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes mod-ring-pulse { 0% { transform: scale(.4); opacity: .5; } 100% { transform: scale(1.9); opacity: 0; } }

.mod-trans {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  background: var(--green-800); will-change: transform;
}
.mod-trans.is-cover { animation: mod-curtain-in .56s var(--ease-brand) forwards; }
.mod-trans.is-reveal { animation: mod-curtain-out .62s var(--ease-brand) .04s forwards; }
.mod-trans-logo { position: relative; display: inline-flex; animation: mod-logo-in .5s var(--ease-brand) both; }
.mod-trans-ring { position: absolute; inset: -38px; border-radius: 50%; border: 2px solid var(--yellow); animation: mod-ring-pulse 1.1s var(--ease-out) infinite; pointer-events: none; }
.mod-trans-cap { animation: mod-logo-in .5s var(--ease-brand) .08s both; }

.intro-timeline-line { position: absolute; left: 17px; right: calc(20% - 17px); top: 16px; height: 2px; background: rgba(255,254,249,.13); border-radius: 2px; }
.intro-timeline-line-fill { position: absolute; left: 17px; top: 16px; height: 2px; width: 20%; background: linear-gradient(90deg, var(--yellow), rgba(255,255,183,.2)); border-radius: 2px; }

.config-inner { width: 100%; max-width: clamp(840px, 72vw, 1240px); margin: 0 auto; }
.recap-grid { width: 100%; }
.intro-shell { width: 100%; max-width: 1200px; margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
  .mod-collapse2 { transition: none !important; }
}

.mod-gh-icon { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; flex: none;
  border-radius: var(--radius-sm); background: var(--green-100); color: var(--green-600); transition: all .3s var(--ease-brand); }

@media (prefers-reduced-motion: reduce) {
  .mod-trans.is-cover, .mod-trans.is-reveal { animation: none; }
  .mod-trans-ring { animation: none; opacity: 0; }
}


@keyframes mod-step-out-up { to { opacity: 0; transform: translateY(-22px); } }
@keyframes mod-step-out-down { to { opacity: 0; transform: translateY(22px); } }
@keyframes mod-fade-down-sm { from { opacity: 0; transform: translateY(-9px); } to { opacity: 1; transform: none; } }
.config-inner { animation: mod-fade-up-sm .34s var(--ease-brand) var(--hold, 0ms) both; }
.config-inner.step-enter-back { animation-name: mod-fade-down-sm; }
.config-inner.step-leave-fwd { animation: mod-step-out-up .23s var(--ease-in-out) forwards; pointer-events: none; }
.config-inner.step-leave-back { animation: mod-step-out-down .23s var(--ease-in-out) forwards; pointer-events: none; }

.mod-trans-lip { position: absolute; left: -2vw; width: 104vw; height: 96px; background: var(--green-800); pointer-events: none; }
.mod-trans-lip.is-top { top: -95px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.mod-trans-lip.is-bot { bottom: -95px; border-radius: 0 0 50% 50% / 0 0 100% 100%; }

.rail-item { position: relative; }
.rail-item::before { content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 0; transform: translateY(-50%); border-radius: 2px; background: var(--yellow); opacity: 0; transition: height .45s var(--ease-brand), opacity .3s var(--ease-brand); }
.rail-item.is-active::before { height: 26px; opacity: 1; }
.rail-item .rail-txt { transition: transform .35s var(--ease-brand), color .3s; }
.rail-item.is-reachable:not(.is-active):hover .rail-txt { transform: translateX(3px); }
.rail-item.is-future .rail-dot { opacity: .6; }
.rail-dot { transition: background .35s var(--ease-brand), color .35s var(--ease-brand), border-color .35s var(--ease-brand), box-shadow .35s var(--ease-brand), transform .35s var(--ease-brand), opacity .3s; }
.rail-dot.is-done { animation: mod-pop .5s var(--ease-brand); }
.rail-dot.is-active { transform: scale(1.06); }
.rail-check polyline { stroke-dasharray: 30; stroke-dashoffset: 30; animation: mod-check-draw .45s var(--ease-brand) .12s forwards; }

@keyframes mod-chip-in { from { opacity: 0; transform: translateY(5px) scale(.96); } to { opacity: 1; transform: none; } }
.chip-in { display: inline-flex; animation: mod-chip-in .3s var(--ease-brand); }

.intro-shell { transition: transform .6s var(--ease-in-out), opacity .6s var(--ease-in-out); will-change: transform; }
.intro.is-leaving .intro-shell { transform: scale(.98) translateY(-10px); opacity: .55; }

.mod-btn-ic { transition: transform .35s var(--ease-brand); }
.mod-btn:hover:not(:disabled) .mod-btn-icr { transform: translateX(3px); }
.mod-btn:hover:not(:disabled) .mod-btn-icl { transform: translateX(-3px); }
.mod-btn:active .mod-btn-ic { transform: none; transition-duration: .12s; }

.cap-tile:active { transform: translateY(0) scale(.97) !important; transition-duration: .12s !important; }

@keyframes mod-nope { 0%, 100% { transform: translateX(0); } 30% { transform: translateX(-4px); } 60% { transform: translateX(4px); } }

.recap-card { transition: box-shadow .35s var(--ease-brand), transform .35s var(--ease-brand), border-color .3s; }
.recap-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.recap-leader { flex: 1 1 auto; min-width: 24px; border-bottom: 1px dotted var(--border-strong); transform: translateY(-4px); }

.opt-photo { display: block; width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--neutral-100); border-bottom: 1px solid var(--border-light); }
.opt-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-brand); }
.opt-photo.is-side { width: clamp(120px, 36%, 200px); flex: none; align-self: stretch; aspect-ratio: auto; border-bottom: none; border-right: 1px solid var(--border-light); }

.v3d-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; align-items: center; }
.v3d-thumb { display: flex; align-items: center; justify-content: center; aspect-ratio: 1.1; transition: transform .3s var(--ease-brand); }
.v3d-thumb:hover { transform: translateY(-2px); }
.v3d-thumb:active { transform: scale(.97); }
.v3d-thumb img { display: block; max-width: 100%; max-height: 100%; }
@media (max-width: 660px) { .v3d-row { grid-template-columns: repeat(2, 1fr); } }


.mod-x { border-radius: var(--radius-xs); transition: background .25s, transform .2s var(--ease-brand); }
.mod-x:hover { background: rgba(178,50,24,.1); }
.mod-x:active { transform: scale(.9); }

.gb-anchor { scroll-margin-top: 14px; }

.ovl { animation: mod-fade-up-sm .3s var(--ease-brand); }
.ovl-row { transition: background .25s var(--ease-brand), border-color .25s var(--ease-brand), transform .2s var(--ease-brand); }
.ovl-row:hover { background: var(--green-50); border-color: var(--green-400) !important; }
.ovl-row:active { transform: scale(.992); }
.ovl-row .ovl-pen { transition: transform .3s var(--ease-brand); }
.ovl-row:hover .ovl-pen { transform: translateY(-1px) rotate(-8deg); }

.rail-answers { transition: background .3s var(--ease-brand), border-color .3s; }
.rail-answers:hover { background: rgba(255,254,249,.1) !important; }
.rail-answers:active { transform: scale(.98); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .mod-reveal, .mod-reveal-sm, .mod-in-scale, .config-inner { opacity: 1 !important; }
}

#tarteaucitronRoot, #tarteaucitronRoot * { font-family: var(--font-sans) !important; }

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: var(--green-800) !important;
  color: var(--text-on-green) !important;
  border: 1px solid var(--border-on-green) !important;
  box-shadow: var(--shadow-on-green) !important;
  border-radius: var(--radius-lg) !important;
  padding: 18px 24px !important;
  left: 16px !important; right: 16px !important; bottom: 16px !important;
  width: auto !important; max-width: 1080px !important; margin: 0 auto !important;
}
#tarteaucitronRoot #tarteaucitronDisclaimerAlert,
#tarteaucitronRoot #tarteaucitronDisclaimerAlert b,
#tarteaucitronRoot #tarteaucitronDisclaimerAlert strong {
  color: var(--text-on-green) !important;
  font-size: var(--text-sm) !important;
  line-height: 1.5 !important;
}

#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton,
#tarteaucitronRoot #tarteaucitronAlertBig button {
  border-radius: var(--radius-pill) !important;
  font-size: var(--text-sm) !important;
  font-weight: 700 !important;
  padding: 11px 22px !important;
  margin: 6px !important;
  border: 1px solid transparent !important;
  transition: transform .18s var(--ease-brand), background .18s var(--ease-brand), opacity .18s var(--ease-brand) !important;
}
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton:hover,
#tarteaucitronRoot #tarteaucitronAlertBig button:hover { transform: translateY(-1px) !important; }
#tarteaucitronRoot #tarteaucitronAlertBig button:active { transform: scale(.985) !important; }

#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow {
  background: var(--yellow) !important;
  color: var(--accent-ink) !important;
  border-color: var(--yellow) !important;
}
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow:hover { background: #ffffcf !important; }
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronDeny {
  background: transparent !important;
  color: var(--text-on-green) !important;
  border-color: var(--border-on-green) !important;
}
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronDeny:hover { background: rgba(255,254,249,0.10) !important; }
#tarteaucitronRoot #tarteaucitronAlertBig button:not(.tarteaucitronAllow):not(.tarteaucitronDeny) {
  background: transparent !important;
  color: var(--green-300) !important;
  border-color: transparent !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
#tarteaucitronRoot #tarteaucitronAlertBig button:not(.tarteaucitronAllow):not(.tarteaucitronDeny):hover { color: var(--text-on-green) !important; }

#tarteaucitronRoot.tarteaucitronBeforeVisible:before {
  background: rgba(0,43,32,.55) !important;
}
#tarteaucitronRoot #tarteaucitron {
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-xl) !important;
  max-width: 600px !important;
  background: var(--paper) !important;
}
#tarteaucitronRoot #tarteaucitronServices,
#tarteaucitronRoot #tarteaucitronServices_mandatory { background: var(--paper) !important; border: 0 !important; }

#tarteaucitronRoot .tarteaucitronAllow .tarteaucitronCheck,
#tarteaucitronRoot .tarteaucitronAllow .tarteaucitronCross,
#tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCheck,
#tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCross { display: none !important; }

#tarteaucitronRoot .tarteaucitronH1 {
  display: block !important;
  background: var(--green-800) !important;
  color: var(--text-on-green) !important;
  font-size: 1.05rem !important; font-weight: 700 !important;
  padding: 17px 22px !important; margin: 0 !important; text-align: left !important;
}
#tarteaucitronRoot #tarteaucitronMainLineOffset { padding: 0 0 16px !important; background: var(--paper) !important; }
#tarteaucitronRoot #tarteaucitronInfo,
#tarteaucitronRoot #tarteaucitronInfo p {
  color: var(--text-muted) !important; background: var(--paper) !important;
  font-size: var(--text-sm) !important; line-height: 1.55 !important;
  border: 0 !important; text-align: left !important; padding: 0 !important;
}
#tarteaucitronRoot #tarteaucitronInfo { padding: 16px 22px 4px !important; }
#tarteaucitronRoot .tarteaucitronH2 {
  color: var(--text-strong) !important; font-weight: 700 !important;
  font-size: var(--text-sm) !important; padding: 0 22px !important;
}
#tarteaucitronRoot .tarteaucitronTitle,
#tarteaucitronRoot .tarteaucitronTitle button {
  background: var(--green-50) !important; color: var(--green-700) !important;
  font-weight: 700 !important; font-size: var(--text-xs) !important;
  text-align: left !important; padding: 11px 22px !important; border: 0 !important;
  letter-spacing: .01em !important;
}
#tarteaucitronRoot #tarteaucitronServices .tarteaucitronLine:not(.tarteaucitronMainLine) {
  border: 0 !important; border-bottom: 1px solid var(--border-light) !important;
  background: var(--paper) !important; padding: 14px 22px !important;
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  gap: 14px !important; flex-wrap: wrap !important;
}
#tarteaucitronRoot .tarteaucitronName { color: var(--text-body) !important; flex: 1 1 200px !important; }
#tarteaucitronRoot .tarteaucitronName .tarteaucitronH3,
#tarteaucitronRoot .tarteaucitronName h3 { color: var(--text-strong) !important; font-weight: 700 !important; font-size: var(--text-sm) !important; }
#tarteaucitronRoot .tarteaucitronName a { color: var(--green-600) !important; font-size: var(--text-xs) !important; text-decoration: underline !important; }
#tarteaucitronRoot #tarteaucitron .tarteaucitronAllow,
#tarteaucitronRoot #tarteaucitron .tarteaucitronDeny {
  border-radius: var(--radius-pill) !important; color: var(--paper) !important;
  font-size: var(--text-xs) !important; font-weight: 700 !important;
  padding: 8px 16px !important; margin: 3px !important; border: 0 !important;
  transition: opacity .18s var(--ease-brand), transform .18s var(--ease-brand) !important;
}
#tarteaucitronRoot #tarteaucitron .tarteaucitronAllow { background: var(--green-500) !important; }
#tarteaucitronRoot #tarteaucitron .tarteaucitronDeny  { background: #B23A2E !important; }
#tarteaucitronRoot #tarteaucitron .tarteaucitronAllow:hover,
#tarteaucitronRoot #tarteaucitron .tarteaucitronDeny:hover { transform: translateY(-1px) !important; }
#tarteaucitronRoot .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronDeny,
#tarteaucitronRoot .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronAllow { opacity: .3 !important; }
#tarteaucitronRoot #tarteaucitron #tarteaucitronAllDenied {
  background: transparent !important; color: var(--green-700) !important;
  border: 1px solid var(--border-strong) !important; opacity: 1 !important;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronAllDenied:hover { background: var(--green-50) !important; }
#tarteaucitronRoot #tarteaucitronClosePanel {
  background: var(--green-800) !important; color: var(--text-on-green) !important;
  border-radius: var(--radius-md) var(--radius-md) 0 0 !important; border: 0 !important;
  font-size: var(--text-xs) !important; font-weight: 700 !important; padding: 7px 16px !important;
}
#tarteaucitronRoot .tarteaucitronCross::before { color: var(--text-on-green) !important; }
#tarteaucitronRoot a, #tarteaucitronRoot #tarteaucitronPrivacyUrl { color: var(--green-600) !important; }

#tarteaucitronRoot #tarteaucitronManager, #tarteaucitronRoot #tarteaucitronIcon { border-radius: var(--radius-full) !important; }
#tarteaucitronRoot #tarteaucitronManager { background: var(--green-800) !important; color: var(--text-on-green) !important; box-shadow: var(--shadow-md) !important; }
