/*!*******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*******************************************************************************************************************************************************/
:root {
  /**
   * Base color palette
   */
  --color-body: #F5F4F2;
  --color-white: #fff;
  --color-default: #2c2c2c;
  --color-primary: #E2AE3C;
  --color-primary-light: #407ec5;
  --color-primary-dark: #152a45;
  --color-secondary: #4a6b7c;
  --color-dark: #1C1C19;
  --color-medium-dark: #737373;
  --color-medium: #d8d8d8;
  --color-medium-light: #e0e0e0;
  --color-light: #EBE9E6;
  --color-inactive: #8a8a8a;
  --color-error: #a52a2a;
  --color-success: #2e6b3e;
  /**
   * Element decoration colors
   */
  --color-border: #e0e0e0;
  --color-border-input: var(--color-border);
  --color-border-input-focus: var(--color-border);
  --color-shadow: rgba(22, 24, 25, 0.05);
  --color-overlay-dark: rgba(22, 24, 25, 0.6);
  --color-overlay-light: rgba(255, 255, 255, 0.65);
  /**
   * WooCommerce related colors
   */
  --color-order-pending: #FFA500;
  --color-order-processing: #0581BF;
  --color-order-on-hold: #808080;
  --color-order-shipped: #DF641F;
  --color-order-completed: #11B417;
  --color-order-cancelled: #FF0000;
  --color-order-refunded: #008000;
  --color-order-failed: #FF0000;
  --color-notice-message: var(--color-light);
  --color-notice-info: var(--color-primary-light);
  --color-notice-error: var(--color-error);
  /**
   * Spacing 
   */
  --spacing-3xs: 0.25rem;
  --spacing-2xs: 0.5rem;
  --spacing-xs: 0.75rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;
  --spacing-4xl: 8.75rem;
  --spacing-block: var(--spacing-4xl);
  /**
   * Typography
   */
  --font-primary: sans-serif;
  --font-secondary: sans-serif;
  /**
   * Borders
   */
  --border-radius-xl: 3rem;
  --border-radius-lg: 2rem;
  --border-radius-md: 1.5rem;
  --border-radius-sm: 1rem;
  --border-radius-xs: 0.75rem;
  --border-radius-2xs: 0.5rem;
  --border-radius-3xs: 0.25rem;
  --border-radius-button: 0.5rem;
  --border-radius-quantity: 2.5rem;
  /**
   * Misc.
   */
  --checkbox-size: 1.25rem;
  --background-blur: 2px;
  --shadow-box: 0px 5px 20px 0px rgba(28, 28, 25, 0.02);
  --blur: 5px;
  --header-height: 6rem;
  --site-width: 90rem;
  --quantity-width: 9.625rem;
  --gutters: 1.5rem;
  --gutters-sm: 1rem;
  --gutters-lg: 2rem;
  /**
   * Cookie consent
   */
  --cc-bg: var(--color-bg-white);
  --cc-width: 59.5rem;
  --cc-padding-y: 2rem;
  --cc-padding-x: 3rem;
  --cc-spacing: 1.5rem;
  --cc-radius: var(--border-radius-sm);
  --cc-switch-offset: 1rem;
  --cc-switch-radius: 1.5rem;
  --cc-switch-dot-size: 1.5rem;
  --cc-switch-dot-offset: 0.375rem;
  --cc-switch-bg: var(--color-bg-light);
  --cc-switch-dot-bg: var(--color-fg-border);
  --cc-switch-dot-active-bg: var(--color-fg-white);
  --cc-overlay: rgba(22, 24, 25, 0.3);
  --cc-border: var(--color-fg-border);
  --cc-paragraph-spacing: 0.5rem;
  --cc-button-spacing: 1rem;
  --cc-switch-w: 4.625rem;
  --cc-switch-h: 2.25rem;
  --cc-sm-height: 64.125%;
  --cc-sm-footer-height: 16rem;
}

