/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
  margin-block-start: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.2;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  /*text-wrap: balance;*/
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* some sizing properties - see Utopia - also CUBE from piccalilli - with thanks */
:root {
  --font-base: "museo-sans", Helvetica Neue, Arial, sans-serif;
  --font-display: "museo-sans",Helvetica Neue, Arial, sans-serif;
  --color-dark: #000;
  --color-grey: #555;
  --color-main: #FFF;
  --color-light: #e5e8df;
  --color-main-blue: #26337D;
  --color-highlight-1: #EA8C2D;
  --color-attention: #D91E4F;
  --color-grey-bg: #F1F0EF;
  --color-black: #000;
  --color-body-text: #545554;
  --color-light-brown: #BBA99E;
  --color-x-light-brown: #E1D7CD;
  --color-brown: #886E60;
  --color-light-blue: #98C3DD;
  --color-light-grey: #F1F0EF;
  /*
  --size-step--2: clamp(0.7813rem, 0.7747rem + 0.0326vi, 0.8rem);
  --size-step--1: clamp(0.9375rem, 0.9158rem + 0.1087vi, 1rem);
  --size-step-0: clamp(1rem, 0.9661rem + 0.1695vw, 1.125rem);
  --size-step-1: clamp(1.125rem, 1.0243rem + 0.5034vw, 1.4963rem);
  --size-step-2: clamp(1.2656rem, 1.0692rem + 0.9822vw, 1.99rem);
  --size-step-3: clamp(1.4238rem, 1.0921rem + 1.6585vw, 2.6469rem);
  --size-step-4: clamp(1.6019rem, 1.0817rem + 2.6008vw, 3.52rem);
  --size-step-5: clamp(1.8019rem, 1.0209rem + 3.9051vw, 4.6819rem);
  */
  --size-step--2: clamp(0.6331rem, 0.7158rem + -0.1066vw, 0.6944rem);
  --size-step--1: clamp(0.8333rem, 0.8296rem + 0.0185vw, 0.844rem);
  --size-step-0: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
  --size-step-1: clamp(1.2rem, 1.0958rem + 0.5211vw, 1.4996rem);
  --size-step-2: clamp(1.44rem, 1.2456rem + 0.9722vw, 1.999rem);
  --size-step-3: clamp(1.728rem, 1.4022rem + 1.629vw, 2.6647rem);
  --size-step-4: clamp(2.0736rem, 1.5594rem + 2.5711vw, 3.552rem);
  --size-step-5: clamp(2.4883rem, 1.7069rem + 3.907vw, 4.7348rem);
  --size-step-6: clamp(2.986rem, 1.8293rem + 5.7835vw, 6.3115rem);
  --size-step-7: clamp(3.5832rem, 1.9032rem + 8.4001vw, 8.4132rem);
  --size-step-mega: clamp(3.4332rem, 1.3258rem + 10.5373vw, 9.4922rem);
  --space-2xs: clamp(0.5rem, 0.4831rem + 0.0847vw, 0.5625rem);
  --space-xs: clamp(0.75rem, 0.7161rem + 0.1695vw, 0.875rem);
  --space-s: clamp(1rem, 0.9661rem + 0.1695vw, 1.125rem);
  --space-m: clamp(1.5rem, 1.4492rem + 0.2542vw, 1.6875rem);
  --space-l: clamp(2rem, 1.9322rem + 0.339vw, 2.25rem);
  --space-xl: clamp(3rem, 2.8983rem + 0.5085vw, 3.375rem);
  --space-m-xl: clamp(1.5rem, 0.9915rem + 2.5424vw, 3.375rem);
  --space-mega: clamp(6rem, 4.5763rem + 7.1186vw, 11.25rem);
  --gutter: var(--space-s);
  --measure: 80ch;
  --measure-standard: 80ch;
  --measure-small: 40ch;
  --measure-medium: 80ch;
  --measure-large: 120ch;
}

.align-center {
  text-align: center;
}

.c-1 {
  color: var(--color-light-blue);
}

.c-2 {
  color: var(--color-body-text);
}

.c-3 {
  color: #D6A56C;
}

/* Some global styles */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: var(--size-step-0);
  color: var(--color-body-text);
  background-color: #fff;
  margin: 0;
  /* better font-rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cb-landing {
  background-color: var(--color-dark);
  color: var(--color-main);
  margin-top: -30px;
}

.cb-landing section:last-child {
  margin-bottom: -4rem;
}

.cb-landing--holding {
  height: 102vh;
}

.fixed-cta {
  position: fixed;
  top: 185px;
  right: 40px;
  z-index: 100;
}

header {
  padding-block-start: var(--space-s, 1rem);
  /*padding-block-end: var(--space-l,1rem);*/
  background-color: var(--color-dark);
  margin-bottom: 30px;
  position: relative;
}

:is(h1, h2, h3) {
  font-family: var(--font-display);
  font-weight: 700;
  max-width: 30ch;
}

[role=list] {
  padding: 0;
  margin-bottom: 0;
}

h1 {
  font-size: var(--size-step-5);
}

h2 {
  font-size: var(--size-step-4);
}

h3 {
  font-size: var(--size-step-3);
}

.d-h1 {
  font-family: var(--font-display);
  font-size: var(--size-step-5);
}

.d-h2 {
  font-family: var(--font-display);
  font-size: var(--size-step-4);
}

