target {
  scroll-margin-top: 6.5rem !important;
}
/* 1. RÈGLES DE BASE POUR TOUTE LA PAGE */
html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-size: 100%;
}
body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: var(--nav-height-desktop) 0 0 0;
  touch-action: manipulation;
  position: relative;
  background-color: #f4f1ea;
  overflow-x: hidden;
  overflow-y: visible;
}
html[data-theme="dark"] body {
  color: var(--color-texte-dark-mode) !important;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('/asset/img/page/video/ferme.jpg');
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.2;
  pointer-events: none;
}
html[data-theme="dark"] body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block !important;
  background-color: #000000 !important;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
  linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
  url('/asset/img/page/video/ferme.jpg') !important;
  background-size: calc(30 / 16 * 1rem) calc(30 / 16 * 1rem), calc(30 / 16 * 1rem) calc(30 / 16 * 1rem), cover !important;
  background-repeat: repeat, repeat, repeat !important;
  background-blend-mode: normal, normal, luminosity !important;
  filter: invert(100%) grayscale(100%) contrast(120%) brightness(25%) !important;
  opacity: 1 !important;
}
header, footer {
  flex-shrink: 0;
}
/* FONT ------------------------- */
@font-face {
  font-family: 'Roboto';
  src: url('/asset/font/Roboto-Regular.woff2') format('woff2');
  font-weight: var(--fw-normal);
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('/asset/font/Roboto-Bold.woff2') format('woff2');
  font-weight: var(--fw-bold);
  font-style: normal;
}
/* h1 h2 h3 --------------------- */
h1, .h1-style {
  display: block;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: var(--font-size-h1);
  line-height: var(--line-height-heading);
  color: #005116;
  font-weight: var(--fw-bold);
}
html[data-theme="dark"] h1,
html[data-theme="dark"] .h1-style {
  color: var(--source-color-dark-mode-accent-two) !important;
  font-weight: normal;
}
h2, .h2-style {
  font-size: 1.1rem;
  margin: 0 0 var(--space-md) 0;
  color: #000000;
  text-align: center;
}
html[data-theme="dark"] .box h2, .h2-style {
  font-weight: var(--fw-normal);
  color: #ffffff;
}
h3, .h3-style {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-heading);
  margin-bottom: var(--space-xs);
  color: #000000;
}
html[data-theme="dark"] .h3, .h3-style {
  color: red;
}
html[data-theme="dark"] h3, .h3-style {
  color: #dfc778;
  font-weight: normal;
}
p {
  line-height: var(--line-height-body);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-base);
}
.box {
  width: 100%;
  margin: var(--space-md) 0 var(--space-sm) 0;
  padding: var(--space-md) var(--space-md) var(--space-lg) var(--space-md);
  background-color: #FCF5DD;
  border: calc(1 / 16 * 1rem) solid var(--color-veganism-top-container-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-z2);
}
html[data-theme="dark"] .box {
  background-color: #222222;
  border: none;
}
.box-readability {
  padding: var(--space-xl) var(--space-lg) var(--space-lg) var(--space-lg);
  background-color: var(--source-color-white-transparent) !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-z2);
  margin-top: 0 !important;
  margin-bottom: var(--space-sm);
}
html[data-theme="dark"] .box-readability {
  background-color: #000000 !important;
  border: none;
  box-shadow: 0 0 25px 2px rgba(255, 255, 255, 0.2);
}
/* ============================================================
   RETOUR À L'INDEX
   ============================================================ */