@media (max-width: 1099px) {
  :root {
    --header-height: 6rem;
    --spacing-4xl: 4.375rem;
    --cc-spacing: 1rem;
    --cc-padding-y: 1.5rem;
    --cc-padding-x: 1.5rem;
    --cc-button-spacing: 0.5rem;
  }
}
/* ----- General ----- */
html {
  height: 100%;
  font-kerning: auto;
}

.is-front {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.site-content {
  flex: 1;
}

/* ----- Bootstrap overrides ----- */
.container {
  max-width: calc(var(--site-width) + var(--gutters) * 2);
  padding-inline: var(--gutters);
}

.row {
  --row-gutters: var(--gutters);
  margin-inline: calc(0px - var(--row-gutters) / 2);
}

.row.gutters-sm {
  --row-gutters: var(--gutters-sm);
}

.row.gutters-md {
  --row-gutters: var(--gutters);
}

.row.gutters-lg {
  --row-gutters: var(--gutters-lg);
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto, .col-lg-one-fifth {
  padding-inline: calc(var(--row-gutters) / 2);
}

@media (min-width: 1100px) {
  .row.gutters-lg-sm {
    --row-gutters: var(--gutters-sm);
  }
}
/* ----- Full width blocks ----- */
.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ----- Remove margins from last elements ----- */
.no-last-mb > *:last-child {
  margin-bottom: 0 !important;
}

.no-last-mr > *:last-child {
  margin-right: 0 !important;
}

/* ----- General ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: calc(1rem - 2px) calc(2rem - 2px);
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.625rem;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--border-radius-button);
  transition: all 0.2s;
  cursor: pointer;
}

.btn[disabled] {
  cursor: not-allowed;
}

/* ----- UI buttons ----- */
.btn-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  color: var(--color-white);
  background: var(--color-dark);
  border-radius: var(--border-radius-2xs);
}

.btn-ui--inactive {
  color: var(--color-dark);
  background: transparent;
}

.btn-ui--sm {
  width: 2.125rem;
  height: 2.125rem;
}

/* ----- Styles ----- */
.btn--primary {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--primary-border {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (hover: hover) {
  .btn--primary:hover,
.btn--primary-border:hover {
    color: var(--color-white);
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
  }
}
/* General */
html {
  font-size: 16px;
}

.editor-styles-wrapper,
.is-front {
  font-family: var(--font-primary);
  color: var(--color-default);
}

@media (max-width: 1599px) and (min-width: 1100px) {
  html {
    font-size: 14px;
  }
}
a {
  color: var(--color-default);
}

/* Headings */
.h1,
.editor > h1 {
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 4.5rem;
}

.editor > h1 {
  margin-block: 1.875rem;
}

.h2,
.editor > h2 {
  font-weight: 500;
  font-size: 4rem;
  line-height: 4.813rem;
}

.editor > h2 {
  margin-block: 1.5rem;
}

.h3,
.editor > h3 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.625rem;
}

.editor > h3 {
  margin-block: 1.5rem;
}

.h4,
.editor > h4,
.cm-header .title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.375rem;
}

.editor > h4 {
  margin-block: 1.5rem;
}

.h5,
.editor > h5 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.813rem;
}

.editor > h5,
.editor > h6 {
  margin-block: 1rem;
}

@media (max-width: 1099px) {
  .h3,
.editor > h3,
.h4,
.editor > h4,
.cm-header .title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .h5,
.editor > h5 {
    font-size: 1.125rem;
    line-height: 1.313rem;
  }

  .h1,
.editor > h1,
.h2,
.editor > h2,
.h-md-2 {
    font-size: 2rem;
    line-height: 2.375rem;
  }

  .editor > h1,
.editor > h2,
.editor > h3,
.editor > h4,
.editor > h5,
.editor > h6 {
    margin-block: 1rem;
  }
}
/* Font sizes */
.editor-styles-wrapper,
.is-front,
.fs-md,
.hs-medium-font-size,
.cm-header p,
.cm-list-description p,
.cm-list-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fs-sm,
.has-small-font-size {
  font-size: 1rem;
  line-height: 1.375rem;
}