.d-h3 {
  font-family: var(--font-display);
  font-size: var(--size-step-3);
}

p {
  max-width: var(--measure, 60ch);
  line-height: 1.6;
}

a {
  color: currentColor;
}

/* this is too prevent SVGs without a height or width going big on page load */
/* disable for the big Hartmann footer */
main svg:not([width]):not([height]), header svg:not([width]):not([height]) {
  height: 1.5ex;
  width: auto;
}

table {
  border-collapse: collapse;
}

th {
  text-align: left;
}

:focus {
  outline: 2px dotted;
  outline-offset: 0.25rem;
}

.visually-hidden, .ht {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.wrapper {
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.flow > * + * {
  margin-top: var(--space-l, 1rem);
}

.flow-page > * + * {
  margin-top: var(--space-xl, 1rem);
}

.flow-tight > * + * {
  margin-top: var(--space-s, 0.5rem);
}

.flow-s > * + * {
  margin-top: var(--space-s, 0.5rem);
}

.flow-xs > * + * {
  margin-top: var(--space-xs, 0.5rem);
}

.flow-m > * + * {
  margin-top: var(--space-m, 0.5rem);
}

.prose {
  max-width: 65ch;
  max-inline-size: 65ch;
}

.multicol {
  column-count: 2;
}

.multicol ul {
  margin: 0;
}

.bullet {
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  background-color: lightblue;
  display: inline-block;
  border-radius: 4px;
}

.upper {
  text-transform: uppercase;
}

.c-h-1 {
  color: var(--color-main-blue);
}

.c-h-2 {
  color: var(--color-light-blue);
}

.c-h-3 {
  color: var(--color-attention);
}

.hl-0 {
  color: #fff;
  font-weight: 700;
}

.hl-1 {
  color: var(--color-main-blue);
  font-weight: 600;
}

.h1-2 {
  color: var(--color-highlight-1);
  font-weight: 600;
}

.hl-3 {
  color: var(--color-attention);
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

/* new set of utility classes for conf-be-go pages */
/* font weights */
.fw-100 {
  font-weight: 100;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

/* text sizes - include line height adjustments for bigger text */
.ts-7 {
  font-size: var(--size-step-7);
  line-height: 1;
}

.ts-6 {
  font-size: var(--size-step-6);
  line-height: 1;
}

.ts-5 {
  font-size: var(--size-step-5);
  line-height: 1;
}

.ts-4 {
  font-size: var(--size-step-4);
  line-height: 1;
}

.ts-3 {
  font-size: var(--size-step-3);
  line-height: 1.2;
}

.ts-2 {
  font-size: var(--size-step-2);
}

.ts-1 {
  font-size: var(--size-step-1);
}

.ts-0 {
  font-size: var(--size-step-0);
}

.ts--1 {
  font-size: var(--size-step--1);
}

.ts--2 {
  font-size: var(--size-step--2);
}

/* alignments */
.ta-c, .text-align-c, .align-c {
  text-align: center;
  margin-inline: auto;
}

/* widths - in ch for headings and paragraphs */
.t-width-s {
  max-width: var(--measure-small);
  max-block-size: var(--measure-small);
}

.t-width-m {
  max-width: var(--measure-medium);
  max-block-size: var(--measure-medium);
}

.t-width-l {
  max-width: var(--measure-large);
  max-block-size: var(--measure-large);
}

/* text colours */
/* black: #000, light-brown: #BBA99E, dark-brown: #886E60,  light-blue:98C3DD. body-text: 545554, grey-bg: #F1F0EF */
.tc-brown {
  color: var(--color-brown);
}

.tc-blue {
  color: var(--color-light-blue);
}

.tc-grey {
  color: var(--color-body-text);
}

.tc-white {
  color: #fff;
}

/* background colors */
.bg-grey {
  background-color: var(--color-light-grey);
}

.bg-blue {
  background-color: var(--color-light-blue);
}

.bg-brown {
  background-color: var(--color-brown);
}

.bg-light-brown {
  background-color: var(--color-light-brown);
}

/* text transforms - uppercase */
.t-up {
  text-transform: uppercase;
}

sup {
  font-size: 0.5em;
}

.c-title {
  font-weight: 700;
  text-transform: uppercase;
}

.c-title em {
  font-style: normal;
  font-weight: 300;
}

.c-title i {
  font-weight: 300;
  text-transform: initial;
}

.c-title sup {
  font-weight: 300;
  font-size: 0.3em;
}

/* icons. buttons. icons and buttons etc... */
.s24-icon-btn {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1px 4px;
}

.s24-icon-btn--zoom {
  background-color: silver;
  width: 46px;
  height: 46px;
}

.s24-icon-btn :nth-child(2) {
  /* visually hidden */
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.s24-icon-btn .blip {
  position: absolute;
  pointer-events: none;
  background-color: green;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  top: -5px;
  right: -5px;
  font-size: var(--size-step--1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.s24-form-control {
  padding: 6px 6px;
  font-size: var(--size-step--1);
  line-height: 1;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.s24-form-btn, .overlay .m-btn {
  background-color: var(--color-light-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.8em;
  padding: 6px;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 12px;
}

.overlay .m-btn {
  font-size: var(--size-step-0);
}

/* toggle for search box on header */
.s24-search-box {
  display: flex;
  gap: var(--space-2xs);
}

.js-toggle-in-out {
  width: 0;
  visibility: hidden;
  display: none;
}

.toggle .js-toggle-in-out {
  width: initial;
  visibility: visible;
  display: initial;
}

.logo-svg {
  height: 5rem;
}

.center {
  box-sizing: content-box;
  margin-inline: auto;
  max-inline-size: var(--measure);
}

.switcher {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
}

.switcher > * {
  flex-grow: 1;
  flex-basis: calc((30rem - 100%) * 999);
}

.switcher > :nth-last-child(n+5),
.switcher > :nth-last-child(n+5) ~ * {
  flex-basis: 100%;
}

.copy-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}

@media screen and (min-width: 450px) {
  .copy-block {
    grid-template-columns: 1fr 1fr;
  }
}
/* legacy footer styling */
.s24-footer {
  background-color: #000;
  color: #fff;
  padding-top: 36px;
  padding-bottom: 46px;
  margin: 4rem 0 0 0;
}

.s24-footer h4 {
  margin-bottom: 1.4rem;
}

.s24-footer__silo {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.s24-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  margin-bottom: 1.4rem;
}

.s24-social-list li img {
  width: 2.5rem;
}

.s24-app-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.4rem;
}

.s24-app-list li img {
  width: 10rem;
}

.s24-footer__links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.s24-footer__links ul a {
  text-decoration: none;
}

.s24-footer__vcard-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.s24-footer__vcard-item img {
  height: 1.8rem;
}

.s24-footer__vcard-item img.start {
  align-self: flex-start;
}

.s24-footer__sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  border-top: 1px solid #fff;
  padding-top: 2rem;
}

.s24-footer__logo img {
  width: 197px;
}

.s24-footer__terms {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.4rem;
}

.s24-footer__terms a {
  text-decoration: none;
}

@media screen and (min-width: 720px) {
  .s24-footer__silo {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "col1 col2 col3" "sub sub sub";
  }
  .s24-footer__silo.sv, .s24-footer__silo.au {
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
  }
  .s24-footer__sub {
    grid-column-end: span 3;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    justify-items: start;
  }
}

/* end legacy footer styling */
/* site header with navigation and site icons */
header.holding {
  padding-block-end: 0;
}

.site-actions {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: flex-end;
  padding: 0 0 var(--space-s) 0;
  margin: 0;
}

/*
.site-actions__list {
  display: none;
}
*/
.site-actions__list {
  display: flex;
  gap: var(--space-xs);
  margin: 0;
}

.logo-header {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

.logo-header a {
  margin-block-start: -40px;
  padding-inline: 2rem;
  background-color: var(--color-dark);
}

.logo-header img {
  width: 50px;
}

@media screen and (min-width: 720px) {
  .site-actions {
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: flex-end;
    padding-block-end: 1rem;
    margin-block: 2rem;
  }
  .site-actions--holding {
    padding-block-end: 4rem;
  }
  .logo-header {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .logo-header a {
    margin-block-start: -105px;
  }
  .logo-header--holding {
    margin-block-start: -113px;
  }
  .logo-header img {
    width: 90px;
  }
}
.main-nav {
  font-size: var(--size-step--1);
  color: var(--color-main);
}

@media screen and (max-width: 720px) {
  .menu-toggle {
    display: block;
    visibility: visible;
  }
  .main-nav {
    position: absolute;
    top: 25px;
    width: 100vw;
    right: 0;
    z-index: 100;
  }
  .main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 94px;
  }
  .main-nav.expand > ul {
    max-height: 100vh;
  }
  .main-nav ul a {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: black;
    width: 100%;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }
  .main-nav > ul > li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr 0;
    grid-template-areas: "page icon" "next next";
    overflow: hidden;
    transition: grid-template-rows 0.5s;
  }
  .main-nav ul > li > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    grid-column: span 2;
    /* for dropdown initial setup */
    min-height: 0;
    visibility: hidden;
    transition: visibility 0.5s;
  }
  .main-nav > ul > li.expand {
    grid-template-rows: 1fr auto;
  }
  .main-nav > ul > li.expand ul {
    visibility: visible;
  }
  .main-nav ul > li > ul > li a {
    background-color: #444;
  }
}
@media screen and (min-width: 720px) {
  /* hide mobile controls */
  .menu-toggle {
    display: none;
    visibility: hidden;
  }
  .js-expand {
    display: none;
  }
  .main-nav__list {
    list-style: none;
    margin: 0;
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    position: relative;
  }
  .main-nav__list a {
    text-decoration: none;
  }
  .main-nav__list > li {
    text-transform: uppercase;
    padding: var(--space-m) 0;
  }
  .main-nav__list li ul {
    display: none;
  }
  .main-nav__list li:hover > ul {
    display: flex;
    position: absolute;
    translate: 0 var(--space-m);
    text-transform: initial;
    z-index: 100;
  }
  .main-nav__list li ul {
    flex-direction: column;
    gap: var(--space-m);
    list-style: none;
    padding: var(--space-m);
    background-color: var(--color-grey-bg);
    color: var(--color-body-text);
  }
  /*
  .main-nav__list li ul::before {
    content: " ";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #fff;
    z-index: 1;
    top: 0;
  }
  */
}
/* menu togggle button */
.menu-toggle {
  padding: 0;
  cursor: pointer;
  color: inherit;
  border: 0;
  pointer-events: all;
  background-color: transparent;
  float: left;
  margin: 0 0 0 30px;
}

.menu-toggle--sub {
  margin: 0;
  background-color: #000;
  border-bottom: 1px solid #fff;
  float: none;
  padding-right: 12px;
}

.menu-toggle__box {
  position: relative;
  display: inline-block;
  width: 2.3em;
  height: 1.4em;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  background-color: #fff;
  width: 2.3em;
  height: 2px;
  border-radius: 4px;
  transition-property: transform;
}

/* menu button transition - adapted from https://jonsuh.com/hamburgers/ */
.menu-toggle__lines {
  display: block;
  top: 50%;
  /* animation - for when the menu is switched back from active */
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}

.menu-toggle[aria-expanded=true] .menu-toggle__lines {
  /* animation - menu is active - rotate but wait until the other lines have finished moving */
  transform: rotate(45deg);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 120ms;
}

.menu-toggle__lines::before {
  display: block;
  content: "";
  top: -10px;
  /* on switch back from active delay top movement until after rotation */
  transition: top 75ms ease 120ms, opacity 75ms ease;
}

.menu-toggle[aria-expanded=true] .menu-toggle__lines::before {
  top: 0;
  opacity: 0;
  /* on switch to active - move immediately, delay opacity */
  transition: top 75ms ease, opacity 75ms ease 120ms;
}

.menu-toggle__lines::after {
  display: block;
  content: "";
  bottom: -10px;
  /* on switch back from active delay top movement until after rotation - but rotate immediately */
  transition: bottom 75ms ease 120ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.menu-toggle[aria-expanded=true] .menu-toggle__lines::after {
  bottom: 0;
  /* on switch to active - move immediately, delay rotation */
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 120ms;
  transform: rotate(-90deg);
}

.expand-btn {
  padding: 0;
  cursor: pointer;
  color: inherit;
  border: 0;
  pointer-events: all;
  margin: 0;
  background-color: #000;
  border-bottom: 1px solid #fff;
  float: none;
  padding-right: 15px;
  padding-bottom: 6px;
}

.expand-btn__box {
  min-width: 40px;
  height: 100%;
  aspect-ratio: 1;
  position: relative;
}

.expand-btn__lines, .expand-btn__lines::before {
  position: absolute;
  background-color: #fff;
  width: 70%;
  height: 2px;
  border-radius: 4px;
  left: 15%;
  transition-property: transform;
  transition-timing-function: ease-in-out;
  transition-duration: 220ms;
}

.expand-btn__lines {
  top: 50%;
  transform: rotate(0deg);
}

.expand-btn[aria-expanded=true] .accordian__lines {
  transform: rotate(180deg);
}

.expand-btn__lines::before {
  content: "";
  display: block;
  transform: rotate(-90deg);
  width: 100%;
  left: 0;
}

.expand-btn[aria-expanded=true] .expand-btn__lines::before {
  transform: rotate(0deg);
}

.hero {
  position: relative;
  height: 70vh;
  max-height: 600px;
  max-block-size: 600px;
  padding-block-start: var(--space-l);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "hero";
  pointer-events: none;
}

.hero__bg {
  /*
  position: absolute;
  top: 0;
  left: 0;
  */
  grid-area: hero;
  width: 100%;
}

.hero__bg img {
  object-fit: cover;
}

.hero__bg svg {
  height: 100%;
}

.hero__copy {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 720px) {
  .hero__bg svg {
    height: 100%;
  }
  .hero__copy {
    justify-content: flex-start;
  }
}
.hero__text {
  font-size: var(--size-step-6);
  text-align: center;
}

.hero__coming-soon {
  margin-top: var(--space-xl);
}

.wave-img {
  opacity: 0;
}

.covers {
  padding-block-start: 4rem;
  padding-block-end: 4rem;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.covers__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  background: radial-gradient(circle, rgb(189, 198, 208) 0%, rgb(88, 116, 144) 59%);
  opacity: 0;
  top: 0;
  overflow: hidden;
}

.covers__copy {
  position: absolute;
  display: grid;
  grid-template: "core";
  height: 100%;
  width: 100%;
  top: 0;
}

.covers__copy-item {
  grid-area: core;
  display: flex;
  width: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.covers__copy-item p {
  text-align: center;
  font-size: var(--size-step-4);
  line-height: 1.1;
  max-width: 16ch;
}

.covers__silo {
  position: relative;
}

.covers__silo {
  --carousel-width: 180px;
  --carousel-move: 90%;
}

.covers__wrapper {
  display: grid;
  grid-template-areas: "holder";
  justify-items: center;
}

.covers__wrapper > * {
  /*grid-area: holder;*/
}

.covers__center {
  width: var(--carousel-width, 280px);
  margin-inline: auto;
  translate: 0 var(--carousel-move, 108%);
}

.covers__center img {
  width: var(--carousel-width);
}

.covers__carousel-item {
  rotate: 0deg;
}

.cover {
  width: 270px;
}

.bag-model-section {
  height: 400px;
}

.bag-model {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: grid;
  align-content: end;
  pointer-events: none;
}

.bag-model__wrapper {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.js .hero__text {
  opacity: 0;
}

.overview {
  height: 90vh;
  max-height: 640px;
  max-block-size: 640px;
  display: grid;
  grid-template: "overview";
  --carousel-width: 180px;
  --carousel-move: 190%;
  position: relative;
}

@media screen and (min-width: 720px) {
  .overview {
    height: 90vh;
    max-height: 640px;
    max-block-size: 640px;
    display: grid;
    grid-template: "overview";
    --carousel-width: 300px;
    --carousel-move: 104%;
    position: relative;
  }
  .covers__silo {
    --carousel-width: 300px;
    --carousel-move: 30%;
  }
}
.overview__bg {
  height: 100%;
  width: 100%;
  background: radial-gradient(circle, rgb(189, 198, 208) 0%, rgb(88, 116, 144) 59%);
  position: relative;
  grid-area: overview;
}

.overview__items {
  grid-area: overview;
  display: grid;
  grid-template: "core";
  position: relative;
  height: 90vh;
  max-height: 640px;
  max-block-size: 640px;
}

.overview__item {
  grid-area: core;
  display: flex;
  width: 50%;
  margin-inline: auto;
  align-items: center;
  opacity: 0;
}

.overview__item p {
  text-align: center;
  font-size: var(--size-step-4);
  line-height: 1.1;
}

.overview__front {
  width: 520px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

.overview__carousel, .covers__carousel {
  display: grid;
  grid-template: "main";
  width: var(--carousel-width, 280px);
  margin-inline: auto;
  translate: 0 var(--carousel-move, 108%);
}

.overview__carousel-item, .covers__carousel-item {
  grid-area: main;
  width: 100%;
}

.overview__carousel-item img, .covers__carousel-item img {
  width: 100%;
  translate: 0% -100%;
}

.overview__carousel-item:nth-child(1) {
  rotate: 0deg;
}

.overview__carousel-item:nth-child(2) {
  rotate: 60deg;
}

.overview__carousel-item:nth-child(2) img {
  /*transform: skewX(20deg);*/
}

.overview__carousel-item:nth-child(3) {
  rotate: 120deg;
}

.overview__carousel-item:nth-child(3) img {
  /*transform: skewX(-20deg);*/
}

.overview__carousel-item:nth-child(4) {
  rotate: 180deg;
}

.overview__carousel-item:nth-child(5) {
  rotate: 240deg;
}

.overview__carousel-item:nth-child(6) {
  rotate: 300deg;
}

.biopic {
  position: relative;
  height: 760px;
  overflow: hidden;
  background-color: #000;
}

.biopic__img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.biopic__copy {
  position: relative;
}

.biopic__quote {
  font-size: var(--size-step-3);
  line-height: 1.1;
  width: 100%;
  max-width: 18ch;
  padding-top: 1rem;
  margin-left: 2rem;
}

.biopic__quote p {
  line-height: 1.1;
}

.biopic__quote--right {
  padding-top: 5rem;
  float: right;
}

.biopic__quote-by {
  font-size: var(--size-step--1);
  display: inline-block;
  width: 25ch;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

.biopic__big-quote {
  font-size: var(--size-step-3);
  line-height: 1.1;
  margin-top: 3rem;
  width: 100%;
  max-width: 18ch;
}

.biopic__cta {
  text-align: center;
}

.biopic__cta a {
  margin-top: 3rem;
}

@media screen and (min-width: 760px) {
  .biopic__quote {
    padding-top: 4rem;
    margin-left: 4rem;
  }
  .biopic__big-quote {
    /*margin-left: 14rem;*/
    margin-top: 2rem;
    max-width: 21ch;
    float: right;
  }
}
.details {
  --feature-width: 180px;
  --feature-arrow-width: 180px;
  --feature-arrow-width-2: 140px;
  --feature-position: -160px;
  --diagram-height: 80%;
  --diagram-width: 220px;
  /*padding-block-start: 3rem;*/
}

.details__silo {
  display: grid;
  grid-template-areas: "all-details";
  background-color: #fff;
}

.details__bg {
  background: radial-gradient(circle, rgb(120, 120, 120) 0%, rgb(34, 34, 34) 59%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.details__panel {
  height: 100%;
  overflow: hidden;
  height: 90vh;
  max-height: 800px;
  max-block-size: 800px;
  /*border: 1px solid red;*/
  position: relative;
  padding-block-start: 4rem;
  /*background-color: #ddd; */
}

.details__panel--layer {
  grid-area: all-details;
}

.details__panel--bg {
  grid-area: all-details;
}

.details__wrapper {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "details-box";
  justify-content: center;
}

.details__wrapper > * {
  grid-area: details-box;
}

.details__model {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 100%;
}

.details__diagram {
  /*height: var(--diagram-height,90%);*/
  width: var(--diagram-width, 320px);
  position: relative;
  margin-inline: auto;
}

.details__diagram--full {
  width: 100%;
}

.details__diagram--end {
  width: var(--diagram-width);
  grid-area: silo-full;
  bottom: 0;
}

.details__diagram--underlay {
  width: var(--diagram-width);
  grid-area: silo-full;
}

.details__zoom-img {
  width: 50%;
  max-width: 300px;
  margin-inline: auto;
}

.details__copy {
  font-size: var(--size-step-3);
  line-height: 1.1;
}

.details__sidebar {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 740px) {
  .details__sidebar {
    display: grid;
    height: 100%;
    grid-template-columns: 2fr 3fr;
  }
}
.details__center {
  display: grid;
  height: 100%;
  align-content: center;
  justify-content: center;
}

.details__features {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
}

.details__features--no-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "details";
}

.details__features > * {
  height: 100%;
}

.details__feature {
  /*position: absolute;
  top: 0;*/
  grid-area: feature-silo;
  background-color: rgba(20, 20, 20, 0.6);
  padding: 12px;
  border-radius: 12px;
  height: fit-content;
}

.details__feature-silo {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "feature-silo";
  justify-items: center;
  align-content: center;
}

@media screen and (min-width: 720px) {
  .details__feature {
    /*
    position: absolute;
    top: 0;
    */
    grid-area: feature-silo;
    width: var(--feature-width, 200px);
    translate: 150%;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
  .details__feature--right {
    /*right: var(--feature-position, -260px);*/
  }
  .details__feature--left {
    /*left: var(--feature-position, -260px);*/
    text-align: right;
    translate: -150%;
  }
  .details__feature--right::before {
    content: " ";
    background: 0 0 url(../img/feature-pointer.svg) no-repeat;
    height: 20px;
    display: inline-block;
    width: 100%;
    position: absolute;
    translate: -100% 0;
    /*top: 10px;*/
    margin-left: -6px;
  }
  .details__feature--left::before {
    content: " ";
    translate: 100% 0;
    background: 100% 0 url(../img/feature-pointer-left.svg) no-repeat;
    display: inline-block;
    width: 100%;
    height: 20px;
    position: absolute;
    right: -6px;
  }
  .details__feature--wafer::before {
    width: var(--feature-arrow-width-2, 140px);
  }
  /* position of the features*/
  #details-feature-1 {
    margin-top: -179px;
  }
  #details-feature-2 {
    margin-top: -179px;
  }
  #details-feature-3 {
    margin-top: -179px;
  }
  #details-feature-4 {
    margin-top: -160px;
  }
  #details-feature-5 {
    margin-top: -160px;
  }
  #details-feature-6 {
    margin-top: -160px;
  }
  #details-feature-7 {
    margin-top: -140px;
  }
}
.details__diagram-silo {
  position: relative;
  display: grid;
  align-content: center;
  /*border: 1px solid red;*/
  /*max-width: 200px;
  margin-inline: auto;*/
}

.details__diagram-silo--full {
  height: 100%;
  width: 100%;
  grid-area: details;
  grid-template-areas: "silo-full";
}

.details__single-feature {
  width: 60vw;
  text-align: center;
  margin-inline: auto;
  grid-area: details;
  z-index: 20;
  align-self: center;
  line-height: 1;
}

@media screen and (min-width: 960px) {
  /* feature-width, feature-arrow-width, feature-position */
  .details {
    --feature-width: 220px;
    --feature-arrow-width: 120%;
    --feature-arrow-width-2: 90%;
    --feature-position: -260px;
    --diagram-height: 90%;
    --diagram-width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .details {
    --feature-width: 260px;
    --feature-arrow-width: 322px;
    --feature-arrow-width-2: 260px;
    --feature-position: -400px;
    --diagram-height: 90%;
    --diagram-width: 220px;
  }
}
.go-btn {
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 1rem;
  border: 0px;
  text-decoration: none;
  background-color: var(--color-light-blue);
  color: #fff;
  font-size: var(--size-step--1);
  padding-inline: 12px;
  padding-block: 4px;
  text-align: center;
}

.go-info {
  background-color: #F1F0EF;
  color: #545554;
  padding-block: var(--space-xl);
}

.go-circle {
  border-radius: 50%;
  box-shadow: 1px 1px 1px 1px rgb(190, 190, 190);
}

.go-info__main-img {
  width: 80%;
  margin: 0 auto;
  margin-inline: auto;
}

.go-pic-left {
  float: left;
  width: 120px;
}

.go-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}

@media screen and (min-width: 720px) {
  .go-info__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "instructions about";
  }
  .go-info__about {
    grid-area: about;
  }
  .go-info__instructions {
    grid-area: instructions;
  }
}
@media screen and (min-width: 960px) {
  .go-info__grid {
    grid-template-columns: 5fr 4fr;
  }
}
.go-info__circles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
}

.go-info__covers {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-l);
  --line-offset: calc(var(--space-l) / 2);
  padding: 0;
  overflow-x: hidden;
  border-bottom: 1px solid #bbb;
  padding-bottom: var(--line-offset);
}

.go-info__covers li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
}

.go-info__covers li::after {
  content: "";
  position: absolute;
  background-color: #bbb;
  z-index: 1;
  inline-size: 100vw;
  block-size: 1px;
  inset-inline-start: 0;
  inset-block-start: calc(var(--line-offset) * -1);
}

.go-range {
  background-color: #FFF;
  color: #545554;
  padding-block: var(--space-xl);
}

.go-range__products {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}

@media screen and (min-width: 530px) {
  .go-range__products {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 730px) {
  .go-range__products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--space-xl);
  }
}
.go-range__products p {
  text-align: center;
}