.back-to-index {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.main-topic-container:last-of-type .back-to-index,
.back-to-index:last-of-type {
  margin-bottom: 0;
}
.back-to-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.25rem 0.5rem;
  background-color: #ffffff !important;
  border: 1px solid var(--color-question-answer-item-border) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-z2) !important;
  color: var(--color-question-answer-item) !important;
  font-weight: var(--fw-bold) !important;
  text-decoration: none !important;
}
html[data-theme="dark"] .back-to-index a {
  background-color: #333333 !important;
  color: #ffffff !important;
  font-weight: var(--fw-normal) !important;
  border: none !important;
}
.back-to-index a:hover,
.back-to-index a:focus {
  background-color: #e6e6e6 !important;
  color: var(--color-question-answer-item) !important;
  border-color: var(--color-question-answer-item-border) !important;
}
html[data-theme="dark"] .back-to-index a:hover,
html[data-theme="dark"] .back-to-index a:focus {
  background-color: #444444 !important;
}
/* 0. STRUCTURE GLOBALE DE LA BARRE DE NAVIGATION (nav) */
.main-nav {
  top: 0;
  width: 100%;
  z-index: 9999999;
  background-image: linear-gradient(to right, #000000, #457739);
  box-shadow: var(--shadow-z2);
  position: fixed;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  max-width: calc(1088 / 16 * 1rem);
  width: 97%;
  margin: 0 auto !important;
  padding: calc(10 / 16 * 1rem) var(--space-md);
  align-items: center;
  height: var(--nav-height-desktop);
}
/* 1. GROUPE GAUCHE : LOGO ET TEXTE (Nav-Logo-Group) */
.nav-logo-group {
  display: flex;
  align-items: center;
  margin-left: 0 !important;
}
.logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  transition: background-color 0.3s ease;
  gap: calc(10 / 16 * 1rem);
}
.logo-link:hover .logo-icon {
  filter: brightness(1.3) drop-shadow(0 0 calc(8 / 16 * 1rem) var(--color-logo-drop-shadow));
  transition: filter 0.3s ease;
}
.logo-text {
  height: calc(28.8 / 16 * 1rem);
  width: auto;
  max-height: 100%;
  margin-left: 0;
  transform: translateY(calc(11 / 16 * 1rem));
}
.logo-icon {
  height: calc(40 / 16 * 1rem);
  width: auto;
  align-items: center;
  transition: filter 0.3s ease;
}
/* 2. GROUPE DROIT : CONTENEUR PRINCIPAL (Nav-Right-Group) */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  padding: calc(10 / 16 * 1rem) calc(10 / 16 * 1rem);
  display: inline-flex;
  align-items: center;
}
.nav-links-wrapper {
  padding: 0;
  margin: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  font-size: var(--font-size-nav-links);
  padding: 0;
  margin: 0;
  align-items: center;
  gap: calc(10 / 16 * 1rem);
}
.nav-link:link,
.nav-link:visited,
.nav-link:active {
  color: var(--color-nav-link);
}
.nav-link:hover {
  filter: brightness(1.3);
}
/* 3. DÉTAILS DES SOUS-MENUS (DROPDOWN) */
.dropdown {
  position: relative;
  display: inline-block;
  transform: translateY(0);
  padding: 0 calc(20 / 16 * 1rem);
  margin: 0 calc(-20 / 16 * 1rem);
}
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5em;
  vertical-align: middle;
  border-top: 0.4em solid var(--color-triangle);
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
}
.dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-61%) translateY(calc(10 / 16 * 1rem));
  background-color: var(--color-dropdown-menu-bg);
  border: calc(2 / 16 * 1rem) solid var(--color-dropdown-menu-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-z2);
  padding: calc(15 / 16 * 1rem) 0;
  z-index: 9999;
  display: flex !important;
  gap: 0;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  top: 90%;
}
html[data-theme="dark"] .dropdown-menu {
  background-color: #000000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.menu-column {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0 calc(15 / 16 * 1rem);
  min-width: calc(180 / 16 * 1rem);
}
.menu-column:nth-child(2) {
  border-left: calc(2 / 16 * 1rem) solid var(--color-nav-separator);
}
.menu-column li {
  list-style: none;
}
.dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: calc(12 / 16 * 1rem);
  padding: calc(7 / 16 * 1rem) calc(5 / 16 * 1rem);
  text-decoration: none;
  white-space: nowrap;
  font-weight: var(--fw-bold);
  font-size: var(--font-size-dropdown-menu-item);
  color: var(--color-dropdown-item);
  border: calc(2 / 16 * 1rem) solid transparent;
}
html[data-theme="dark"] .dropdown-menu .dropdown-item {
  color: #ffffff;
  font-weight: var(--fw-normal) !important;
}
.menu-icon-image {
  height: calc(32 / 16 * 1rem);
  width: calc(32 / 16 * 1rem);
  vertical-align: middle;
  flex-shrink: 0;
}
.nav-link,
.logo-link {
  line-height: 1;
}
.dropdown-menu .dropdown-item:hover {
  background-color: var(--color-drop-down-item-bg-hover);
  border-radius: var(--radius-md);
  border: calc(2 / 16 * 1rem) solid var(--color-drop-down-item-bg-hover);
  box-shadow: var(--shadow-z2);
}
html[data-theme="dark"] .dropdown-menu .dropdown-item:hover {
  background-color: #333333;
  border-color: #333333;
}
.nav-separator {
  width: calc(2 / 16 * 1rem);
  height: calc(25.6 / 16 * 1rem);
  background-color: var(--color-nav-separator);
  border-radius: calc(1 / 16 * 1rem);
  margin: 0 calc(20 / 16 * 1rem);
  flex-shrink: 0;
  align-self: center;
}
.nav-toggler-icon {
  display: block;
  width: 100%;
  height: calc(2 / 16 * 1rem);
  background-color: var(--color-nav-link);
  border-radius: calc(1 / 16 * 1rem);
}
.nav-text-label {
  display: none;
}
.lang-switcher .lang-text-full {
  display: inline !important;
}
.lang-switcher .lang-abbr {
  display: none !important;
}
.lang-link {
  background-color: var(--source-color-black);
  color: var(--source-color-white) !important;
  border-radius: var(--radius-sm, calc(4 / 16 * 1rem));
  width: auto;
  height: auto;
  padding: calc(8 / 16 * 1rem) calc(12 / 16 * 1rem) !important;
  justify-content: initial;
  display: flex;
  align-items: center;
  font-size: calc(18.4 / 16 * 1rem);
  border: none;
  line-height: 1;
}
.lang-link:hover {
  background-color: #434343;
}
/* --- BULLLES DE NAVIGATION --- */
[data-nav-tooltip] {
  position: relative;
}
[data-nav-tooltip]:hover::after {
  content: attr(data-nav-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(40 / 16 * 1rem));
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  border: calc(1 / 16 * 1rem) solid #fff;
  box-shadow: 0 0 0 calc(5 / 16 * 1rem) #000;
  padding: calc(5 / 16 * 1rem) calc(12 / 16 * 1rem);
  border-radius: calc(4 / 16 * 1rem);
  font-size: calc(17.6 / 16 * 1rem);
  white-space: nowrap;
  z-index: 10000;
}
#theme-toggle[data-nav-tooltip]:hover::after {
  transform: translateX(-50%) translateY(calc(40 / 16 * 1rem));
}
#theme-toggle {
  position: relative;
}
#theme-toggle::after {
  left: auto;
  right: auto;
  transform: translateX(0);
}
.theme-switcher-container {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}
.theme-btn {
  background-color: #000000 !important;
  border-radius: 50% !important;
  width: calc(32 / 16 * 1rem) !important;
  height: calc(32 / 16 * 1rem) !important;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 0 0 15px !important;
  outline: none;
}
.theme-btn:hover {
  box-shadow: var(--shadow-z2);
  filter: brightness(1.5);
}
#theme-icon {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
/* --- ZONE DE RÉGLAGE TITRE --- */
:root {
  --title-rond-taille: calc(45 / 16 * 1rem);
  --title-img-padding: calc(8 / 16 * 1rem);
  --title-border-text-color: #ffffff;
  --title-fill-text-color: #016f29;
  --title-border-thickness: 2px;
}
.page-title-wrapper {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  gap: calc(0 / 16 * 1rem);
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
  width: fit-content;
}
.page-title-icon-container {
  width: calc(35 / 16 * 1rem);
  height: calc(35 / 16 * 1rem);
  margin-right: var(--space-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: transparent !important;
  border: none !important;
}
html[data-theme="dark"] .page-title-icon-container {
  background-color: #676767;
  border: solid #aaa8a8 calc(2 / 16 * 1rem);
}
.page-title-icon {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  display: block;
  background: none;
}
html[data-theme="dark"] .page-title-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(185deg) brightness(104%) contrast(104%);
}
/* PAGE CONTENT ------------------------- */
.page-content-container {
  padding: 0;
  position: relative !important;
  z-index: auto !important;
  overflow: visible !important;
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
main.page-content-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  position: static;
  z-index: auto;
}
.site-width-container {
  max-width: calc(1200 / 16 * 1rem);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-lg);
}
.description {
  font-weight: var(--fw-bold);
  font-size: var(--font-size-description-lead);
  color: var(--color-page-description);
  font-style: oblique;
  line-height: 1.3;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  border: calc(1 / 16 * 1rem) solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  backdrop-filter: blur(calc(5 / 16 * 1rem));
  margin: var(--space-md) auto var(--space-lg) auto;
  padding: var(--space-sm);
  max-width: calc(850 / 16 * 1rem);
  width: 90%;
  word-break: keep-all;
  box-shadow: 0 calc(4 / 16 * 1rem) calc(15 / 16 * 1rem) rgba(0, 0, 0, 0.03);
}
html[data-theme="dark"] .description {
  color: var(--color-description-dark-mode);
  font-weight: normal;
  background: black;
}
/* BUTTON ------------------------- */
.btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  margin: calc(10 / 16 * 1rem) auto;
  width: auto;
  background-color: #016F29;
  color: white;
  text-decoration: none;
  font-weight: var(--fw-bold);
  font-size: var(--font-size-md);
  border-radius: calc(50 / 16 * 1rem);
  cursor: pointer;
  text-align: center;
  opacity: 1;
  box-shadow: var(--shadow-z2);
}
html[data-theme="dark"] .btn {
  background-color: #00461C;
}
.btn:hover {
  box-shadow: var(--shadow-z2);
  filter: brightness(1.5);
}
.btn-container {
  text-align: center;
  margin: 0 !important;
}
.cta-vegetal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(12 / 16 * 1rem) calc(12 / 16 * 1rem);
  background-color: var(--color-green-cta-main);
  color: var(--source-color-white);
  border-radius: calc(50 / 16 * 1rem);
  border: none;
  font-weight: var(--fw-normal);
  text-decoration: none;
  font-size: calc(14 / 16 * 1rem);
  cursor: pointer;
  box-shadow: 0 calc(4 / 16 * 1rem) calc(6 / 16 * 1rem) rgba(0, 0, 0, 0.2);
  height: calc(32 / 16 * 1rem);
  white-space: nowrap;
  width: fit-content;
  overflow: visible !important;
}
html[data-theme="dark"] .cta-vegetal {
  background-color: #003a17;
}
.cta-vegetal::before {
  content: "";
  background-image: url("/asset/img/gl/leaf.svg");
  display: inline-block;
  width: calc(20.8 / 16 * 1rem);
  height: calc(20.8 / 16 * 1rem);
  margin-right: calc(3 / 16 * 1rem);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.cta-vegetal:hover {
  box-shadow: var(--shadow-z2);
  filter: brightness(1.2);
}
.cta-vegetal:active {
  transform: translateY(0);
  box-shadow: 0 calc(2 / 16 * 1rem) calc(4 / 16 * 1rem) rgba(0, 0, 0, 0.2);
}
.keep-in-line-icon-and-page-title {
  display: flex;
  align-items: center;
  gap: calc(35 / 16 * 1rem);
}
.content-wrapper.is-wide {
  width: auto !important;
  margin: calc(-50 / 16 * 1rem) calc(50 / 16 * 1rem) !important;
}
section.is-wide,
div.is-wide {
  width: auto !important;
  margin-left: calc(-50 / 16 * 1rem) !important;
  margin-right: calc(-50 / 16 * 1rem) !important;
}
.expand-btn {
  display: block; /* <-- C'est ici */
  width: 100%;
  margin-top: var(--space-sm);
  padding: calc(4 / 16 * 1rem) 0;
  text-align: center;
  background-color: transparent;
  color: var(--color-book-expand-btn);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-book-expand-btn);
  font-weight: var(--fw-bold);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
html[data-theme="dark"] .expand-btn {
  color: white;
  font-weight: var(--fw-normal) !important;
}
.expand-btn:hover {
  transform: scale(var(--transform-scale-md));
}
.expand-btn::before {
  content: attr(data-see-more);
}
.expand-btn.is-expanded::before {
  content: attr(data-see-less);
}
.expand-btn::after {
  content: "\25BC";
  display: inline-block;
  margin-left: var(--space-sm);
  font-size: var(--font-size-book-expand-btn-after);
  transition: none;
}
.expand-btn.is-expanded::after {
  content: "\25B2";
}
button.share-btn-text {
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background-color: #ffffff;
  color: #000000;
  font: inherit !important;
  font-size: calc(15 / 16 * 1rem) !important;
  font-weight: bold !important;
  padding: 2px 2px 2px 12px !important;
  letter-spacing: -0.5px !important;
  word-spacing: -1px !important;
  border-radius: 50px !important;
  margin-left: 20px;
  box-shadow: var(--shadow-z2);
}
html[data-theme="dark"] button.share-btn-text {
  font-weight: normal !important;
  background: #3c3c3c !important;
  color: #ffffff !important;
}
button.share-btn-text:hover {
  background-color: #ededed;
  color: #000000;
  filter: none;
}
html[data-theme="dark"] button.share-btn-text:hover {
  filter: brightness(1.2);
}
span.share-icon {
  display: inline-block !important;
  width: 30px !important;
  height: 30px !important;
  background-image: url('/asset/img/share/share.svg') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border: none !important;
}
.copy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-copy-modal-overlay);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
}
.copy-modal-content {
  background-color: var(--color-copy-modal-content-bg);
  color: var(--color-copy-modal-content);
  padding: calc(20 / 16 * 1rem) calc(30 / 16 * 1rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-z4);
  text-align: center;
  max-width: 90%;
  transform: translateY(calc(-20 / 16 * 1rem));
  opacity: 0;
}
.copy-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.copy-modal-overlay.active .copy-modal-content {
  opacity: 1;
  transform: translateY(0);
}
.copy-modal-content .check-icon {
  width: calc(40 / 16 * 1rem);
  height: calc(40 / 16 * 1rem);
  color: var(--color-copy-modal-success-icon);
  margin-bottom: calc(10 / 16 * 1rem);
}
.center-this {
  max-width: calc(600 / 16 * 1rem);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.site-width-container {
  max-width: calc(1200 / 16 * 1rem);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-lg);
  position: relative;
}
#btn-scroll-top {
  position: fixed !important;
  bottom: calc(50 / 16 * 1rem) !important;
  left: auto !important;
  right: max(1rem, calc(53% - (1200px / 2) + 2rem)) !important;
  top: auto !important;
  font-size: calc(28 / 16 * 1rem);
  z-index: 2147483647 !important;
  width: calc(45 / 16 * 1rem) !important;
  height: calc(45 / 16 * 1rem) !important;
  display: flex !important;
  line-height: 1 !important;
  border-radius: 50%;
  background-color: rgba(255, 214, 95, 0.49);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  align-items: center !important;
  justify-content: center !important;
  padding-bottom: 0 !important;
}
#btn-scroll-top[data-nav-tooltip]::after {
  display: none;
}
#btn-scroll-top[data-nav-tooltip]:hover::after {
  display: block;
  top: auto;
  bottom: 100%;
  margin-bottom: calc(15 / 16 * 1rem);
  transform: translateX(-50%);
}
#btn-scroll-top:hover::after {
  content: attr(data-scroll-title);
  position: absolute;
  bottom: 100%;
  right: 50%;
  transform: translateX(80%);
  margin-bottom: calc(15 / 16 * 1rem);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: calc(5 / 16 * 1rem) calc(12 / 16 * 1rem);
  border-radius: calc(4 / 16 * 1rem);
  font-size: calc(17.6 / 16 * 1rem);
  white-space: nowrap;
  z-index: 999999;
}
#btn-scroll-top span,
#btn-scroll-top::before {
  font-size: inherit !important;
  line-height: 0 !important;
  display: inline-block;
}
/* === icon dark mode ==== */
#theme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
}
#theme-icon::before {
  content: "";
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
html[data-theme="light"] #theme-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M18.5 14.5C17.2 17.4 14.3 19.2 11.1 19.2C6.6 19.2 3 15.6 3 11.1C3 7.9 4.8 5 7.7 3.7C7.3 4.6 7 5.7 7 6.8C7 11.5 10.8 15.3 15.5 15.3C16.6 15.3 17.6 15 18.5 14.5Z'/%3E%3C/svg%3E");
}
html[data-theme="dark"] #theme-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='5' fill='%23f5b800'/%3E%3Cpath d='M12 1.5V4M12 20V22.5M1.5 12H4M20 12H22.5M4.58 4.58L6.35 6.35M17.65 17.65L19.42 19.42M19.42 4.58L17.65 6.35M6.35 17.65L4.58 19.42' fill='none' stroke='%23f5b800' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
:root[data-theme="dark"] {
  color-scheme: dark;
}
html[data-theme="dark"] .dropdown-menu .menu-icon-image {
  filter: brightness(0) invert(1);
}