* {
  border: 0 solid;
  /* box-sizing: border-box; */
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  /* overflow-wrap: break-word; */
}

/* *, :after, :before {
  border: 0 solid;
  box-sizing: border-box;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
} */

img,
video {
  max-width: 100%;
}

a,
a:visited {
  /* color: inherit; */
}

/* table {
  border-collapse: collapse;
  border-spacing: 0;
} */

/* img {
  border-style: none;
} */

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-weight: 300;
  --font-weight-strong: 800;
  --font-weight-medium: 700;
  --font-weight-medium-light: 500;
  --max-block-width: 32rem;
  --module-gap: 1.5rem;
  --text-line-height: 1.8;

  --base-font-size: calc(1rem + 0.5vw);
  /* 1.125rem; */

  --color-gray-100: #fafafa;
  --color-gray-200: #f4f4f4;
  --color-gray-300: #E3E3E3;
  --color-gray-500: #ccc;
  --color-gray-600: #a0a0a0;
  --color-gray-700: #7f7e7e;
  --color-gray-800: #424242;
  --color-gray-900: #333;

  --color-blue-300: #eff4f9;

  --color-primary-000: #ffe6d9;
  --color-primary-100: #fcdac9;
  --color-primary-200: #efba9c;
  --color-primary-400: #f36f21;
  --color-primary-450: #de6218;
  --color-primary-500: #cb5015;
  --color-primary-700: #7d300d;
  --color-primary-800: #521f08;

  --box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
}

:root {
  font-family: var(--default-font-family);
  font-size: var(--base-font-size);
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  color: var(--color-gray-900);
  font-weight: var(--font-weight);
}

i {
  font-style: italic;
}

p,
ul,
tr,
td,
h3,
button,
a {
  line-height: var(--text-line-height);
}

h1,
h2 {
  line-height: 1.5;
}

h1,
h2 {
  font-weight: var(--font-weight-strong);
}

h3,
strong {
  font-weight: var(--font-weight-medium);
}

h1 + p,
h2 + p,
h2 + ul,
p + h3 {
  margin-top: var(--module-gap);
}

p + p,
p + ul,
ul + p,
ul + ul {
  margin-top: 1em;
}

/* 
  RESPONSIVITY 
*/

@media only screen and (min-width: 1200px) {
  :root {
    --base-font-size: calc(1rem + 0.3vw);
  }
}

.brand-shapes {
  background: var(--brand-shapes-b, #999);
  height: 4rem;
  position: relative;
}

.brand-shapes > * {
  height: 100%;
  position: absolute;
  width: 100%;
}

.brand-shapes > .mirror {
  margin: 2px 0; /* FIX because Chrome pixel gap */
  transform: scale(1, -1);
}

.brand-shapes-triangle {

  background: var(--brand-shapes-c, #eee);

  /* FIX 5% because Chrome pixel gap */
  -webkit-clip-path: polygon(100% 0, -5% 0, 100% 100%);
          clip-path: polygon(100% 0, -5% 0, 100% 100%);

  margin: -2px 0; /* FIX Chrome px gap */
}

.brand-shapes-trapezoid {

  background: var(--brand-shapes-a, #ddd);
  -webkit-clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 50%);
          clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 50%);
}

@media only screen and (min-width: 1200px) { 
  .brand-shapes {
    height: 5rem;
  }
  
  .brand-shapes-trapezoid {
    -webkit-clip-path: polygon(0 0, 100% 95%, 100% 100%, 0 30%);
            clip-path: polygon(0 0, 100% 95%, 100% 100%, 0 30%);
  }
}

@media only screen and (min-width: 1800px) {
  .brand-shapes {
    height: 7rem;
  }
}

/* .r-blocks {
    --columns: 1;
    --gap: 3rem;
    --max-column-width: 35rem;
    --grid-template-columns: repeat(var(--columns), minmax(auto, var(--max-column-width)));
    --justify-content: space-around;

    display: grid;
    gap: var(--gap);
    grid-template-columns: var(--grid-template-columns);
    justify-content: var(--justify-content);
} */

.r-blocks {
  --r-blocks-max-block-width: 35rem;
  --r-blocks-gap: 1.5rem;
  --r-blocks-justify-content: space-around;

  display: grid;
  gap: var(--r-blocks-gap);
}

.r-blocks--ac {
  align-items: center;
}

.r-blocks--jc {
  --r-blocks-justify-content: center;
}

@media only screen and (min-width: 1200px) {
  .r-blocks {
    display: grid;
    gap: calc(var(--r-blocks-gap) * 4);
    grid-template-columns: repeat(2, minmax(400px, var(--r-blocks-max-block-width)));
    justify-content: var(--r-blocks-justify-content);
  }
}

.container {
  --container-gap: 1.5rem;
  --container-max-block-width: 35rem;

  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-max-block-width);
  padding-left: var(--container-gap);
  padding-right: var(--container-gap);
}