.go-range__product {
  display: grid;
  grid-template-rows: 2fr 0.2fr 0.2fr;
}

.go-range__product-img img {
  margin: 0 auto;
}

.go-range__product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.cb-page-intro {
  margin-block-start: var(--space-l);
}

.cb-product-model__silo {
  position: relative;
  height: 60vh;
  max-height: 600px;
}

.cb-product-model__silo :first-child {
  position: relative;
  /*z-index: -1;*/
}

.cb-product-model__model {
  position: absolute;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
}

.cb-product-model__zoom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-m);
  position: relative;
}

.cb-product-model__buttons {
  display: flex;
  gap: var(--space-s);
  align-items: center;
  justify-content: center;
}

.cb-product-model__controls {
  display: flex;
  gap: var(--space-m);
  justify-content: center;
  position: relative;
}

.cb-product-model__control {
  background-color: transparent;
  border: none;
  display: grid;
  font-size: var(--size-step--1);
  justify-items: center;
  gap: var(--space-2xs);
  color: var(--color-grey);
}

.cb-section-heading {
  text-align: center;
  color: var(--color-grey);
  margin-inline: auto;
}

.cb-heading {
  text-transform: uppercase;
  clear: both;
  font-size: var(--size-step-1);
}

/*
.cb-heading--alt {
  color: var(--color-highlight-1);
}

.cb-heading span {
  color: var(--color-light-blue);
}
*/
.cb-banner-heading {
  background-color: var(--color-grey-bg);
  padding-block: var(--space-xl);
}