.fs-xs {
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.fs-lg,
.has-large-font-size {
  font-size: 1.313rem;
  line-height: 1.75rem;
}

.fs-xl,
.has-x-large-font-size {
  font-size: 1.313rem;
  line-height: 2rem;
}

@media (max-width: 1099px) {
  .fs-md-sm {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }

  .editor-styles-wrapper,
.is-front,
.fs-md,
.hs-medium-font-size,
.fs-md-md,
.cm-header p,
.cm-list-description p,
.cm-list-label {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .fs-md-lg {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .fs-md-xl {
    font-size: 1.313rem;
    line-height: 1.563rem;
  }
}
sub,
sup {
  font-size: 60%;
}

/* ----- Positioning ----- */
.relative {
  position: relative;
}

.on-top {
  position: relative;
  z-index: 1;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.abs-c {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.abs-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----- Flexbox ----- */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-fit {
  flex: 1;
  min-width: 0;
  min-height: 0;
}

.flex-none {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .flex-md-wrap {
    flex-wrap: wrap;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap;
  }

  .flex-md-row {
    flex-direction: row;
  }

  .flex-md-col {
    flex-direction: column;
  }

  .flex-md-fit {
    flex: 1;
    min-width: 0;
    min-height: 0;
  }
}
@media (min-width: 1100px) {
  .flex-lg-wrap {
    flex-wrap: wrap;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }

  .flex-lg-row {
    flex-direction: row;
  }

  .flex-lg-col {
    flex-direction: column;
  }
}
/* ----- Backgrounds ----- */
.bg-cover {
  background-size: cover;
  background-position: center;
}

.bgc-primary {
  background-color: var(--color-primary);
}

.bgc-primary-dark {
  background-color: var(--color-primary-dark);
}

.bgc-secondary {
  background-color: var(--color-secondary);
}

.bgc-white {
  background-color: var(--color-white);
}

.bgc-light {
  background-color: var(--color-light);
}

.bgc-medium {
  background-color: var(--color-medium);
}

.bgc-dark {
  background-color: var(--color-dark);
}

/* ----- Background picture ----- */
.background-picture {
  position: absolute;
  top: 0;
  left: 0;
}

.background-picture,
.background-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Aspect ratio ----- */
.ar {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}

/* ----- Layout ----- */
.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.gap-3xs {
  gap: var(--spacing-3xs);
}

.gap-2xs {
  gap: var(--spacing-2xs);
}

.gap-xs {
  gap: var(--spacing-xs);
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.gap-xl {
  gap: var(--spacing-xl);
}

.gap-2xl {
  gap: var(--spacing-2xl);
}

.gap-y-2xs {
  row-gap: var(--spacing-2xs);
}

.gap-y-xs {
  row-gap: var(--spacing-xs);
}

.gap-y-sm {
  row-gap: var(--spacing-sm);
}

.gap-y-md {
  row-gap: var(--spacing-md);
}

.gap-x-md {
  column-gap: var(--spacing-md);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-3xs {
  margin-bottom: var(--spacing-3xs);
}

.mb-2xs {
  margin-bottom: var(--spacing-2xs);
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mb-2xl {
  margin-bottom: var(--spacing-2xl);
}

.mb-3xl {
  margin-bottom: var(--spacing-3xl);
}

.mb-4xl {
  margin-bottom: var(--spacing-4xl);
}

.mt-auto {
  margin-top: auto;
}

.mx-auto {
  margin-inline: auto;
}

.my-block {
  margin-block: var(--spacing-block);
}

.p-sm {
  padding: calc(var(--spacing-sm) - var(--border-inset, 0px));
}

.p-md {
  padding: calc(var(--spacing-md) - var(--border-inset, 0px));
}

.p-lg {
  padding: calc(var(--spacing-lg) - var(--border-inset, 0px));
}

.p-xl {
  padding: calc(var(--spacing-xl) - var(--border-inset, 0px));
}

.p-2xl {
  padding: calc(var(--spacing-2xl) - var(--border-inset, 0px));
}

.p-3xl {
  padding: calc(var(--spacing-3xl) - var(--border-inset, 0px));
}

.pt-md {
  padding-top: calc(var(--spacing-md) - var(--border-inset, 0px));
}

.pt-lg {
  padding-top: calc(var(--spacing-lg) - var(--border-inset, 0px));
}

.pt-xl {
  padding-top: calc(var(--spacing-xl) - var(--border-inset, 0px));
}

.py-2xs {
  padding-block: calc(var(--spacing-2xs) - var(--border-inset, 0px));
}

.py-xs {
  padding-block: calc(var(--spacing-xs) - var(--border-inset, 0px));
}

.py-sm {
  padding-block: calc(var(--spacing-sm) - var(--border-inset, 0px));
}

.py-md {
  padding-block: calc(var(--spacing-md) - var(--border-inset, 0px));
}

.py-lg {
  padding-block: calc(var(--spacing-lg) - var(--border-inset, 0px));
}

.py-xl {
  padding-block: calc(var(--spacing-xl) - var(--border-inset, 0px));
}

.py-2xl {
  padding-block: calc(var(--spacing-2xl) - var(--border-inset, 0px));
}

.py-3xl {
  padding-block: calc(var(--spacing-3xl) - var(--border-inset, 0px));
}

.py-4xl {
  padding-block: calc(var(--spacing-4xl) - var(--border-inset, 0px));
}

.py-block {
  padding-block: var(--spacing-block);
}

@media (min-width: 768px) {
  .w-md-auto {
    width: auto;
  }

  .mb-md-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) {
  .w-lg-auto {
    width: auto;
  }

  .gap-lg-0 {
    gap: 0;
  }

  .gap-lg-2xs {
    gap: var(--spacing-2xs);
  }

  .gap-lg-xs {
    gap: var(--spacing-xs);
  }

  .gap-lg-sm {
    gap: var(--spacing-sm);
  }

  .gap-lg-md {
    gap: var(--spacing-md);
  }

  .gap-lg-lg {
    gap: var(--spacing-lg);
  }

  .gap-lg-xl {
    gap: var(--spacing-xl);
  }

  .gap-lg-2xl {
    gap: var(--spacing-2xl);
  }

  .gap-y-lg-0 {
    row-gap: 0;
  }

  .gap-y-lg-md {
    row-gap: var(--spacing-md);
  }

  .gap-x-lg-md {
    row-gap: var(--spacing-md);
  }

  .mb-lg-0 {
    margin-bottom: 0;
  }

  .mb-lg-3xs {
    margin-bottom: var(--spacing-3xs);
  }

  .mb-lg-2xs {
    margin-bottom: var(--spacing-2xs);
  }

  .mb-lg-xs {
    margin-bottom: var(--spacing-xs);
  }

  .mb-lg-sm {
    margin-bottom: var(--spacing-sm);
  }

  .mb-lg-md {
    margin-bottom: var(--spacing-md);
  }

  .mb-lg-lg {
    margin-bottom: var(--spacing-lg);
  }

  .mb-lg-xl {
    margin-bottom: var(--spacing-xl);
  }

  .mb-lg-2xl {
    margin-bottom: var(--spacing-2xl);
  }

  .mb-lg-3xl {
    margin-bottom: var(--spacing-3xl);
  }

  .mb-lg-4xl {
    margin-bottom: var(--spacing-4xl);
  }

  .p-lg-0 {
    padding: 0;
  }

  .p-lg-2xs {
    padding: calc(var(--spacing-2xs) - var(--border-inset, 0px));
  }

  .p-lg-xs {
    padding: calc(var(--spacing-xs) - var(--border-inset, 0px));
  }

  .p-lg-sm {
    padding: calc(var(--spacing-sm) - var(--border-inset, 0px));
  }

  .p-lg-md {
    padding: calc(var(--spacing-md) - var(--border-inset, 0px));
  }

  .p-lg-lg {
    padding: calc(var(--spacing-lg) - var(--border-inset, 0px));
  }

  .p-lg-xl {
    padding: calc(var(--spacing-xl) - var(--border-inset, 0px));
  }

  .p-lg-2xl {
    padding: calc(var(--spacing-2xl) - var(--border-inset, 0px));
  }

  .p-lg-2xl {
    padding: calc(var(--spacing-2xl) - var(--border-inset, 0px));
  }

  .p-lg-3xl {
    padding: calc(var(--spacing-3xl) - var(--border-inset, 0px));
  }

  .py-lg-2xs {
    padding-block: calc(var(--spacing-2xs) - var(--border-inset, 0px));
  }

  .py-lg-xs {
    padding-block: calc(var(--spacing-xs) - var(--border-inset, 0px));
  }

  .py-lg-sm {
    padding-block: calc(var(--spacing-sm) - var(--border-inset, 0px));
  }

  .py-lg-md {
    padding-block: calc(var(--spacing-md) - var(--border-inset, 0px));
  }

  .py-lg-lg {
    padding-block: calc(var(--spacing-lg) - var(--border-inset, 0px));
  }

  .py-lg-xl {
    padding-block: calc(var(--spacing-xl) - var(--border-inset, 0px));
  }

  .py-lg-2xl {
    padding-block: calc(var(--spacing-2xl) - var(--border-inset, 0px));
  }

  .py-lg-3xl {
    padding-block: calc(var(--spacing-3xl) - var(--border-inset, 0px));
  }

  .py-lg-4xl {
    padding-block: calc(var(--spacing-4xl) - var(--border-inset, 0px));
  }

  .pt-lg-lg {
    padding-top: calc(var(--spacing-lg) - var(--border-inset, 0px));
  }
}
@media (min-width: 1100px) and (max-width: 1299px) {
  .gap-md-sm {
    gap: var(--spacing-sm);
  }

  .gap-md-md {
    gap: var(--spacing-md);
  }

  .gap-md-lg {
    gap: var(--spacing-lg);
  }

  .gap-md-xl {
    gap: var(--spacing-xl);
  }
}
/* ----- Visual ----- */
.round {
  border-radius: 50%;
}

.rounded-xl {
  border-radius: var(--border-radius-xl);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-md {
  border-radius: var(--border-radius-md);
}

.rounded-sm {
  border-radius: var(--border-radius-sm);
}

.rounded-xs {
  border-radius: var(--border-radius-xs);
}

.rounded-2xs {
  border-radius: var(--border-radius-2xs);
}

.rounded-3xs {
  border-radius: var(--border-radius-3xs);
}

.shadow {
  box-shadow: var(--shadow-box);
}

.oh {
  overflow: hidden;
}

.border {
  border: 1px solid var(--color-border);
  --border-inset: 1px;
}

.op-70 {
  opacity: 0.7;
}

@media (min-width: 1100px) {
  .rounded-lg-xl {
    border-radius: var(--border-radius-xl);
  }

  .rounded-lg-lg {
    border-radius: var(--border-radius-lg);
  }

  .rounded-lg-md {
    border-radius: var(--border-radius-md);
  }

  .rounded-lg-sm {
    border-radius: var(--border-radius-sm);
  }

  .rounded-lg-xs {
    border-radius: var(--border-radius-xs);
  }

  .rounded-lg-2xs {
    border-radius: var(--border-radius-2xs);
  }

  .rounded-lg-3xs {
    border-radius: var(--border-radius-3xs);
  }
}
/* ----- Images ----- */
.img-cover,
.img-contain {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

/* ----- Text ----- */
.ta-center,
.text-center,
.aligncenter,
.has-text-align-center {
  text-align: center;
}

.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

.fw-light {
  font-weight: 300;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.tt-upp {
  text-transform: uppercase;
}

.tt-cap {
  text-transform: capitalize;
}

.c-white {
  color: var(--color-white);
}

.c-default {
  color: var(--color-default);
}

.c-primary {
  color: var(--color-primary);
}

.c-primary-dark {
  color: var(--color-primary-dark);
}

.c-secondary {
  color: var(--color-secondary);
}

.c-light {
  color: var(--color-light);
}

.c-medium {
  color: var(--color-medium);
}

.c-dark {
  color: var(--color-dark);
}

.c-inactive {
  color: var(--color-inactive);
}

@media (min-width: 768px) {
  .ta-md-left {
    text-align: left;
  }

  .ta-md-center {
    text-align: center;
  }
}
/* ----- Misc. ----- */
.screen-reader-text,
.screen-reader-response,
.sbi-screenreader {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
  word-wrap: normal;
  color: inherit;
  background: none;
  pointer-events: none;
}

.transition-all {
  transition: all 0.2s;
}

.ic svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ic {
  --ic-h: 1em;
  --ic-ratio: 1;
  --ic-color: currentColor;
  display: block;
  height: var(--ic-h);
  aspect-ratio: var(--ic-ratio);
  color: var(--ic-color);
  line-height: 0;
}

.ic-chevron-down {
  --ic-h: 0.5rem;
}

.ic-arrow-right {
  --ic-h: 0.875rem;
}

.ic-12 {
  --ic-h: 0.75rem;
}

.ic-14 {
  --ic-h: 0.875rem;
}

.ic-16 {
  --ic-h: 1rem;
}

.ic-18 {
  --ic-h: 1.125rem;
}

/* ----- General ----- */
.editor > p:last-child,
.editor > ul:last-child,
.editor > ol:last-child {
  margin-bottom: 0 !important;
}

.editor > p {
  margin-bottom: 0.5rem;
}

.editor > h1:first-child,
.editor > h2:first-child,
.editor > h3:first-child,
.editor > h4:first-child,
.editor > h5:first-child,
.editor > h6:first-child {
  margin-top: 0;
}

/* ----- Links ----- */
.editor > * > a,
.editor > ul a,
.editor > ol a,
.link {
  font-weight: 500;
  color: var(--color-primary);
  transition: all 0.2s;
  text-decoration: none;
}

@media (hover: hover) {
  .editor > * > a:hover,
.editor > ul a:hover,
.editor > ol a:hover,
.link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }
}
/* ----- Lists ----- */
.editor > ul,
.editor > ol {
  margin-bottom: 2rem;
}

.editor > ol {
  list-style-position: inside;
}

.editor > ul {
  list-style: none;
}

.editor > ul:not(:first-child),
.editor > ol:not(:first-child) {
  margin-top: 1.5rem;
}

.editor > ul li,
.editor > ol li {
  margin-bottom: 0.5rem;
}

.editor > ul li {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.editor > ul > li:last-child,
.editor > ol > li:last-child {
  margin-bottom: 0;
}

.editor > ul li:before {
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-primary);
  border-radius: 50%;
  content: "";
}

.editor > ol li::marker {
  font-weight: 500;
  color: var(--color-primary);
}

@media (max-width: 1099px) {
  .editor > ul,
.editor > ol {
    margin-bottom: 1.5rem;
  }

  .editor > ul:not(:first-child),
.editor > ol:not(:first-child) {
    margin-top: 1rem;
  }
}
/* ----- Tables ----- */
.wp-block-table table {
  width: 100%;
}

.wp-block-table table,
.wp-block-table th,
.wp-block-table td {
  border: 1px solid var(--color-dark);
}

.wp-block-table th,
.wp-block-table td {
  padding: 0.5rem 0.75rem;
}

.wp-block-table th {
  border-bottom-width: 0.25rem;
}

/* ----- General ----- */
body {
  background-color: var(--color-body);
}

.site-content {
  padding-bottom: 8.75rem;
}

/* ----- Blocks ----- */
.blocks-content > [class^=b-]:first-child {
  margin-top: 0;
}

.blocks-content > [class^=b-]:last-child {
  margin-bottom: 0;
}

/* ----- Read more ----- */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-primary);
  text-transform: uppercase;
}

/* ----- Badges ----- */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--border-radius-3xs);
}

.badge--primary {
  color: var(--color-white);
  background-color: var(--color-primary);
}

/* ----- Klaro styles (for late loading) ----- */
#klaro {
  position: absolute;
  opacity: 0;
}

/* ----- Basic input ----- */
.input {
  display: block;
  width: 100%;
  padding: 0.938rem 1.438rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: var(--border-radius-2xs);
  box-shadow: var(--shadow-box);
}

.input::placeholder {
  color: #656159;
}

/* ----- Icons ----- */
.icon {
  width: 4rem;
  height: 4rem;
}

/* ----- General ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  margin-bottom: 2rem;
}

.site-header__inner {
  transition: all 0.2s;
  pointer-events: auto;
}

.site-logo {
  width: 5rem;
}

.site-header__info-bar,
.site-header__info-bar a {
  color: var(--color-white);
}

/* ----- Scrolled header ----- */
.is-scrolled .site-header__inner {
  background: #fff;
  box-shadow: var(--shadow-box);
}

@media (min-width: 1100px) {
  .is-scrolled .site-header__inner {
    padding-block: 0.5rem;
  }
}
/* ----- Search ----- */
.searchform {
  width: 44rem;
}

.searchform__input {
  padding-right: 4.125rem;
}

.searchform__submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.125rem;
  height: 100%;
}

/* ----- Social ----- */
.social__link {
  width: 1.25rem;
  height: 1.25rem;
}

/* ----- Dropdowns ----- */
.dropdown {
  display: none;
}

/* ----- Header cart ----- */
.header-cart__count {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
}

/* ----- Main navigation ----- */
.nav-main > ul > li > a {
  display: block;
  padding: 1rem 1.25rem;
}

/* ----- Sub menu ----- */
.nav-main > ul > .menu-item-has-children {
  position: relative;
}

.nav-main > ul > .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-indicator {
  flex-shrink: 0;
}

.menu-indicator svg {
  width: 0.75rem;
  height: 0.45rem;
}

.nav-main .sub-menu {
  display: none;
}

.nav-main .current-menu-item > a .menu-indicator path {
  stroke: var(--color-primary);
}

@media (hover: hover) {
  .menu-indicator,
.menu-indicator path {
    transition: all 0.2s;
  }

  .nav-main > ul > .menu-item-has-children:hover > a .menu-indicator {
    transform: rotate(180deg);
  }

  .nav-main > ul > .menu-item-has-children:hover > a .menu-indicator path {
    stroke: var(--color-primary);
  }

  .nav-main .sub-menu a:hover {
    color: var(--color-primary);
  }
}
/* ----- Languages ----- */
.lang-switch__link.is-active {
  font-weight: 700;
  color: var(--color-primary);
}

@media (hover: hover) {
  .lang-switch__link {
    transition: all 0.2s;
  }

  .lang-switch__link:hover {
    color: var(--color-primary);
  }
}
/* ----- Burger ----- */
.burger {
  width: 2.75rem;
  height: 2.75rem;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
}

.burger__line {
  height: 2px;
}

/* ----- Handheld menu ----- */
@media (max-width: 1099px) {
  .site-menu {
    display: none;
  }
}
/* ----- General ----- */
.site-footer__logo {
  width: 6.25rem;
}
