@import url("https://use.typekit.net/gxv3dtl.css");
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for shitty browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

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

html {
  overflow-y: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

body * {
  box-sizing: border-box;
}

/*! Hint.css - v2.7.0 - 2021-10-01
* https://kushagra.dev/lab/hint/
* Copyright (c) 2021 Kushagra Gour */
/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*=hint--] {
  position: relative;
  display: inline-block;
  /**
  * tooltip arrow
  */
  /**
  * tooltip body
  */
}

[class*=hint--]:before, [class*=hint--]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  transition-delay: 0ms;
}

[class*=hint--]:hover:before, [class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}

[class*=hint--]:hover:before, [class*=hint--]:hover:after {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  transition-delay: 100ms;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #383838;
  color: white;
  padding: 8px 10px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  white-space: nowrap;
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before, [aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
  border-top-color: #383838;
}

.hint--top-right:before {
  border-top-color: #383838;
}

.hint--top:before {
  border-top-color: #383838;
}

.hint--bottom-left:before {
  border-bottom-color: #383838;
}

.hint--bottom-right:before {
  border-bottom-color: #383838;
}

.hint--bottom:before {
  border-bottom-color: #383838;
}

.hint--left:before {
  border-left-color: #383838;
}

.hint--right:before {
  border-right-color: #383838;
}

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -11px;
}

.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%;
}

.hint--top:before {
  left: calc(50% - 6px);
}

.hint--top:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hint--top:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--top:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px);
}

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -11px;
}

.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%;
}

.hint--bottom:before {
  left: calc(50% - 6px);
}

.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hint--bottom:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--bottom:hover:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px);
}

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -11px;
  margin-bottom: -6px;
}

.hint--right:after {
  margin-bottom: -14px;
}

.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%;
}

.hint--right:hover:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

.hint--right:hover:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -11px;
  margin-bottom: -6px;
}

.hint--left:after {
  margin-bottom: -14px;
}

.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

.hint--left:hover:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

/**
 * top-left tooltip
 */
.hint--top-left:before {
  margin-bottom: -11px;
}

.hint--top-left:before, .hint--top-left:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-left:before {
  left: calc(50% - 6px);
}

.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.hint--top-left:after {
  margin-left: 12px;
}

.hint--top-left:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--top-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px);
}

/**
 * top-right tooltip
 */
.hint--top-right:before {
  margin-bottom: -11px;
}

.hint--top-right:before, .hint--top-right:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-right:before {
  left: calc(50% - 6px);
}

.hint--top-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.hint--top-right:after {
  margin-left: -12px;
}

.hint--top-right:hover:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--top-right:hover:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
  margin-top: -11px;
}

.hint--bottom-left:before, .hint--bottom-left:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-left:before {
  left: calc(50% - 6px);
}

.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.hint--bottom-left:after {
  margin-left: 12px;
}

.hint--bottom-left:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--bottom-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px);
}

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
  margin-top: -11px;
}

.hint--bottom-right:before, .hint--bottom-right:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-right:before {
  left: calc(50% - 6px);
}

.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.hint--bottom-right:after {
  margin-left: -12px;
}

.hint--bottom-right:hover:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--bottom-right:hover:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word;
}

.hint--small:after {
  width: 80px;
}

.hint--medium:after {
  width: 150px;
}

.hint--large:after {
  width: 300px;
}

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
[class*=hint--] {
  /**
  * tooltip body
  */
}

[class*=hint--]:after {
  text-shadow: 0 -1px 0px black;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #592726;
}

.hint--error.hint--top-left:before {
  border-top-color: #b34e4d;
}

.hint--error.hint--top-right:before {
  border-top-color: #b34e4d;
}

.hint--error.hint--top:before {
  border-top-color: #b34e4d;
}

.hint--error.hint--bottom-left:before {
  border-bottom-color: #b34e4d;
}

.hint--error.hint--bottom-right:before {
  border-bottom-color: #b34e4d;
}

.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d;
}

.hint--error.hint--left:before {
  border-left-color: #b34e4d;
}

.hint--error.hint--right:before {
  border-right-color: #b34e4d;
}

/**
 * Warning
 */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6c5328;
}

.hint--warning.hint--top-left:before {
  border-top-color: #c09854;
}

.hint--warning.hint--top-right:before {
  border-top-color: #c09854;
}

.hint--warning.hint--top:before {
  border-top-color: #c09854;
}

.hint--warning.hint--bottom-left:before {
  border-bottom-color: #c09854;
}

.hint--warning.hint--bottom-right:before {
  border-bottom-color: #c09854;
}

.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854;
}

.hint--warning.hint--left:before {
  border-left-color: #c09854;
}

.hint--warning.hint--right:before {
  border-right-color: #c09854;
}

/**
 * Info
 */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #1a3c4d;
}

.hint--info.hint--top-left:before {
  border-top-color: #3986ac;
}

.hint--info.hint--top-right:before {
  border-top-color: #3986ac;
}

.hint--info.hint--top:before {
  border-top-color: #3986ac;
}

.hint--info.hint--bottom-left:before {
  border-bottom-color: #3986ac;
}

.hint--info.hint--bottom-right:before {
  border-bottom-color: #3986ac;
}

.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac;
}

.hint--info.hint--left:before {
  border-left-color: #3986ac;
}

.hint--info.hint--right:before {
  border-right-color: #3986ac;
}

/**
 * Success
 */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a321a;
}

.hint--success.hint--top-left:before {
  border-top-color: #458746;
}

.hint--success.hint--top-right:before {
  border-top-color: #458746;
}

.hint--success.hint--top:before {
  border-top-color: #458746;
}

.hint--success.hint--bottom-left:before {
  border-bottom-color: #458746;
}

.hint--success.hint--bottom-right:before {
  border-bottom-color: #458746;
}

.hint--success.hint--bottom:before {
  border-bottom-color: #458746;
}

.hint--success.hint--left:before {
  border-left-color: #458746;
}

.hint--success.hint--right:before {
  border-right-color: #458746;
}

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible;
}

.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px);
}

.hint--always.hint--top-left:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px);
}

.hint--always.hint--top-right:before {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--top-right:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px);
}

.hint--always.hint--bottom-left:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px);
}