.cb-step-heading {
  text-transform: uppercase;
  font-size: var(--size-step-2);
  text-align: center;
  margin-inline: auto;
}

.cb-step-sub-heading {
  text-align: center;
  color: var(--color-grey);
  margin-inline: auto;
  font-size: var(--size-step-4);
}

.cb-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-l);
}

@media screen and (min-width: 720px) {
  .cb-split {
    grid-template-columns: 1fr 1fr;
  }
}
.cb-sidebar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-2xs);
}

.cb-alternate-bg {
  background-color: var(--color-grey-bg);
  padding-block: var(--space-l);
}

.cb-big-radios {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-s);
}

.cb-big-radios label {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr auto 1fr;
  gap: var(--space-s);
}

.cb-big-radios img {
  max-width: 140px;
}

@media screen and (min-width: 670px) {
  .cb-big-radios {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-s);
  }
}
@media screen and (min-width: 760px) {
  .cb-big-radios {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-s);
  }
  .cb-big-radios label {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cb-big-radios img {
    max-width: 200px;
  }
}
@media screen and (min-width: 760px) {
  .cb-big-radios img {
    max-width: 240px;
  }
}
.cb-big-radios input {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: var(--color-light-blue);
  width: 2em;
  height: 2em;
  border: 0.1em solid var(--color-light-blue);
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.cb-big-radios input[type=radio]::before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--color-light-blue);
}

