@charset "UTF-8";
/*!
 * eco-construction.be 
 *
 * @author Xavier Mertens & team – xav@tix02.be
 * @site https://www.eco-construction.be
 **/
:root {
  --color-theme-accent: hsl(44, 100%, 49%);
  --color-theme-accent-hsl: 44deg 100% 49%;
  --color-theme-accent-hue: 44deg;
  --color-theme-accent-saturation: 100%;
  --color-theme-accent-lightness: 49%;
  --color-theme-greeny: hsl(60, 51%, 49%);
  --color-theme-greeny-hsl: 60deg 51% 49%;
  --color-theme-greeny-hue: 60deg;
  --color-theme-greeny-saturation: 51%;
  --color-theme-greeny-lightness: 49%;
  --color-theme-himalaya: hsl(53, 40%, 30%);
  --color-theme-himalaya-hsl: 53deg 40% 30%;
  --color-theme-himalaya-hue: 53deg;
  --color-theme-himalaya-saturation: 40%;
  --color-theme-himalaya-lightness: 30%;
  --color-theme-darkest: hsl(282, 30%, 8%);
  --color-theme-darkest-hsl: 282deg 30% 8%;
  --color-theme-darkest-hue: 282deg;
  --color-theme-darkest-saturation: 30%;
  --color-theme-darkest-lightness: 8%;
  --color-grey-100: hsl(180, 5%, 96%);
  --color-grey-100-hsl: 180deg 5% 96%;
  --color-grey-100-hue: 180deg;
  --color-grey-100-saturation: 5%;
  --color-grey-100-lightness: 96%;
  --color-grey-200: hsl(180, 2%, 88%);
  --color-grey-200-hsl: 180deg 2% 88%;
  --color-grey-200-hue: 180deg;
  --color-grey-200-saturation: 2%;
  --color-grey-200-lightness: 88%;
  --color-grey-300: hsl(180, 1%, 73%);
  --color-grey-300-hsl: 180deg 1% 73%;
  --color-grey-300-hue: 180deg;
  --color-grey-300-saturation: 1%;
  --color-grey-300-lightness: 73%;
  --color-grey-400: hsl(180, 1%, 61%);
  --color-grey-400-hsl: 180deg 1% 61%;
  --color-grey-400-hue: 180deg;
  --color-grey-400-saturation: 1%;
  --color-grey-400-lightness: 61%;
  --color-grey-500: hsl(200, 1%, 50%);
  --color-grey-500-hsl: 200deg 1% 50%;
  --color-grey-500-hue: 200deg;
  --color-grey-500-saturation: 1%;
  --color-grey-500-lightness: 50%;
  --color-grey-600: hsl(160, 1%, 42%);
  --color-grey-600-hsl: 160deg 1% 42%;
  --color-grey-600-hue: 160deg;
  --color-grey-600-saturation: 1%;
  --color-grey-600-lightness: 42%;
  --color-grey-700: hsl(180, 3%, 32%);
  --color-grey-700-hsl: 180deg 3% 32%;
  --color-grey-700-hue: 180deg;
  --color-grey-700-saturation: 3%;
  --color-grey-700-lightness: 32%;
  --color-grey-800: hsl(170, 6%, 20%);
  --color-grey-800-hsl: 170deg 6% 20%;
  --color-grey-800-hue: 170deg;
  --color-grey-800-saturation: 6%;
  --color-grey-800-lightness: 20%;
  --color-grey-900: hsl(180, 3%, 12%);
  --color-grey-900-hsl: 180deg 3% 12%;
  --color-grey-900-hue: 180deg;
  --color-grey-900-saturation: 3%;
  --color-grey-900-lightness: 12%;
  --color-ui-success: hsl(115, 65%, 47%);
  --color-ui-success-hsl: 115deg 65% 47%;
  --color-ui-success-hue: 115deg;
  --color-ui-success-saturation: 65%;
  --color-ui-success-lightness: 47%;
  --color-ui-notice: hsl(60, 66%, 66%);
  --color-ui-notice-hsl: 60deg 66% 66%;
  --color-ui-notice-hue: 60deg;
  --color-ui-notice-saturation: 66%;
  --color-ui-notice-lightness: 66%;
  --color-ui-warning: hsl(39, 68%, 56%);
  --color-ui-warning-hsl: 39deg 68% 56%;
  --color-ui-warning-hue: 39deg;
  --color-ui-warning-saturation: 68%;
  --color-ui-warning-lightness: 56%;
  --color-ui-danger: hsl(0, 74%, 57%);
  --color-ui-danger-hsl: 0deg 74% 57%;
  --color-ui-danger-hue: 0deg;
  --color-ui-danger-saturation: 74%;
  --color-ui-danger-lightness: 57%;
  --color-lightest: #fff;
  --color-darkest: #000;
}
.c-theme-accent {
  color: var(--color-theme-accent) !important;
}
.b-theme-accent {
  background-color: var(--color-theme-accent) !important;
}
.c-theme-greeny {
  color: var(--color-theme-greeny) !important;
}
.b-theme-greeny {
  background-color: var(--color-theme-greeny) !important;
}
.c-theme-himalaya {
  color: var(--color-theme-himalaya) !important;
}
.b-theme-himalaya {
  background-color: var(--color-theme-himalaya) !important;
}
.c-theme-darkest {
  color: var(--color-theme-darkest) !important;
}
.b-theme-darkest {
  background-color: var(--color-theme-darkest) !important;
}
.c-ui-success {
  color: var(--color-ui-success) !important;
}
.b-ui-success {
  background-color: var(--color-ui-success) !important;
}
.c-ui-notice {
  color: var(--color-ui-notice) !important;
}
.b-ui-notice {
  background-color: var(--color-ui-notice) !important;
}
.c-ui-warning {
  color: var(--color-ui-warning) !important;
}
.b-ui-warning {
  background-color: var(--color-ui-warning) !important;
}
.c-ui-danger {
  color: var(--color-ui-danger) !important;
}
.b-ui-danger {
  background-color: var(--color-ui-danger) !important;
}
.c-grey-100 {
  color: var(--color-grey-100) !important;
}
.b-grey-100 {
  background-color: var(--color-grey-100) !important;
}
.c-grey-200 {
  color: var(--color-grey-200) !important;
}
.b-grey-200 {
  background-color: var(--color-grey-200) !important;
}
.c-grey-300 {
  color: var(--color-grey-300) !important;
}
.b-grey-300 {
  background-color: var(--color-grey-300) !important;
}
.c-grey-400 {
  color: var(--color-grey-400) !important;
}
.b-grey-400 {
  background-color: var(--color-grey-400) !important;
}
.c-grey-500 {
  color: var(--color-grey-500) !important;
}
.b-grey-500 {
  background-color: var(--color-grey-500) !important;
}
.c-grey-600 {
  color: var(--color-grey-600) !important;
}
.b-grey-600 {
  background-color: var(--color-grey-600) !important;
}
.c-grey-700 {
  color: var(--color-grey-700) !important;
}
.b-grey-700 {
  background-color: var(--color-grey-700) !important;
}
.c-grey-800 {
  color: var(--color-grey-800) !important;
}
.b-grey-800 {
  background-color: var(--color-grey-800) !important;
}
.c-grey-900 {
  color: var(--color-grey-900) !important;
}
.b-grey-900 {
  background-color: var(--color-grey-900) !important;
}
:root {
  --fs-display-1: clamp(2.375rem, calc(2.196rem + 0.893vw), 3rem);
  --fs-display-2: clamp(2rem, calc(1.857rem + 0.714vw), 2.5rem);
  --fs-display-3: clamp(1.688rem, calc(1.527rem + 0.803vw), 2.25rem);
  --fs-title-1: clamp(2.625rem, calc(2.411rem + 1.071vw), 3.375rem);
  --fs-title-2: clamp(1.688rem, calc(1.527rem + 0.803vw), 2.25rem);
  --fs-title-3: clamp(1.313rem, calc(1.26rem + 0.267vw), 1.5rem);
  --fs-title-4: clamp(1.125rem, calc(1.071rem + 0.269vw), 1.313rem);
  --fs-title-5: clamp(1rem, calc(0.964rem + 0.179vw), 1.125rem);
  --fs-title-6: clamp(0.875rem, calc(0.839rem + 0.179vw), 1rem);
  --fs-text-xl: clamp(1.125rem, calc(1.071rem + 0.269vw), 1.313rem);
  --fs-text-lg: clamp(1rem, calc(0.964rem + 0.179vw), 1.125rem);
  --fs-text-md: clamp(0.875rem, calc(0.839rem + 0.179vw), 1rem);
  --fs-text-sm: clamp(0.75rem, calc(0.714rem + 0.179vw), 0.875rem);
  --fs-text-xs: clamp(0.625rem, calc(0.607rem + 0.09vw), 0.688rem);
  --lh-display-1: 1.125;
  --lh-display-2: 1.125;
  --lh-display-3: 1.125;
  --lh-title-1: 1.125;
  --lh-title-2: 1.125;
  --lh-title-3: 1.333;
  --lh-title-4: 1.333;
  --lh-title-5: 1.5;
  --lh-title-6: 1.5;
  --lh-text-xl: 1.5;
  --lh-text-lg: 1.5;
  --lh-text-md: 1.5;
  --lh-text-sm: 1.5;
  --lh-text-xs: 1.5;
  --fn-body: Arial, Helvetica, sans-serif;
  --caret-size: 8px;
  --caret-stroke-width: 1px;
}
.display-1,
.section.-screen-intro .sn--title,
.section.-intro-archive .sn--title,
.section.-page .sn--title,
.section.-style-post-single-indent .sn--title {
  font-size: var(--fs-display-1);
  line-height: var(--lh-display-1);
}
.display-2,
.section .sn--title,
.section.-large-header .sn--title {
  font-size: var(--fs-display-2);
  line-height: var(--lh-display-2);
}
.display-3,
.hero .hr--title {
  font-size: var(--fs-display-3);
  line-height: var(--lh-display-3);
}
.title-1,
.prose h1 {
  font-size: var(--fs-title-1);
  line-height: var(--lh-title-1);
}
.title-2,
.prose h2 {
  font-size: var(--fs-title-2);
  line-height: var(--lh-title-2);
}
.title-3,
.prose h3,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH1 {
  font-size: var(--fs-title-3);
  line-height: var(--lh-title-3);
}
.title-4,
.prose h4,
.card.-cover .cd--title,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH2 {
  font-size: var(--fs-title-4);
  line-height: var(--lh-title-4);
}
.title-5,
.prose h5,
.section.-style-post-single-indent .sn--subtitle,
.btn.-size-xl,
.btn-icon.-size-xl {
  font-size: var(--fs-title-5);
  line-height: var(--lh-title-5);
}
.title-6,
.prose h6 {
  font-size: var(--fs-title-6);
  line-height: var(--lh-title-6);
}
.text-xl,
.section.-screen-intro .sn--body .link-action,
.section.-screen-intro .sn--footer .link-action,
.section.-screen-intro .sn--also .ao--title,
.btn.-size-lg,
.btn-icon.-size-lg {
  font-size: var(--fs-text-xl);
  line-height: var(--lh-text-xl);
}
.text-lg,
.heading,
.hat,
.section .sn--hat,
.section.-screen-intro .sn--contents,
.section.-large-header .sn--contents,
.section.-large-header .sn--hat,
.aside-nav .menu > .menu-item > a,
.item-list-controls .ac-results-list > li .suggestion-title,
.item-list-controls .search-frm .input.search input,
.btn,
.btn-icon,
.badge.-size-xl,
.pagination,
div.input.switch.-size\:lg label {
  font-size: var(--fs-text-lg);
  line-height: var(--lh-text-lg);
}
.text-md,
.table-specs,
.prose,
.section .sn--actions .link-action-alt,
.section.-large-header .sn--body .link-action-alt,
.section.-large-header .sn--footer .link-action-alt,
.specs-list,
.btn.-size-sm,
.btn-icon.-size-sm,
.badge.-size-lg,
.contact-list,
div.input.checkbox label,
div.input.radio label,
div.input.checkbox-custom label,
div.input.switch label,
.theme-eco_construction #tarteaucitronRoot *,
.theme-eco_construction #tarteaucitronRoot #tarteaucitronAlertBig {
  font-size: var(--fs-text-md);
  line-height: var(--lh-text-md);
}
.text-sm,
.title-sm-6,
.datasheet,
.aside-info,
.app-footer,
.post-metas,
.item-list-controls .ac-results-list > li .suggestion-description,
.card.-standard .cd--body,
.card.-standard .cd--footer,
.card.-standard .specs-list,
.card.-standard .application-scopes,
.badge,
.app-crumbs,
div.input label {
  font-size: var(--fs-text-sm);
  line-height: var(--lh-text-sm);
}
.text-xs,
.card.-standard .application-scopes .application-scope-have-more,
.badge.-size-sm {
  font-size: var(--fs-text-xs);
  line-height: var(--lh-text-xs);
}
:root {
  --spacer-2xs: 0.375rem;
  --spacer-xs: 0.75rem;
  --spacer-sm: 1.125rem;
  --spacer-md: 1.5rem;
  --spacer-lg: 2.25rem;
  --spacer-xl: 3rem;
  --spacer-2xl: 4.5rem;
  --grid-gap: var(--spacer-md);
}
.m-2xs {
  margin: var(--spacer-2xs);
}
.mh-2xs {
  margin-inline: var(--spacer-2xs);
}
.mv-2xs {
  margin-block: var(--spacer-2xs);
}
.mt-2xs {
  margin-top: var(--spacer-2xs);
}
.mb-2xs {
  margin-bottom: var(--spacer-2xs);
}
.ml-2xs {
  margin-left: var(--spacer-2xs);
}
.mr-2xs {
  margin-right: var(--spacer-2xs);
}
.p-2xs {
  padding: var(--spacer-2xs);
}
.ph-2xs {
  padding-inline: var(--spacer-2xs);
}
.pv-2xs {
  padding-block: var(--spacer-2xs);
}
.pt-2xs {
  padding-top: var(--spacer-2xs);
}
.pb-2xs {
  padding-bottom: var(--spacer-2xs);
}
.pl-2xs {
  padding-left: var(--spacer-2xs);
}
.pr-2xs {
  padding-right: var(--spacer-2xs);
}
.m-xs {
  margin: var(--spacer-xs);
}
.mh-xs {
  margin-inline: var(--spacer-xs);
}
.mv-xs {
  margin-block: var(--spacer-xs);
}
.mt-xs {
  margin-top: var(--spacer-xs);
}
.mb-xs {
  margin-bottom: var(--spacer-xs);
}
.ml-xs {
  margin-left: var(--spacer-xs);
}
.mr-xs {
  margin-right: var(--spacer-xs);
}
.p-xs {
  padding: var(--spacer-xs);
}
.ph-xs {
  padding-inline: var(--spacer-xs);
}
.pv-xs {
  padding-block: var(--spacer-xs);
}
.pt-xs {
  padding-top: var(--spacer-xs);
}
.pb-xs {
  padding-bottom: var(--spacer-xs);
}
.pl-xs {
  padding-left: var(--spacer-xs);
}
.pr-xs {
  padding-right: var(--spacer-xs);
}
.m-sm {
  margin: var(--spacer-sm);
}
.mh-sm {
  margin-inline: var(--spacer-sm);
}
.mv-sm {
  margin-block: var(--spacer-sm);
}
.mt-sm {
  margin-top: var(--spacer-sm);
}
.mb-sm {
  margin-bottom: var(--spacer-sm);
}
.ml-sm {
  margin-left: var(--spacer-sm);
}
.mr-sm {
  margin-right: var(--spacer-sm);
}
.p-sm {
  padding: var(--spacer-sm);
}
.ph-sm {
  padding-inline: var(--spacer-sm);
}
.pv-sm {
  padding-block: var(--spacer-sm);
}
.pt-sm {
  padding-top: var(--spacer-sm);
}
.pb-sm {
  padding-bottom: var(--spacer-sm);
}
.pl-sm {
  padding-left: var(--spacer-sm);
}
.pr-sm {
  padding-right: var(--spacer-sm);
}
.m-md {
  margin: var(--spacer-md);
}
.mh-md {
  margin-inline: var(--spacer-md);
}
.mv-md {
  margin-block: var(--spacer-md);
}
.mt-md {
  margin-top: var(--spacer-md);
}
.mb-md {
  margin-bottom: var(--spacer-md);
}
.ml-md {
  margin-left: var(--spacer-md);
}
.mr-md {
  margin-right: var(--spacer-md);
}
.p-md {
  padding: var(--spacer-md);
}
.ph-md {
  padding-inline: var(--spacer-md);
}
.pv-md {
  padding-block: var(--spacer-md);
}
.pt-md {
  padding-top: var(--spacer-md);
}
.pb-md {
  padding-bottom: var(--spacer-md);
}
.pl-md {
  padding-left: var(--spacer-md);
}
.pr-md {
  padding-right: var(--spacer-md);
}
.m-lg {
  margin: var(--spacer-lg);
}
.mh-lg {
  margin-inline: var(--spacer-lg);
}
.mv-lg {
  margin-block: var(--spacer-lg);
}
.mt-lg {
  margin-top: var(--spacer-lg);
}
.mb-lg {
  margin-bottom: var(--spacer-lg);
}
.ml-lg {
  margin-left: var(--spacer-lg);
}
.mr-lg {
  margin-right: var(--spacer-lg);
}
.p-lg {
  padding: var(--spacer-lg);
}
.ph-lg {
  padding-inline: var(--spacer-lg);
}
.pv-lg {
  padding-block: var(--spacer-lg);
}
.pt-lg {
  padding-top: var(--spacer-lg);
}
.pb-lg {
  padding-bottom: var(--spacer-lg);
}
.pl-lg {
  padding-left: var(--spacer-lg);
}
.pr-lg {
  padding-right: var(--spacer-lg);
}
.m-xl {
  margin: var(--spacer-xl);
}
.mh-xl {
  margin-inline: var(--spacer-xl);
}
.mv-xl {
  margin-block: var(--spacer-xl);
}
.mt-xl {
  margin-top: var(--spacer-xl);
}
.mb-xl {
  margin-bottom: var(--spacer-xl);
}
.ml-xl {
  margin-left: var(--spacer-xl);
}
.mr-xl {
  margin-right: var(--spacer-xl);
}
.p-xl {
  padding: var(--spacer-xl);
}
.ph-xl {
  padding-inline: var(--spacer-xl);
}
.pv-xl {
  padding-block: var(--spacer-xl);
}
.pt-xl {
  padding-top: var(--spacer-xl);
}
.pb-xl {
  padding-bottom: var(--spacer-xl);
}
.pl-xl {
  padding-left: var(--spacer-xl);
}
.pr-xl {
  padding-right: var(--spacer-xl);
}
.m-2xl {
  margin: var(--spacer-2xl);
}
.mh-2xl {
  margin-inline: var(--spacer-2xl);
}
.mv-2xl {
  margin-block: var(--spacer-2xl);
}
.mt-2xl {
  margin-top: var(--spacer-2xl);
}
.mb-2xl {
  margin-bottom: var(--spacer-2xl);
}
.ml-2xl {
  margin-left: var(--spacer-2xl);
}
.mr-2xl {
  margin-right: var(--spacer-2xl);
}
.p-2xl {
  padding: var(--spacer-2xl);
}
.ph-2xl {
  padding-inline: var(--spacer-2xl);
}
.pv-2xl {
  padding-block: var(--spacer-2xl);
}
.pt-2xl {
  padding-top: var(--spacer-2xl);
}
.pb-2xl {
  padding-bottom: var(--spacer-2xl);
}
.pl-2xl {
  padding-left: var(--spacer-2xl);
}
.pr-2xl {
  padding-right: var(--spacer-2xl);
}
:root {
  --viewport-inset: var(--spacer-md);
  --viewport-xs: 37.5rem;
  --viewport-sm: 48rem;
  --viewport-md: 60.5rem;
  --viewport-lg: 80rem;
  --viewport-xl: 100rem;
  --body-inset: var(--viewport-inset);
  --body-background: #fff;
  --ui-content-max-width: var(--viewport-lg);
}
.viewport-xs {
  padding-inline: var(--viewport-inset);
  max-width: var(--viewport-xs);
  width: 100%;
  margin-inline: auto;
}
.viewport-sm {
  padding-inline: var(--viewport-inset);
  max-width: var(--viewport-sm);
  width: 100%;
  margin-inline: auto;
}
.viewport-md {
  padding-inline: var(--viewport-inset);
  max-width: var(--viewport-md);
  width: 100%;
  margin-inline: auto;
}
.viewport-lg {
  padding-inline: var(--viewport-inset);
  max-width: var(--viewport-lg);
  width: 100%;
  margin-inline: auto;
}
.viewport-xl {
  padding-inline: var(--viewport-inset);
  max-width: var(--viewport-xl);
  width: 100%;
  margin-inline: auto;
}
.row {
  --gap: var(--ui-column-gap, var(--grid-gap));
  --col-start: auto;
  --col-width: 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  container-type: inline-size;
  gap: var(--gap);
  margin-block-end: var(--gap);
}
.row.mode\:stretch {
  align-items: stretch;
}
.row.v-gap-0 {
  row-gap: 0;
}
.row [class*='col:'],
.row [class*='col-'] {
  grid-column: var(--col-start) / span var(--col-width);
}
.row .col\:1 {
  --col-width: 1;
}
.row .offset\:1 {
  --col-start: 2;
}
.row .col\:2 {
  --col-width: 2;
}
.row .offset\:2 {
  --col-start: 3;
}
.row .col\:3 {
  --col-width: 3;
}
.row .offset\:3 {
  --col-start: 4;
}
.row .col\:4 {
  --col-width: 4;
}
.row .offset\:4 {
  --col-start: 5;
}
.row .col\:5 {
  --col-width: 5;
}
.row .offset\:5 {
  --col-start: 6;
}
.row .col\:6 {
  --col-width: 6;
}
.row .offset\:6 {
  --col-start: 7;
}
.row .col\:7 {
  --col-width: 7;
}
.row .offset\:7 {
  --col-start: 8;
}
.row .col\:8 {
  --col-width: 8;
}
.row .offset\:8 {
  --col-start: 9;
}
.row .col\:9 {
  --col-width: 9;
}
.row .offset\:9 {
  --col-start: 10;
}
.row .col\:10 {
  --col-width: 10;
}
.row .offset\:10 {
  --col-start: 11;
}
.row .col\:11 {
  --col-width: 11;
}
.row .offset\:11 {
  --col-start: 12;
}
.row .col\:12 {
  --col-width: 12;
}
.row .offset\:auto {
  --col-start: auto;
}
@container (max-width: 25.8125rem) {
  .row .col-xxs\:1 {
    --col-width: 1;
  }
  .row .offset-xxs\:1 {
    --col-start: 2;
  }
  .row .col-xxs\:2 {
    --col-width: 2;
  }
  .row .offset-xxs\:2 {
    --col-start: 3;
  }
  .row .col-xxs\:3 {
    --col-width: 3;
  }
  .row .offset-xxs\:3 {
    --col-start: 4;
  }
  .row .col-xxs\:4 {
    --col-width: 4;
  }
  .row .offset-xxs\:4 {
    --col-start: 5;
  }
  .row .col-xxs\:5 {
    --col-width: 5;
  }
  .row .offset-xxs\:5 {
    --col-start: 6;
  }
  .row .col-xxs\:6 {
    --col-width: 6;
  }
  .row .offset-xxs\:6 {
    --col-start: 7;
  }
  .row .col-xxs\:7 {
    --col-width: 7;
  }
  .row .offset-xxs\:7 {
    --col-start: 8;
  }
  .row .col-xxs\:8 {
    --col-width: 8;
  }
  .row .offset-xxs\:8 {
    --col-start: 9;
  }
  .row .col-xxs\:9 {
    --col-width: 9;
  }
  .row .offset-xxs\:9 {
    --col-start: 10;
  }
  .row .col-xxs\:10 {
    --col-width: 10;
  }
  .row .offset-xxs\:10 {
    --col-start: 11;
  }
  .row .col-xxs\:11 {
    --col-width: 11;
  }
  .row .offset-xxs\:11 {
    --col-start: 12;
  }
  .row .col-xxs\:12 {
    --col-width: 12;
  }
  .row .offset-xxs\:auto {
    --col-start: auto;
  }
}
@container (max-width: 37.5rem) {
  .row .col-xs\:1 {
    --col-width: 1;
  }
  .row .offset-xs\:1 {
    --col-start: 2;
  }
  .row .col-xs\:2 {
    --col-width: 2;
  }
  .row .offset-xs\:2 {
    --col-start: 3;
  }
  .row .col-xs\:3 {
    --col-width: 3;
  }
  .row .offset-xs\:3 {
    --col-start: 4;
  }
  .row .col-xs\:4 {
    --col-width: 4;
  }
  .row .offset-xs\:4 {
    --col-start: 5;
  }
  .row .col-xs\:5 {
    --col-width: 5;
  }
  .row .offset-xs\:5 {
    --col-start: 6;
  }
  .row .col-xs\:6 {
    --col-width: 6;
  }
  .row .offset-xs\:6 {
    --col-start: 7;
  }
  .row .col-xs\:7 {
    --col-width: 7;
  }
  .row .offset-xs\:7 {
    --col-start: 8;
  }
  .row .col-xs\:8 {
    --col-width: 8;
  }
  .row .offset-xs\:8 {
    --col-start: 9;
  }
  .row .col-xs\:9 {
    --col-width: 9;
  }
  .row .offset-xs\:9 {
    --col-start: 10;
  }
  .row .col-xs\:10 {
    --col-width: 10;
  }
  .row .offset-xs\:10 {
    --col-start: 11;
  }
  .row .col-xs\:11 {
    --col-width: 11;
  }
  .row .offset-xs\:11 {
    --col-start: 12;
  }
  .row .col-xs\:12 {
    --col-width: 12;
  }
  .row .offset-xs\:auto {
    --col-start: auto;
  }
}
@container (max-width: 48rem) {
  .row .col-sm\:1 {
    --col-width: 1;
  }
  .row .offset-sm\:1 {
    --col-start: 2;
  }
  .row .col-sm\:2 {
    --col-width: 2;
  }
  .row .offset-sm\:2 {
    --col-start: 3;
  }
  .row .col-sm\:3 {
    --col-width: 3;
  }
  .row .offset-sm\:3 {
    --col-start: 4;
  }
  .row .col-sm\:4 {
    --col-width: 4;
  }
  .row .offset-sm\:4 {
    --col-start: 5;
  }
  .row .col-sm\:5 {
    --col-width: 5;
  }
  .row .offset-sm\:5 {
    --col-start: 6;
  }
  .row .col-sm\:6 {
    --col-width: 6;
  }
  .row .offset-sm\:6 {
    --col-start: 7;
  }
  .row .col-sm\:7 {
    --col-width: 7;
  }
  .row .offset-sm\:7 {
    --col-start: 8;
  }
  .row .col-sm\:8 {
    --col-width: 8;
  }
  .row .offset-sm\:8 {
    --col-start: 9;
  }
  .row .col-sm\:9 {
    --col-width: 9;
  }
  .row .offset-sm\:9 {
    --col-start: 10;
  }
  .row .col-sm\:10 {
    --col-width: 10;
  }
  .row .offset-sm\:10 {
    --col-start: 11;
  }
  .row .col-sm\:11 {
    --col-width: 11;
  }
  .row .offset-sm\:11 {
    --col-start: 12;
  }
  .row .col-sm\:12 {
    --col-width: 12;
  }
  .row .offset-sm\:auto {
    --col-start: auto;
  }
}
@container (max-width: 64rem) {
  .row .col-md\:1 {
    --col-width: 1;
  }
  .row .offset-md\:1 {
    --col-start: 2;
  }
  .row .col-md\:2 {
    --col-width: 2;
  }
  .row .offset-md\:2 {
    --col-start: 3;
  }
  .row .col-md\:3 {
    --col-width: 3;
  }
  .row .offset-md\:3 {
    --col-start: 4;
  }
  .row .col-md\:4 {
    --col-width: 4;
  }
  .row .offset-md\:4 {
    --col-start: 5;
  }
  .row .col-md\:5 {
    --col-width: 5;
  }
  .row .offset-md\:5 {
    --col-start: 6;
  }
  .row .col-md\:6 {
    --col-width: 6;
  }
  .row .offset-md\:6 {
    --col-start: 7;
  }
  .row .col-md\:7 {
    --col-width: 7;
  }
  .row .offset-md\:7 {
    --col-start: 8;
  }
  .row .col-md\:8 {
    --col-width: 8;
  }
  .row .offset-md\:8 {
    --col-start: 9;
  }
  .row .col-md\:9 {
    --col-width: 9;
  }
  .row .offset-md\:9 {
    --col-start: 10;
  }
  .row .col-md\:10 {
    --col-width: 10;
  }
  .row .offset-md\:10 {
    --col-start: 11;
  }
  .row .col-md\:11 {
    --col-width: 11;
  }
  .row .offset-md\:11 {
    --col-start: 12;
  }
  .row .col-md\:12 {
    --col-width: 12;
  }
  .row .offset-md\:auto {
    --col-start: auto;
  }
}
@container (max-width: 80rem) {
  .row .col-lg\:1 {
    --col-width: 1;
  }
  .row .offset-lg\:1 {
    --col-start: 2;
  }
  .row .col-lg\:2 {
    --col-width: 2;
  }
  .row .offset-lg\:2 {
    --col-start: 3;
  }
  .row .col-lg\:3 {
    --col-width: 3;
  }
  .row .offset-lg\:3 {
    --col-start: 4;
  }
  .row .col-lg\:4 {
    --col-width: 4;
  }
  .row .offset-lg\:4 {
    --col-start: 5;
  }
  .row .col-lg\:5 {
    --col-width: 5;
  }
  .row .offset-lg\:5 {
    --col-start: 6;
  }
  .row .col-lg\:6 {
    --col-width: 6;
  }
  .row .offset-lg\:6 {
    --col-start: 7;
  }
  .row .col-lg\:7 {
    --col-width: 7;
  }
  .row .offset-lg\:7 {
    --col-start: 8;
  }
  .row .col-lg\:8 {
    --col-width: 8;
  }
  .row .offset-lg\:8 {
    --col-start: 9;
  }
  .row .col-lg\:9 {
    --col-width: 9;
  }
  .row .offset-lg\:9 {
    --col-start: 10;
  }
  .row .col-lg\:10 {
    --col-width: 10;
  }
  .row .offset-lg\:10 {
    --col-start: 11;
  }
  .row .col-lg\:11 {
    --col-width: 11;
  }
  .row .offset-lg\:11 {
    --col-start: 12;
  }
  .row .col-lg\:12 {
    --col-width: 12;
  }
  .row .offset-lg\:auto {
    --col-start: auto;
  }
}
@container (max-width: 90rem) {
  .row .col-xl\:1 {
    --col-width: 1;
  }
  .row .offset-xl\:1 {
    --col-start: 2;
  }
  .row .col-xl\:2 {
    --col-width: 2;
  }
  .row .offset-xl\:2 {
    --col-start: 3;
  }
  .row .col-xl\:3 {
    --col-width: 3;
  }
  .row .offset-xl\:3 {
    --col-start: 4;
  }
  .row .col-xl\:4 {
    --col-width: 4;
  }
  .row .offset-xl\:4 {
    --col-start: 5;
  }
  .row .col-xl\:5 {
    --col-width: 5;
  }
  .row .offset-xl\:5 {
    --col-start: 6;
  }
  .row .col-xl\:6 {
    --col-width: 6;
  }
  .row .offset-xl\:6 {
    --col-start: 7;
  }
  .row .col-xl\:7 {
    --col-width: 7;
  }
  .row .offset-xl\:7 {
    --col-start: 8;
  }
  .row .col-xl\:8 {
    --col-width: 8;
  }
  .row .offset-xl\:8 {
    --col-start: 9;
  }
  .row .col-xl\:9 {
    --col-width: 9;
  }
  .row .offset-xl\:9 {
    --col-start: 10;
  }
  .row .col-xl\:10 {
    --col-width: 10;
  }
  .row .offset-xl\:10 {
    --col-start: 11;
  }
  .row .col-xl\:11 {
    --col-width: 11;
  }
  .row .offset-xl\:11 {
    --col-start: 12;
  }
  .row .col-xl\:12 {
    --col-width: 12;
  }
  .row .offset-xl\:auto {
    --col-start: auto;
  }
}
.text-weight-100 {
  font-weight: 100;
}
.text-weight-200 {
  font-weight: 200;
}
.text-weight-300 {
  font-weight: 300;
}
.text-weight-400 {
  font-weight: 400;
}
.text-weight-500 {
  font-weight: 500;
}
.text-weight-600 {
  font-weight: 600;
}
.text-weight-700 {
  font-weight: 700;
}
.text-weight-800 {
  font-weight: 800;
}
.text-weight-900 {
  font-weight: 900;
}
.text-italic {
  font-style: italic;
}
.text-bold {
  font-weight: 700;
}
.text-nw {
  white-space: nowrap;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-hyphenate {
  -webkit-hyphens: auto;
          hyphens: auto;
}
.text-justify,
.text-justify-left,
.text-justify-center,
.text-justify-right {
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.text-justify,
.text-justify-left {
  -moz-text-align-last: left;
       text-align-last: left;
}
.text-justify-center {
  -moz-text-align-last: center;
       text-align-last: center;
}
.text-justify-right {
  -moz-text-align-last: right;
       text-align-last: right;
}
.text-balance {
  text-wrap: balance;
}
.text-uc {
  text-transform: uppercase;
}
.text-lc {
  text-transform: lowercase;
}
.svg-icon {
  height: var(--icon-size);
  width: var(--icon-size);
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}
a {
  color: var(--color-link);
  transition: var(--link-transition-duration, 250ms);
}
@media not all and (hover: none) {
  a:hover {
    color: var(--color-link-hover, var(--color-link));
  }
}
.stretch-link::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 2;
}
body,
.scrollable,
.scrollable-x,
.scrollable-y {
  scrollbar-color: var(--ui-scrollbar-color, var(--color-grey-700, #333) transparent);
}
.scrollable,
.scrollable-x,
.scrollable-y {
  scrollbar-width: thin;
}
.scrollable {
  overflow: auto;
  padding-block-end: var(--ui-scrollbar-gutter-size, 1rem);
  padding-inline-end: var(--ui-scrollbar-gutter-size, 1rem);
}
.scrollable-x {
  overflow: auto clip;
  padding-block-end: var(--ui-scrollbar-gutter-size, 1rem);
}
.scrollable-y {
  overflow: clip auto;
  padding-inline-end: var(--ui-scrollbar-gutter-size, 1rem);
}
.dev--grid {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
  display: flex;
  justify-content: center;
}
.dev--grid-cols {
  display: grid;
  grid-gap: 0 var(--dev-grid-gap, var(--ui-column-gap));
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  width: 100%;
  max-width: var(--ui-content-max-width, 100%);
  padding-inline: var(--body-inset);
  margin-inline: auto;
}
@media screen and (max-width: 37.49rem) {
  .dev--grid-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}
.dev--grid-col {
  height: 100%;
  position: relative;
}
.dev--grid-col::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #00FFFF;
  content: '';
}
/**
 * Shared components 
**/
/**
 * Flatlist needs swiper.js to work 
 * @see package.json 
 **/
.flatlist.flatlist-x {
  overflow: visible;
}
.flatlist.flatlist-with-pagination {
  padding-bottom: var(--spacer-xl);
}
.flatlist .swiper-slide {
  width: auto;
}
:root {
  --site-credits-w: 27px;
  --site-credits-x: 1.5vw;
  --site-credits-y: 1.5vw;
}
.site-credits {
  position: absolute;
  bottom: var(--site-credits-y);
  right: var(--site-credits-x);
  width: var(--site-credits-w);
  height: var(--site-credits-w);
}
.site-credits a,
.site-credits img {
  display: block;
  width: 100%;
  height: 100%;
}
.select-box {
  display: inline-block;
}
.select-box select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1.5;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
/* remember to define focus styles! */
:focus {
  outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* HTML5 Reset */
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}
address {
  font-style: normal;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style-type: none;
}
address {
  font-style: normal;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
button,
input[type=submit],
input[type=button],
input[type=reset] {
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html,
body {
  font-size: 16px;
  height: 100%;
}
body {
  line-height: var(--lh-text-md, 1.33);
  color: var(--color-text-dark, #333);
  background: var(--body-bg, #fff);
  text-align: left;
  -webkit-font-smoothing: subpixel-antialiased;
}
.holder {
  width: 100%;
  max-width: var(--ui-content-max-width, 100%);
  margin-inline: auto;
  padding-inline: var(--body-inset);
}
.o-hidden {
  overflow: hidden;
}
.d-none,
[hidden] {
  display: none;
}
.sr-only:not(:focus):not(:active),
.screen-reader-text:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
body > .skip-link {
  position: absolute;
}
input,
select,
button,
textarea {
  font-family: var(--fn-input, var(--fn-body));
}
input[type=submit] input[type=button] input[type=reset] button {
  font-family: var(--fn-button, var(--fn-body));
}
.title-1,
.title-2,
.title-3,
.title-4,
.title-5,
.title-6,
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6,
.section.-style-post-single-indent .sn--subtitle,
.card.-cover .cd--title,
.btn.-size-xl,
.btn-icon.-size-xl,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH1,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH2 {
  font-family: var(--fn-title, var(--fn-body));
}
a > *,
button > * {
  pointer-events: none;
}
/*
 * Theme specified files 
 */
/*
 * All colors MUST be defined 
 * to be used into `hsl()` or `hsla()` css functions 
 * 
 * CSS CLASSES 
 * Each color defined under @color-theme, @color-grey or @color-ui 
 * will be available as .(c|b)-(theme|grey|ui)-xxx (c for color, b for background)
 *
 * CSS CUSTOM PROPS 
 * Also, a full set of css custom properties will be generated 
 * * --color-(theme|grey|ui)-xxx – the color ready to be used
 * * --color-(theme|grey|ui)-xxx-hsl – the HSL value to be wrapped in `hsl()` or `hsla()` function
 * * --color-(theme|grey|ui)-xxx-hue – the HUE value of color (could be easily modified with `calc()`)
 * * --color-(theme|grey|ui)-xxx-saturation – the SATURATION value of color (could be easily modified with `calc()`)
 * * --color-(theme|grey|ui)-xxx-lightness – the LIGHTNESS value of color (could be easily modified with `calc()`)
 */
/* */
/* 
 * Uncomment to overwrite defaults 
 * /
@color-ui: {
	success: green;
	notice: yellow;
	danger:red;
	warning:orange;
};
/* */
/**
 * @name: @min[, @max]
 */
/**
 * @name: @value
 */
:root {
  --fn-title: 'transducer-extended';
  --fw-title: 900;
  --fn-title-fallback: sans-serif;
  --fn-body: 'InterVariable';
  --fn-body-fallback: Inter, Helvetica Neue, Arial, sans-serif;
}
@font-face {
  font-family: 'InterVariable';
  src: url('../../fonts/inter/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --body-bg: var(--color-lightest);
  --body-inset: clamp(1.5rem, calc(1.357rem + 0.714vw), 2rem);
  --phone-navbar-h: 80px;
}
@media screen and (max-width: 63.99rem) {
  :root {
    --site-credits-y: calc(var(--phone-navbar-h) + 30px);
  }
}
:root {
  --tx-duration-xs: 125ms;
  --tx-duration-sm: 250ms;
  --tx-duration-md: 500ms;
  --tx-duration-lg: 1000ms;
}
:root {
  --icon-size-lg: 2rem;
  --icon-size-md: 1.5rem;
  --icon-size-sm: 1.125rem;
  --icon-size-xs: 1rem;
  --icon-size: var(--icon-size-md);
  --border-radius-lg: 24px;
  --border-radius-md: 18px;
  --border-radius-sm: 12px;
  --border-radius-xs: 6px;
  --border-radius: var(--border-radius-xs);
  --ui-content-max-width: var(--viewport-xl);
  --ui-column-gap: var(--spacer-xl);
  --ui-scrollbar-color: var(--color-grey-500);
  --ui-scrollbar-gutter-size: 12px;
  --element-inset-x: var(--spacer-lg);
  --element-inset-y: var(--spacer-md);
  --box-shadow-xs: 0 0 3px rgba(0 0 0/0.1);
  --box-shadow-sm: 0 0 5px rgba(0 0 0/0.1);
  --dev-grid-gap: 72px;
}
@media screen and (min-width: 37.5rem) and (max-width: 63.99rem) {
  :root {
    --ui-column-gap: var(--spacer-lg);
    --element-inset-x: var(--spacer-md);
    --element-inset-y: var(--spacer-sm);
  }
}
@media screen and (max-width: 37.49rem) {
  :root {
    --ui-column-gap: var(--spacer-md);
    --element-inset-x: var(--spacer-sm);
    --element-inset-y: var(--spacer-xs);
  }
}
:root {
  --checklist-bullet-size: var(--icon-size-md);
  --checklist-bullet-gap: 0.75em;
  --checklist-bullet-color: var(--color-grey-200);
}
body {
  font-family: var(--fn-body);
}
b,
strong {
  font-weight: 700;
}
i,
em {
  font-style: italic;
}
.display-1,
.display-2,
.display-3,
.section .sn--title,
.section.-screen-intro .sn--title,
.section.-intro-archive .sn--title,
.section.-page .sn--title,
.section.-style-post-single-indent .sn--title,
.section.-large-header .sn--title,
.hero .hr--title {
  font-family: var(--fn-title);
  font-weight: var(--fw-title);
  text-transform: uppercase;
  text-wrap: balance;
}
@media screen and (max-width: 63.99rem) {
  .display-1,
  .display-2,
  .display-3,
  .section .sn--title,
  .section.-screen-intro .sn--title,
  .section.-intro-archive .sn--title,
  .section.-page .sn--title,
  .section.-style-post-single-indent .sn--title,
  .section.-large-header .sn--title,
  .hero .hr--title {
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}
.title-1,
.title-2,
.title-3,
.title-4,
.title-5,
.title-6,
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6,
.section.-style-post-single-indent .sn--subtitle,
.card.-cover .cd--title,
.btn.-size-xl,
.btn-icon.-size-xl,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH1,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH2 {
  --fn-title: var(--fn-body);
}
.title-1,
.prose h1 {
  font-weight: 900;
  text-wrap: balance;
}
.title-2,
.prose h2 {
  font-weight: 700;
  text-wrap: balance;
}
.title-3,
.prose h3,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH1 {
  font-weight: 500;
}
.title-4,
.prose h4,
.card.-cover .cd--title,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH2 {
  font-weight: 900;
}
.title-5,
.prose h5,
.section.-style-post-single-indent .sn--subtitle,
.btn.-size-xl,
.btn-icon.-size-xl {
  font-weight: 700;
}
.title-6,
.prose h6 {
  font-weight: 700;
  text-transform: uppercase;
}
.title-sm-6 {
  font-weight: 700;
  text-transform: uppercase;
}
.check-list li {
  position: relative;
  min-height: var(--checklist-bullet-size);
  padding-inline-start: calc(var(--checklist-bullet-size) + var(--checklist-bullet-gap));
}
.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: var(--checklist-bullet-size);
  aspect-ratio: 1;
  background-color: var(--checklist-bullet-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: '✓';
}
.check-list li + li {
  margin-block-start: 0.75em;
}
.table-specs {
  width: 100%;
}
.table-specs tr {
  background-color: var(--color-grey-100);
}
.table-specs tr + tr {
  border-top: 1px solid var(--color-lightest);
}
.table-specs tr:nth-child(even) {
  background-color: var(--color-grey-200);
}
.table-specs tr:first-child > :first-child {
  border-top-left-radius: var(--border-radius);
}
.table-specs tr:first-child > :last-child {
  border-top-right-radius: var(--border-radius);
}
.table-specs tr:last-child > :first-child {
  border-bottom-left-radius: var(--border-radius);
}
.table-specs tr:last-child > :last-child {
  border-bottom-right-radius: var(--border-radius);
}
.table-specs th,
.table-specs td {
  padding: 0.5em 1em;
}
.table-specs th {
  font-weight: 700;
}
.datasheet {
  padding: 1.5em 2em;
  margin-inline: -2em;
  border-radius: var(--border-radius-xs);
  background-color: var(--color-grey-100);
}
.aside-info {
  padding: 1.5em 2em;
  margin-inline: -2em;
  border-radius: var(--border-radius-xs);
  background-color: hsla(var(--color-theme-greeny-hsl) / 0.12);
}
.event-counter {
  font-size: var(--fs-text-xs);
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  display: inline-flex;
  background-color: var(--color-grey-800);
  padding: 0.4em 0.8em;
  border-radius: 5em;
  color: var(--color-lightest);
  cursor: default;
}
.event-counter.style-square {
  padding-inline: 0.5em;
  border-radius: var(--border-radius-xs);
}
.event-counter.color-light {
  color: var(--color-grey-500);
  background-color: var(--color-grey-200);
}
.event-counter.color-medium {
  background-color: var(--color-grey-500);
}
a {
  text-decoration: none;
}
.video-embed {
  --flow-space: 2em;
  --sn-text-column-width: 80rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  margin-block-start: var(--flow-space);
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}
/*
 * The layout elements are those 
 * that are responsively controlled by @media rules 
 * in contrary of ~'/component elements that are 
 * responsively controlled by @container rules
**/
:root {
  font-family: var(--fn-body-fallback);
}
@supports (font-variation-settings: normal) {
  :root {
    font-family: var(--fn-body), sans-serif;
    font-optical-sizing: auto;
  }
}
body {
  font-size: var(--fs-text-md);
  line-height: var(--lh-text-md);
  font-optical-sizing: auto;
  color: var(--color-theme-darkest);
  background: var(--body-bg, var(--color-lightest));
}
.app-wrapper {
  width: 100%;
  min-height: 99.99vh;
  position: relative;
}
@media screen and (max-width: 63.99rem) {
  .app-wrapper {
    padding-inline: 0;
  }
}
.app-footer {
  margin-block-start: 10em;
  padding-block-end: 2em;
}
.app-footer a {
  text-underline-offset: 0.5em;
  text-decoration-line: underline;
  text-decoration-thickness: 0;
  text-decoration-color: transparent;
}
@media not all and (hover: none) {
  .app-footer a:hover {
    text-decoration-color: currentcolor;
    text-decoration-thickness: 0.125em;
  }
}
@media screen and (max-width: 63.99rem) {
  .app-footer {
    margin-block-start: 10vw;
    padding-block-end: 130px;
  }
}
.site-quick-nav .nav-title {
  color: var(--color-grey-500);
  margin-block-end: 1em;
}
.site-quick-nav .menu {
  font-weight: 700;
  font-size: var(--fs-text-lg);
  line-height: var(--lh-text-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.site-info {
  --text-align: right;
  --flex-align: flex-end;
  display: flex;
  gap: 2em;
  flex-direction: column;
  text-align: var(--text-align);
}
.social-links {
  --icon-size: var(--icon-size-md);
  display: flex;
  gap: 2em;
  justify-content: var(--flex-align);
  align-items: center;
  padding-block: 2em;
}
.site-supports .supports {
  display: flex;
  gap: 2em;
  justify-content: var(--flex-align);
  align-items: center;
}
.site-supports li {
  width: 12.5em;
  height: 5em;
}
.site-supports a,
.site-supports img {
  display: block;
  width: 100%;
  height: 100%;
}
.site-supports img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
}
.footnotes > * + * {
  margin-block-start: 2em;
}
.footnotes a {
  font-weight: 700;
  white-space: nowrap;
}
.footnotes span + span::before {
  content: ' – ';
}
@media screen and (max-width: 47.99rem) {
  .site-info {
    --text-align: left;
    --flex-align: flex-start;
  }
  .site-supports img {
    -o-object-position: 0% 50%;
       object-position: 0% 50%;
  }
}
:root {
  --app-contents-margin-block-start: -3em;
}
@media screen and (max-width: 63.99rem) {
  :root {
    --app-contents-margin-block-start: 0;
  }
}
.app-contents {
  overflow-x: clip;
  margin-block-start: var(--app-contents-margin-block-start);
}
.prose > * + * {
  margin-block-start: var(--flow-space, 1em);
}
.prose .aside-info > * + *,
.prose .datasheet > * + *,
.prose blockquote > * + * {
  margin-block-start: var(--flow-space, 1em);
}
.prose :is(p + h2, p + h3, p + h4) {
  --flow-space: 1.5em;
}
.prose :is(h2 + h3) {
  --flow-space: 0.5em;
}
.prose :is(ol + p, ul + p) {
  --flow-space: 2em;
}
.prose h1 {
  text-wrap: balance;
}
.prose h2 {
  text-wrap: balance;
}
.prose h3 {
  color: var(--color-grey-400);
}
.prose h6 {
  color: var(--color-grey-400);
}
.prose h6 + p {
  --flow-space: 0.25em;
}
.prose p {
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.prose p:not(:last-child):has(.btn) {
  margin-block-end: 2em;
}
.prose .cite {
  --flow-space: 2em;
  margin-bottom: var(--flow-space);
  margin-inline-start: 0.25em;
  border-left: 2px solid;
  padding-inline-start: 1.5em;
  max-width: 768px;
}
.prose .form {
  --flow-space: 2em;
}
.prose a:not(.btn):not(.btn-icon):not(.link-btn) {
  display: inline-flex;
  font-weight: 700;
  text-underline-position: from-font;
  text-underline-offset: -0.4em;
  text-decoration: underline;
  text-decoration-thickness: 0.6em;
  text-decoration-color: hsl(var(--color-theme-accent-hsl) / 0.5);
  -webkit-text-decoration-skip: none;
          text-decoration-skip: none;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  /*
	&::before, 
	&::after {
		position:absolute;
		bottom:.05em;
		transition:width 250ms @ttf-easeOutCubic;
		content:'';
	}
	
	&::before {
		width:100%;
		left:0;
		right:auto;
		height:1px;
		transition-delay:100ms;
		background-color: var(--color-grey-400);
	}
	
	&::after {
		width:0;
		right:0;
		height:2px;
		left:auto;
		background-color: var(--color-link);
	}
	
	.mx-hover({
		&::before {
			width:0;
			right:0;
			left:auto;
			transition-delay:0ms;
		}
		
		&::after {
			width:100%;
			left:0;
			right:auto;
			transition-delay:100ms;
		}
	});
	*/
}
@media not all and (hover: none) {
  .prose a:not(.btn):not(.btn-icon):not(.link-btn):hover {
    text-underline-offset: 0.25em;
    text-decoration-thickness: 0.1em;
  }
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
.prose img[style*="float:left"],
.prose img[style*="float: left"] {
  margin-inline-end: 1em;
  margin-bottom: 1em;
}
.prose img[style*="float:right"],
.prose img[style*="float: right"] {
  margin-inline-start: 1em;
  margin-bottom: 1em;
}
.prose ul,
.prose ol {
  margin-inline-start: 1.5em;
}
.prose ul li + li,
.prose ol li + li {
  margin-block-start: 0.25em;
}
.prose ol li {
  list-style-type: decimal;
}
.prose ul li {
  list-style-type: "—  ";
}
.prose .btn {
  font-size: inherit;
}
.prose .datasheet {
  margin-block-start: 2.5em;
  --flow-space: 0.5em;
}
.prose .aside-info {
  margin-block-start: 2.5em;
}
/*
.scroll-entrance entrance--default {
	opacity:0;
	transform:translateY(4rem);
	transition:opacity 1000ms, transform 1000ms @ttf-easeOutExpo;
	
	&.shown {
		opacity:1;
		transform:none;
	}
}
*/
.overlay-panel {
  --icon-size: var(--icon-size-md);
  position: absolute;
  top: 0;
  left: 0;
  width: 99.99vw;
  height: 99.99vh;
  z-index: 30;
  pointer-events: none;
}
.overlay-panel::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 250ms linear 250ms;
  content: '';
}
.overlay-panel.theme--light::before {
  background-color: rgba(255, 255, 255, 0.92);
}
.overlay-panel.theme--grey-100::before {
  background-color: hsl(var(--color-grey-100-hsl)/90%);
}
.overlay-panel.theme--accent::before {
  background-color: hsl(var(--color-theme-accent-hsl) / 90%);
}
.overlay-panel > .-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: var(--body-inset);
}
.overlay-panel > .-inner > .-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 250ms ease 0ms;
  opacity: 0;
  transform: translateY(-100px);
}
.overlay-panel > .-inner > .-controls {
  position: absolute;
  z-index: 3;
  top: var(--body-inset);
  right: var(--body-inset);
  transition: opacity 250ms linear 0ms;
  opacity: 0;
}
@media not all and (hover: none) {
  .overlay-panel > .-inner > .-controls button,
  .overlay-panel > .-inner > .-controls a {
    opacity: 0.5;
    transition: opacity 250ms;
  }
}
@media not all and (hover: none) {
  .overlay-panel > .-inner > .-controls button:hover,
  .overlay-panel > .-inner > .-controls a:hover {
    opacity: 1;
  }
}
.overlay-panel.shown {
  pointer-events: all;
}
.overlay-panel.shown::before {
  opacity: 1;
  transition-delay: 0ms;
}
.overlay-panel.shown > .-inner > .-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 125ms;
}
.overlay-panel.shown > .-inner > .-controls {
  opacity: 1;
  transition-delay: 250ms;
}
/*
 * Scroll Driven animation 
 */
@supports ((animation-timeline: view()) and (animation-range: 0% 100%)) {
  @keyframes entranceDefault {
    from {
      opacity: 0;
      translate: 0 2rem;
    }
    100% {
      opacity: 1;
      translate: 0 0;
    }
  }
  .scroll-entrance.entrance--default {
    will-change: auto;
    animation-name: entranceDefault;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-duration: 1ms;
    animation-timeline: view();
    /* The bells */
    animation-range: 0% 40vh;
  }
  /*
	each(range(20), {
		.row > .scroll-entrance:nth-child(@{value}) {
			animation-delay: 50ms * @value;
		}
	});
	*/
}
@media (prefers-reduced-motion) {
  .scroll-entrance {
    animation: none !important;
  }
}
/*
 * Component elements 
 */
:root {
  --action-link-line-width: 3em;
  --action-link-line-height: 0.125em;
  --action-link-line-color: var(--color-theme-accent);
  --action-link-line-color-active: var(--color-theme-darkest);
  --action-link-line-space-before: 0.75em;
  --action-link-color-hover: var(--color-grey-700);
}
.link-action {
  --color-link-hover: var(--action-link-color-hover);
  display: inline-block;
  position: relative;
  font-weight: 700;
  white-space: nowrap;
  padding-inline-end: calc(var(--action-link-line-width) + var(--action-link-line-space-before));
}
.link-action::before,
.link-action::after {
  position: absolute;
  top: 50%;
  left: calc(100% - var(--action-link-line-width));
  height: var(--action-link-line-height);
  transform: translateY(-50%);
  border-radius: var(--action-link-line-height);
  content: '';
}
.link-action::before {
  z-index: 1;
  width: var(--action-link-line-width);
  background-color: var(--action-link-line-color);
}
.link-action::after {
  z-index: 2;
  width: 0;
  background-color: var(--action-link-line-color-active);
  transition: width 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media not all and (hover: none) {
  .link-action:hover::after {
    transition-duration: 200ms;
    width: calc(var(--action-link-line-width) * .75);
  }
}
.link-action + * {
  margin-inline-start: 1em;
}
.sn--actions .link-action + * {
  margin-inline-start: 0;
}
.link-action-alt {
  white-space: nowrap;
}
@media not all and (hover: none) {
  .link-action-alt:hover {
    opacity: 0.5;
  }
}
:root {
  --ui-hamburger-w: var(--spacer-lg);
  --ui-hamburger-h: var(--spacer-lg);
  --ui-hamburger-bar-spacer: 10px;
  --ui-hamburger-bar-h: 2px;
  --ui-hamburger-color: var(--color-theme-darkest);
}
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}
.hamburger-box {
  width: var(--ui-hamburger-w);
  height: var(--ui-hamburger-h);
  position: relative;
  margin: auto;
}
.hamburger-inner {
  display: block;
  top: 50%;
  --pos-x: calc(var(--ui-hamburger-bar-spacer) * -1);
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
}
.hamburger-inner::before {
  top: var(--pos-x);
}
.hamburger-inner::after {
  bottom: var(--pos-x);
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 100%;
  height: var(--ui-hamburger-bar-h);
  background-color: var(--ui-hamburger-color);
  border-radius: var(--ui-hamburger-bar-h);
  position: absolute;
  transition: transform 0.15s ease;
}
/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navigation-shown .hamburger--spin .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navigation-shown .hamburger--spin .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.navigation-shown .hamburger--spin .hamburger-inner::after {
  bottom: 0;
  width: 100%;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
:root {
  --thumbnail-fit: cover;
}
[class$='-thumbnail'],
[class*='-thumbnail '] {
  overflow: hidden;
}
[class$='-thumbnail'] a,
[class*='-thumbnail '] a,
[class$='-thumbnail'] img,
[class*='-thumbnail '] img,
[class$='-thumbnail'] video,
[class*='-thumbnail '] video,
[class$='-thumbnail'] .missing-thumbnail,
[class*='-thumbnail '] .missing-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
}
[class$='-thumbnail'] img,
[class*='-thumbnail '] img,
[class$='-thumbnail'] video,
[class*='-thumbnail '] video {
  -o-object-fit: var(--thumbnail-fit);
     object-fit: var(--thumbnail-fit);
}
.missing-thumbnail {
  background-color: var(--color-grey-200);
}
:root {
  --sn-thumbnail-lg: 50%;
  --sn-elements-radius: var(--border-radius-xs);
  --sn-thumbnail-fit: cover;
  --sn-spacer-x: var(--spacer-md);
  --sn-spacer-y: var(--spacer-lg);
  --sn-text-column-width: 768px;
  --sn-padding-block: clamp(4.5rem, calc(3.214rem + 6.429vw), 9rem);
  --sn-min-height: 0;
  --aside-nav-item-padding-inline: 0.5em;
  --aside-nav-item-padding-block: 0.33em;
  --aside-nav-submenu-indent-value: 1em;
  --aside-nav-submenu-indent: var(--aside-nav-submenu-indent-value);
}
.post-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.post-metas .post-meta {
  --icon-size: var(--icon-size-sm);
  --color-link: var(--color-grey-700);
  color: var(--color-grey-700);
  display: inline-flex;
  white-space: nowrap;
  gap: 1em;
  align-items: center;
  justify-content: center;
  padding: 0.25em 0.75em;
  border-radius: 2em;
  background-color: var(--color-grey-100);
  transition: background-color 200ms;
  border: 1px solid var(--color-grey-100);
}
.post-metas .post-meta a {
  font-weight: 700;
}
@media not all and (hover: none) {
  .post-metas .post-meta a:hover {
    color: var(--color-grey-900);
  }
}
@media not all and (hover: none) {
  .post-metas .post-meta:hover {
    background-color: var(--color-lightest);
  }
}
.section {
  --thumbnail-fit: var(--sn-thumbnail-fit);
  position: relative;
  /* 
	 * Both sections are 50% thumb or map at the left 
	 */
  /*
	 * Section intro with map 
	 *
	 */
}
.app-crumbs-wrapper + .section .sn--contents,
.app-crumbs-wrapper + .section .sn--sidebar {
  padding-block-start: calc(var(--sn-padding-block) * .5);
}
.section > .-inner {
  display: flex;
}
.section .sn--contents,
.section .sn--sidebar {
  padding-block: var(--sn-padding-block);
}
.section .sn--contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sn-spacer-y);
}
.section .sn--sidebar.-sticky {
  position: sticky;
  top: var(--sn-padding-block);
}
@media screen and (max-width: 63.99rem) {
  .section .sn--sidebar.-sticky {
    position: static;
  }
}
@media screen and (max-width: 63.99rem) {
  .section .sn--sidebar {
    padding-block-end: 0;
  }
}
.section .sn--title {
  text-wrap: balance;
  max-width: var(--sn-text-column-width);
}
.section .sn--actions {
  display: flex;
  gap: 2em;
  align-items: baseline;
  flex-wrap: wrap;
}
.section.bc-grey-100 {
  background-color: var(--color-grey-100);
}
.section.bc-accent {
  background-color: var(--color-theme-accent);
}
.section.-screen-intro,
.section.-intro-with-map {
  --sn-min-height: 50rem;
  --sn-padding-block: var(--spacer-2xl);
  --sn-spacer-x: var(--spacer-2xl);
  --sn-spacer-y: 3em;
}
.section.-screen-intro > .-inner,
.section.-intro-with-map > .-inner {
  flex-direction: row-reverse;
  min-height: var(--sn-min-height);
}
.section.-screen-intro > .-inner > .holder,
.section.-intro-with-map > .-inner > .holder {
  display: flex;
  align-items: center;
}
.section.-screen-intro .sn--contents,
.section.-intro-with-map .sn--contents {
  padding-inline-start: calc(var(--sn-thumbnail-lg) + (var(--sn-spacer-x) * .5));
}
.section.-screen-intro .sn--body,
.section.-intro-with-map .sn--body,
.section.-screen-intro .sn--footer,
.section.-intro-with-map .sn--footer {
  padding-inline-start: var(--spacer-xl);
}
.section.-screen-intro .sn--thumbnail,
.section.-intro-with-map .sn--thumbnail {
  position: absolute;
  z-index: 1;
  left: 0;
  width: calc(var(--sn-thumbnail-lg) - (var(--sn-spacer-x) * .5));
  height: 100%;
}
@media screen and (max-width: 63.99rem) {
  .section.-screen-intro,
  .section.-intro-with-map {
    --sn-thumbnail-lg: 100vw;
    --sn-spacer-x: 2rem;
  }
  .section.-screen-intro .sn--contents,
  .section.-intro-with-map .sn--contents {
    padding-inline-start: 0;
    padding-block-end: calc(var(--sn-thumbnail-lg) + var(--sn-spacer-y));
    max-width: 100%;
  }
  .section.-screen-intro .sn--thumbnail,
  .section.-intro-with-map .sn--thumbnail {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
.section.-screen-intro {
  --sn-elements-radius: var(--border-radius-sm);
  background-color: var(--color-grey-100);
}
.section.-screen-intro .sn--thumbnail {
  border-bottom-right-radius: var(--sn-elements-radius);
}
.section.-screen-intro .sn--also {
  --color-link: var(--color-lightest);
  --action-link-color-hover: var(--color-theme-accent);
  --action-link-line-color-active: var(--color-lightest);
  color: var(--color-theme-accent);
  background-color: var(--color-theme-darkest);
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: auto;
  border-radius: 0 var(--sn-elements-radius) var(--sn-elements-radius) 0;
  transform: translateY(-50%);
  padding-inline-start: calc((100vw - var(--ui-content-max-width, 100%)) * .5);
}
.section.-screen-intro .sn--also > .-inner {
  padding-block: var(--body-inset);
  padding-inline: var(--body-inset);
}
.section.-screen-intro .sn--also .ao--body {
  display: flex;
  align-items: flex-end;
  gap: 4em;
}
.section.-screen-intro .sn--also .ao--title {
  max-width: 300px;
  font-weight: 800;
  text-wrap: balance;
}
@media screen and (max-width: 63.99rem) {
  .section.-screen-intro .sn--also .ao--body {
    flex-direction: column;
    gap: 1em;
  }
}
.section.-screen-intro:has(.sn--also) {
  margin-block-end: var(--spacer-xl);
}
@media screen and (max-width: 63.99rem) {
  .section.-screen-intro .sn--thumbnail {
    border-top-right-radius: var(--sn-elements-radius);
  }
}
.section.-intro-with-map {
  overflow: hidden;
}
.section.-intro-with-map .sn--footer {
  margin-block-start: var(--sn-spacer-y);
}
.section.-intro-with-map .sn--thumbnail {
  padding-block-start: var(--sn-spacer-y);
}
.section.-intro-with-map .sn--thumbnail .map {
  width: 100%;
  height: 100%;
  border-top-right-radius: var(--sn-elements-radius);
  background-color: var(--color-grey-200);
  box-shadow: 1em 1em 0 hsl(var(--color-theme-himalaya-hsl) / 10%);
}
@media screen and (max-width: 63.99rem) {
  .section.-intro-with-map .sn--thumbnail {
    padding-block-start: 0;
  }
}
.section.-intro-specialists-map {
  --sn-thumbnail-lg: 66.66%;
}
.section.-intro-specialists-map .sn--thumbnail .map {
  border-bottom-left-radius: var(--sn-elements-radius);
}
.section.-company-map,
.section.-intro-specialists-map {
  /* Same params as -intro-with-map */
  --sn-min-height: 50rem;
  --sn-padding-block: var(--spacer-2xl);
  --sn-spacer-x: var(--spacer-2xl);
  --sn-spacer-y: 3em;
  /* end */
}
.section.-company-map > .-inner,
.section.-intro-specialists-map > .-inner {
  flex-direction: row;
  min-height: var(--sn-min-height);
}
.section.-company-map > .-inner > .holder,
.section.-intro-specialists-map > .-inner > .holder {
  display: flex;
  align-items: center;
}
.section.-company-map .sn--contents,
.section.-intro-specialists-map .sn--contents {
  padding-inline-end: calc(var(--sn-thumbnail-lg) + (var(--sn-spacer-x) * .5));
}
.section.-company-map .sn--body,
.section.-intro-specialists-map .sn--body,
.section.-company-map .sn--footer,
.section.-intro-specialists-map .sn--footer {
  padding-inline-end: var(--spacer-xl);
}
.section.-company-map .sn--thumbnail,
.section.-intro-specialists-map .sn--thumbnail {
  position: absolute;
  z-index: 1;
  right: 0;
  width: calc(var(--sn-thumbnail-lg) - (var(--sn-spacer-x) * .5));
  height: 100%;
}
.section.-company-map .sn--thumbnail .map,
.section.-intro-specialists-map .sn--thumbnail .map {
  width: 100%;
  height: 100%;
  border-top-left-radius: var(--border-radius-lg);
  background-color: var(--color-grey-200);
}
@media screen and (max-width: 63.99rem) {
  .section.-company-map,
  .section.-intro-specialists-map {
    --sn-thumbnail-lg: 100vw;
    --sn-spacer-x: 2rem;
  }
  .section.-company-map .sn--contents,
  .section.-intro-specialists-map .sn--contents {
    padding-inline-end: 0;
    padding-block-end: calc((var(--sn-thumbnail-lg) * 1.33) + var(--sn-spacer-y));
  }
  .section.-company-map .sn--thumbnail,
  .section.-intro-specialists-map .sn--thumbnail {
    position: absolute;
    bottom: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}
.section.-company-map .company-details {
  margin-bottom: 2em;
}
.section.-intro-archive,
.section.-archive,
.section.-style-post-single-indent,
.section.-page {
  --sn-padding-block: clamp(3rem, calc(2.143rem + 4.286vw), 6rem);
}
.section.-intro-archive .sn--controls.-sticky,
.section.-archive .sn--controls.-sticky {
  position: sticky;
  z-index: 2;
  top: calc(var(--sn-padding-block) * 2);
  background-color: var(--color-lightest);
}
.section.-intro-archive .sn--body {
  padding-inline-start: var(--spacer-xl);
  max-width: var(--sn-text-column-width);
  text-wrap: balance;
}
@media screen and (max-width: 63.99rem) {
  .section.-intro-archive .sn--body {
    padding-inline-start: 0;
  }
}
.section.-archive.has-sidebar {
  --cd-item-width: 33.33%;
}
.section.-page .sn--body {
  --sn-text-column-width: 960px;
  margin-block-start: 2em;
  padding-inline-start: var(--spacer-xl);
  max-width: var(--sn-text-column-width);
}
.section.-style-post-single-indent .sn--header {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.section.-style-post-single-indent .sn--subtitle {
  --color-link: var(--color-grey-600);
  --color-link-hover: var(--color-grey-400);
  font-weight: 700;
}
.section.-style-post-single-indent .sn--hat {
  text-wrap: balance;
  margin-bottom: 2em;
  font-weight: 700;
}
.section.-style-post-single-indent .single--main {
  padding-inline-start: var(--spacer-xl);
}
.section.-style-post-single-indent .single--main .prose > * {
  max-width: var(--sn-text-column-width);
}
.section.-style-post-single-indent .single--sidebar.-sticky {
  position: sticky;
  top: calc(var(--sn-padding-block) * 1.5);
}
@media screen and (max-width: 63.99rem) {
  .section.-style-post-single-indent .single--main {
    padding-inline-start: calc(var(--gap) * .5);
    order: 2;
  }
  .section.-style-post-single-indent .single--sidebar {
    order: 1;
    margin-block-end: var(--spacer-xl);
  }
  .section.-style-post-single-indent .single--sidebar.-sticky {
    position: static;
  }
}
.section.product-single .sn--header {
  flex-direction: column-reverse;
  gap: 0.5em;
}
.section.-cards,
.section.-large-header {
  --header-margin-block-end: clamp(3.5rem, calc(2.786rem + 3.571vw), 6rem);
}
.section.-cards .sn--title,
.section.-large-header .sn--title {
  position: relative;
}
.section.-cards .sn--title::after,
.section.-large-header .sn--title::after {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 25%;
  height: 2px;
  margin-block-start: calc(var(--header-margin-block-end) * .55);
  background-color: var(--color-theme-accent);
  content: '';
}
.section.-cards .sn--title {
  max-width: var(--sn-text-column-width);
  margin-block-end: var(--header-margin-block-end);
}
.section.-large-header .sn--header {
  --sn-spacer-x: var(--spacer-2xl);
  display: flex;
  align-items: flex-end;
  gap: var(--sn-spacer-x);
  margin-block-end: var(--header-margin-block-end);
}
.section.-large-header .sn--title,
.section.-large-header .sn--hat {
  flex: 0 0 var(--w);
  max-width: var(--w);
}
.section.-large-header .sn--title {
  --w: calc(33.3333% - (var(--sn-spacer-x) * .5));
  align-self: flex-start;
}
.section.-large-header .sn--hat {
  --w: calc(50% - (var(--sn-spacer-x) * .5));
  margin-inline: auto;
}
.section.-large-header .sn--footer {
  margin-block-start: var(--sn-spacer-y);
}
@media screen and (max-width: 63.99rem) {
  .section.-large-header .sn--header {
    display: block;
    margin-block-end: 0;
  }
  .section.-large-header .sn--title,
  .section.-large-header .sn--hat {
    max-width: none;
    margin-inline: 0;
  }
  .section.-large-header .sn--title {
    margin-block-end: 6rem;
  }
}
.section.-next-overlay {
  padding-block-end: var(--sn-padding-block);
}
.section.-next-overlay + .section {
  margin-block-start: calc((var(--sn-padding-block) * -2));
}
.aside-nav .an--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
}
.aside-nav .an--title {
  flex: 1;
  font-size: var(--fs-text-md);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-grey-600);
}
.aside-nav .an--body {
  padding-block-start: 1em;
}
.aside-nav .an--body.scrollable-y {
  height: calc(100vh - (var(--sn-padding-block) * 2));
}
.aside-nav a {
  display: inline-block;
  padding-inline: var(--aside-nav-item-padding-inline);
  padding-block: var(--aside-nav-item-padding-block);
}
.aside-nav .menu > .menu-item {
  padding-block: 0.5em;
}
.aside-nav .menu > .menu-item > a {
  font-weight: 700;
}
.aside-nav .menu > .menu-item:not(:first-child) {
  border-block-start: 1px solid var(--color-grey-200);
}
.aside-nav .menu .current-menu-item > a {
  --color-link: var(--color-theme-accent);
  pointer-events: none;
  font-weight: 700;
}
.aside-nav .submenu {
  margin-inline-start: var(--aside-nav-submenu-indent);
  margin-block-end: var(--aside-nav-submenu-indent-value);
}
.aside-nav.-accordion {
  --aside-nav-submenu-indent: calc(var(--caret-size) + var(--aside-nav-submenu-indent-value));
}
.aside-nav.-accordion .menu-item.has-children {
  --caret-rotate: 90deg;
  --caret-size: var(--spacer-sm);
}
.aside-nav.-accordion .menu-item.has-children > a {
  position: relative;
  padding-inline-start: calc(var(--caret-size) + var(--aside-nav-item-padding-inline));
}
.aside-nav.-accordion .menu-item.has-children > a::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: var(--caret-size);
  aspect-ratio: 1;
  line-height: 1;
  transform: translateY(-50%) rotate(var(--caret-rotate));
  font-weight: 300;
  text-align: center;
  padding-block-start: 0.5em;
  content: '\2303';
}
.aside-nav.-accordion .menu-item.has-children.-expanded {
  --caret-rotate: 180deg;
}
.aside-nav.-accordion .menu-item.has-children .submenu {
  overflow: clip;
}
@media screen and (max-width: 63.99rem) {
  .aside-nav {
    position: relative;
  }
  .aside-nav .an--header,
  .aside-nav .an--body {
    width: 100%;
    padding: var(--element-inset-y) var(--element-inset-x);
    background-color: var(--color-lightest);
    border: 1px solid var(--color-grey-200);
  }
  .aside-nav .an--header {
    cursor: pointer;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  .aside-nav .an--header::after {
    content: '';
    display: inline-block;
    width: var(--caret-size);
    height: var(--caret-size);
    border-right: var(--caret-stroke-width) solid currentcolor;
    border-bottom: var(--caret-stroke-width) solid currentcolor;
    transform: rotate(45deg);
    transition: 250ms;
  }
  .aside-nav .an--body {
    top: 100%;
    left: 0;
    text-align: left;
    border-block-start: 0;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    position: absolute;
    border-radius: var(--border-radius);
    min-width: 100%;
    outline: 0;
    opacity: 0;
    z-index: -1;
    max-height: 0;
    transition: opacity 100ms, z-index 100ms, max-height 5000ms;
    pointer-events: none;
  }
  .aside-nav:focus .an--body,
  .aside-nav:focus-within .an--body {
    opacity: 1;
    z-index: 100;
    max-height: 100vh;
    transition: opacity 200ms, z-index 200ms, max-height 200ms;
    pointer-events: all;
  }
}
.section-categories-nav {
  --color-link: var(--color-grey-500);
  --color-link-hover: var(--color-lightest);
  font-family: var(--fn-title);
  font-weight: var(--fw-title);
  font-size: var(--fs-text-sm);
  text-transform: uppercase;
  padding-block: 0.5em;
  background-color: var(--color-theme-darkest);
}
.section-categories-nav .menu {
  display: flex;
}
.section-categories-nav .menu-item {
  margin-inline-end: 1em;
}
.section-categories-nav .menu-item a {
  display: block;
  padding-inline: 1em;
  padding-block: 1em;
  white-space: nowrap;
}
.section-categories-nav .menu-item.current-menu-item {
  --color-link: var(--color-lightest);
  pointer-events: none;
}
.section-categories-nav .menu-item.current-menu-item a {
  text-underline-position: from-font;
  text-underline-offset: -0.4em;
  text-decoration: underline;
  text-decoration-thickness: 0.6em;
  text-decoration-color: hsl(var(--color-theme-accent-hsl) / 0.5);
  -webkit-text-decoration-skip: none;
          text-decoration-skip: none;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.section-error {
  margin-block: 6em;
}
.error-page {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
}
.error-page .page--body {
  margin-block: 2em;
}
.error-page .page--body > * + * {
  margin-block-start: var(--flow-space, 1em);
}
.error-page .page--thumbnail img {
  max-width: 480px;
  height: auto;
}
.aside .as--header {
  margin-block-end: 1em;
}
.aside:not(:first-child) {
  margin-block-start: var(--spacer-xl);
}
.single--summary {
  padding: 2em;
  background-color: var(--color-grey-100);
  border-radius: var(--border-radius);
  box-shadow: var(--cd-shadow-size) var(--cd-shadow-size) 0 var(--color-theme-accent);
}
.post-thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ccc;
  border-radius: var(--border-radius);
}
.post-thumbnail a,
.post-thumbnail img,
.post-thumbnail video {
  width: 100%;
  height: 100%;
  display: block;
}
.post-thumbnail img,
.post-thumbnail video {
  -o-object-fit: cover;
     object-fit: cover;
}
.item-list-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em 2em;
  background-color: var(--color-grey-100);
  position: relative;
  border-radius: var(--border-radius);
  padding-block: var(--element-inset-y);
  padding-inline: var(--element-inset-x);
}
.item-list-controls .ac-results-list {
  position: absolute;
  z-index: 990;
  top: calc(100% + .5em);
  left: 0;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  background-color: var(--color-grey-100);
  transition: background-color 200ms;
  padding-block: calc(var(--element-inset-y) * .5);
  padding-inline: calc(var(--element-inset-x) * .5);
}
.item-list-controls .ac-results-list > li {
  padding-block: calc(var(--element-inset-y) * .5);
  padding-inline: calc(var(--element-inset-x) * .5);
  border-radius: var(--border-radius);
  background-color: transparent;
}
.item-list-controls .ac-results-list > li .suggestion-title {
  font-weight: 700;
}
.item-list-controls .ac-results-list > li:hover,
.item-list-controls .ac-results-list > li.autocomplete_selected {
  background-color: #fff;
}
.item-list-controls .search-frm {
  --py: 1rem;
  --px: 1rem;
  --icon-size: var(--icon-size-md);
  min-width: 200px;
}
.item-list-controls .search-frm .input.search {
  margin-block: 0;
  border: 0;
  height: 100%;
  background-color: transparent;
}
.item-list-controls .search-frm .input.search label {
  position: absolute;
  top: 50%;
  left: var(--element-inset-x);
  transform: translateY(-50%);
}
.item-list-controls .search-frm .input.search label span {
  display: none;
}
.item-list-controls .search-frm .input.search input {
  font-weight: 700;
  padding-inline-start: calc(var(--icon-size) + .75em);
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.item-list-controls .search-frm input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
}
.item-list-controls .filter {
  display: flex;
  align-items: center;
  gap: 1em;
}
.item-list-controls .filter .input.switch {
  --form-control-padding-inline: 0;
}
.item-list-controls .filter .fl- {
  /*
			&-counter {
				font-size: var(--fs-text-xs);
				font-weight:700;
				line-height:1;
				display:inline-flex;
				background-color: var(--color-grey-800);
				padding:.4em .8em;
				border-radius:5em;
				color:var(--color-lightest);
				cursor: default;
			}
			*/
}
.item-list-controls .filter .fl--header {
  display: inline-flex;
  align-items: center;
  gap: 1em;
}
.item-list-controls .filter .fl--title {
  font-size: var(--fs-text-md);
  font-weight: 700;
  line-height: 1;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-list-controls .filter.-inline .fl--list {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.item-list-controls .filter.-inline .fl--item {
  opacity: 0.3;
  transition: opacity 200ms;
}
@media not all and (hover: none) {
  .item-list-controls .filter.-inline .fl--item:hover {
    opacity: 0.5;
  }
}
.item-list-controls .filter.-inline .fl--item.-selected {
  opacity: 1;
}
.item-list-controls .filter.-dropdown {
  --px: 1em;
  --py: 0.5em;
  --filter-dropdown-width: 220px;
  position: relative;
  padding: 0;
  margin-inline: calc(var(--px) * -1);
  width: var(--filter-dropdown-width);
  max-width: 100vw;
}
.item-list-controls .filter.-dropdown .fl--header {
  padding: var(--py) var(--px);
  background-color: var(--color-lightest);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-xs);
  width: 100%;
  cursor: pointer;
}
.item-list-controls .filter.-dropdown .fl--body {
  --icon-size: var(--icon-size-s);
  top: 100%;
  right: 0;
  margin-block-start: 2px;
  background-color: var(--color-lightest);
  padding: 1em var(--px);
  text-align: left;
  position: absolute;
  border-radius: var(--border-radius);
  min-width: 100%;
  outline: 0;
  opacity: 0;
  z-index: -1;
  max-height: 0;
  transition: opacity 100ms, z-index 100ms, max-height 5000ms;
  pointer-events: none;
}
.item-list-controls .filter.-dropdown .fl--list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.item-list-controls .filter.-dropdown:focus .fl--body,
.item-list-controls .filter.-dropdown:focus-within .fl--body {
  opacity: 1;
  z-index: 100;
  max-height: 100vh;
  transition: opacity 200ms, z-index 200ms, max-height 200ms;
  pointer-events: all;
}
@media screen and (max-width: 63.99rem) {
  .item-list-controls .search-frm {
    --icon-size: var(--icon-size-sm);
    flex: 0 0 100%;
    width: 100%;
  }
  .item-list-controls .filter.-dropdown {
    --filter-dropdown-width: 180px;
    margin-inline: 0;
  }
}
:root {
  --cd-item-width: 25%;
  --cd-item-gap: var(--spacer-md);
  --cd-border-radius: var(--border-radius-xs);
  --cd-thumbnail-fit: cover;
  --cd-content-padding: 2em;
  --cd-standard-background-color: var(--color-theme-accent);
  --cd-standard-shadow-color: hsl(var(--color-theme-himalaya-hsl) / 10%);
  --cd-standard-action-link-line-color: var(--color-theme-darkest);
  --cd-standard-action-link-line-color-active: var(--color-theme-himalaya);
  --cd-shadow-size: 1em;
}
/*
 * Container 
 */
.cards-list-wrapper {
  container-type: inline-size;
}
/*
 * Standard grid list 
 */
.cards-list {
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(var(--cd-item-gap) * -1);
  --cd-item-width: 25%;
  --cd-item-gap: 1em;
  /*
	 * When mode is flatlist 
	 */
}
.cards-list .cards-list-item {
  width: var(--cd-item-width);
  flex: 0 0 var(--cd-item-width);
  padding: var(--cd-item-gap);
  container-type: inline-size;
}
.cards-list .cards-list-item:has(.instant-search-hidden) {
  display: none;
}
@container (min-width: 37.5rem) and (max-width: 80rem) {
  .cards-list {
    --cd-item-width: 33.33%;
  }
}
@container (min-width: 25.8125rem) and (max-width: 37.5rem) {
  .cards-list {
    --cd-item-width: 50%;
  }
}
@container (max-width: 25.8125rem) {
  .cards-list {
    --cd-item-width: 100%;
    --cd-item-gap: 4cqw;
  }
}
.cards-flatlist .cards-list {
  --cd-item-gap: 1em;
  --cd-item-width: 21rem;
  flex-wrap: nowrap;
  margin-inline: 0;
}
.cards-flatlist .cards-list .cards-list-item {
  flex: 1 1 1;
  padding: 0;
  margin-inline-end: calc(var(--cd-item-gap) + var(--cd-shadow-size));
}
.cards-flatlist .cards-list .cards-list-item .card {
  width: var(--cd-item-width);
}
.cards-flatlist .cards-list .card {
  max-width: none;
}
@container (min-width: 37.5rem) and (max-width: 80rem) {
  .cards-flatlist .cards-list {
    --cd-item-width: 19rem;
  }
}
@container (min-width: 25.8125rem) and (max-width: 37.5rem) {
  .cards-flatlist .cards-list {
    --cd-item-width: 17rem;
  }
}
@container (max-width: 25.8125rem) {
  .cards-flatlist .cards-list {
    --cd-item-width: 15rem;
  }
}
/*
 * Card single item 
 */
.card {
  --thumbnail-fit: var(--cd-thumbnail-fit);
  position: relative;
  aspect-ratio: 5 / 7;
  max-width: 100%;
  border-radius: var(--cd-border-radius);
  overflow: hidden;
}
.card > .-inner {
  height: 100%;
}
.card .cd--contents {
  display: flex;
  flex-direction: column;
  padding: var(--cd-content-padding);
}
.card.-standard {
  --action-link-line-color: var(--cd-standard-action-link-line-color);
  --action-link-line-color-active: var(--cd-standard-action-link-line-color-active);
  background-color: var(--cd-standard-background-color);
  box-shadow: var(--cd-shadow-size) var(--cd-shadow-size) 0 var(--cd-standard-shadow-color);
}
.card.-standard > .-inner {
  display: flex;
  flex-direction: column-reverse;
}
.card.-standard .cd--contents {
  flex: 0 0 auto;
  height: 50%;
  gap: 1em;
  justify-content: space-between;
}
.card.-standard .cd--title {
  font-size: var(--fs-title-4);
  line-height: var(--lh-title-4);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0.5em;
}
.card.-standard .cd--thumbnail {
  flex: 0 0 auto;
  height: 50%;
  border-radius: var(--cd-border-radius);
}
@container (min-width: 15rem) and (max-width: 20rem) {
  .card.-standard {
    --cd-content-padding: 2em 1.5em;
  }
  .card.-standard .cd--title {
    font-size: var(--fs-text-xl);
  }
  .card.-standard .cd--footer {
    font-size: var(--fs-text-md);
    line-height: var(--lh-text-md);
  }
}
@container (width < 15rem) {
  .card.-standard {
    --cd-content-padding: 1.5em 1em;
  }
  .card.-standard .cd--title {
    font-size: var(--fs-text-lg);
  }
  .card.-standard .cd--body {
    display: none !important;
  }
  .card.-standard .cd--footer {
    font-size: var(--fs-text-sm);
    line-height: var(--lh-text-sm);
  }
}
.card.-standard.-lightest {
  --cd-standard-background-color: var(--color-lightest);
  --cd-standard-action-link-line-color: var(--color-theme-accent);
  --cd-standard-action-link-line-color-active: var(--color-theme-darkest);
  --badge-color: var(--color-grey-600);
  border: 1px solid var(--color-grey-200);
}
.card.-cover {
  --cd-content-padding: 2.75em;
  --cd-border-radius: var(--border-radius-sm);
  box-shadow: var(--cd-shadow-size) var(--cd-shadow-size) 0 hsl(var(--color-theme-accent-hsl) / 100%);
}
.card.-cover .cd--contents {
  position: relative;
  justify-content: flex-end;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.card.-cover .cd--contents::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: -1;
  content: '';
}
.card.-cover .cd--title {
  color: var(--color-lightest);
  transition: translate 200ms ease-out;
}
.card.-cover .cd--body,
.card.-cover .cd--footer {
  display: none;
}
.card.-cover .cd--thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--cd-border-radius);
  transition: scale 200ms ease-out;
}
@container (min-width: 15rem) and (max-width: 20rem) {
  .card.-cover {
    --cd-content-padding: 2em;
    --cd-shadow-size: 0.75em;
  }
}
@container (width < 15rem) {
  .card.-cover {
    --cd-content-padding: 1.5em;
    --cd-shadow-size: 0.5em;
  }
}
@media not all and (hover: none) {
  .card.-cover:hover .cd--title {
    translate: 0 -0.5em;
    transition-duration: 400ms;
  }
  .card.-cover:hover .cd--thumbnail {
    scale: 1.1;
    transition-duration: 2000ms;
  }
}
@container (min-width: 15rem) and (max-width: 20rem) {
  .card {
    --cd-shadow-size: 0.75em;
  }
}
@container (max-width: 15rem) {
  .card {
    --cd-shadow-size: 0.5em;
  }
  .card .badge {
    font-size: var(--fs-text-xs);
    line-height: var(--lh-text-xs);
  }
}
.specs-list {
  --icon-size: var(--icon-size-sm);
}
.specs-list .spec {
  display: inline-flex;
  gap: 1em;
  align-items: flex-start;
}
.application-scopes {
  /*
	.have-more-count {
		display:inline-flex;
		padding:.3333em;
		line-height: 1;
		font-weight:700;
		font-style:normal;
		color:#fff;
		background-color: var(--color-grey-700);
		border-radius:var(--border-radius-xs);
		&:extend(.text-xs);
	}
	*/
}
.application-scopes--data {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}
.application-scopes--data .event-counter {
  margin-inline-start: 0.25em;
}
.application-scopes .application-scope {
  white-space: nowrap;
}
.application-scopes .application-scope:not(:last-of-type)::after {
  content: ', ';
}
/*
 * Container 
 */
.posts-heroes-list-wrapper {
  container-type: inline-size;
}
/*
 * Standard grid list 
 */
.posts-heroes-list {
  --item-gap: clamp(4em, calc(2.857rem + 5.714vw), 8em);
  display: flex;
  flex-direction: column;
  gap: var(--item-gap);
  margin-block: var(--item-gap);
}
.posts-heroes-list .posts-heroes-list-item {
  container-type: inline-size;
}
.posts-heroes-list .posts-heroes-list-item + .posts-heroes-list-item::before {
  content: '';
  display: block;
  height: 1px;
  margin-inline: auto;
  background-color: var(--color-grey-200);
  translate: 0 calc(var(--item-gap) * -.5);
}
.hero > .-inner > .row {
  margin-block-end: 0;
}
.hero .hr--contents {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.hero .hr--contents > * {
  max-width: 50rem;
}
.hero .hr--header {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.hero .hr--title {
  --color-link-hover: var(--color-grey-700);
}
:root {
  --btn-radius: var(--border-radius-xs);
  --btn-icon-color: var(--color-theme-accent);
  --btn-border-color: hsl(var(--color-theme-accent-hsl) / 0%);
  --btn-hover-border-color: hsl(var(--color-theme-accent-hsl) / 100%);
  --btn-border-width: 0.125em;
}
.btn,
.btn-icon {
  cursor: pointer;
  display: inline-flex;
  gap: 1.5em;
  font-weight: 800;
  border-radius: var(--btn-radius);
  transition: all 200ms;
}
@media screen and (max-width: 63.99rem) {
  .btn,
  .btn-icon {
    padding: 1em 1.5em;
  }
}
.btn + *,
.btn-icon + * {
  margin-inline-start: 1em;
}
.btn[disabled],
.btn-icon[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn {
  padding: 1em 1.25em 1em 2em;
  background-color: var(--color-theme-accent);
}
.btn::after {
  content: '→';
  transition: translate 200ms ease-out;
}
@media not all and (hover: none) {
  .btn:hover {
    background-color: hsl(var(--color-theme-accent-hsl) / 0.8);
  }
  .btn:hover::after {
    translate: 0.2em;
  }
}
.btn-icon {
  --icon-size: 3em;
  padding: 1.5em 3em;
  flex-direction: column;
  align-items: center;
  border: var(--btn-border-width) solid var(--btn-border-color);
}
.btn-icon .svg-icon {
  fill: var(--btn-icon-color);
  transition: all 200ms;
}
.btn-icon.-size-sm {
  --icon-size: 2rem;
}
.btn-icon.-size-lg {
  --icon-size: 4.5rem;
}
.btn-icon.-size-xl {
  --icon-size: 6rem;
}
@media not all and (hover: none) {
  .btn-icon:hover {
    border-color: var(--btn-hover-border-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  }
  .btn-icon:hover .svg-icon {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 63.99rem) {
  .btn-icon {
    --icon-size: 2em;
  }
  .btn-icon.-size-sm {
    --icon-size: 1.5rem;
  }
  .btn-icon.-size-lg {
    --icon-size: 3.5rem;
  }
  .btn-icon.-size-xl {
    --icon-size: 4.5rem;
  }
}
.btns-group > .-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.btns-group > .-container > .-item {
  flex: 1;
  display: flex;
  justify-content: center;
}
:root {
  --badge-padding-block: 0.25em;
  --badge-padding-inline: 0.5em;
  --badge-color: var(--color-theme-darkest);
  --badge-border-width: 1px;
  --badge-border-radius: 3px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--badge-padding-inline);
  padding-block: var(--badge-padding-block);
  color: var(--badge-color);
  border: var(--badge-border-width) solid;
  border-radius: var(--badge-border-radius);
  line-height: 1;
  white-space: nowrap;
  font-weight: 700;
}
.badge.-color-accent {
  color: var(--color-lightest);
  background-color: var(--color-theme-accent);
  border-color: var(--color-theme-accent);
}
.badges {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.pagination {
  --icon-size: var(--icon-size-lg);
  --number-size: 2.5rem;
  --menu-gap: 0.5em;
  margin-block-start: 4em;
}
.pagination .menu {
  display: flex;
  align-items: center;
  gap: var(--menu-gap);
}
.pagination .menu-item.prev-page {
  margin-inline-end: auto;
}
.pagination .menu-item.next-page {
  margin-inline-start: auto;
}
.pagination .menu-item.number {
  flex: 0 0 var(--number-size);
}
.pagination .menu-item.number a {
  width: var(--number-size);
  height: var(--number-size);
  border-radius: var(--border-radius-sm);
}
@media not all and (hover: none) {
  .pagination .menu-item.number a:hover {
    background-color: var(--color-grey-100);
  }
}
.pagination .menu-item.current-menu-item.number a {
  font-weight: 700;
  background-color: var(--color-theme-accent);
}
.pagination a {
  display: inline-flex;
  padding: 0.5em;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 63.99rem) {
  .pagination {
    --icon-size: var(--icon-size-md);
    --number-size: 2rem;
    --menu-gap: 0.25em;
    font-size: var(--fn-text-sm);
  }
}
:root {
  --contact-list-padding-inline: 2em;
  --contact-list-padding-block: 1em;
  --contact-list-item-width: 50%;
}
.contact-list {
  --icon-size: var(--icon-size-sm);
  margin-block: calc(var(--contact-list-padding-block) * -1);
  margin-inline: calc(var(--contact-list-padding-inline) * -1);
  display: flex;
  flex-wrap: wrap;
}
.contact-list .contact-item {
  flex: 0 0 var(--contact-list-item-width);
  max-width: var(--contact-list-item-width);
  padding-block: var(--contact-list-padding-block);
  padding-inline: var(--contact-list-padding-inline);
  display: flex;
  gap: 1em;
}
.contact-list .contact-item .svg-icon {
  align-self: baseline;
  transform: translateY(0.15em);
}
@media not all and (hover: none) {
  .contact-list .contact-item a:hover {
    font-weight: 700;
  }
}
.company-details {
  --company-logo-s: var(--spacer-2xl);
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.company-details .company--header {
  display: flex;
  align-items: center;
  gap: 2em;
}
.company-details .company--logo {
  width: var(--company-logo-s);
  aspect-ratio: 1;
}
.company-details .company--logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.map-popup {
  --logo-size: 7em;
  font-size: var(--fs-text-sm);
  line-height: var(--lh-text-sm);
  font-optical-sizing: auto;
  color: var(--color-theme-darkest);
  padding-inline: 2em;
  padding-block: 1.5em;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0 20x rgba(0, 0, 0, 0.1);
}
.map-popup .popup--header {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 2em;
}
.map-popup .popup--title {
  align-self: flex-start;
  font-size: var(--fs-title-4);
  line-height: var(--lh-title-4);
  font-family: var(--fn-title, var(--fn-body));
  --fn-title: var(--fn-body);
  font-weight: 900;
}
.map-popup .popup--logo {
  width: var(--logo-size);
  height: var(--logo-size);
  flex: 0 0 var(--logo-size);
}
.map-popup .popup--logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.map-popup .popup--body {
  padding-block: 1em;
}
.map-popup .popup--footer a {
  display: inline-block;
  width: auto;
}
.app-toolbar {
  --icon-size: var(--icon-size-sm);
  --color-link: var(--color-grey-600);
  --color-link-hover: var(--color-theme-darkest);
  position: relative;
  padding-inline: var(--body-inset);
  padding-block: var(--element-inset-y);
}
.app-toolbar > .-inner {
  display: flex;
  gap: var(--spacer-lg);
  align-items: center;
}
.app-toolbar .menu-quicklinks,
.app-toolbar .menu-profiles {
  font-weight: 700;
}
.app-toolbar .menu-quicklinks .menu,
.app-toolbar .menu-profiles .menu {
  display: flex;
  gap: var(--element-inset-x);
}
.app-toolbar .menu-quicklinks .menu-item a,
.app-toolbar .menu-profiles .menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.125em;
  white-space: nowrap;
}
.app-toolbar .menu-quicklinks .current-menu-item,
.app-toolbar .menu-profiles .current-menu-item {
  --color-link: var(--color-theme-darkest);
}
.app-toolbar .menu-quicklinks .current-menu-item a,
.app-toolbar .menu-profiles .current-menu-item a {
  text-underline-offset: 0.5em;
  text-decoration-thickness: 0.125em;
  text-decoration: underline;
}
.app-toolbar .dropdown-menu-on-small-viewport {
  position: relative;
}
.app-toolbar .dropdown-menu-on-small-viewport > .selected-menu-item {
  display: none;
}
.app-toolbar .menu-quicklinks {
  margin-inline-end: auto;
}
.app-toolbar .search-button {
  --icon-size: var(--icon-size-lg);
}
.app-toolbar .search-toggle {
  color: currentcolor;
}
@media screen and (max-width: 89.99rem) {
  .app-toolbar .menu-quicklinks {
    display: none;
  }
  .app-toolbar .menu-profiles {
    margin-inline-end: auto;
  }
}
@media screen and (max-width: 63.99rem) {
  .app-toolbar {
    background-color: var(--color-lightest);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 12;
    border-bottom: 1px solid var(--color-grey-200);
  }
  .app-toolbar .search-button {
    --icon-size: var(--icon-size-md);
  }
}
@media screen and (max-width: 47.99rem) {
  .app-toolbar > .-inner {
    justify-content: space-between;
  }
  .app-toolbar .dropdown-menu-on-small-viewport {
    --px: 1em;
    --py: 1em;
  }
  .app-toolbar .dropdown-menu-on-small-viewport .selected-menu-item {
    display: flex;
    gap: 1em;
    align-items: center;
  }
  .app-toolbar .dropdown-menu-on-small-viewport .selected-menu-item::after {
    display: inline-block;
    width: var(--caret-size);
    height: var(--caret-size);
    border-right: var(--caret-stroke-width) solid currentcolor;
    border-bottom: var(--caret-stroke-width) solid currentcolor;
    transform: rotate(45deg);
    transition: 250ms;
    content: '';
  }
  .app-toolbar .dropdown-menu-on-small-viewport .menu {
    top: calc(var(--py) * -1);
    left: 0;
    background-color: var(--color-lightest);
    padding: var(--py) var(--px);
    margin-inline: calc(var(--px) * -1);
    box-shadow: var(--box-shadow-sm);
    flex-direction: column;
    gap: var(--py);
    text-align: left;
    position: absolute;
    border-radius: var(--border-radius);
    min-width: 100%;
    outline: 0;
    opacity: 0;
    z-index: -1;
    max-height: 0;
    transition: opacity 100ms, z-index 100ms, max-height 5000ms;
    pointer-events: none;
  }
  .app-toolbar .dropdown-menu-on-small-viewport:focus .menu,
  .app-toolbar .dropdown-menu-on-small-viewport:focus-within .menu {
    opacity: 1;
    z-index: 100;
    max-height: 100vh;
    transition: opacity 200ms, z-index 200ms, max-height 200ms;
    pointer-events: all;
  }
}
.i18n-selector {
  font-weight: 700;
  position: relative;
}
.i18n-selector .i18n-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  color: var(--color-grey-600);
  background-color: var(--color-grey-100);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--border-radius-xs);
  padding: 0.5em 0.75em;
}
.i18n-selector .i18n-menu-toggle::after {
  content: '';
  display: inline-block;
  width: var(--caret-size);
  height: var(--caret-size);
  border-right: var(--caret-stroke-width) solid currentcolor;
  border-bottom: var(--caret-stroke-width) solid currentcolor;
  transform: rotate(45deg);
  transition: 250ms;
}
.i18n-selector .i18n-menu {
  position: absolute;
  top: 100%;
  padding: 0.5em;
  left: 0;
  width: 100%;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  color: var(--color-grey-600);
  background-color: var(--color-grey-100);
  border-radius: 0 0 var(--border-radius-xs) var(--border-radius-xs);
  border: 1px solid var(--color-grey-200);
  border-block-start: 0;
  transition: transform 125ms ease 125ms;
  margin-block-start: calc(var(--border-radius-xs) * -1);
}
.i18n-selector .i18n-menu .menu-item {
  padding-inline-start: calc(.75em + var(--icon-size));
}
.i18n-selector .i18n-menu .menu-item a {
  display: inline-flex;
  padding: 0.125em;
}
.i18n-selector .i18n-menu .menu-item:first-child {
  margin-block-start: 1em;
}
@media not all and (hover: none) {
  .i18n-selector:hover {
    z-index: 20;
  }
  .i18n-selector:hover .i18n-menu {
    transform: rotateX(0deg);
    transition-duration: 250ms;
    transition-delay: 0ms;
  }
}
:root {
  --navbar-inset: var(--body-inset);
  --navbar-inset-x: var(--element-inset-x);
  --navbar-inset-y: var(--element-inset-y);
}
.app-navbar {
  position: sticky;
  z-index: 15;
  top: var(--navbar-inset-y);
}
.main-navbar {
  --radius: var(--border-radius-sm);
  --background: var(--color-theme-accent);
  --expanded-height: 468px;
  position: relative;
  margin-inline: calc(var(--navbar-inset) * -1);
}
.main-navbar::before,
.main-navbar::after {
  top: 0;
  left: 0;
  width: 100%;
  content: '';
}
.main-navbar::before {
  position: fixed;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition: all 175ms linear 125ms;
  pointer-events: none;
}
.main-navbar::after {
  position: absolute;
  transition: height 250ms ease 125ms;
  background-color: var(--background);
  border-radius: var(--radius);
  height: 100%;
}
.main-navbar > .-inner {
  position: relative;
  z-index: 10;
  padding-block: var(--navbar-inset-y);
  padding-inline: var(--navbar-inset-x);
  display: flex;
  align-items: center;
  gap: var(--spacer-lg);
}
.main-navbar .site-logo {
  flex-shrink: 0;
}
.main-navbar .site-logo a {
  display: block;
}
.main-navbar .site-logo img {
  width: auto;
  height: 40px;
}
.main-navbar .site-nav {
  flex: 1;
}
.main-navbar .menu > .menu-item > .submenu {
  opacity: 0;
  transition: all 250ms ease 125ms;
}
.main-navbar .primary-nav-handler {
  display: none;
}
.primary-nav {
  --col-width: 10rem;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.125em;
}
.primary-nav > .menu {
  display: flex;
  gap: var(--spacer-lg);
  align-items: center;
  font-size: var(--fs-text-lg);
  line-height: var(--lh-text-lg);
  font-weight: 900;
}
.primary-nav > .menu > .menu-item {
  min-width: var(--col-width);
}
.primary-nav > .menu > .menu-item.pull-right {
  margin-inline-start: auto;
}
.primary-nav > .menu > .menu-item.current-menu-item > a,
.primary-nav > .menu > .menu-item.current-menu-ancestor > a {
  border-bottom: 2px solid;
}
.primary-nav > .menu > .menu-item.has-children {
  position: relative;
}
.primary-nav > .menu > .menu-item.has-children > a::after {
  content: '';
  display: inline-block;
  width: var(--caret-size);
  height: var(--caret-size);
  border-right: var(--caret-stroke-width) solid currentcolor;
  border-bottom: var(--caret-stroke-width) solid currentcolor;
  transform: rotate(45deg);
  transition: 250ms;
}
.primary-nav > .menu > .menu-item > a {
  white-space: nowrap;
}
.primary-nav > .menu > .menu-item > .submenu {
  font-size: var(--fs-text-md);
  line-height: var(--lh-text-md);
  font-weight: 400;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: rotateX(90deg);
  transform-origin: 0 0;
  padding-top: var(--border-radius-sm);
}
.primary-nav > .menu > .menu-item > .submenu .menu-item-main {
  font-weight: 700;
}
.primary-nav > .menu > .menu-item > .submenu a[target=_blank]::after {
  display: inline-block;
  transform: translateY(-2px);
  content: url(../../img/share-external-link.svg);
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}
@media not all and (hover: none) {
  .primary-nav > .menu > .menu-item > .submenu a:hover {
    text-decoration: underline;
  }
}
.primary-nav > .menu > .menu-item > .submenu > .current-menu-item > a {
  text-decoration: underline;
}
.primary-nav > .menu > .menu-item.menu-item-alt > .submenu {
  font-size: var(--fs-text-sm);
  line-height: var(--lh-text-sm);
}
@media screen and (min-width: 64rem) and (max-width: 89.99rem) {
  .primary-nav {
    --col-width: 9rem;
  }
  .primary-nav > .menu {
    gap: 1rem;
  }
}
@media screen and (min-width: 0) and (max-width: 63.99rem) {
  .primary-nav {
    --col-width: 8rem;
  }
  .primary-nav > .menu {
    gap: 1rem;
  }
}
/* 
 * @mobile view
 */
@media screen and (max-width: 63.99rem) {
  :root {
    --phone-navbar-open-h: 95dvh;
  }
  .app-navbar {
    position: static;
  }
  .main-navbar {
    position: fixed;
    display: flex;
    z-index: 15;
    height: var(--phone-navbar-h);
    margin-inline: 0;
    transition: height 375ms cubic-bezier(0.215, 0.61, 0.355, 1);
    --inset: 6px;
    left: var(--inset);
    bottom: var(--inset);
    width: calc(100% - (var(--inset)* 2));
  }
  .main-navbar > .-inner {
    padding-block: 0;
    padding-inline: var(--body-inset);
    height: var(--phone-navbar-h);
    width: 100%;
  }
  .main-navbar::after {
    border-radius: var(--radius);
  }
  .main-navbar .primary-nav-handler {
    display: inherit;
    margin-inline-start: auto;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(var(--phone-navbar-open-h) - var(--phone-navbar-h));
    padding-inline: var(--body-inset);
    overflow: hidden;
  }
  .primary-nav .menu {
    display: block;
    overflow: hidden;
    opacity: 0;
    transition: opacity 250ms linear 0ms;
    padding-block: 1em;
  }
  .primary-nav .menu > .menu-item {
    margin-bottom: 1em;
  }
  .primary-nav .menu > .menu-item.menu-item-alt {
    display: list-item !important;
  }
  .primary-nav .menu > .menu-item.has-children > a::after {
    content: none;
  }
  .primary-nav .menu > .menu-item > .submenu {
    position: static;
    transform: none;
    opacity: 1;
    padding-top: 0;
    margin-inline-start: 0.5em;
  }
  .primary-nav .ps__rail-x,
  .primary-nav .ps__rail-y {
    position: absolute;
  }
  .primary-nav .ps__rail-y {
    left: auto !important;
    right: 3px !important;
    width: 6px;
  }
  .primary-nav .ps__rail-y .ps__thumb-y {
    position: absolute;
    width: 100%;
    background-color: rgba(0 0 0 / 0.2);
    border-radius: 6px;
  }
  .navigation-shown {
    pointer-events: none;
    overflow: hidden;
  }
  .navigation-shown .main-navbar {
    pointer-events: all;
    height: var(--phone-navbar-open-h);
  }
  .navigation-shown .primary-nav {
    display: block;
  }
  .navigation-shown .primary-nav .menu {
    opacity: 1;
    transition-delay: 500ms;
  }
}
@media screen and (min-width: 64rem) and (max-width: 99.99rem) {
  .app-navbar {
    --navbar-trick-x: var(--body-inset);
    --navbar-inset: calc(var(--body-inset) - var(--navbar-trick-x));
  }
}
/* 
 * @desktop view
 */
@media screen and (min-width: 64rem) {
  .primary-nav .menu > .menu-item-alt {
    --caret-size: 6px;
    font-size: var(--fs-text-md);
    line-height: var(--lh-text-md);
    font-weight: 700;
  }
  .primary-nav .ps__rail-x,
  .primary-nav .ps__rail-y {
    display: none !important;
  }
  .main-navbar:hover::before {
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.7);
    transition-delay: 150ms;
    transition-duration: 150ms;
  }
  .main-navbar:hover::after {
    height: var(--expanded-height);
    transition-delay: 150ms;
    transition-duration: 375ms;
  }
  .main-navbar:hover .menu > .menu-item > .submenu {
    opacity: 1;
    transform: rotateX(0deg);
    transition-delay: 250ms;
    transition-duration: 375ms;
  }
}
.app-search > .-body {
  display: flex;
  align-items: center;
}
.searchform {
  width: 100%;
  min-height: 75%;
}
@media screen and (max-width: 63.99rem) {
  .searchform > .holder {
    padding-inline: 0;
  }
}
.searchform .search-frm {
  --py: 1.5rem;
  --px: var(--element-inset-x);
}
.searchform .search-frm > fieldset {
  display: flex;
}
.searchform .search-frm input,
.searchform .search-frm select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
}
.searchform .search-fields {
  height: 5em;
}
.searchform .input {
  height: 100%;
}
.searchform .input.search {
  flex: 1;
  position: relative;
  background-color: var(--color-grey-100);
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  box-shadow: 0 0 60px rgba(0 0 0/0.075);
}
.searchform .input.search label {
  position: absolute;
  top: 50%;
  left: var(--px);
  transform: translateY(-50%);
}
.searchform .input.search label span {
  display: none;
}
.searchform .input.search .autoComplete_wrapper {
  height: 100%;
}
.searchform .input.search input {
  font-size: var(--fs-text-xl);
  line-height: var(--lh-text-xl);
  font-weight: 700;
  padding: var(--py) var(--px) var(--py) calc((var(--px) * 2) + var(--icon-size));
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.searchform .input.select {
  padding: var(--py) var(--px);
  background-color: var(--color-grey-200);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  display: flex;
  align-items: baseline;
}
.searchform .input.select select {
  font-size: var(--fs-text-lg);
  line-height: var(--lh-text-lg);
  font-weight: 700;
}
@media screen and (max-width: 63.99rem) {
  .searchform .search-frm > fieldset {
    flex-direction: column;
  }
  .searchform .input.search {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  }
  .searchform .input.select {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  }
}
:root {
  --crumbs-color: var(--color-grey-600);
  --crumbs-color-link-hover: var(--color-grey-900);
  --crumbs-background-color: transparent;
  --crumbs-border-color: var(--color-grey-200);
  --crumbs-padding-block: 0.5em;
  --crumbs-padding-inline: 2em;
  --crumbs-margin-block: 3em;
  --crumbs-margin-inline: 0.5em;
}
.app-crumbs-wrapper {
  background-color: var(--crumbs-background-color);
}
@media screen and (max-width: 63.99rem) {
  .app-crumbs-wrapper {
    padding-top: 2em;
  }
}
.app-crumbs {
  --icon-size: var(--icon-size-sm);
  --color-link: var(---crumbs-color);
  --color-link-hover: var(--crumbs-color-link-hover);
  color: var(--crumbs-color);
  padding-block-start: calc((var(--app-contents-margin-block-start) * -1) + var(--crumbs-margin-block));
  overflow: clip;
  max-width: 100%;
}
.app-crumbs > .menu {
  display: inline-flex;
  margin-inline-start: calc(var(--crumbs-padding-inline) * -1);
  align-self: flex-start;
}
.app-crumbs li {
  position: relative;
  overflow-y: clip;
}
.app-crumbs li > span,
.app-crumbs li > a {
  display: inline-flex;
  padding: var(--crumbs-padding-block) var(--crumbs-padding-inline);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-crumbs li::before {
  content: '';
  position: absolute;
  border-top: 1px solid var(--crumbs-border-color);
  border-right: 1px solid var(--crumbs-border-color);
  height: 100%;
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(45deg);
  right: 0;
  top: 50%;
  pointer-events: none;
}
.app-crumbs li:last-child {
  font-weight: 700;
  pointer-events: none;
}
.app-crumbs li:last-child::before {
  content: none;
}
@media not all and (hover: none) {
  .app-crumbs li:not(:first-child) a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 63.99rem) {
  .app-crumbs li:not(:first-child):not(:last-child) .title {
    display: none;
  }
  .app-crumbs li:not(:first-child):not(:last-child) a::after,
  .app-crumbs li:not(:first-child):not(:last-child) span::after {
    display: inline-flex;
    color: var(--color-grey-400);
    content: '•••';
  }
}
.app-crumbs .home .title {
  display: none;
}
:root {
  --uix-switch-width: 48px;
  --uix-switch-height: 24px;
  --uix-switch-track-height: 8px;
  --uix-switch-active-button-color: #fff;
  --form-control-accent-color: var(--color-theme-accent);
  --form-control-padding-inline: 1rem;
  --form-control-padding-block: 0.66rem;
  --form-control-border-radius: var(--border-radius-xs);
  --form-control-color: var(--color-grey-700);
  --form-control-background: var(--color-lightest);
  --form-control-border-width: 1px;
  --form-control-border-color: var(--color-grey-300);
  --form-control-label-color: var(--color-grey-700);
  --form-control-focus-color: var(--color-theme-primary);
  --form-control-focus-background: var(--color-lightest);
  --form-control-focus-border-color: var(--color-theme-primary);
  --form-control-focus-label-color: var(--color-theme-primary);
  --form-checkbox-size: var(--form-checkbox-size-md);
  --form-checkbox-size-xs: 0.9rem;
  --form-checkbox-size-sm: 1rem;
  --form-checkbox-size-md: 1.25rem;
  --form-checkbox-size-lg: 1.5rem;
  --form-checkbox-size-xl: 1.75rem;
}
.form {
  --flow-space: 1em;
  --ui-column-gap: 2em;
}
.form .form-hat {
  margin-block-end: 2em;
}
.form .form-section:not(:first-child) {
  margin-block-start: 2em;
}
.form .form-section > * + * {
  margin-block-start: var(--flow-space);
}
/*
 * Form layout 
 */
div.input {
  --flow-space: 0;
  margin-block: 0.75em;
  padding-inline: var(--form-control-padding-inline);
  padding-block: var(--form-control-padding-block);
  background: var(--form-control-background);
  border-radius: var(--form-control-border-radius);
  border: var(--form-control-border-width) solid var(--form-control-border-color);
  width: 100%;
}
div.input label {
  display: block;
  font-weight: 400;
  color: var(--form-control-label-color, inherit);
}
div.input.required label span::after {
  content: ' *';
  color: var(--color-ui-danger);
}
div.input.select {
  position: relative;
}
div.input.select::after {
  pointer-events: none;
  position: absolute;
  top: calc(50% - (var(--caret-size) * .5) + .75em);
  right: 0.75em;
  content: '';
  display: inline-block;
  width: var(--caret-size);
  height: var(--caret-size);
  border-right: var(--caret-stroke-width) solid currentcolor;
  border-bottom: var(--caret-stroke-width) solid currentcolor;
  transform: rotate(45deg);
  transition: 250ms;
}
div.input.select:focus-within {
  color: var(--form-control-focus-color);
}
div.input.checkbox,
div.input.radio,
div.input.checkbox-custom {
  background-color: transparent;
  border: none;
}
div.input.radio > label:not([for]),
div.input.checkbox > label:not([for]) {
  display: block;
  width: 100%;
  font-weight: 700;
}
div.input.checkbox label {
  text-transform: none;
}
div.input.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
}
div.input.checkbox-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
}
div.input.checkbox-custom > label {
  width: max(16.667%, 80px);
  border-radius: var(--border-radius-xs);
  text-align: center;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
}
div.input.checkbox-custom > label:last-child {
  margin-inline-start: auto;
}
div.input.checkbox-custom > label:has(input:checked) {
  border-color: var(--color-theme-accent);
  box-shadow: var(--box-shadow-md);
}
div.input.checkbox-custom > label.pool-model {
  padding-block-start: 0;
}
div.input.switch {
  --form-control-padding-block: 0.25em;
  display: flex;
  align-items: center;
  margin-block: 0;
  gap: 0.75em;
  border: 0;
}
div.input.switch label {
  text-transform: none;
  display: inline-flex;
}
div.input:focus-within {
  background: var(--form-control-focus-background, var(--form-control-background));
  border-radius: var(--form-control-border-radius);
  border-width: var(--form-control-focus-border-width, var(--form-control-border-width));
  border-color: var(--form-control-focus-border-color, var(--form-control-border-color));
}
div.input:focus-within:not(.checkbox):not(.radio):not(.checkbox-custom) label {
  font-weight: 700;
  color: var(--form-control-focus-label-color, var(--form-control-label-color, inherit));
}
div.submit {
  margin-block-start: 2em;
}
/*
 * group of checkboxes 
 *
 * /
.checkboxes-group {
	--gap:1em;
	--w:25%;
	
	container-type: inline-size;
	margin-inline: calc(~'var(--gap) * -.5');
	display:flex;
	flex-wrap:wrap;
	
	.checkbox {
		flex: 0 0 var(--w);
		max-width: var(--w);
		padding-block: calc(~'var(--gap) * .5');
		padding-inline: calc(~'var(--gap) * .5');
		
		@container (width < @breakpoints[sm]) {
			--w:33.33%;	
		}
		
		@container (width < @breakpoints[xs]) {
			--w:50%;	
		}
	}
}

*/
/*
 * Standard input 
 */
input[type=text],
input[type=search],
input[type=email],
input[type=password],
input[type=url],
input[type=tel],
input[type=number],
input[type=date],
input[type=datetime],
input[type=datetime-local],
textarea,
select {
  -webkit-appearance: none;
  accent-color: var(--form-control-accent-color);
  font-size: var(--fs-text-lg);
  color: var(--form-control-color);
  background-color: transparent;
  width: 100%;
  padding: 0;
  border: none;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
textarea:focus,
select:focus {
  color: var(--form-control-focus-color);
}
/*
 * checkables 
**/
.input.checkbox,
.input.radio {
  padding-block: 0.5em;
}
.input.checkbox > label,
.input.radio > label {
  display: flex;
  align-items: center;
}
.input.checkbox > label > input,
.input.radio > label > input {
  flex: 0 0 var(--form-checkbox-size);
  margin-right: 1em;
  align-self: flex-start;
}
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  color: var(--form-control-color);
  display: inline-grid;
  place-content: center;
  width: var(--form-checkbox-size);
  height: var(--form-checkbox-size);
  border: 1px solid;
  border-radius: var(--checkbox-border-radius, 4px);
  margin: 0;
  box-shadow: inset -1px -1px 10px rgba(0, 0, 0, 0.05);
  transition: 120ms ease-in-out;
}
input[type=checkbox]::before,
input[type=radio]::before {
  content: '';
  width: calc(var(--form-checkbox-size) * .5);
  height: calc(var(--form-checkbox-size) * .5);
  scale: 0;
  transition: 120ms scale ease-in-out;
  box-shadow: inset 1em 1em currentcolor;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  border-radius: var(--checkbox-checkmark-border-radius, 2px);
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  color: var(--color-lightest);
  background: var(--form-control-accent-color);
  box-shadow: inset -1px -1px 10px hsla(var(--form-control-accent-color), 0.2);
  border-color: var(--form-control-accent-color);
}
input[type=checkbox]:checked::before,
input[type=radio]:checked::before {
  scale: 1;
  color: currentcolor;
}
input[type=checkbox].size\:xs,
input[type=radio].size\:xs {
  --form-checkbox-size: var(--form-checkbox-size-xs);
}
input[type=checkbox].size\:sm,
input[type=radio].size\:sm {
  --form-checkbox-size: var(--form-checkbox-size-sm);
}
input[type=checkbox].size\:lg,
input[type=radio].size\:lg {
  --form-checkbox-size: var(--form-checkbox-size-lg);
}
input[type=checkbox].size\:xl,
input[type=radio].size\:xl {
  --form-checkbox-size: var(--form-checkbox-size-xl);
}
input[type=checkbox] {
  --checkbox-border-radius: 4px;
  --checkbox-checkmark-border-radius: 2px;
}
input[type=radio] {
  --checkbox-border-radius: 50%;
  --checkbox-checkmark-border-radius: 50%;
}
/*
button[type=submit],
input[type=submit] {
	&:not(.btn) {
		--line-width: 2em;
		--line-margin-start: 1em;
		
		cursor:pointer;
		position: relative;
		padding-inline-start: var(--form-control-padding-inline);
		padding-inline-end: calc(~'var(--line-width) + var(--line-margin-start) + var(--form-control-padding-inline)');
		padding-block: var(--form-control-padding-block);
		color:var(--form-control-accent-color);
		&:extend(.text-xl);
		&:extend(.uc-italic);
		
		//background-color: var(--color-grey-100);
		
		&::before, 
		&::after {
			position:absolute;
			right:var(--form-control-padding-inline);
			top:50%;
			translate:0 -50%;
			height:2px;
			border-radius:2px;
			content:'';
		}
		
		&::before {
			width:var(--line-width);
			background-color: currentcolor;
			transition:width 250ms ease-out;
			z-index:1;
		}
		
		.mx-hover({
			&::before {
				width:calc(~'var(--line-width) * .5');
			}
		});
	}
}
*/
/*
 * ux components 
 */
uix-switch {
  color: var(--color-grey-400);
}
uix-switch[checked] {
  color: var(--color-theme-accent);
}
uix-switch.switch-sm {
  --uix-switch-width: 36px;
  --uix-switch-height: 18px;
}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --tac-color-valid: green;
  --tac-color-danger: red;
  --tac-color-neutral: #999;
  --tac-color: var(--color-grey-900);
  --tac-background: var(--color-grey-100);
  --tac-banner-color: var(--tac-color);
  --tac-banner-background: var(--tac-background);
  --tac-panel-color: var(--tac-color);
  --tac-panel-background: var(--tac-background);
  --tac-panel-header-color: var(--tac-color);
  --tac-panel-header-background: var(--color-lightest);
  --tac-panel-header-border-color: var(--color-grey-300);
  --tac-service-line-background: #fff;
}
.theme-eco_construction #tarteaucitronRoot * {
  color: var(--tac-color);
}
.theme-eco_construction #tarteaucitronRoot button {
  font-family: var(--fn-body);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronAlertBig {
  color: var(--tac-banner-color, var(--tac-color));
  background: var(--tac-banner-background, var(--tac-background));
  padding: 1em !important;
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronDisclaimerAlert {
  color: inherit;
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronAllow,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronDeny,
.theme-eco_construction #tarteaucitronRoot #tarteaucitronCloseAlert {
  display: inline-flex;
  font-size: inherit !important;
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronAllow,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronDeny {
  padding: 0.5em 0.75em !important;
  line-height: 1 !important;
  border-radius: var(--border-radius-xs);
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronAllow {
  font-weight: 700;
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronCloseAlert {
  background-color: transparent;
  padding: 0;
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronPrivacyUrl {
  color: inherit;
  font-size: var(--fs-text-sm) !important;
  margin-left: 1.25em;
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize,
.theme-eco_construction #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize2,
.theme-eco_construction #tarteaucitronRoot .tarteaucitronAllow {
  font-size: inherit !important;
  background: var(--tac-color-valid);
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronDeny {
  background: var(--tac-color-danger);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronPrivacyUrl,
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronPrivacyUrlDialog,
.theme-eco_construction #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert {
  background-color: transparent;
  padding: 0;
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronClosePanel,
.theme-eco_construction #tarteaucitronRoot #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie {
  font-size: inherit;
  color: var(--tac-panel-header-color);
  background: var(--tac-panel-header-background);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  color: var(--tac-panel-header-color);
  background: var(--tac-panel-header-background);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover {
  background: var(--tac-panel-header-background);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronInfo,
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronDetails,
.theme-eco_construction #tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle button,
.theme-eco_construction #tarteaucitronRoot .asCatToggleBtn {
  color: var(--tac-panel-header-color);
  background: var(--tac-panel-header-background);
}
.theme-eco_construction #tarteaucitronRoot div#tarteaucitronInfo {
  border-color: var(--tac-panel-header-border-color);
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH1 {
  color: var(--tac-panel-header-color);
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH2 {
  color: var(--tac-color);
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronH3 {
  font-size: var(--fs-title-6);
  color: var(--tac-color);
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronBorder {
  background: transparent;
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronServices {
  background: var(--tac-panel-background);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronServices .tarteaucitronLine {
  background-color: var(--tac-service-line-background);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronServices .tarteaucitronLine:hover {
  background-color: var(--tac-service-line-background);
}
.theme-eco_construction #tarteaucitronRoot .tarteaucitronName a {
  font-weight: 400;
  font-size: var(--fs-text-sm);
}
.theme-eco_construction #tarteaucitronRoot #tarteaucitronSave {
  background: transparent;
}
/*
@import (css) '@fancyapps/ui/dist/fancybox/fancybox.css';
// Fix 
.fancybox__track {
	.fancybox__slide[aria-hidden=true] {
		display:flex;
	}
}
*/
/*# sourceMappingURL=app.css.map */