@media only screen and (min-width: 600px) {
  .container {
    padding-left: calc(var(--container-gap) * 2);
    padding-right: calc(var(--container-gap) * 2);
  }
}

@media only screen and (min-width: 1200px) {
  .container--medium {
    max-width: calc(var(--container-max-block-width) * 2);
  }

  .container--wide {
    max-width: calc(var(--container-max-block-width) * 2.5);
  }
}

.button {
  background: #fff3eb;
  color: var(--color-primary-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: var(--font-weight-medium);
  padding: 0.6em 1.5em;
  text-decoration: none;
  transition: background 0.2s;
}

.button:hover {
  background: #fce8db;
}

.button:active {
  position: relative;
  top: 1px;
}

.button.button--dark {
  border-radius: 0.5em;
  background: var(--color-primary-450);
  color: #fff;
}

.button.button--dark:hover {
  background: var(--color-primary-500);
}

.button.button--wide {
  box-sizing: border-box;
  display: block;
  text-align: center;
  width: 100%;
}

table,
tbody,
tr,
td {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

td {
  padding: 1rem;
}

td:first-child {
  background: var(--color-gray-200);
}

table strong {
  font-weight: var(--font-weight-medium-light);
}

table small {
  font-size: 0.8em;
}

@media only screen and (min-width: 800px) {

  table {
    display: table
  }

  tr {
    display: table-row;
  }

  tbody,
  td {
    width: initial;
    display: table-row-group;
  }

  td {
    display: table-cell;
  }
}

.accordion {
  list-style: none outside;
  margin: 0 auto;
  padding: 0;
}

.accordion > * + * {
  border-top: 1px solid var(--color-gray-200);
}

.accordion-item-hd {
  cursor: pointer;
  display: block;
  font-weight: var(--font-weight-medium);
  padding: 1em 0;
  position: relative;
}

.accordion-item-input:checked ~ .accordion-item-bd {
  /* padding-top: 15px; */
  margin-bottom: 1em;
  max-height: 1000px;
  transition: max-height 1s ease-in, margin 0.3s ease-in, padding 0.3s ease-in;
}

.accordion-item-input:checked ~ .accordion-item-hd > .accordion-item-hd-cta {
  transform: rotate(0);
}

.accordion-item-hd-cta {
  color: var(--color-primary-500);
  display: block;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  /*minus half font-size*/
  right: 0;
  text-align: center;
  top: calc(50% - 6px);
  transform: rotate(-180deg);
  transition: transform 0.3s ease;
  width: 30px;
}

.accordion-item-bd {
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease-out, margin-bottom 0.3s ease-out,
      padding 0.3s ease-out;
}

.accordion-item-input {
  clip: rect(0 0 0 0);
  height: 1px;
  left: -9999px;
  margin: -1;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.simple-gallery {
  --simple-gallery-gap: 1rem;
}

.simple-gallery img {
  min-width: 250px;
  opacity: 1;
  transition: all 1s;
}

.simple-gallery>img.loading {
  opacity: 0.1;
}

.simple-gallery-grid {
  display: grid;
  grid-gap: var(--simple-gallery-gap);
  grid-template-columns: auto auto auto auto;
  margin: var(--simple-gallery-gap) 0;
}

.simple-gallery-grid div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Important for iphone */
  cursor: pointer;
  height: 10vh;
  min-width: 100%;
  width: 100%;
}

.simple-gallery-grid>*:hover {
  opacity: 0.8;
}

video-lean {
  display: block;
  height: 100%;
  width: 100%;
}

.topbar {
  align-items: center;
  background: transparent;
  display: grid;
  grid-template-areas:
    "logo country toggle"
    "nav nav nav";
  grid-template-columns: 1fr;
  grid-template-rows: minmax(4.5rem, 1fr);

  position: relative;
}

.topbar-logo {
  /* FIX little a bottom-margin */
  display: inline-flex;
  grid-area: logo;
  padding: 0 0 0 1rem;
}

.topbar-logo img {
  height: 0.7rem;
}

.topbar-country-code {
  display: inline-flex;
  grid-area: country;
  text-decoration: none;
}

.topbar-country-code img {
  height: 1rem;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.topbar-country-code:hover img {
  opacity: 1;
}

.topbar-country-code span {
  display: none;
  font-size: 0.6em;
}

.topbar-country-code img + span {
  margin-left: 0.5em;
}

@media only screen and (min-width: 600px) {
  .topbar-country-code span {
    display: initial;
  }
}

.topbar nav {
  grid-area: nav;
  padding: 1.5rem 0;
  /* border-top: 3px solid #fff4ef; */
  text-align: center;
}

.topbar nav li {
  padding: 1rem;
}

.topbar button {
  align-items: center;
  background: inherit;
  border-bottom-left-radius: 0.5rem;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  grid-area: toggle;
  height: 100%;
  outline: none;
  padding: 1rem 1.5rem;
  transition: border-radius 0.25s;
}

/* .topbar button[aria-expanded=true] {
  border-bottom-left-radius: .5rem;
} */

.topbar button svg {
  fill: none;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 4;
  width: 1rem;
}

.topbar button[aria-expanded="true"] svg path {
  d: path("M3,3 29,29 M16,16 16,16 M3,29 29,3");
}

.topbar button svg path {
  transition: d 0.25s;
}

.topbar button > * {
  pointer-events: none;
}

.topbar button[aria-expanded="false"] + nav {
  display: none;
}

.topbar button[aria-expanded="true"] + nav {
  display: block;
}

.page-hero {
  /* --brand-shapes-a: var(--color-primary-400); */
  /* --brand-shapes-b: white; */
  /* --brand-shapes-c: var(--color-primary-500); */

  background: var(--color-gray-100);
}

.hero-shapes-container {
  position: relative;
}

.hero-shapes-container .brand-shapes {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.hero-shapes-container .brand-shapes:first-child {
  --brand-shapes-b: transparent;
  --brand-shapes-c: var(--color-gray-100);
}

.hero-shapes-container .brand-shapes:nth-child(2) {
  --brand-shapes-b: transparent;
  --brand-shapes-c: white;
  --brand-shapes-a: var(--color-gray-300);

  bottom: 0;
}

.hero-image {
  background-color: var(--color-primary-500);
  background-image: var(--hero-image-mobile);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 80vh;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

@media only screen and (min-width: 1200px) {
  .hero-image {
    background-image: var(--hero-image-desktop);
  }
}

@media only screen and (min-width: 2000px) {
  .hero-image {
    background-image: var(--hero-image-desktop-x);
    background-position: top;
  }
}

.hero-shapes-container+section {
  background: var(--color-primary-500);
}

.page-hero .svg-logo {
  fill: white;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-hero .hero-filter {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-hero .hero-video {
  object-fit: cover;
  object-position: 65%;
  height: 75vh;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .page-hero .hero-video {
    object-position: right center;
    height: 80vh;
  }
}

@media only screen and (min-width: 1800px) {
  .page-hero .hero-video {
    height: 90vh;
  }
}

@media only screen and (min-width: 2000px) {
  .page-hero .hero-video {
    height: 95vh;
  }
}

.loading-effect {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  /* animation-delay: 0.2s; */
}

@keyframes fadeIn {
  from {
    /* transform: translate(-50%, 0%); */
    opacity: 0;
  }

  to {
    /* transform: translate(-50%, -50%); */
    opacity: 1;
  }
}

footer {
  background: var(--color-gray-900);
  color: var(--color-gray-500);
}

footer a {
  text-decoration: none;
}

footer svg {
  background: #232323;
  border-radius: 50%;
  color: var(--color-gray-500);
  fill: var(--color-gray-500);
  padding: 0.7rem;
}

footer hr {
  background: var(--color-gray-800);
  height: 1px;
  margin: var(--module-gap) 0;
}

.footer-links .highlighted-link {
  color: var(--color-gray-200);
  display: inline-block;
  margin-top: 0.5em;
}

.footer-links h3 {
  color: var(--color-gray-200);
  font-size: 1.25rem;
}

.footer-links h3 + ul {
  margin-top: 0.5em;
}

.footer-links ul {
  list-style: none;
  line-height: 2.1;
}

.footer-extra .country-selector {
  align-items: center;
  display: flex;
}

.footer-extra .country-selector * + * {
  margin-left: 1em;
}

.footer-extra .country-selector img {
  max-width: 1.2em;
}

.footer-extra .social-links {
  display: flex;
  gap: 0.6rem;
}

.footer-extra .social-links a {
  display: block;
}

.footer-links {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto;
  margin-top: 6rem;
}

@media only screen and (min-width: 600px) {
  .footer-links {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }
}

.footer-extra {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
}

.footer-terms {
  font-size: 0.7em;
  padding-bottom: 6rem;
  line-height: 1.7em;
  text-align: center;
  color: var(--color-gray-600);
}

.subscribe {
  background: var(--color-primary-500);
  color: var(--color-primary-000);
}

.subscribe .brand-shapes {
  --brand-shapes-a: var(--color-primary-400);
  --brand-shapes-b: var(--color-gray-900);
  --brand-shapes-c: var(--color-primary-500);
}

.subscribe .brand-shapes:first-child {
  --brand-shapes-a: var(--color-primary-400);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-primary-500);
}

.subscribe-container {
  margin-bottom: 4.5rem;
  margin-top: 4.5rem;
}

.subscribe-container h2 {
  line-height: 1;
}

.subscribe-container input {
  background: #bb460f;
  border-bottom-left-radius: 0.5em;
  border-top-left-radius: 0.5em;
  box-sizing: border-box;
  padding: 1em;
  width: 100%;
}

.subscribe-container input:focus {
  outline: 2px solid var(--color-primary-700);
}

.subscribe-container input::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input::-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container input::placeholder {
  color: inherit;
  opacity: 0.5;
}

.subscribe-container .button {
  background: var(--color-primary-700);
  border-bottom-right-radius: 0.5em;
  border-top-right-radius: 0.5em;
  color: inherit;
}

.subscribe-container form {
  display: grid;
  grid-template-columns: 1fr auto;
}

.subscribe-container h2 {
  font-size: 1.5em;
}

@media only screen and (min-width: 600px) {
  .subscribe-container h2 {
    font-size: 1.75em;
  }
}

.subscribe-container h2 span {
  color: var(--color-primary-200);
  display: inline-block;
  font-size: 0.48em;
  margin-left: 0.6em;
  text-shadow: none;
}

.subscribe-container h2 + form {
  margin-top: 2rem;
}

.subscribe-after-message {
  display: inline-block;
  margin-top: 1em;
}

.page-header {
  background: var(--color-gray-100);
}

.page-header--center {
  text-align: center;
}

.page-header h1 {
  font-size: 1.75em;
}

.page-header>.svg-logo {
  height: 1.4rem;
}

.page-header .brand-shapes {
  --brand-shapes-a: var(--color-gray-200);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-gray-100);
}

.page-header>h1,
.page-header>.svg-logo,
.page-header>hgroup {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

@media only screen and (min-width: 1200px) {

  .page-header>h1,
  .page-header>.svg-logo,
  .page-header>hgroup {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }
}

.page-header-bar {
  background: var(--color-gray-100);
}

@media only screen and (min-width: 600px) {
  .page-header h1 {
    font-size: 2em;
  }

  .page-header>.svg-logo {
    height: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .page-header h1 {
    font-size: 2.75em;
  }
}

.product-card-img {
  align-self: center;
  justify-self: center;
  max-height: 40rem;
}

.product-card-highlights article + article {
  margin-top: var(--module-gap);
}

.product-card-highlights article {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  display: grid;
  grid-template-areas:
    "icon feature"
    "icon subline";
  grid-template-columns: auto 1fr;
}

.product-card-highlights article img {
  align-self: center;
  grid-area: icon;
  height: 2rem;
  justify-self: center;
  width: 2rem;
}

* + .product-card-highlights,
.product-card-highlights + * {
  margin-top: 2rem;
}

.variants-box {
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
}

@media only screen and (min-width: 600px) {
  .variants-box {
    padding: 3rem;
  }
}

.variant-box-features {
  padding-left: 1rem;
  font-size: 0.8rem;
}

.variants-box-info {
  background: var(--color-blue-300);
  border-radius: 0.4em;
  /* color: var(--color-primary-500); */
  font-size: 0.8em;
  padding: 1em 1.2em;
  line-height: 1.6em;
}

.variants-box-content .variants-box-info + * {
  margin-top: 1.5rem;
}

.variants-box-content {
  max-width: 24rem;
  margin: auto;
}

.variants-box-content > * + * {
  margin-top: 1rem;
}

.variant-box-price-box {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
}

.variants-box-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-strong);
}

.variants-box-price-sale {
  display: grid;
  gap: 0.2rem;
}

.variants-box-price--original {
  position: relative;
  opacity: 0.9;
  font-size: 1rem;
  font-weight: 500;
}

.variants-box-price--original:after {
  border-bottom: 1px solid var(--color-primary-500);
  content: "";
  position: absolute;
  right: 0;
  top: 60%;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
  width: 100%;
}

.variant-box-price-percentage {
  color: var(--color-primary-500);
  font-size: 0.8em;
}

.variants-box-from {
  font-size: 0.8em;
}

.variants-box-tax {
  font-size: 0.8em;
  color: var(--color-gray-700);
}

.expected-shipping-date {
  font-size: 0.8em;
  text-align: center;
}

.limited-offer-headline {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.limited-offer-headline--extra {
  font-size: 0.8em;
  color: #e87631
}

.limited-offer-list {
  list-style: circle;
  margin-left: 0.8rem;
}

.limited-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 1rem; */
}

.limited-offer-grid div:first-child {
  justify-self: center;
}

.limited-offer-grid div:nth-child(2) {
  justify-self: center;
  align-self: center;
}

.limited-offer-grid .christmas-gift {
  border-radius: 0.4em;
  max-width: 150px;
}

@media screen and (min-width: 600px) {
  .limited-offer-headline {
    text-align: left;
  }

  .limited-offer-grid {
    grid-template-columns: 1fr 2fr;
  }

  .limited-offer-grid.--long {
    grid-template-columns: auto 17rem;
  }
}

.limited-offer-headline + .limited-offer-grid {
  margin-top: 0.8rem;
}

.spinner-loader {
  display: inline-block;
  width: 1em;
  height: 1em;
}

.spinner-loader:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: .12em solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: spinner-loader 1.2s linear infinite;
  box-sizing: border-box;
}

@keyframes spinner-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.request-box {
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
}

.request-box-inputs input,
.request-box-inputs select,
.request-box-message {
  border-radius: 0.5em;
}

.request-box-inputs input[type="text"],
.request-box-inputs input[type="email"],
.request-box-inputs select {
  cursor: pointer;
  background: #f9f9f9;
  box-sizing: border-box;
  margin-top: 0.5rem;
  padding: 1em;
  width: 100%;
}

.request-box-inputs label {
  cursor: pointer;
  line-height: 1.5;
}

.request-box-inputs label + label {
  margin-top: 1rem;
}

* + .request-box-message,
.request-box-message + * {
  margin-top: 1rem;
}

.request-box-message p + p {
  margin-top: 0;
}

.request-box > h3 + * {
  margin-top: 1rem;
}

.request-box * + button {
  margin-top: 1.5rem;
}

.request-box-message:not(template) {
  display: grid;
  column-gap: 1.5rem;
  grid-template-areas:
    "icon feature"
    "icon subline";
  grid-template-columns: auto 1fr;
  padding: 1rem;
}

.request-box-message img {
  align-self: center;
  grid-area: icon;
  height: 2rem;
  justify-self: center;
  width: 2rem;
}

.request-box-message.request-box-message--success {
  background: var(--color-blue-300);
}

.request-box-message.request-box-message--error {
  background: #fff3eb;
}

form + .request-box-message {
  margin-top: 1.5rem;
}

.request-box-subscribe {
  align-items: center;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: auto auto;
  justify-content: flex-start;
}

.request-box-subscribe input {
  display: none;
}

.request-box-subscribe input + span {
  align-items: center;
  background: #eee;
  border-radius: 5px;
  box-sizing: border-box;
  color: #eee;
  display: flex;
  height: 1em;
  justify-content: center;
  padding: 0.125em;
  transition: background 0.1s;
  width: 1em;
}

.request-box-subscribe input:checked + span {
  background: var(--color-primary-450);
  color: white;
}

.request-box-subscribe input + span svg {
  height: 100%;
  width: 100%;
}

/* Spinner */

.request-box button[type="submit"] .spinner-loader {
  visibility: hidden;
  font-size: 0;
  opacity: 0;
  transition: font-size 0.15s, opacity 0.3s 0.15s;
}

.request-box form.quick-loading button[type="submit"] .spinner-loader {
  visibility: visible;
  font-size: 1.2em;
  opacity: 1;
  margin-right: 0.5em;
}

[data-quick="request-box"],
[data-quick="request-box-error"] {
  margin-top: 1rem;
}

[data-quick="request-box"]:empty,
[data-quick="request-box-error"]:empty {
  margin: 0;
}

.locator {
  background-color: #fff3eb;
}

.locator .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}

.locator .brand-shapes {
  --brand-shapes-a: var(--color-primary-400);
  --brand-shapes-b: #fff3eb;
  --brand-shapes-c: var(--color-gray-100);
}

.locator.locator--logo .brand-shapes {
  --brand-shapes-c: white;
}

.locator .locator-headline {
  display: flex;
  align-items: center;
}

.locator .locator-headline img {
  height: 1rem;
  margin: 0 .5rem;
}

.locator .locator-headline + * {
  margin-top: 1rem;
}

.locator .button {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.locator a.button {
  background: var(--color-primary-450);
  border: 0.2em solid var(--color-primary-450);
  color: var(--color-primary-000);
}

.locator button.button {
  border: 0.2em solid var(--color-primary-500);
  box-sizing: border-box;
}

.locator .button + .button {
  margin-top: 1rem;
}

@media only screen and (min-width: 600px) {
  .locator .button {
    display: inline-block;
    width: auto;
  }

  .locator .button + .button {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

.accessories-responsive-columns {
  display: grid;
  gap: var(--module-gap);
}

.accessories-responsive-columns p {
  margin: 0;
}

@media only screen and (min-width: 600px) {
  .accessories-responsive-columns {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }
}

.r-blocks {
  --r-blocks-max-block-width: var(--max-block-width);
  --r-blocks-gap: var(--module-gap);
}

.container {
  --container-gap: 1rem;
}

.module+*,
*+.module {
  margin-top: var(--module-gap);
}

.module--lg+*,
*+.module--lg {
  margin-top: calc(var(--module-gap) * 2);
}

h2+h3 {
  margin-top: 2em;
}

h2 {
  font-size: 1.5em;
}

h2 span {
  color: var(--color-primary-500);
  display: inline-block;
  font-size: 0.7em;
}

@media only screen and (min-width: 600px) {
  h2 {
    font-size: 1.75em;
  }
}

.logo-header .container {
  display: flex;
  justify-content: center;
  padding: 3rem;
}

.logo-header img {
  width: 15rem;
}

@media only screen and (min-width: 600px) {
  .logo-header img {
    width: 20rem;
  }
}

.product-detail-photos {
  text-align: center;
}

.product-detail-photos h2+* {
  margin-top: 3rem;
}

.product-detail-photos img+h3 {
  margin-top: 1em;
}

.product-manuals-card img {
  max-height: 10rem;
}

.product-manuals-card ul {
  padding-left: 1rem;
}

.sector {
  background: var(--color-gray-100);
}

.sector>*:nth-child(2) {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.sector .brand-shapes:first-child {
  --brand-shapes-a: var(--color-gray-200);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-gray-100);
}

.sector .brand-shapes:last-child {
  --brand-shapes-a: var(--color-gray-200);
  --brand-shapes-b: white;
  --brand-shapes-c: var(--color-gray-100);
}

.shaped-block {
  /* clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%); */
  -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

.shaped-block-wrapper {
  /* filter: drop-shadow(1rem -1rem 0 #f36e21); */
  -webkit-filter: drop-shadow(1rem 1rem 0 var(--color-gray-200));
  filter: drop-shadow(1rem 1rem 0 var(--color-gray-200));
  /* filter: drop-shadow(1rem -1rem 0 #f36e21) drop-shadow(1rem -1rem 0 #f7f7f7); */
  /* filter: drop-shadow(1rem -1rem 0 #333) drop-shadow(1rem -1rem 0 #f36e21) ; */
  /* filter: drop-shadow(-1rem 1rem 0 #f7f7f7) */
}

.button.shaped-block {
  padding: 1.5rem;
}

.light-headline {
  font-weight: 100;
}

.small {
  font-size: 0.7em;
}

.brand-slogan {
  margin-bottom: var(--module-gap);
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .brand-slogan {
    text-align: right;
  }
}

@media only screen and (min-width: 1200px) {
  .section--right {
    text-align: right;
  }

  header+section,
  .sector+section {
    margin-top: 6rem;
  }
}

*+section,
*+.section {
  margin-top: 4.5rem;
}

@media only screen and (min-width: 1200px) {

  *+section,
  *+.section {
    margin-top: 9rem;
  }
}

.product-title {
  font-weight: var(--font-weight-strong);
  text-transform: uppercase;
}

.product-title+p {
  margin-top: 0.6rem;
}

ul.product-labels {
  list-style: none;
  display: flex;
  gap: 0.4rem;
}

ul.product-labels li {
  font-size: 0.7em;
  font-weight: 500;
  padding: 0.2em 0.8em;
  background-color: rgb(209, 209, 209);
  border-radius: 0.4em;
}

ul.product-labels li[data-type="new"] {
  /* background-color: #1873DE; */
  background-color: var(--color-gray-800);
  color: white;
}

ul.product-labels li[data-type="promo"] {
  background-color: #DE9918;
  color: white;
}

ul.product-labels+* {
  margin-top: 0.8rem;
}

h1 {
  font-size: 1.4rem;
}

.simple-gallery-preview img {
  -webkit-clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
  -moz-clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
  -ms-clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
}

.simple-gallery-preview {
  -webkit-filter: drop-shadow(1rem -1rem 0 var(--color-gray-200));
  /* For older Safari/Chrome */
  filter: drop-shadow(1rem -1rem 0 var(--color-gray-200));
  /* Standard rule */
}

.list {
  padding-bottom: 1rem;
  list-style: none;
  display: grid;
  grid-gap: var(--module-gap);
  grid-auto-columns: 70vw;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
}

@media only screen and (min-width: 800px) {

  .list {
    grid-auto-columns: 50vw;
  }

}

.list h3 {
  font-weight: var(--font-weight-medium-light);
}

@media only screen and (min-width: 1200px) {
  .list {
    grid-auto-columns: initial;
    grid-auto-flow: initial;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 800px) {

  th:nth-child(2),
  td:nth-child(2) {
    width: 15rem;
  }

}