.cb-big-radios input[type=radio]:checked::before {
  transform: scale(1);
}

.cb-size-select-banner {
  background-color: var(--color-x-light-brown);
  background-image: url(../img/product-select-size-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  padding-block: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
  min-block-size: 600px;
}

.cb-size-select-banner > :last-child {
  justify-self: center;
}

@media screen and (min-width: 720px) {
  .cb-size-select-banner {
    grid-template-columns: 240px auto 240px;
    grid-template-areas: "left middle right";
  }
  .cb-size-select-banner > :first-child {
    grid-area: middle;
    align-self: center;
  }
  .cb-size-select-banner > :last-child {
    grid-area: right;
    align-self: end;
    margin-right: var(--space-m);
  }
}
.cb-select select {
  font-family: "museo-sans";
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--color-brown);
  color: #fff;
  border: 1px solid var(--color-brown);
  padding: 0.5rem 1rem;
  font-size: 0.8em;
  border-radius: 25px;
  display: block;
  margin-inline: auto;
}

.cb-easy-steps__list {
  list-style: none;
  padding: 0;
  margin-inline: auto;
  max-width: var(--measure-medium);
  width: 88vw;
}

.cb-easy-steps__list li {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "left";
  gap: var(--space-m);
}

.cb-easy-steps__list li > :first-child {
  grid-area: title;
}