.hint--always.hint--bottom-right:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--bottom-right:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

.hint--always.hint--left:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px);
}

.hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

.hint--always.hint--right:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px);
}

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
  border-radius: 4px;
}

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  -webkit-transition-duration: 0ms;
  -moz-transition-duration: 0ms;
  transition-duration: 0ms;
}

.hint--bounce:before, .hint--bounce:after {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.hint--no-shadow:before, .hint--no-shadow:after {
  text-shadow: initial;
  box-shadow: initial;
}

.hint--no-arrow:before {
  display: none;
}

.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714286%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

:root {
  font-family: "europa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4B4B4B;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 53rem) {
  :root {
    font-size: 18px;
  }
}

strong {
  font-weight: 700;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 66rem) {
  h1 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

p:not([class]):not(:last-child) {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: underline;
  color: #4B4B4B;
}
a:focus, a:hover {
  text-decoration: none;
}

ul:not([class]) {
  list-style-type: disc;
  list-style-position: outside;
  margin: 1.5rem 0 1.5rem 1.5rem;
}
ul:not([class]) li {
  margin-bottom: 0.25rem;
}

.wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 88rem;
  position: relative;
}
@media (min-width: 53rem) {
  .wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-header {
  position: sticky;
  top: 0;
  background-color: #FFF;
  z-index: 20;
}
.page-header__navigation {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  z-index: 5;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.page-header__logo {
  display: block;
  text-decoration: none;
  width: 4rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 53rem) {
  .page-header__logo {
    width: 5.75rem;
    margin: 0;
    top: 0;
  }
}
.page-header__logo svg {
  display: block;
  max-width: 4rem;
  margin: 0 auto;
  height: auto;
}
.page-header__widgets {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  list-style-type: none;
}
.page-header__widgets a {
  text-decoration: none;
  position: relative;
  display: block;
}
.page-header__widgets .cart-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.75rem;
  background-color: #F49715;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  width: 1.125rem;
  height: 1.125rem;
  align-items: baseline;
  justify-content: center;
  border-radius: 50%;
}
.page-header__widgets svg {
  display: block;
}

#menu-trigger {
  display: none;
}

label[for=menu-trigger] {
  position: absolute;
  cursor: pointer;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
label[for=menu-trigger] svg {
  display: block;
}
@media (min-width: 53rem) {
  label[for=menu-trigger] {
    display: none;
  }
}

#menu-trigger:checked + .menu {
  display: block;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}

.menu {
  display: none;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  background-color: #FFF;
  width: 100%;
  padding: 1rem;
  list-style-type: none;
}
.menu li:not(:last-child) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.menu li.active a {
  color: #F49715;
  font-weight: 700;
}
.menu a {
  color: #000;
  text-decoration: none;
  display: block;
  width: max-content;
  padding: 0.5rem;
}
.menu a:focus, .menu a:hover {
  color: #F49715;
}
@media (min-width: 53rem) {
  .menu {
    display: block;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    padding: 0;
    width: 70%;
    background-color: transparent;
    font-size: 1.125rem;
  }
  .menu li:not(:last-child) {
    border-bottom: none;
  }
  .menu > ul {
    display: flex;
    gap: 10%;
    list-style-type: none;
  }
  .menu li.active {
    border-bottom: 2px solid #F49715;
  }
  .menu li.active a {
    border-bottom: none;
    color: #4B4B4B;
    font-weight: 400;
  }
  .menu a {
    padding: 0 !important;
  }
}

.page-section {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.page-section--account, .page-section--checkout {
  margin-top: 2rem;
}
.page-section--account .paypal-legal-container, .page-section--checkout .paypal-legal-container {
  margin-top: 1em;
}
.page-section--modal {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (min-width: 53rem) {
  .page-section--account, .page-section--checkout {
    margin-top: 7rem;
  }
  .page-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 53rem) {
  .page-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 2rem;
  }
}
.page-section__intro {
  text-align: center;
  margin: 0 auto 4.25rem;
  font-size: 1.25rem;
  max-width: 42rem;
}

.page-footer {
  background: #FAF8F6 url("../assets/images/logo-background.svg") no-repeat fixed center bottom;
  background-size: 100% auto;
  padding-top: 1.25rem;
  list-style-type: none;
}
@media (min-width: 53rem) {
  .page-footer {
    background-attachment: scroll;
    background-position: 55vw 4rem;
    background-size: auto 100%;
  }
}
.page-footer__section {
  padding: 2.5rem 0;
}
@media (min-width: 66rem) {
  .page-footer__section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.page-footer__section:not(:last-child) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.page-footer__legals {
  color: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  list-style-type: none;
}
@media (min-width: 53rem) {
  .page-footer__column-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.contact-options {
  list-style-type: none;
}
.contact-options__item:not(:last-child) {
  margin-bottom: 2rem;
}
.contact-options__item > a {
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}
.contact-options__icon {
  margin-right: 1.5rem;
}
.contact-options__icon img {
  display: block;
}
.contact-options__content .contact-options__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.contact-options__content p {
  font-size: 1.125rem;
}
@media (min-width: 53rem) {
  .contact-options {
    display: flex;
    justify-content: space-around;
  }
}

.socials {
  list-style-type: none;
}
.socials li {
  margin-top: 0;
}

.footer-column:not(:last-child) {
  margin-bottom: 2rem;
}

.footer-links li {
  margin-top: 0;
}
.footer-links a {
  color: #000;
  text-decoration: none;
  list-style-type: none;
}
.footer-links a:focus, .footer-links a:hover {
  text-decoration: underline;
}
.footer-links__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.footer-links__items {
  list-style-type: none;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader.hidden {
  display: none !important;
}
.loader svg {
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 50%;
  animation: 1.5s ease-in-out infinite pulse;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
.newsletter {
  max-width: 700px;
  margin: 0 auto;
}
.newsletter h1 {
  text-align: center;
  margin-bottom: 3rem;
}

.btn, .buy-form__radio label, .buy-form__select {
  display: inline-block;
  background-color: #F49715;
  color: #FFF;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.7em 1.25em 0.8em;
  border-radius: 2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn:focus, .buy-form__radio label:focus, .buy-form__select:focus, .btn:hover, .buy-form__radio label:hover, .buy-form__select:hover {
  background-color: rgba(0, 0, 0, 0.85);
}
.btn--secondary {
  font-size: 0.875rem;
  background-color: #4B4B4B;
}
.btn--secondary:focus, .btn--secondary:hover {
  background-color: #656565;
}
.btn--buy {
  background-color: #F49715;
}

.form-include {
  max-width: 820px;
  margin: 0 auto;
}
.form-include .mandatory {
  font-size: 16px;
  opacity: 0.5;
}

fieldset:not(:last-child) {
  margin-bottom: 3rem;
}

legend {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.legend-hint {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.3);
  margin-left: auto;
}
.legend-hint a {
  color: #F49715;
}

.form-row:not(:last-of-type) {
  margin-bottom: 1rem;
}

@media (min-width: 53rem) {
  .form-row {
    display: flex;
    gap: 1rem;
  }
}

.button-row {
  display: flex;
  justify-content: space-between;
}
.button-row .btn, .button-row .buy-form__radio label, .buy-form__radio .button-row label, .button-row .buy-form__select {
  font-size: 16px;
}
@media (min-width: 53rem) {
  .button-row .btn, .button-row .buy-form__radio label, .buy-form__radio .button-row label, .button-row .buy-form__select {
    font-size: 1.125rem;
  }
}
.button-row .btn--secondary {
  font-size: 16px;
  background-color: #4B4B4B;
}
@media (min-width: 53rem) {
  .button-row .btn--secondary {
    font-size: 1.125rem;
  }
}

.form-control {
  position: relative;
}
.form-control:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 53rem) {
  .form-control {
    flex-grow: 1;
    flex-basis: 47.5%;
    min-width: 47.5%;
  }
  .form-control:not(:last-child) {
    margin-bottom: 0;
  }
}
.form-control label {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}
.form-control label.floating {
  margin-bottom: 0;
}
.form-control label.floating--active {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}
.form-control label.floating--floated {
  position: absolute;
  font-size: 0.8rem;
  top: 0.05rem;
  left: 1.1rem;
  transform: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1rem 2rem 1rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  font-family: inherit;
  font-size: 1rem;
  background-color: transparent;
  background-image: url("../assets/icons/chevron-select.svg");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel] {
  padding: 1rem;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 12px;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus {
  border-color: #4B4B4B;
}

input[type=radio] {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
input[type=radio] + label {
  margin-bottom: 0;
  padding: 1rem 2rem 1rem 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  color: #4B4B4B;
}

input[type=checkbox] {
  display: inline-block;
  margin-right: 0.25rem;
  position: relative;
  top: -1px;
}
input[type=checkbox] + label {
  color: #4B4B4B;
  display: inline;
  margin-bottom: 0;
}

#showPassword {
  display: inline-block;
  margin-bottom: 1rem;
}

.password-input {
  display: none;
}

#showPassword:checked ~ .password-input {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

.modal {
  width: 100%;
  max-width: 58rem;
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
}
.modal__actions {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.modal__actions button {
  padding: 1rem;
  border: none;
  color: #4B4B4B;
  cursor: pointer;
  background-color: #FFF;
}
.modal iframe {
  display: block;
  width: 100%;
  min-height: 45rem;
}

.rating {
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0 0.125em;
}

.toast {
  --toast-bg: #FAF8F6;
  background-color: var(--toast-bg);
  border-left: 3px solid color-mix(in srgb, var(--toast-bg), #000 15%);
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
}
.toast--success {
  --toast-bg: #DAF5BB;
}
.toast--warning {
  --toast-bg: #F8F7B4;
}
.toast--error {
  --toast-bg: #F5CEBB;
}

[class*=hint--]::after {
  font-family: "europa", sans-serif;
}

.toggleInputWrapper .toggleCheckbox {
  display: none;
}
.toggleInputWrapper .toggleContainer {
  margin: 0.5rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  border-radius: 22px;
  background: #f2efed;
  cursor: pointer;
}
.toggleInputWrapper .toggleContainer::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  border-radius: 20px;
  background: black;
  transition: all 0.3s;
}
.toggleInputWrapper .toggleContainer div {
  padding: 4px 25px;
  text-align: center;
  z-index: 1;
}
.toggleInputWrapper .toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
}
.toggleInputWrapper .toggleCheckbox:checked + .toggleContainer div:first-child {
  color: #989898;
  transition: color 0.3s;
}
.toggleInputWrapper .toggleCheckbox:checked + .toggleContainer div:last-child {
  color: white;
  transition: color 0.3s;
}
.toggleInputWrapper .toggleCheckbox + .toggleContainer div:first-child {
  color: white;
  transition: color 0.3s;
}
.toggleInputWrapper .toggleCheckbox + .toggleContainer div:last-child {
  color: #989898;
  transition: color 0.3s;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  background-color: #FAF8F6;
}
@media (min-width: 53rem) {
  .hero {
    flex-direction: row-reverse;
    background-position: 62vw -2rem;
    background-size: auto 100%;
  }
  .hero > .wrapper {
    width: 50%;
  }
}
.hero__content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.hero__content h1 {
  hyphens: auto;
}
@media (min-width: 70rem) {
  .hero__content h1 {
    hyphens: none;
  }
}
.hero__content > p {
  font-size: 1.25rem;
}
@media (min-width: 66rem) {
  .hero__content > p {
    font-size: 1.5rem;
  }
}
@media (min-width: 53rem) {
  .hero__content {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 38rem;
  }
}
@media (min-width: 53rem) {
  .hero--no-image .wrapper {
    width: 100%;
  }
}
.hero--no-image .hero__content {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 53rem) {
  .hero--no-image .hero__content {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    padding-top: 9.25rem;
    padding-bottom: 9.25rem;
  }
}
.hero--single-image .hero__image {
  position: relative;
  top: 150px;
  left: 10vw;
  width: 80%;
}
@media (min-width: 53rem) {
  .hero--single-image .hero__image {
    left: 20vw;
  }
  .hero--single-image .hero__image:after {
    display: none;
  }
}
.hero--single-image .hero__image img {
  margin: 0 auto;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  list-style-type: none;
}
.hero__image {
  position: relative;
  display: block;
}
.hero__image:after {
  content: "";
  display: block;
  width: 100%;
  height: 4rem;
  background: linear-gradient(rgba(250, 248, 246, 0) 0%, #faf8f6 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero__image img {
  display: block;
}
@media (min-width: 53rem) {
  .hero__image {
    width: 50%;
  }
  .hero__image:after {
    height: 100%;
    width: 10rem;
    left: auto;
    right: 0;
    background: linear-gradient(90deg, rgba(250, 248, 246, 0) 0%, #faf8f6 100%);
  }
}

.product-grid {
  margin-top: 4.25rem;
  list-style-type: none;
}
.product-grid__item:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 760px) {
  .product-grid {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
  }
  .product-grid__item:not(:last-child) {
    margin-bottom: 0;
  }
  .product-grid .product {
    position: relative;
    height: 100%;
  }
}
@media (min-width: 66rem) {
  .product-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: 31% 31% 31%;
    gap: 3.5%;
  }
}

.product {
  background-color: #F4F1ED;
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 53rem) {
  .product {
    padding: 2.5rem;
  }
}
.product__image {
  margin: 0 auto 0.5rem;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 30%;
}
.product__image img {
  display: block;
}
@media (min-width: 53rem) {
  .product__image {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 53rem) {
  .product__content {
    margin-top: auto;
  }
}
.product__content__link {
  text-decoration: none;
}
.product__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.product__description {
  font-size: 1rem;
}
.product__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.quote {
  text-align: center;
  padding: 2.5rem;
}
.quote > picture {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.quote figcaption {
  margin-top: 2.5rem;
  color: rgba(75, 75, 75, 0.33);
}
.quote figcaption picture {
  display: block;
  margin: 0 auto 1.25rem;
}
@media (min-width: 66rem) {
  .quote {
    padding: 3rem;
    display: grid;
    text-align: left;
    grid-template-areas: "image content" "image autor";
    column-gap: 2rem;
  }
  .quote > picture {
    grid-area: image;
  }
  .quote blockquote {
    grid-area: content;
    padding-top: 1.5rem;
    padding-left: 5rem;
    font-size: 1.5rem;
  }
  .quote figcaption {
    grid-area: autor;
    padding-left: 5rem;
  }
  .quote figcaption picture {
    margin: 0 0 1.25rem;
  }
  .quote figcaption p {
    font-size: 1rem;
    opacity: 0.7;
  }
}
.quote--alternative {
  background-color: transparent;
  padding: 0;
}
.quote--alternative > picture {
  border-radius: 0;
  margin: 0 auto 1.25rem;
}
@media (min-width: 66rem) {
  .quote--alternative blockquote {
    align-self: end;
  }
  .quote--alternative > picture {
    margin-bottom: 0;
    align-self: center;
  }
}

.benefits {
  list-style-type: none;
  margin: 0 auto;
}
@media (min-width: 53rem) {
  .benefits {
    display: grid;
    grid-template-columns: repeat(2, 47%);
    gap: 3.5%;
  }
}
@media (min-width: 66rem) {
  .benefits {
    display: grid;
    grid-template-columns: repeat(3, 31%);
    gap: 3.5%;
  }
}
.benefits__item {
  background: transparent url("../assets/icons/check-background.svg") no-repeat scroll left center;
  background-size: 4rem;
  padding: 1rem 0 1rem 100px;
}
.benefits__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (min-width: 66rem) {
  .benefits__item:not(:last-child) {
    margin-bottom: 0;
  }
}
.benefits__header {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.benefits__text {
  font-size: 1.125rem;
  hyphens: auto;
}

.customer-reviews {
  background-color: #F4F1ED;
  text-align: center;
  padding: 1.25rem;
}
@media (min-width: 53rem) {
  .customer-reviews {
    padding: 4.25rem;
  }
}
.customer-reviews .reviews {
  max-width: 90%;
  margin: auto;
}
.customer-reviews .reviews__item {
  background-color: #ffffff;
}
@media (min-width: 66rem) {
  .customer-reviews .reviews {
    max-width: 70%;
  }
}
.customer-reviews .reviews__author {
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.customer-reviews .reviews__display {
  padding: 2rem;
}
.customer-reviews blockquote {
  font-size: 1rem;
}
.customer-reviews figcaption {
  font-size: 0.75rem;
  font-weight: 300;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.tns-controls {
  display: flex;
  justify-content: center;
}
.tns-controls button {
  margin: 1rem 0.5rem;
  border: none;
  background-color: transparent;
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.cta {
  background-color: #F4F1ED;
  text-align: center;
  padding: 2.5rem;
}
.cta p {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}
.cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  line-height: 1.2;
}
.cta .btn, .cta .buy-form__radio label, .buy-form__radio .cta label, .cta .buy-form__select {
  margin-top: 2rem;
}
@media (min-width: 53rem) {
  .cta {
    display: flex;
    text-align: left;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .cta__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .cta__text {
    margin-left: 6rem;
    text-wrap: balance;
  }
  .cta p {
    font-size: 1.25rem;
  }
  .cta h3 {
    font-size: 2rem;
  }
}
.cta__postit {
  position: absolute;
  top: 1rem;
  left: 2rem;
  background-color: #F49715;
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
@media (min-width: 53rem) {
  .cta__postit {
    top: 7rem;
    left: 7rem;
    font-size: 1.25rem;
    height: 5.5rem;
    width: 5.5rem;
  }
}

.cta.cta--simple {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
}
.cta.cta--simple p {
  font-size: 1.25rem;
  margin: 0;
}

.product-detail {
  margin-top: 2rem;
  margin-bottom: 6.5rem;
}
.product-detail__picture {
  display: block;
}
.product-detail__picture img {
  display: block;
  margin: auto;
}
.product-detail__background {
  background-color: #F4F1ED;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 66rem) {
  .product-detail__background {
    background-size: 75%;
  }
}
.product-detail__thumbnails {
  margin-top: 2.5rem;
}
.product-detail__thumbnails img {
  display: block;
  max-height: 120px;
  width: auto;
}
.product-detail__content {
  margin-top: 3rem;
}
@media (min-width: 53rem) {
  .product-detail__content {
    margin-left: 5rem;
    margin-top: 0;
  }
}
.product-detail__info {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.product-detail__info > li {
  padding-left: 1.5rem;
  position: relative;
  margin-top: 0;
}
.product-detail__info > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.product-detail__info > li:before {
  content: url("../assets/icons/check.svg");
  margin-right: 0.25rem;
  position: absolute;
  top: 4px;
  left: 0;
}
.product-detail__form {
  font-size: 1.125rem;
  font-weight: 700;
}
.product-detail__form select {
  background-color: #000;
}
@media (min-width: 66rem) {
  .product-detail {
    margin-top: 6.5rem;
  }
  .product-detail .wrapper {
    display: grid;
    grid-template-columns: 50% 45%;
    column-gap: 5%;
  }
  .product-detail__content {
    text-align: left;
  }
  .product-detail__content p {
    font-size: 1rem;
  }
  .product-detail__content p.sw_description {
    font-size: 0.875rem;
  }
  .product-detail__content li {
    font-size: 1rem;
  }
}
.product-detail .product-detail__thumbnails {
  cursor: pointer;
}
.product-detail .js-gallery .tns-outer:first-child {
  position: relative;
}
.product-detail .js-gallery .tns-outer:first-child .tns-controls {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 50%;
  transform: translatey(-50%);
  justify-content: space-between;
}

.buy-form {
  gap: 1rem;
}
.buy-form__input-group {
  border: 1px rgba(112, 112, 112, 0.21) solid;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 53rem) {
  .buy-form__input-group {
    padding: 0.5rem;
  }
}
.buy-form .buy-form__label {
  font-size: 1.125rem;
}
@media (min-width: 53rem) {
  .buy-form .buy-form__label {
    text-align: left;
    width: auto;
    margin-left: 0.5rem;
  }
}
.buy-form__radio label, .buy-form__select {
  padding: 0.5em 1em 0.6em;
  margin: 0.5rem;
  font-size: 16px;
}
@media (min-width: 53rem) {
  .buy-form__radio label, .buy-form__select {
    font-size: 1.125rem;
  }
}
.buy-form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2rem;
  background-image: url("../assets/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}
.buy-form__radio label {
  background-color: #707070;
}
.buy-form__radio input[type=radio]:checked + label {
  background-color: #000;
}
.buy-form__radio input[type=radio] {
  display: none;
}
.buy-form__checkout {
  margin-top: 2rem;
  text-align: right;
}
.buy-form__checkout input[type=number] {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0.8rem 0 0.8rem 1.4rem;
  border-radius: 12px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  color: #4B4B4B;
  max-width: 4rem;
}
.buy-form__checkout__btn {
  vertical-align: baseline;
  display: inline-flex;
  gap: 1em;
}
.buy-form .price {
  font-size: 1.75rem;
  font-weight: 700;
}
.buy-form .price__info {
  font-size: 0.75rem;
  opacity: 0.35;
}
.buy-form .price__addendum {
  font-size: 1.125rem;
}
.buy-form .btn--buy {
  display: inline-flex;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
  gap: 1rem;
}
.buy-form .btn--buy svg path {
  stroke: #FFF;
}
@media (min-width: 66rem) {
  .buy-form__input-group {
    display: flex;
    text-align: center;
    align-items: center;
  }
  .buy-form__input-group .buy-form__label,
.buy-form__input-group > label, .buy-form__input-group span {
    margin-right: auto;
    margin-left: 0.5rem;
  }
}
.buy-form__hint {
  cursor: help;
  position: relative;
}
.buy-form__hint details > summary {
  list-style: none;
  position: absolute;
  right: -1.5rem;
  top: 0.5rem;
}
.buy-form__hint details > summary svg {
  display: block;
  overflow: hidden;
  width: 20px;
  height: 16px;
}
.buy-form__hint article {
  position: absolute;
  font-size: 14px;
  text-align: left;
  background: #000;
  width: 420px;
  z-index: 2;
  padding: 1rem;
  color: #FFF;
  margin-top: 1rem;
}
.buy-form__hint details > summary::-webkit-details-marker {
  display: none;
}
.buy-form__hint:after {
  white-space: normal;
  text-align: left;
  width: 400px;
  line-height: 1.5;
}

.hint {
  background-color: #F2EFED;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  line-height: 1.4;
}
.hint--content-only {
  background-color: transparent;
  padding: 0;
}
.hint__title, .product-detail__content .hint__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.hint__text, .product-detail__content .hint__text {
  font-size: 1rem;
  font-weight: 400;
}
.hint__text a {
  font-size: 14px;
  color: #a5a5a5;
}

.product-benefits {
  margin-top: 2rem;
}

.gallery {
  margin-top: 6rem;
}
.gallery img {
  display: block;
  width: 100%;
}
@media (min-width: 66rem) {
  .gallery {
    display: flex;
  }
}

.accordion details {
  margin: 0.5rem;
}
.accordion__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F2EFED;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: 700;
}
.accordion__summary::-webkit-details-marker, .accordion__summary::marker {
  display: none;
}
.accordion__summary:after {
  content: "";
  background-image: url(../assets/icons/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  background-size: contain;
  width: 1rem;
  height: 2rem;
}
@media (min-width: 66rem) {
  .accordion__summary:after {
    width: 2rem;
  }
}
.accordion details[open] summary:after {
  background-image: url(../assets/icons/minus.svg);
  fill: none;
}
.accordion__summary-text {
  padding: 1rem 0.5rem;
}
.accordion__summary-text h3:not([class]) {
  font-size: 1.75rem;
  margin-top: 3rem;
}
.accordion__summary-text ul:not([class]) {
  list-style-type: disc;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  list-style-position: outside;
}
.accordion__summary-text li:not([class]) {
  font-size: 1rem;
}
@media (min-width: 66rem) {
  .accordion__summary-text {
    margin: auto;
  }
}
@media (min-width: 53rem) {
  .accordion__summary {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 1.25rem;
  }
}

.card {
  margin-bottom: 5rem;
}
.card__headline {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.card .description {
  font-size: 1.25rem;
}
@media (min-width: 1250px) {
  .card {
    display: grid;
    grid-template-columns: 50% 45%;
    margin-bottom: 7rem;
    gap: 5%;
  }
  .card .description {
    text-align: left;
  }
  .card:nth-child(even) picture {
    order: 2;
  }
  .card:nth-child(even) .description {
    order: 1;
  }
}

.concept-section {
  text-align: center;
}
.concept-section h1 {
  margin-bottom: 7rem;
}

@media (min-width: 66rem) {
  .concept-grid {
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    gap: 5%;
  }
}

.concept {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concept picture {
  display: block;
  margin: 4rem auto 0;
  height: auto;
}
.concept h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 66rem) {
  .concept {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 2rem;
    align-items: center;
  }
  .concept picture {
    display: block;
    margin: 0 auto;
    height: auto;
  }
}

.blog {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog .article {
  margin-bottom: 5rem;
}
.blog .article > img {
  display: block;
  width: 100%;
}
.blog .article__details {
  padding: 1rem;
}
@media (min-width: 53rem) {
  .blog .article__details {
    padding: 1.75rem;
  }
}
.blog .article__details .btn, .blog .article__details .buy-form__radio label, .buy-form__radio .blog .article__details label, .blog .article__details .buy-form__select {
  font-size: 1rem;
}
.blog .article__date {
  display: block;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
@media (min-width: 53rem) {
  .blog .article__date {
    margin-bottom: 1.75rem;
  }
}
.blog .article__headline {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.75rem;
  padding-bottom: 0;
}
.blog .article__content {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 66rem) {
  .blog {
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    column-gap: 5%;
  }
}

.blog-article {
  text-align: left;
  font-size: 1.25rem;
  margin-top: 5rem;
}
@media (min-width: 53rem) {
  .blog-article {
    margin-top: 12rem;
  }
}
.blog-article__header {
  text-align: center;
  border-bottom: solid 1px rgba(112, 112, 112, 0.21);
  padding-bottom: 3rem;
}
.blog-article__header time {
  font-size: 0.75rem;
  opacity: 0.5;
}
.blog-article__content {
  max-width: 52rem;
  margin: 3rem auto;
}
.blog-article h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
.blog-article__footer {
  font-size: 0.75rem;
  opacity: 0.5;
  text-align: center;
  border-top: solid 1px rgba(112, 112, 112, 0.21);
  margin-top: 3rem;
  padding-top: 4rem;
}
.blog-article .footnotes {
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}

.login-body {
  background-image: url("../assets/images/bg_login.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
.login-body .login {
  background-color: #FFF;
  border-radius: 10px;
  padding: 1rem;
  margin: 0 1.5rem;
  width: 100%;
}
.login-body .login-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-body .login-buttons a {
  font-size: 0.875rem;
}
.login-body h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: left;
}
.login-body form {
  margin-bottom: 2rem;
}
@media (min-width: 53rem) {
  .login-body h2 {
    font-size: 2.125rem;
  }
  .login-body .login {
    text-align: left;
    width: 42rem;
    padding: 2rem;
    margin: 5rem;
  }
}

@media (min-width: 53rem) {
  .checkout {
    align-items: start;
    position: relative;
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    column-gap: 5%;
  }
  .checkout__form {
    grid-column-start: 1;
    order: 1;
  }
  .checkout__cart {
    grid-column-start: 2;
    order: 2;
    position: sticky;
    top: 8rem;
  }
}
.checkout__addresses {
  margin-bottom: 3rem;
}
@media (min-width: 66rem) {
  .checkout__addresses {
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    column-gap: 5%;
  }
}
.checkout .shopping-bag {
  padding: 1rem;
  background-color: #FAF8F6;
  margin-bottom: 3rem;
}
@media (min-width: 53rem) {
  .checkout .shopping-bag {
    margin-bottom: 0;
  }
}
.checkout .shopping-bag .continue_shopping {
  position: absolute;
  right: 0;
  top: 0;
  margin: 3rem;
}
.checkout .shopping-bag h2 {
  border-bottom: solid 1px rgba(112, 112, 112, 0.21);
  padding-bottom: 1rem;
  margin-bottom: 0;
}
.checkout .shopping-bag__rent {
  text-align: right;
  margin-top: 2rem;
}
.checkout .shopping-bag__rent span {
  background-color: rgba(0, 0, 0, 0.85);
  color: #FFF;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
}
.checkout .shopping-bag__price table {
  margin-top: 3rem;
  width: 100%;
  font-weight: 700;
}
.checkout .shopping-bag__price table td, .checkout .shopping-bag__price table tr {
  border-bottom: none;
  padding: 0.25rem 0;
}
.checkout .shopping-bag__price td {
  color: rgba(75, 75, 75, 0.47);
}
.checkout .shopping-bag__price tr.total td {
  font-size: 1.3rem;
  color: #4B4B4B;
  padding-top: 1.5rem;
}
.checkout .shopping-bag__price td:last-child {
  text-align: right;
}
.checkout .shopping-bag__price .mwst {
  font-size: 0.75rem;
  opacity: 0.4;
  margin-top: 0.5rem;
}
.checkout .shopping-bag__empty-note {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.5rem 0;
}
@media (min-width: 66rem) {
  .checkout .shopping-bag {
    padding: 3rem;
  }
  .checkout .shopping-bag h2 {
    text-align: left;
  }
}
.checkout .place-order {
  margin-top: 2rem;
}

.checkout__form .company, .checkout__form .vat-id {
  display: none;
  margin-bottom: 1rem;
}

.checkout__form .shipping-address {
  display: none;
  padding-top: 1.5rem;
}

.checkout__form #showShipping:checked ~ .shipping-address {
  display: block;
}

.line-item {
  padding: 1.125rem 0;
  border-bottom: solid 1px rgba(112, 112, 112, 0.21);
}
.line-item__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-item__content {
  padding-right: 0.5rem;
}
.line-item__content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.line-item__content p:not([class]):not(:last-child) {
  margin-bottom: 0.5rem;
}
.line-item__content p {
  font-size: 1rem;
}
.line-item__content > .shopping-bag__actions {
  margin-top: 1rem;
}
.line-item__item-price {
  display: flex;
  gap: 0.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
}
.line-item__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.line-item__actions input[type=number] {
  background-color: transparent;
  max-width: 2.5rem;
  text-align: center;
}
.line-item__actions button {
  padding: 0;
  border: none;
  background-color: transparent;
  color: rgba(75, 75, 75, 0.47);
  cursor: pointer;
}
.line-item__actions button:hover, .line-item__actions button:focus {
  color: #4B4B4B;
}
.line-item__actions button svg {
  display: block;
  height: 1rem;
  width: auto;
}
@media (min-width: 66rem) {
  .line-item {
    display: grid;
    grid-template-columns: 20% 50% 25%;
    column-gap: 2.5%;
    align-items: self-start;
  }
  .line-item__item-price {
    justify-content: flex-end;
    margin-top: 0;
  }
}

@media (min-width: 53rem) {
  .cart-summary {
    display: none;
  }
}
.cart-summary__title {
  font-size: 1.5rem;
  font-weight: 700;
}
.cart-summary__items {
  margin: 1.5rem 0;
  list-style-type: none;
}
.cart-summary__items li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cart-summary__items li:not(:last-child) {
  margin-bottom: 0.75rem;
}
.cart-summary__item-details p:not([class]):not(:last-child) {
  margin-bottom: 0;
}
.cart-summary__item-title, .cart-summary__item-price {
  font-weight: 700;
  margin-bottom: 0;
}
.cart-summary__table {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}
.cart-summary__table td {
  padding-left: 0;
  padding-right: 0;
}
.cart-summary__table td:last-child {
  text-align: right;
}
.cart-summary__table tr:last-child td {
  font-weight: 700;
}

.list-container h2 {
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.list-container button {
  margin-top: 2.5rem;
}

.rent-table {
  margin-top: 3rem;
}
.rent-table h2 {
  font-size: 1.25rem;
}

table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table tr {
  border-bottom: solid 1px rgba(112, 112, 112, 0.21);
  padding: 0.35rem;
}

table th,
table td {
  padding: 0.625rem;
  text-align: left;
}

/*
@media (max-width: $firstBP) {
    table {
        border: 0;

    }


    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1rem;
        margin: 1rem;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1rem;
    }


    table tr {
        border-bottom: solid 1px rgba(#707070, .21);
        display: block;
        margin-bottom: .625rem;
    }

    table td {
        border-bottom: solid 1px rgba(#707070, .21);
        display: block;
        text-align: right;
    }

    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;

    }

    table td:last-child {
        border-bottom: 0;
    }
}
*/
.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.marquee:before, .marquee:after {
  content: "";
  display: block;
  height: 100%;
  width: 20px;
  position: absolute;
  z-index: 2;
}
.marquee:before {
  top: 0;
  left: 0;
  background: linear-gradient(90deg, black, rgba(0, 0, 0, 0));
}
.marquee:after {
  top: 0;
  right: 0;
  background: linear-gradient(270deg, black, rgba(0, 0, 0, 0));
}
.marquee__content {
  display: flex;
  gap: 2rem;
  animation: marquee 15s linear infinite;
}
.marquee__content:hover {
  animation-play-state: paused;
}
@media (min-width: 53rem) {
  .marquee:before, .marquee:after {
    display: none;
  }
  .marquee__content {
    animation: none;
    gap: 0;
    justify-content: space-between;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
.socials {
  display: flex;
  gap: 2.125rem;
}
.page-footer .socials {
  margin-bottom: 2.215rem;
}

.newsletter-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.newsletter-form label[for=newsletter-name],
.newsletter-form input[name=newsletter_name] {
  display: none !important;
}
.newsletter-form__input {
  position: relative;
  margin-top: 1rem;
  display: flex;
}
.newsletter-form__input label {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  cursor: pointer;
}
.newsletter-form__input input {
  -webkit-appearance: none;
  appearance: none;
  font-size: 0.75rem;
  background-color: transparent;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  border-left: 1px solid rgba(112, 112, 112, 0.2);
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  border-right: none;
  border-radius: 2rem 0 0 2rem;
  padding: 0.75em 1.5em;
  flex-shrink: 1;
}
.newsletter-form__input input:focus + label,
.newsletter-form__input input:valid + label {
  display: none;
}
.newsletter-form__input .btn, .newsletter-form__input .buy-form__radio label, .buy-form__radio .newsletter-form__input label, .newsletter-form__input .buy-form__select {
  font-size: 1rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.order-success__intro {
  text-align: center;
  margin-bottom: 3.5rem;
}
.order-success__intro h1 {
  margin-bottom: 2rem;
}
.order-success__intro p {
  font-size: 1.25rem;
}
@media (min-width: 53rem) {
  .order-success {
    grid-column: 1/-1;
  }
  .order-success__intro {
    margin-bottom: 6rem;
  }
  .order-success__intro p {
    font-size: 1.5rem;
  }
}

.step-list {
  list-style-type: none;
}
.step-list__image {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
.step-list__image:before {
  content: "";
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: rgba(239, 236, 233, 0.7);
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-65%);
  z-index: -1;
}
.step-list > li {
  margin-bottom: 3rem;
  text-align: center;
}
.step-list > li:last-child {
  margin-bottom: 0;
}
.step-list__title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 53rem) {
  .step-list {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    column-gap: 3.5%;
  }
  .step-list__image {
    margin-bottom: 0;
  }
  .step-list__title {
    margin-top: 3rem;
  }
  .step-list > li {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-end;
  }
}

.login-widget {
  background-color: #FAF8F6;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 53rem) {
  .login-widget span {
    margin-bottom: 0;
  }
}

.register {
  max-width: 45rem;
  margin: auto;
}

.toast {
  --toast-bg: #FAF8F6;
  background-color: var(--toast-bg);
  border-left: 3px solid color-mix(in srgb, var(--toast-bg), #000 15%);
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
}
.toast--success {
  --toast-bg: #DAF5BB;
}
.toast--warning {
  --toast-bg: #F8F7B4;
}
.toast--error {
  --toast-bg: #F5CEBB;
}

.acdc_placholder, .ratepay_placeholder {
  margin-left: 5%;
  margin-bottom: 1rem;
}
.acdc_placholder .iframe_input, .ratepay_placeholder .iframe_input {
  height: 3.8175rem;
  padding: 1rem;
  border: 1px rgba(112, 112, 112, 0.21) solid;
  border-radius: 12px;
}
.acdc_placholder .is-invalid, .ratepay_placeholder .is-invalid {
  border-color: red;
}

.customer .list-container {
  margin-bottom: 3rem;
}
@media (min-width: 53rem) {
  .customer {
    display: grid;
    grid-template-columns: 20% 70%;
    column-gap: 10%;
  }
}
.customer .list-container {
  display: none;
}
@media (min-width: 53rem) {
  .customer .list-container {
    display: block;
  }
}
.customer .customer-mobile-nav {
  margin-bottom: 3rem;
}
@media (min-width: 53rem) {
  .customer .customer-mobile-nav {
    display: none;
  }
}
.customer .customer-mobile-nav summary {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
  color: #4B4B4B;
}
.customer .customer-mobile-nav summary::-webkit-details-marker, .customer .customer-mobile-nav summary::marker {
  display: none !important;
  content: none;
}
.customer .customer-mobile-nav summary span:after {
  display: inline-block;
  content: url("../assets/icons/chevrons-down.svg");
  margin-left: 0.125rem;
}
.customer .customer-mobile-nav[open] summary span:after {
  content: url("../assets/icons/chevrons-up.svg");
}
.customer .customer-mobile-nav ul {
  list-style-type: none;
  margin: 0 0 1.5rem;
}
.customer .customer-mobile-nav ul li {
  padding: 0.25rem;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}
.customer .customer-mobile-nav ul li:last-child {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.customer .customer-mobile-nav ul a {
  text-decoration: none;
}
.customer .customer-mobile-nav ul a:focus, .customer .customer-mobile-nav ul a:hover {
  text-decoration: underline;
}
.customer .customer-mobile-nav ul li.active a {
  font-weight: 700;
}
.customer .customer-mobile-nav__content {
  padding-top: 1.5rem;
}
.customer .customer-mobile-nav__content .btn, .customer .customer-mobile-nav__content .buy-form__radio label, .buy-form__radio .customer .customer-mobile-nav__content label, .customer .customer-mobile-nav__content .buy-form__select {
  font-size: 0.875rem;
}
.customer__navigation {
  list-style-type: none;
  margin: 0;
  font-size: 1.25rem;
}
.customer__navigation a {
  text-decoration: none;
}
.customer__navigation a:focus, .customer__navigation a:hover {
  text-decoration: underline;
}
.customer__navigation li {
  padding: 1rem;
}
.customer__navigation li.active a {
  font-weight: 700;
}
.customer__navigation li:not(:last-child) {
  border-bottom: solid 1px rgba(112, 112, 112, 0.21);
}

@media (min-width: 53rem) {
  .page-section--modal .customer__content-panel {
    grid-column: 1/-1;
  }
}

.content-panel__title {
  display: none;
}
@media (min-width: 53rem) {
  .content-panel__title {
    display: block;
    margin-bottom: 3rem;
  }
}
.content-panel__section {
  margin-top: 2rem;
}
.content-panel__section:not(:last-child) {
  margin-bottom: 2rem;
}
.content-panel .content-panel__section-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

@media (min-width: 53rem) {
  .edit-panels {
    display: grid;
    grid-template-columns: 47% 47%;
    column-gap: 6%;
    row-gap: 3rem;
  }
}

.edit-panel {
  margin-bottom: 3rem;
}
.page-section .edit-panel__title, .edit-panel__title {
  font-size: 1rem;
  border-bottom: 1px solid rgba(75, 75, 75, 0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.edit-panel__form:not(:last-of-type) {
  margin-bottom: 1rem;
}
.edit-panel__form summary {
  list-style: none;
  text-decoration: underline;
  cursor: pointer;
}
.edit-panel__form summary:focus, .edit-panel__form summary:hover {
  text-decoration: none;
}
.edit-panel__form summary::-webkit-details-marker, .edit-panel__form summary::marker {
  display: none;
}
.edit-panel__form form {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.edit-panel__actions {
  font-size: 0.875rem;
}
.edit-panel__actions button {
  background: transparent;
  padding: 0;
  font: inherit;
  border: none;
  color: #4B4B4B;
  text-decoration: underline;
  cursor: pointer;
}
.edit-panel__actions button:focus, .edit-panel__actions button:hover {
  text-decoration: none;
}

.order-accordion p {
  font-size: 1rem;
  margin-top: 1rem;
}
@media (min-width: 53rem) {
  .order-accordion p {
    margin-top: 0rem;
  }
}
.order-accordion h4 {
  font-size: 1.25rem;
  font-weight: 700;
}
.order-accordion__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
}
.order-accordion__summary:after {
  content: "";
  background-image: url(../assets/icons/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  background-size: contain;
  width: 1rem;
  height: 1rem;
}
@media (min-width: 53rem) {
  .order-accordion__content {
    display: flex;
    justify-content: space-between;
    margin: 0 8rem 0 2rem;
  }
}
.order-accordion details[open] summary:after {
  background-image: url(../assets/icons/minus.svg);
  fill: none;
}

.order-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}
.order-details__description {
  margin-left: 1rem;
  width: 100%;
}
@media (min-width: 53rem) {
  .order-details {
    flex-direction: row;
    margin: 0 8rem 0 0;
  }
  .order-details__image {
    margin-left: 2rem;
  }
  .order-details__description {
    margin-left: 2rem;
  }
  .order-details__description h3 {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .order-details__description .text {
    margin-bottom: 0.5rem;
  }
}

.order {
  border: solid 1px rgba(112, 112, 112, 0.21);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  max-width: 52rem;
}
.order:not(:last-child) {
  margin-bottom: 1.5rem;
}
.order__content {
  padding-top: 2rem;
}
.order__details {
  margin-bottom: 1.5rem;
}
.order__details > div:not(:last-child) {
  margin-bottom: 1rem;
}
.order__details dt {
  font-weight: 700;
}
@media (min-width: 53rem) {
  .order__details {
    display: grid;
    grid-template-columns: 47% 47%;
    column-gap: 6%;
    row-gap: 0.5rem;
  }
  .order__details > div {
    display: flex;
    gap: 0.5rem;
  }
  .order__details > div:not(:last-child) {
    margin-bottom: 0;
  }
}
.order .line-item {
  border-top: solid 1px rgba(112, 112, 112, 0.21);
  border-bottom: none;
}
.widerruf-button{display:inline-block;padding:.35em .8em;border:1.5px solid currentColor;border-radius:4px;font-weight:600}