@media screen and (min-width: 420px) {
  .cb-easy-steps__list {
    width: 96vw;
  }
  .cb-easy-steps__list li {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title title" "left right";
    gap: var(--space-m);
  }
  .cb-easy-steps__list li > :nth-child(2) {
    grid-area: left;
  }
  .cb-easy-steps__list li > :nth-child(3) {
    grid-area: right;
  }
  .cb-easy-steps__list li > :first-child {
    grid-area: title;
  }
}
.cb-roundal {
  background-color: var(--color-brown);
  color: #fff;
  border-radius: 50%;
  width: 2ch;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  aspect-ratio: 1;
}

.cb-tips {
  margin-inline: auto;
  max-width: var(--measure-medium);
  width: 88vw;
}

.cb-tip {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "left";
  gap: var(--space-s) var(--space-m);
  border-bottom: 1px solid var(--color-grey);
  padding-block-end: var(--space-m);
}

.cb-tip > :first-child {
  grid-area: title;
}

@media screen and (min-width: 640px) {
  .cb-tips {
    width: 96vw;
  }
  .cb-tip {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title title" "left right";
    gap: var(--space-l) var(--space-xl);
    border-bottom: 1px solid var(--color-grey);
    padding-block-end: var(--space-m);
  }
  .cb-tip > :nth-child(2) {
    grid-area: left;
  }
  .cb-tip > :nth-child(3) {
    grid-area: right;
  }
  .cb-tip > :first-child {
    grid-area: title;
  }
}
.cb-grid-list {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xs) var(--space-m);
  list-style-position: inside;
}

/* sample filter table */
.sample-table-silo {
  background-color: var(--color-brown);
  padding-block: var(--space-xl);
  margin-top: 0;
}

.sample-banner__table {
  border-radius: 24px;
  width: 100%;
  font-size: 0.9rem;
}

.sample-banner__table tr {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: stretch;
  gap: 1rem 0;
}

.sample-banner__table tr td {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.sample-banner__table tr td span {
  margin-right: 1ch;
}

.sample-banner__table tr td:first-child {
  padding-left: 24px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

/*
.sample-banner__table tr td:nth-child(2) {

}
*/
.sample-banner__table tr td:nth-child(2) {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  padding-right: 24px;
}

.sample-banner__table tr td:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-end: span 4;
  background-color: transparent;
}

.sample-banner__table tr a {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 30px;
  border-radius: 24px;
  background: #fff;
}

.sample-banner__table tr.show-row {
  display: grid;
}

.sample-banner__table tr.hide-row {
  display: none;
}

.cookieWarning {
  display: none;
}

/* legacy overlay code */
.overlay {
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 5000px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 400;
}

.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 4000;
}

.overlay.share-your-story {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 5000px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 400;
  position: fixed;
}

.overlay.share-your-story .overlay-content {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.overlay.share-your-story h2 {
  border-top: none;
  color: #183850;
  padding-top: 0px;
  margin-top: 24px;
  font-size: 2em;
  text-align: center;
}

.overlay.share-your-story p {
  text-align: left;
}

.overlay.share-your-story .terms-block {
  height: 400px !important;
  overflow: auto;
  padding: 20px;
  border: 1px solid #CCC;
}

.overlay.share-your-story .terms-block h3 {
  text-align: left;
  font-size: 20px;
  margin-top: 24px;
}

.overlay.share-your-story .terms-block h4 {
  text-align: left;
  font-size: 16px;
}

.overlay.share-your-story .terms-block p {
  text-align: left;
  font-size: 1em;
  line-height: 1.7em;
}

.overlay.share-your-story .terms-block ul {
  text-align: left;
  font-size: 1em;
  line-height: 1.7em;
}

.overlay.share-your-story .terms-block ul li {
  text-align: left;
  font-size: 1em;
  line-height: 1.7em;
  margin-bottom: 8px;
}

.story-submit {
  border-top: 1px solid #CCC;
  padding-top: 16px;
  margin-top: 12px;
}

input.story-submit {
  border-top: none;
  padding-top: 6px;
  margin-top: 0px;
}

.overlay-content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 20px 20px 20px 20px;
  background: #FFF;
  left: 4%;
  top: 400px;
  color: #183850;
  z-index: 500;
  /*margin-top: 175px;*/
  width: 90vw;
}

.overlay-content .m-column-one {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-content: center;
  align-items: center;
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}

.overlay-content h2 {
  font-size: var(--size-step-2);
}

.overlay-basket-icon {
  background-image: url("/Files/Templates/Designs/Salts/res/img/icons/icon-basket.png");
  background-position: bottom left;
  background-repeat: no-repeat;
}

.overlay-green-icon {
  background-image: url("/Files/Templates/Designs/Salts/res/img/logos/logo-green-promise.jpg");
  background-position: bottom 6px right;
  background-repeat: no-repeat;
}

.overlay-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s24-country-choose {
  background-color: #074B8E;
  color: #fff;
  position: relative;
  z-index: 1000;
  padding: 1em 0;
  font-size: 0.9rem;
  position:fixed;
  width:100vw;
}

.s24-country-choose__form p {
  font-size: 1em;
  text-align: center;
  justify-self: center;
  align-self: center;
  padding: 0;
  margin: 0 0 0.5em 0;
}

@media screen and (min-width: 760px) {
  .s24-country-choose__form {
    display: grid;
    grid-template-columns: 3fr 1fr;
  }
}
.s24-country-choose__controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.s24-select select {
  font-family: "museo-sans", "Museo Sans W01";
  text-transform: uppercase;
  font-weight: 700;
  background-color: #fff;
  color: #111;
  border: 1px solid #fff;
  padding: 8px 11px;
  font-size: 1em;
  border-radius: 25px;
}

/*
.go-btn {
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 25px;
  border: 0px;
  text-decoration: none;
  background-color: var(--color-light-blue);
  color: #fff;
  font-size: 1em;
  padding-inline: 2rem;
  padding-block: 0.8rem;
  text-align: center;
}
*/
.go-btn--country {
  padding: 9px 20px;
}

/*# sourceMappingURL=global.css.map */

.availability-alert {
  margin-top:-50px;
  position:relative;
  width:200px;
  float:left;
  left:40px;
}

.availability-alert .go-btn {
  background:#fff34a;
  color:#000000;
}

@media screen and (max-width: 1230px) {
  .availability-alert {
    margin-top:-100px;
  }
  .fixed-cta {
    top: 135px
  }
}

@media screen and (max-width: 719px) {
  .availability-alert {
    margin-top: -30px;
    width:100%;
    text-align:center;
    left:0;
  }
  .fixed-cta {
    width:100%;
    text-align:center;
    left:0;
    top: 130px;
  }
}

.m-social .list-inline {
  margin: 0;
  list-style: none;
  padding-left: 0;
}

.m-social .list-inline > li {
  padding: 0 0.0769230769em;
  padding-left: 0.0769231em;
  display: inline-block;
}

.m-social a {
  display: block;
}

.m-app img {
  height: 40px;
  width: auto;
}
