/*!
Theme Name: Twentyfour
Theme URI: https://twentyfour.dk/
Author: Twentyfour ApS
Author URI: https://twentyfour.dk/
Description: Custom theme: Twentyfour, developed by Twentyfour ApS
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: twentyfour-parent
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Twentyfour is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Bootstrap grid
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments




/* Bootstrap grid
--------------------------------------------- */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-y: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/*--------------------------------------------------------------*/
:root {
  --black: #000000;
  --black-text: #1c2126;
  --blue-dark: #1a1f71;
  --blue: #006ba9;
  --blue-light: #eceff1;
  --blue-lightest: #f7f8fa;
  --green: #55af30;
  --green-light: #e9ffe1;
  --brown: #a34e34;
  --grey-dark: #737373;
  --grey-lighter: #8b8b8b;
  --grey-light: #a1a1a1;
  --grey-lightest: #d3d7da;
  --white: #ffffff;
  --box-shadow: #00000029;
  --error: #c94d27;
}

:root {
  /*------- Font sizes -------*/
  --font-big-title: 67px;
  --font-museo-title: 28.43px;
  --font-small-title: 21.33px;
  --font-secondary-s--title: 19px;
  --font_medium: 16px;
  --font_regular: 15px;
  --font_small: 14px;
  --font_xs-small: 13px;
  /*------- Font weights -------*/
  --semibold: 600;
  --regular: 500;
}

:root {
  --font-title: "museo", sans-serif;
  --font-body: "Noto Sans", sans-serif;
  --bs-gutter-x: 1.5rem;
}

.r-faded {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
  width: 5%;
  height: 100%;
  z-index: 2;
}

.image-opacity {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .image-opacity {
    height: 100%;
  }
}

.form-spinner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
}
.form-spinner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  height: 35px;
  width: 35px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/my_spinner.gif");
}

.ns-mailchimp-result {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
}
.ns-mailchimp-result.error .result-message::before {
  content: "\e016";
  color: #b81c23;
}
.ns-mailchimp-result.success .result-message::before {
  content: "\e015";
  color: var(--green);
}
.ns-mailchimp-result .result-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-weight: var(--semibold);
}
.ns-mailchimp-result .result-message::before {
  background-color: var(--white);
  border-radius: 50%;
  font-family: WooCommerce;
  font-size: 25px;
  width: 25px;
  height: 25px;
}

.arrow-link::after {
  content: "";
  background-image: url("../img/arrow-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 7px;
  transform: translateX(0) rotate(180deg);
  transition: all 0.2s ease;
}
.arrow-link:hover::after {
  transform: translateX(7px) rotate(180deg);
  transition: all 0.2s ease;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  font-size: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding: 3rem;
}

body {
  box-sizing: border-box;
}
@media screen and (max-width: 992px) {
  body.nav-open {
    overflow-y: hidden;
    position: fixed;
    height: 100vh;
  }
}
body #page.site {
  margin-top: 106px;
}
@media screen and (min-width: 768px) {
  body #page.site {
    margin-top: 110px;
  }
}
@media screen and (min-width: 992px) {
  body #page.site {
    margin-top: 126px;
  }
}
@media screen and (min-width: 1251px) {
  body #page.site {
    margin-top: 0;
  }
}

/* Brand Styles
--------------------------------------------- */
.border-top-green {
  border-top: 8px solid var(--green);
}

.border-bottom-green {
  border-bottom: 8px solid var(--green);
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
@media screen and (min-width: 1200px) {
  .small-title {
    font-size: var(--font-secondary-s--title);
    font-weight: var(--semibold);
  }
}

h1,
.h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 500;
}

h2,
.h2 {
  font-family: var(--font-title);
  font-size: 2.175rem;
  font-weight: 500;
}

/* Elements
--------------------------------------------- */
body {
  margin: 0;
  font-family: var(--font-body);
}

body.aw-search-disable-scroll > * {
  filter: blur(0) !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Links
--------------------------------------------- */
a {
  cursor: pointer;
  text-decoration: none;
  color: var(--green);
}

/* Forms
--------------------------------------------- */
.nb-primary-button {
  display: block;
  background-color: var(--green);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 25px;
  font-size: var(--font_xs-small);
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  line-height: 1;
  font-weight: bold;
  outline: 0;
  border: 0;
}

.nb-secondary-button {
  display: block;
  border: 2px solid var(--green);
  color: var(--black-text);
  padding: 12px 35px;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  line-height: 1;
  font-weight: bold;
  outline: 0;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.instagram-section {
  background-color: var(--blue-lightest);
  color: var(--black-text);
  padding: 75px 0;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .instagram-section {
    padding: 140px 0;
  }
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper {
    padding: 0 0 0 10%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper--cta {
    max-width: 375px;
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
.instagram-section__wrapper--cta .instagram-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.instagram-section__wrapper--cta .instagram-title__heading {
  font-size: 31px;
  max-width: 240px;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper--cta .instagram-title__heading {
    font-size: 40px;
    max-width: 100%;
  }
}
.instagram-section__wrapper--cta .instagram-title .instagram_icon {
  font-size: 42px;
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper--cta .instagram-title .instagram_icon {
    font-size: 65px;
  }
}
.instagram-section__wrapper--cta .instagram-subtitle {
  margin: 30px 0 0 0;
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper--cta .instagram-subtitle {
    font-size: 19px;
    width: 80%;
    font-weight: var(--semibold);
    margin: 15px 0;
    line-height: 1.6;
  }
}
.instagram-section__wrapper--cta .instagram-link {
  font-size: 16px;
  box-shadow: 0px 8px 20px var(--box-shadow);
  padding: 14px 50px;
  transition: all 0.1s;
  position: absolute;
  bottom: 75px;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper--cta .instagram-link {
    padding: 12px 50px;
    margin-top: 25px;
    position: relative;
    bottom: 0;
  }
}
.instagram-section__wrapper--cta .instagram-link:active {
  box-shadow: none;
}
.instagram-section__wrapper .instagram-3d-carousel {
  position: relative;
  margin: 50px 0 90px 0;
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper .instagram-3d-carousel {
    width: 63%;
    margin: 0;
  }
}
.instagram-section__wrapper .instagram-3d-carousel .r-faded {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
  width: 5%;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper .instagram-3d-carousel .r-faded {
    display: none;
  }
}
.instagram-section__wrapper .instagram-3d-carousel .ellipse {
  background-color: var(--blue-lightest);
  width: 100%;
  height: 60px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .instagram-section__wrapper .instagram-3d-carousel .ellipse {
    height: 100px;
  }
}
.instagram-section__wrapper .instagram-3d-carousel .ellipse.ellipse-top {
  top: 0;
  border-radius: 0 0 50% 50%;
  transform: translateY(-50%);
}
.instagram-section__wrapper .instagram-3d-carousel .ellipse.ellipse-bottom {
  bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateY(50%);
}
.instagram-section__wrapper .instagram-3d-carousel .instagram-slider {
  opacity: 0;
  position: realtive;
}
.instagram-section__wrapper .instagram-3d-carousel .instagram-slider.slick-initialized {
  opacity: 1;
}
.instagram-section__wrapper .instagram-3d-carousel .instagram-slider__img-wrapper .ig-img {
  object-fit: cover;
  object-position: center;
  margin: 0;
  width: 100%;
  height: 320px;
}
@media screen and (min-width: 576px) {
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider__img-wrapper .ig-img {
    height: 350px;
  }
}
@media screen and (min-width: 768px) {
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider__img-wrapper .ig-img {
    height: 430px;
  }
}
@media screen and (min-width: 1600px) {
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider__img-wrapper .ig-img {
    height: 530px;
  }
}
@media screen and (max-width: 992px) {
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider .slick-list {
    padding-left: 4%;
  }
}
@media screen and (max-width: 576px) {
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider .slick-list {
    padding-left: 11%;
  }
}
.instagram-section__wrapper .instagram-3d-carousel .instagram-slider .slick-draggable {
  overflow: hidden;
}
.instagram-section__wrapper .instagram-3d-carousel .instagram-slider .slick-arrow {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider .slick-arrow {
    display: block !important;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--grey-lightest);
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    z-index: 1;
    background-image: url("../img/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider .slick-arrow.prev {
    left: 0;
    transform: translate(-50%, -50%);
  }
  .instagram-section__wrapper .instagram-3d-carousel .instagram-slider .slick-arrow.next {
    right: 0;
    transform: translate(-100%, -50%) rotate(180deg);
  }
}

.newsletter-section {
  width: 100%;
  height: 100vh;
  position: relative;
  background: transparent linear-gradient(58deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.43) 100%, rgba(0, 0, 0, 0.05) 100%);
  color: var(--white);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.newsletter-section__img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: 35%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.newsletter-section__wrapper {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 992px) {
  .newsletter-section__wrapper {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.newsletter-section__wrapper--master {
  max-width: 100%;
}
@media screen and (min-width: 576px) {
  .newsletter-section__wrapper--master {
    max-width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .newsletter-section__wrapper--master {
    max-width: 475px;
    margin-right: 25px;
  }
}
.newsletter-section__wrapper--master .newsletter-title {
  margin: 0 0 15px 0;
  font-size: 31px;
}
@media screen and (min-width: 1200px) {
  .newsletter-section__wrapper--master .newsletter-title {
    font-size: 40px;
  }
}
.newsletter-section__wrapper--master .newsletter-desc {
  font-size: 20px;
  font-weight: var(--semibold);
  margin-bottom: 45px;
}
@media screen and (min-width: 992px) {
  .newsletter-section__wrapper--master .newsletter-desc {
    font-size: var(--font-secondary-s--title);
  }
}
.newsletter-section__wrapper--master .newsletter-form {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.newsletter-section__wrapper--master .newsletter-form.send .newsletter-form__email, .newsletter-section__wrapper--master .newsletter-form.send .newsletter-form__submit {
  opacity: 0.5;
  transition: all 0.3s;
}
.newsletter-section__wrapper--master .newsletter-form.send .form-spinner {
  display: block;
}
@media screen and (min-width: 576px) {
  .newsletter-section__wrapper--master .newsletter-form {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.newsletter-section__wrapper--master .newsletter-form__email {
  position: relative;
  width: 100%;
  opacity: 1;
  transition: all 0.3s;
}
.newsletter-section__wrapper--master .newsletter-form__email span {
  position: absolute;
  font-size: var(--font_xs-small);
  top: -24px;
  left: 22px;
}
.newsletter-section__wrapper--master .newsletter-form__email--input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 25px;
  border: 0;
  outline: 0;
  position: relative;
}
.newsletter-section__wrapper--master .newsletter-form__submit {
  width: 100%;
  opacity: 1;
  transition: all 0.3s;
}
@media screen and (min-width: 576px) {
  .newsletter-section__wrapper--master .newsletter-form__submit {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.newsletter-section__wrapper--master .newsletter-form__submit {
  font-size: var(--font_medium);
  padding: 13px 25px;
}

.membership-section {
  background-color: var(--blue-lightest);
  color: var(--black-text);
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .membership-section {
    padding: 4rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .membership-section {
    padding: 150px 0;
  }
}
.membership-section__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  font-size: var(--font-museo-title);
  font-family: var(--font-title);
  font-weight: var(--regular);
  margin-bottom: 40px;
}
.membership-section__benefits {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
@media screen and (min-width: 576px) {
  .membership-section__benefits {
    gap: 25px;
  }
}
.membership-section__benefits .benefit-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--white);
  box-shadow: 0px 8px 15px var(--box-shadow);
  border-bottom: 8px solid var(--green);
  padding: 45px 12px;
  max-width: 180px;
}
@media screen and (min-width: 576px) {
  .membership-section__benefits .benefit-wrapper {
    max-width: 190px;
  }
}
.membership-section__benefits .benefit-wrapper .membership-img {
  object-fit: contain;
  margin: 0 auto 15px auto;
  max-width: 45px;
  max-height: 42px;
}
.membership-section__benefits .benefit-wrapper .membership-text {
  font-size: var(--font_small);
  width: 95%;
  text-align: center;
  margin: 0 auto;
}
.membership-section__link {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 430px) {
  .membership-section__link {
    width: -moz-max-content;
    width: max-content;
    margin: 50px auto 0 auto;
  }
}

.popup {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(20, 42, 63, 0.6);
  z-index: 13;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s 0.25s;
}
@media screen and (max-width: 991px) {
  .popup {
    display: none;
  }
}
.popup__content {
  background-color: var(--blue-light);
  border-radius: 1px;
  opacity: 0;
  width: 85%;
  max-width: 1200px;
  padding: 45px;
  visibility: hidden;
  position: fixed;
  z-index: 35;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.2s;
  min-height: 85vh;
  max-height: 85vh;
}
@media screen and (max-width: 991px) {
  .popup__content {
    display: none;
  }
}
.popup__content--close {
  transform: none;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  z-index: 13;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  background-color: var(--white);
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.popup__content .product-popup-image {
  mix-blend-mode: multiply;
  width: 90%;
  height: 84.5vh;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup.popup-visible {
  opacity: 1;
  visibility: visible;
  transition: all 0.32s;
  backdrop-filter: blur(2px);
}
@media screen and (max-width: 991px) {
  .popup.popup-visible {
    display: block;
  }
}

.popup__content.pop {
  opacity: 1;
  visibility: visible;
  transition: all 0.32s 0.38s;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 991px) {
  .popup__content.pop {
    display: block;
  }
}

.brand-logos-section {
  background-color: var(--white);
  padding: 5rem 0;
  overflow: hidden;
}
.brand-logos-section .brand-title {
  margin-top: 0;
  margin-bottom: 4rem;
  font-size: var(--font-museo-title);
  font-family: var(--font-title);
  font-weight: var(--regular);
}
@media screen and (min-width: 992px) {
  .brand-logos-section .brand-title {
    text-align: center;
  }
}
.brand-logos-section .slider {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .brand-logos-section .slider {
    max-width: 90%;
  }
}
.brand-logos-section .slider {
  margin-bottom: 35px;
}
.brand-logos-section .slider::before, .brand-logos-section .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  position: absolute;
  height: 100%;
  width: 100px;
  z-index: 2;
  display: block;
}
.brand-logos-section .slider::before {
  top: 0;
  left: 0;
}
.brand-logos-section .slider::after {
  top: 0;
  right: 0;
  transform: rotateZ(180deg);
}
.brand-logos-section .slider .slide-track {
  display: -ms-flexbox;
  display: flex;
}
.brand-logos-section .slider .slide-track:hover {
  animation-play-state: paused;
}
.brand-logos-section .slider .slide-track .slide {
  width: 200px;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
}
.brand-logos-section .slider .slide-track .slide .brand-item {
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .brand-logos-section .slider .slide-track .slide .brand-item {
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .brand-logos-section .slider .slide-track .slide .brand-item {
    height: 90px;
    width: 125px;
  }
}
.brand-logos-section .slider .slide-track .slide .brand-item {
  position: relative;
}
.brand-logos-section .slider .slide-track .slide .brand-item__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  color: var(--black-text);
  font-size: 17px;
  text-align: center;
}
.brand-logos-section .slider .slide-track .slide .brand-item__wrapper .brand-logo__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 95%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
@media screen and (min-width: 992px) {
  .brand-logos-section .slider .slide-track .slide .brand-item__wrapper .brand-logo__img {
    height: 85%;
  }
}

.mission-section {
  background-color: var(--blue-lightest);
  color: var(--black-text);
  padding: 4rem 0 5rem 0;
}
.mission-section__wrapper {
  position: relative;
}
.mission-section__wrapper .mission-title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: var(--font-museo-title);
  font-family: var(--font-title);
  font-weight: var(--regular);
}
@media screen and (min-width: 576px) {
  .mission-section__wrapper .mission-title {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .mission-section__wrapper .mission-title {
    text-align: center;
  }
}
.mission-section__wrapper .mission-container {
  opacity: 0;
  position: relative;
  width: 100%;
}
.mission-section__wrapper .mission-container.slick-initialized {
  opacity: 1;
}
.mission-section__wrapper .mission-container.last-slide .slick-list::after {
  display: none;
}
.mission-section__wrapper .mission-container .slick-list {
  position: relative;
}
.mission-section__wrapper .mission-container .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  gap: 2rem;
}
.mission-section__wrapper .mission-container .slick-list .slick-track::before, .mission-section__wrapper .mission-container .slick-list .slick-track::after {
  display: none;
}
.mission-section__wrapper .mission-container .mission-goal {
  height: inherit;
  background-color: var(--white);
  box-shadow: 7px 7px 9px rgba(82, 82, 82, 0.1607843137);
  padding: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 5px solid rgba(0, 107, 169, 0.4588235294);
}
@media screen and (min-width: 992px) {
  .mission-section__wrapper .mission-container .mission-goal {
    padding: 3rem;
  }
}
.mission-section__wrapper .mission-container .mission-goal .goal-title {
  font-size: 17px;
  font-family: var(--font-title);
  font-weight: var(--semibold);
  line-height: 1.5;
  word-break: break-all;
}
.mission-section__wrapper .mission-container .mission-goal .goal-description p {
  word-break: break-all;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
.mission-section__wrapper .mission-container .mission-goal .goal-description p:not(:last-child) {
  margin: 0 0 15px 0;
}
.mission-section__wrapper .mission-container .slick-arrow {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .mission-section__wrapper .mission-container .slick-arrow {
    display: block !important;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--grey-light);
    position: absolute;
    top: 47%;
    width: 60px;
    height: 60px;
    z-index: 1;
    background-image: url("../img/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .mission-section__wrapper .mission-container .slick-arrow.prev {
    left: 0;
    transform: translate(-50%, -50%);
  }
  .mission-section__wrapper .mission-container .slick-arrow.next {
    right: 0;
    transform: translate(50%, -50%) rotate(180deg);
  }
  .mission-section__wrapper .mission-container .slick-arrow.slick-disabled {
    display: none !important;
  }
}

.footer-info-section {
  background-color: var(--white);
  color: var(--black-text);
  padding: 4rem 0 5rem 0;
  border-top: 6px solid var(--green);
}
.footer-info-section__wrapper {
  position: relative;
}
.footer-info-section__wrapper .footer-info-title {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: var(--font-museo-title);
  font-family: var(--font-title);
  font-weight: var(--regular);
}
@media screen and (min-width: 576px) {
  .footer-info-section__wrapper .footer-info-title {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .footer-info-section__wrapper .footer-info-title {
    text-align: center;
  }
}
.footer-info-section__wrapper .footer-info-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  .footer-info-section__wrapper .footer-info-container {
    gap: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer-info-section__wrapper .footer-info-container {
    gap: 3rem;
  }
}
.footer-info-section__wrapper .footer-info-container .footer-info-box {
  box-shadow: 0px 4px 20px rgba(82, 82, 82, 0.1607843137);
  border-radius: 6px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 2rem 1.5rem;
  min-width: 300px;
  max-width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-info-section__wrapper .footer-info-container .footer-info-box {
    max-width: 100%;
  }
}
.footer-info-section__wrapper .footer-info-container .footer-info-box::after {
  content: "";
  opacity: 0.5;
  height: 3px;
  left: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
}
@media screen and (min-width: 576px) {
  .footer-info-section__wrapper .footer-info-container .footer-info-box {
    padding: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .footer-info-section__wrapper .footer-info-container .footer-info-box {
    padding: 2rem 2.5rem;
  }
}
.footer-info-section__wrapper .footer-info-container .footer-info-box__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-info-section__wrapper .footer-info-container .footer-info-box__header--img {
  height: 45px;
  width: auto;
  object-fit: contain;
}
.footer-info-section__wrapper .footer-info-container .footer-info-box__header--title {
  font-weight: var(--semibold);
}
.footer-info-section__wrapper .footer-info-container .footer-info-box__desc p {
  line-height: 1.6;
  color: var(--grey-dark);
}
@media screen and (max-width: 576px) {
  .footer-info-section__wrapper .footer-info-container .footer-info-box__desc p {
    font-size: 15px;
  }
}
.footer-info-section__wrapper .footer-info-container .footer-info-box__desc a {
  margin-top: 1rem;
  display: block;
}
@media screen and (max-width: 576px) {
  .footer-info-section__wrapper .footer-info-container .footer-info-box__desc a {
    font-size: 15px;
  }
}
.footer-info-section__wrapper .footer-info-container .footer-info-box__desc a {
  line-height: 1.6;
  text-decoration: none;
  color: var(--blue);
}
.footer-info-section__wrapper .footer-info-container .footer-info-box__desc a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f061";
  margin-left: 10px;
  color: var(--blue);
}

body.customize-support .wpsc-it-action-container {
  display: block !important;
}
body.customize-support .wpsc-body .wpsc-it-container .wpsc-it-mobile-widget-container .wpsc-it-widget:first-of-type .wpsc-widget-body .info-list-item:nth-child(2) {
  display: -ms-flexbox !important;
  display: flex !important;
}
body.customize-support .wpsc-body .wpsc-it-sidebar-widget-container .wpsc-it-widget:first-of-type .wpsc-widget-body .info-list-item:nth-child(2) {
  display: -ms-flexbox !important;
  display: flex !important;
}

#wpsc-container {
  padding: 4rem 0 5rem 0;
}
#wpsc-container .gpopover {
  box-shadow: none;
  z-index: 3;
}
#wpsc-container .gpopover .wpsc-popover-menu-item {
  color: var(--black-text);
  font-size: var(--font_regular) !important;
}
#wpsc-container .gpopover .wpsc-popover-menu-item:hover {
  color: var(--white);
}
#wpsc-container .wpsc-shortcode-container {
  border: 0 !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-header {
  gap: 2.2rem;
  padding: 0.8rem 2rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-header .wpsc-menu-list {
  margin-right: 0;
  opacity: 1;
}
#wpsc-container .wpsc-shortcode-container .wpsc-header .wpsc-menu-list svg {
  margin-right: 10px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-header .wpsc-menu-list label {
  font-size: inherit;
}
#wpsc-container .wpsc-shortcode-container .wpsc-header .log-out, #wpsc-container .wpsc-shortcode-container .wpsc-header .my-profile {
  display: none;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body {
  padding: 2rem 0.5rem;
  background-color: var(--blue-lightest);
}
@media screen and (min-width: 576px) {
  #wpsc-container .wpsc-shortcode-container .wpsc-body {
    padding: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  #wpsc-container .wpsc-shortcode-container .wpsc-body {
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 1600px) {
  #wpsc-container .wpsc-shortcode-container .wpsc-body {
    padding: 3rem 5rem;
  }
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter {
  margin: 0 0 2rem 0;
  -ms-flex-align: end;
  align-items: flex-end;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-search {
  color: var(--grey-dark);
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-search .search-field {
  padding: 9px 25px !important;
  margin: 0;
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  gap: 0.8rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-search .search-field svg {
  width: 17px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-search .search-field input {
  color: var(--black-text) !important;
  font-size: var(--font_regular) !important;
  min-height: auto !important;
  max-height: 50px !important;
  line-height: 1 !important;
  padding: 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-search .search-field input:-ms-input-placeholder {
  color: var(--black-text) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-search .search-field input::placeholder {
  color: var(--black-text) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-filter-container {
  margin: 0;
  gap: 1.2rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-filter-container .wpsc-filter-item {
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-filter-container .wpsc-filter-item label {
  margin-bottom: 0.5rem !important;
  padding-left: 1rem;
  color: var(--black-text) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-filter-container .wpsc-filter-item select {
  padding: 0.5rem 1rem !important;
  min-height: auto !important;
  max-height: 50px !important;
  font-size: var(--font_regular) !important;
  background-color: var(--white);
  cursor: pointer;
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  color: var(--black-text) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-filter-container .wpsc-filter-submit {
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
  margin: 0;
  cursor: pointer;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-filter-container .wpsc-filter-submit button {
  padding: 9px 25px !important;
  border-radius: 25px !important;
  font-size: var(--font_xs-small) !important;
  font-weight: 600;
  margin: 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-filter .wpsc-filter-container .wpsc-filter-submit .wpsc-link {
  font-size: var(--font_regular) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container {
  margin: 0;
  padding: 3rem 0 0 0;
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  border-top: 1px solid var(--grey-lightest);
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container .wpsc-bulk-actions {
  margin-bottom: 2rem;
  gap: 1rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container .wpsc-bulk-actions button {
  border-radius: 50px !important;
  padding: 9px 25px !important;
  font-size: var(--font_regular) !important;
  margin: 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container .wpsc-ticket-list > div {
  border-radius: 5px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container .wpsc-ticket-list .wpsc-ticket-list-tbl {
  font-size: var(--font_regular) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container .wpsc-ticket-list .wpsc-ticket-list-tbl thead th {
  font-size: var(--font_small) !important;
  padding: 7px 10px !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container .wpsc-ticket-list .wpsc-ticket-list-tbl thead th .checkbox-container label::before {
  border: 0 !important;
  box-shadow: none;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-tickets-container .wpsc-ticket-list .wpsc-ticket-list-tbl tbody tr td {
  padding: 15px 10px !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container {
  gap: 5rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body .wpsc-it-action-container {
  display: none;
  margin-bottom: 1rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body .wpsc-it-action-container .wpsc-filter-actions span {
  font-size: var(--font_regular);
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body .wpsc-it-action-container .wpsc-filter-actions .action-devider {
  border: 1px solid var(--grey-lightest);
  height: 15px;
  margin: 0 12px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-sidebar-widget-container {
  margin: 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-sidebar-widget-container .wpsc-it-widget {
  margin: 0 0 2rem 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-sidebar-widget-container .wpsc-it-widget .wpsc-widget-header {
  border-radius: 5px;
  padding: 7px 15px;
  margin-bottom: 5px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-sidebar-widget-container .wpsc-it-widget .wpsc-widget-body {
  color: var(--black-text) !important;
  background-color: var(--blue-lightest) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-sidebar-widget-container .wpsc-it-widget:first-of-type .wpsc-widget-body .info-list-item:nth-child(2) {
  display: none;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-subject-container h2 {
  font-weight: 600;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-reply-section .mce-content-body {
  display: none;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-reply-section .wpsc-it-editor-action-container, #wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .wpsc-it-editor-action-container {
  margin-top: 1rem;
  -ms-flex-align: center;
  align-items: center;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-reply-section .wpsc-it-editor-action-container .actions, #wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .wpsc-it-editor-action-container .actions {
  margin: 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-reply-section .wpsc-it-editor-action-container .wpsc-editor-actions, #wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .wpsc-it-editor-action-container .wpsc-editor-actions {
  gap: 2rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-reply-section .wpsc-it-editor-action-container .wpsc-editor-actions .wpsc-link, #wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .wpsc-it-editor-action-container .wpsc-editor-actions .wpsc-link {
  font-size: var(--font_regular);
  margin: 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-reply-section .wpsc-it-editor-action-container .submit-container button, #wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .wpsc-it-editor-action-container .submit-container button {
  border-radius: 50px !important;
  padding: 9px 25px !important;
  font-size: var(--font_small) !important;
  font-weight: 600;
  margin: 0 0 0 1rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-reply-section .wpsc-file-attachment-notice, #wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .wpsc-file-attachment-notice {
  font-size: 12px !important;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread {
  margin: 0;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--grey-lightest);
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .wpsc-ticket-thread-expander {
  color: var(--blue);
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .actions {
  gap: 1rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-body-item .wpsc-thread .thread-body .thread-text img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left;
  max-height: 450px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-mobile-widget-container {
  margin: 1rem 0 2rem 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-mobile-widget-container .wpsc-it-mob-widget-trigger-btn {
  padding: 7px 15px;
  background-color: #e6e9eb;
  border-radius: 5px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-mobile-widget-container .wpsc-it-widget {
  margin: 0 0 2rem 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-mobile-widget-container .wpsc-it-widget .wpsc-widget-header {
  border-radius: 5px;
  padding: 7px 15px;
  margin-bottom: 5px;
}
#wpsc-container .wpsc-shortcode-container .wpsc-body .wpsc-it-container .wpsc-it-mobile-widget-container .wpsc-it-widget:first-of-type .wpsc-widget-body .info-list-item:nth-child(2) {
  display: none;
}
#wpsc-container .wpsc-shortcode-container .wpsc-form-devider {
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 3rem 0;
  display: none;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container {
  margin: 0;
  display: none;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container:last-child {
  display: block;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container .auth-inner-container {
  max-width: 350px !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container h2 {
  margin: 0 0 2rem !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container small {
  font-size: var(--font_xs-small) !important;
  margin-bottom: 1rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container .auth-links .wpsc-link {
  margin-top: 1rem;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container .checkbox-container {
  margin: 1rem 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container .checkbox-container label {
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2.2rem !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container .checkbox-container label::before {
  background-color: var(--white) !important;
  border: 1px solid var(--grey-lightest) !important;
  width: 22px !important;
  height: 22px !important;
  box-shadow: none;
  margin-right: 13px;
  position: absolute;
  left: 0;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container .checkbox-container label::after {
  top: calc(50% - 2px) !important;
  left: 7px !important;
  transform: translateY(-50%) rotate(45deg) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container input[type=text], #wpsc-container .wpsc-shortcode-container .wpsc-auth-container input[type=password] {
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  color: var(--black-text) !important;
  padding: 15px 25px !important;
  min-height: auto !important;
  height: auto !important;
  line-height: 1 !important;
  max-height: 100px !important;
  font-size: var(--font_small) !important;
  font-weight: 500 !important;
  margin: 0 0 1rem 0 !important;
  background-color: var(--white);
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container button {
  padding: 9px 25px !important;
  border-radius: 25px !important;
  font-size: var(--font_xs-small) !important;
  font-weight: 600;
  margin: 0.5rem 1rem 0 0 !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container script ~ div {
  margin: 2rem 0 0 0 !important;
  font-size: var(--font_small) !important;
}
#wpsc-container .wpsc-shortcode-container .wpsc-auth-container script ~ div .wpsc-link {
  display: block;
  margin-top: 0.5rem;
}
#wpsc-container .wpsc-tff {
  padding-bottom: 2rem;
}
#wpsc-container .wpsc-tff.customer {
  width: 100%;
}
#wpsc-container .wpsc-tff .wpsc-tff-label .name {
  font-size: var(--font_medium);
  color: var(--black-text) !important;
}
#wpsc-container .wpsc-tff .extra-info, #wpsc-container .wpsc-tff .wpsc-file-attachment-notice {
  font-size: var(--font_xs-small) !important;
  color: var(--grey-dark) !important;
  display: block;
  margin: 7px 0 1rem 0;
}
#wpsc-container .wpsc-tff input[type=text] {
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  color: var(--black-text) !important;
  padding: 15px 25px;
  min-height: auto !important;
  line-height: 1 !important;
  max-height: 100px !important;
  font-size: var(--font_small) !important;
  font-weight: 500 !important;
}
#wpsc-container .wpsc-tff select {
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  color: var(--black-text) !important;
  padding: 15px 25px !important;
  min-height: auto !important;
  line-height: 1 !important;
  max-height: 100px !important;
  font-size: var(--font_small) !important;
  cursor: pointer;
  background-color: var(--white);
}
#wpsc-container .wpsc-tff .wpsc-link {
  margin-top: 1rem !important;
  font-size: var(--font_regular) !important;
}
#wpsc-container .wpsc-tff .wpsc-it-editor-action-container .wpsc-editor-actions {
  gap: 2rem;
}
#wpsc-container .wpsc-tff .wpsc-it-editor-action-container .wpsc-editor-actions .wpsc-link {
  margin-right: 0;
}
#wpsc-container .wpsc-tff .checkbox-container {
  margin-bottom: -1rem;
}
#wpsc-container .wpsc-tff .checkbox-container label {
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2.2rem !important;
}
#wpsc-container .wpsc-tff .checkbox-container label::before {
  background-color: var(--white) !important;
  border: 1px solid var(--grey-lightest) !important;
  width: 22px !important;
  height: 22px !important;
  box-shadow: none;
  margin-right: 13px;
  position: absolute;
  left: 0;
}
#wpsc-container .wpsc-tff .checkbox-container label::after {
  top: calc(50% - 2px) !important;
  left: 7px !important;
  transform: translateY(-50%) rotate(45deg) !important;
}
#wpsc-container .wpsc-tff .submit-container {
  margin-top: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
#wpsc-container .wpsc-tff .submit-container button {
  font-size: var(--font_small) !important;
  padding: 9px 25px !important;
  font-weight: 600;
  border-radius: 25px !important;
}

select ~ .select2-container {
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  color: var(--black-text) !important;
  padding: 0 25px;
  background-color: var(--white);
  z-index: 1;
  cursor: pointer;
}
select ~ .select2-container .selection .select2-selection--multiple ul.select2-selection__rendered li {
  display: none;
}
select ~ .select2-container .selection .select2-selection--single, select ~ .select2-container .selection .select2-selection--multiple {
  border: 0 !important;
  background-color: transparent;
  height: auto !important;
  padding: 15px 0;
}
select ~ .select2-container .selection .select2-selection--single .select2-search__field, select ~ .select2-container .selection .select2-selection--multiple .select2-search__field {
  margin: 0;
}
select ~ .select2-container .selection .select2-selection--single .select2-selection__rendered, select ~ .select2-container .selection .select2-selection--multiple .select2-selection__rendered {
  line-height: 1;
  color: var(--black-text);
  padding: 0;
  font-size: var(--font_small) !important;
  overflow: inherit;
}
select ~ .select2-container .selection .select2-selection--single .select2-selection__arrow, select ~ .select2-container .selection .select2-selection--multiple .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
}
select ~ .select2-container .selection .select2-selection--single .select2-selection__arrow b, select ~ .select2-container .selection .select2-selection--multiple .select2-selection__arrow b {
  border-color: var(--black-text) transparent transparent transparent;
}
select ~ .select2-container.select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent var(--black-text) transparent !important;
}

.select2-container--open {
  z-index: 30 !important;
}
.select2-container--open .select2-dropdown {
  border: 1px solid var(--grey-lightest) !important;
  padding: 15px 25px;
  margin-top: 5px;
  z-index: 30;
}
.select2-container--open .select2-dropdown .select2-search__field {
  padding: 6px 15px !important;
  border-radius: 5px;
}
.select2-container--open .select2-dropdown .select2-results__options {
  color: var(--black-text);
}

.wpsc-modal .overlay {
  z-index: 30 !important;
}
.wpsc-modal .inner-container {
  z-index: 30 !important;
}
.wpsc-modal .inner-container .modal .wpsc-modal-header {
  font-weight: 600;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body {
  max-height: 350px;
  padding: 1rem;
}
@media screen and (min-width: 576px) {
  .wpsc-modal .inner-container .modal .wpsc-modal-body {
    padding: 1rem 2rem;
  }
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .wpsc-insert-edit-image .wpsc-input-group div:last-child {
  -ms-flex-align: center;
  align-items: center;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .wpsc-insert-edit-image .wpsc-input-group button {
  border-radius: 25px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .wpsc-insert-edit-image .wpsc-input-group:last-of-type {
  display: none;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .wpsc-insert-edit-image .wpsc-input-group #wpsc-tinymce-get-file-url {
  padding: 9px 10px !important;
  position: relative;
  z-index: 2;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .wpsc-insert-edit-image .wpsc-input-group #wpsc-fileupload {
  display: block !important;
  position: relative;
  z-index: 1;
  transform: translateX(-90px);
}
.wpsc-modal .inner-container .modal .wpsc-modal-body select {
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  color: var(--black-text) !important;
  padding: 15px 25px !important;
  min-height: auto !important;
  line-height: 1 !important;
  max-height: 100px !important;
  font-size: var(--font_small) !important;
  cursor: pointer;
  background-color: var(--white);
}
.wpsc-modal .inner-container .modal .wpsc-modal-body input[type=text] {
  border: 1px solid var(--grey-lightest) !important;
  border-radius: 50px !important;
  color: var(--black-text) !important;
  padding: 15px 25px;
  min-height: auto !important;
  line-height: 1 !important;
  max-height: 100px !important;
  font-size: var(--font_small) !important;
  font-weight: 500 !important;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body input[type=text].wpsc-tinymce-image-url {
  display: none;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .dataTables_filter input {
  padding: 9px 15px;
  border-radius: 25px;
  margin-left: 12px;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .wpsc-input-group {
  margin-bottom: 1rem;
}
.wpsc-modal .inner-container .modal .wpsc-modal-body .wpsc-input-group .label-container {
  margin-bottom: 1rem;
}
.wpsc-modal .inner-container .modal .wpsc-modal-footer {
  padding: 1.3rem;
}
@media screen and (min-width: 576px) {
  .wpsc-modal .inner-container .modal .wpsc-modal-footer {
    padding: 1.3rem 2rem;
  }
}
.wpsc-modal .inner-container .modal .wpsc-modal-footer button {
  font-size: var(--font_small) !important;
  padding: 9px 25px !important;
  font-weight: 600;
  border-radius: 25px !important;
}

.mce-container.mce-floatpanel {
  max-width: 90% !important;
}
.mce-container.mce-floatpanel .mce-reset {
  overflow-x: auto;
}
.mce-container.mce-floatpanel .mce-foot {
  max-width: 90% !important;
}

.woocommerce-account.logged-in .wc-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce {
  padding: 1rem 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--blue-lightest);
}
@media screen and (min-width: 576px) {
  .woocommerce-account.logged-in .wc-container .woocommerce {
    padding: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce {
    gap: 3rem;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce::before, .woocommerce-account.logged-in .wc-container .woocommerce::after {
  display: none;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation {
    width: 27%;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow-x: auto;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul li {
  transition: all 0.2s;
  border-radius: 5px;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul li {
    padding-left: 22px;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul li.is-active {
  background-color: var(--white);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul li:hover {
  background-color: var(--white);
  transition: all 0.2s;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul li a {
  color: var(--black-text);
  display: block;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  padding: 0.2rem 1rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-navigation ul li a {
    padding: 1rem 0;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content {
  float: none;
  background-color: var(--white);
  width: 100%;
  padding: 1rem;
}
@media screen and (min-width: 576px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content {
    padding: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content {
    padding: 2rem 4rem;
    width: 73%;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content p {
  line-height: 1.7;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content mark {
  background-color: var(--blue-light);
  padding: 5px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content a {
  color: var(--blue);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-message, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Message, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content [data-class=message] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-message, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Message, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content [data-class=message] {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-message a, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Message a, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content [data-class=message] a {
  color: inherit;
  -ms-flex-order: 3;
  order: 3;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
@media screen and (max-width: 576px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-message a, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Message a, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content [data-class=message] a {
    margin-top: 1rem;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-message::before, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Message::before, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content [data-class=message]::before {
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 22px !important;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row {
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 576px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row {
    float: none;
    width: 100%;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row label {
  width: 100%;
  font-size: var(--font_xs-small);
  color: var(--grey-dark);
  display: block;
  margin: 0 0 8px 22px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row label .required {
  text-decoration: none;
  color: red;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row input {
  padding: 15px 22px;
  border: 1px solid var(--grey-dark);
  background-color: var(--white);
  border-radius: 50px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row em {
  color: var(--grey-dark);
  font-size: var(--font_xs-small);
  margin-left: 22px;
  display: block;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 3rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address:not(:first-child) {
    margin-top: 0;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title h3 {
  margin: 0;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title .edit {
  display: block;
  margin: 1rem 0;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title h3, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title .edit {
  float: none;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address address {
  font-size: var(--font_small);
  color: var(--grey-dark);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper {
  width: 100%;
  float: none;
  margin-bottom: 25px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper.validate-state {
  display: none;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper label {
  width: 100%;
  font-size: var(--font_xs-small);
  color: var(--grey-dark);
  display: block;
  margin: 0 0 8px 22px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper label .required {
  text-decoration: none;
  color: red;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper .wc-input-wrapper {
  float: none;
  width: 100%;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper .wc-input-wrapper input[type=text], .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper .wc-input-wrapper input[type=tel], .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper .wc-input-wrapper input[type=email] {
  padding: 15px 22px;
  border: 1px solid var(--grey-dark);
  background-color: var(--white);
  border-radius: 50px;
  width: 100%;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .checkout-input-wrapper .wc-input-wrapper .select2 {
  border: 1px solid var(--grey-dark) !important;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields button[type=submit] {
  background-color: var(--green);
  color: var(--white);
  margin-top: 25px;
  font-weight: var(--semibold);
  font-size: var(--font_regular);
  padding: 13px 35px;
  border-radius: 25px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  border: 0;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead {
  background-color: var(--blue-light);
}
@media screen and (max-width: 768px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:not(:first-child) {
    padding-top: 25px;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:not(:first-child) td {
  border-top: 1px solid var(--blue-light);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td {
  font-size: var(--font_xs-small);
  border: 0;
  padding: 10px 8px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions .woocommerce-button.pay {
  display: none;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions a {
  display: inline-block;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions a:not(:last-child) {
  margin-right: 2px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .small-title {
  font-size: 1.875rem;
  font-weight: 400;
  font-family: var(--font-title);
  margin: 0 0 2rem 0;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .small-title {
    font-size: 1, 875rem;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--blue-lightest);
  position: relative;
  border-bottom: 1px solid var(--grey-lightest);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item:last-child {
  margin-bottom: 0;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-image {
  width: 7.1875em;
  min-height: 7.1875rem;
  margin-right: 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--blue-light);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-image:hover img {
  transform: scale(1.1);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-image img {
  max-width: 6.125rem;
  mix-blend-mode: multiply;
  padding: 0.8rem;
  transition: 0.4s ease transform;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.875rem 1.25rem 0.875rem 0rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .title a {
  color: var(--black-text);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 1200px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .title a {
    font-size: 1.05rem;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content auto;
  grid-template-columns: max-content auto;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation dt {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation dd {
  -ms-grid-column: 2;
  grid-column-start: 2;
  margin-left: 2rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation dd p {
  margin: 0;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper {
  font-size: 15px;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper {
    font-size: 1rem;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper .dof-normal-price {
  color: var(--black-text);
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper .dof-normal-price del {
  -ms-flex-order: 2;
  order: 2;
  font-weight: 500;
  opacity: 1;
  margin-left: 0.45rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper .dof-normal-price ins {
  text-decoration: none;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .quantity {
  font-weight: 700;
  font-size: 15px;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .quantity {
    font-size: 1rem;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-products .nb-primary-button {
  color: var(--white);
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 2rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container {
  margin-top: 2rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  column-gap: 3.5rem;
  row-gap: 2rem;
}
@media screen and (min-width: 576px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information {
    column-gap: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information {
    column-gap: 2rem;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item {
  -ms-flex: calc(50% - 1.5rem);
  flex: calc(50% - 1.5rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--grey-lightest);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item.virtual {
  display: none;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item {
    -ms-flex: calc(50% - 1rem);
    flex: calc(50% - 1rem);
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item > span {
  display: block;
}
@media screen and (max-width: 1200px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item > span {
    font-size: 15px;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item .order-information-title {
  font-weight: bold;
  color: var(--black-text);
  margin-bottom: 0.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter {
  display: none;
}
@media screen and (min-width: 992px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter {
    margin-top: 4rem;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter {
    max-width: 85%;
  }
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter > p {
  font-weight: 600;
  font-size: 1.1875rem;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  position: relative;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form.send .newsletter-form__email, .woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form.send .newsletter-form__submit {
  opacity: 0.5;
  transition: all 0.3s;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form.send .form-spinner {
  display: block;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__email {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  opacity: 1;
  transition: all 0.3s;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__email span {
  font-size: var(--font_xs-small);
  margin-left: 1.5rem;
  margin-bottom: 5px;
  display: block;
  color: var(--grey-dark);
  font-weight: 600;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__email--input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 25px;
  border: 0;
  outline: 0;
  position: relative;
  border: 2px solid var(--grey-lightest);
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__submit {
  font-size: var(--font_medium);
  padding: 13px 25px;
  height: 45px;
  margin-top: auto;
  opacity: 1;
  transition: all 0.3s;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form .ns-mailchimp-result .result-message {
  font-weight: 500;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-details .order-information-container .order-newsletter {
  display: none;
}
.woocommerce-account.logged-in .wc-container .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-again a {
  font-weight: var(--semibold);
  font-size: var(--font_regular);
  padding: 13px 35px;
  border-radius: 25px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
@media screen and (min-width: 992px) {
  .overlay .primary-menu-wrapper {
    padding: 14px 20% 14px 2.8% !important;
  }
  .overlay .primary-menu-wrapper .primary-menu {
    width: 90%;
  }
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_links li {
    margin-right: 40px;
  }
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_delivery_info ul li:not(:last-child) {
    margin-right: 40px;
  }
}
@media screen and (min-width: 992px) {
  .overlay .primary-menu-wrapper {
    background-color: var(--blue);
    color: var(--white);
    width: 100%;
    padding: 14px 2.8% 14px 2.8% !important;
  }
}
@media screen and (min-width: 992px) {
  .overlay .primary-menu-wrapper .primary-menu {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--font_xs-small);
  }
}
.overlay .primary-menu-wrapper .primary-menu .primary-menu_links {
  display: none;
}
@media screen and (min-width: 992px) {
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_links {
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    font-size: var(--font_xs-small) !important;
  }
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_links li {
    margin-right: 20px;
  }
}
.overlay .primary-menu-wrapper .primary-menu .primary-menu_links a {
  color: var(--white);
}
@media screen and (min-width: 992px) {
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_delivery_info {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    margin: 0;
  }
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_delivery_info ul {
    display: -ms-flexbox;
    display: flex;
    width: -moz-max-content;
    width: max-content;
  }
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_delivery_info ul li {
    display: list-item !important;
  }
  .overlay .primary-menu-wrapper .primary-menu .primary-menu_delivery_info ul li:not(:last-child) {
    margin-right: 20px;
  }
}
.overlay .primary-menu-wrapper {
  background-color: var(--blue);
  color: var(--white);
  padding: 6px 2.8% 6px 2.8%;
  font-size: var(--font_xs-small);
}
.overlay .primary-menu-wrapper .primary-menu_links {
  font-size: var(--font_medium);
  display: block;
}
.overlay .primary-menu-wrapper .primary-menu_links ul {
  display: block;
}
.overlay .primary-menu-wrapper .primary-menu_delivery_info ul {
  text-align: center;
}
.overlay .primary-menu-wrapper .primary-menu_delivery_info ul li:nth-of-type(2) {
  display: none;
}
.overlay .primary-menu-wrapper .primary-menu_delivery_info ul li:nth-of-type(3) {
  display: none;
}
.overlay .primary-menu-wrapper .primary-menu_delivery_info ul li:nth-of-type(4) {
  display: none;
}

.navigation-logo {
  display: -ms-flexbox;
  display: flex;
}
.navigation-logo .header-logo {
  padding-right: 10px;
}
.navigation-logo .header-logo img {
  height: 31px;
  width: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .navigation-logo .header-logo img {
    height: 35px;
  }
}
@media screen and (min-width: 992px) {
  .navigation-logo .header-logo img {
    height: 40px;
  }
}
.navigation-logo .header-secondary-logo {
  padding-left: 10px;
}
.navigation-logo .header-secondary-logo img {
  height: 31px;
  width: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .navigation-logo .header-secondary-logo img {
    height: 35px;
  }
}
@media screen and (min-width: 992px) {
  .navigation-logo .header-secondary-logo img {
    height: 40px;
  }
}
.navigation-logo .vertical-line {
  height: 31px;
  width: 0.5px;
  border: 0.5px solid var(--grey-lightest);
}
@media screen and (min-width: 768px) {
  .navigation-logo .vertical-line {
    height: 35px;
  }
}
@media screen and (min-width: 992px) {
  .navigation-logo .vertical-line {
    height: 40px;
  }
}

.overlay {
  max-width: 100%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1255px) {
  .overlay {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 12;
  }
}
.overlay .main-navigation-wrapper {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2117647059);
}
@media screen and (min-width: 1255px) {
  .overlay .main-navigation-wrapper {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.031372549);
  }
}
.overlay .main-navigation-wrapper {
  width: 100%;
  padding: 20px 2.8%;
  background-color: var(--white);
}
@media screen and (min-width: 1255px) {
  .overlay .main-navigation-wrapper {
    padding: 25px 2.8%;
  }
}
.overlay .main-navigation-wrapper .nav-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-first {
  display: block;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second {
  position: relative;
  display: none;
}
@media screen and (min-width: 1255px) {
  .overlay .main-navigation-wrapper .nav-container .col-main-nav-second {
    display: block;
  }
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item {
  cursor: pointer;
  font-size: var(--font_xs-small);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item:first-of-type.show .main-menu-item-button {
  background-color: var(--green) !important;
  transition: all 0.2s;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item:first-of-type .main-menu-item-button {
  background-color: var(--blue);
  padding: 9px 19px;
  display: block;
  white-space: nowrap;
  border-radius: 25px;
  font-size: var(--font_xs-small);
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-weight: var(--semibold);
  color: var(--white) !important;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item:first-of-type .main-menu-item-button a {
  color: var(--white) !important;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item:first-of-type .main-menu-item-button.active::after {
  color: var(--white);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item:first-of-type .active-first-nav-item {
  background-color: var(--green);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .main-menu-item-button.active::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 6px;
  position: relative;
  content: "\f078";
  display: inline-block;
  font-size: 13px;
  color: var(--black-text);
  transform: rotate(0);
  transition: 0.2s ease transform;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .main-menu-item-button.no-active:hover {
  color: var(--green);
  transition: all 0.2s;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item.show .main-menu-item-button {
  color: var(--green);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item.show .main-menu-item-button::after {
  transform: rotate(180deg);
  transition: 0.2s ease transform;
  color: var(--green);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item.show .dropdown-content {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .active-nav-item {
  color: var(--green);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item:hover .navigation-sub-link {
  color: var(--black-text);
  font-weight: normal;
  transition: 0.2s all;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item a {
  color: var(--black-text);
  font-size: var(--font_xs-small);
  cursor: pointer;
  font-weight: var(--semibold);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .navigation-sub-link {
  color: var(--black-text);
  font-weight: normal;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 3.5rem;
  width: -moz-max-content;
  width: max-content;
  transform: translate(-50%, 0);
  z-index: 100;
  padding: 3rem 6rem;
  background-color: var(--white);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2117647059);
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (min-width: 1255px) {
  .overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content .navigation-mobile-header {
    display: none;
  }
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content .title-with-links-column .column-divider {
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content .column-title {
  font-weight: bold;
  font-size: var(--font-small-title);
  padding-bottom: 25px;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li {
  font-size: var(--font_xs-small);
  color: var(--black-text);
  padding-bottom: 15px;
  width: -moz-max-content;
  width: max-content;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li a:hover {
  color: var(--green);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .no-overlay {
  z-index: -1;
  position: absolute;
  background: #737373 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col {
  padding-left: 90px;
  position: relative;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col:first-of-type {
  padding-left: 0;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .cta-column-image-container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 220px;
  max-height: 220px;
  height: 220px;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .cta-column-image-container img {
  width: 100%;
  height: 100%;
  max-height: unset;
  display: block !important;
  position: relative;
  z-index: -2;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .cta-column-image-container .cta-column-button {
  top: 70%;
  text-align: center;
  position: absolute;
  color: var(--white) !important;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .cta-column-image-container .cta-column-tagline {
  color: var(--white);
  top: 43%;
  position: absolute;
  margin-left: 20px;
  margin-right: 20px;
  z-index: 105;
  font-size: var(--font_xs-small);
  font-weight: bold;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-tagline {
  margin-bottom: 0;
  margin-top: 0;
  color: var(--grey-lighter);
  font-size: var(--font_small);
  font-weight: var(--regular);
  cursor: default;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-list {
  display: -ms-flexbox;
  display: flex;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-list .image-grid-list-item {
  padding-left: 20px;
  position: relative;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-list .image-grid-list-item:first-of-type {
  padding-left: 0;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-list .image-grid-list-item a {
  position: relative;
  height: 170px;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-list .image-grid-list-item a .image-grid-image {
  width: 100%;
  height: 100%;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-list .image-grid-list-item a .image-grid-image img {
  width: 170px;
  height: 170px;
  max-height: unset;
  object-fit: cover;
  position: relative;
  z-index: -2;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .col .image-grid-list .image-grid-list-item a .image-grid-title {
  top: 34%;
  text-align: center;
  color: var(--white);
  z-index: 105;
  white-space: normal !important;
  position: absolute;
  font-family: var(--font-body);
  font-weight: bold;
  font-size: var(--font-small-title);
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-second .main-navigation-item-list .main-navigation-item .dropdown-content li .row .image-grid-column .column-title {
  margin-top: 0;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .addwish-search-input {
  cursor: pointer;
  padding-right: 0;
  border: 2px solid var(--black-text);
  padding: 9px 20px;
  border-radius: 25px;
  position: relative;
  text-indent: 12px;
}
@media screen and (min-width: 1255px) {
  .overlay .main-navigation-wrapper .nav-container .col-main-nav-third .addwish-search-input {
    min-width: 120px;
  }
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .addwish-search-input img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 18px;
  height: 18px;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .addwish-search-input span {
  font-size: var(--font_xs-small);
  font-weight: bold;
  line-height: 1;
  display: block;
  color: var(--black-text);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons a img {
  height: 26px;
  width: 26px;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .cta-button {
  display: none;
}
@media screen and (min-width: 1255px) {
  .overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .cta-button {
    display: block;
  }
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .cta-button .nb-primary-button {
  padding: 9px 20px;
  white-space: nowrap;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .cart-icon {
  position: relative;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .cart-icon .cart-count {
  position: absolute;
  top: -5px;
  right: -7px;
  background-color: var(--green);
  border-radius: 50%;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 8px;
  color: var(--white);
  line-height: 14px;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .hamburger-wrapper {
  display: block;
  position: relative;
  cursor: pointer;
  width: 31px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
@media screen and (min-width: 1255px) {
  .overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .hamburger-wrapper {
    display: none;
  }
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .hamburger-wrapper .hamburger {
  width: 31px;
  height: 3px;
  background: var(--black-text);
  top: calc(50% - 2px);
  right: 0;
  transform: translateY(-50%);
  position: absolute;
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .hamburger-wrapper .hamburger:before {
  top: -11px;
  content: "";
  position: absolute;
  width: 31px;
  height: 3px;
  background: var(--black-text);
}
.overlay .main-navigation-wrapper .nav-container .col-main-nav-third .icons .hamburger-wrapper .hamburger:after {
  top: 11px;
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  background: var(--black-text);
}

.navigation-mobile {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100vh;
  z-index: 13;
  background-color: var(--blue-lightest);
  border-top: 5px solid var(--blue);
  transition: 0.2s ease-out transform;
}
.navigation-mobile[data-toggle=enabled] {
  transform: translateX(0);
  transition: 0.2s ease-out transform;
}
@media screen and (min-width: 1255px) {
  .navigation-mobile {
    display: none;
  }
}
.navigation-mobile[data-toggle=enabled] .dropdown-content {
  transform: translateX(100%) !important;
}
.navigation-mobile .navigation-mobile-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--black-text);
  padding: 2rem 0;
}
.navigation-mobile .navigation-mobile-header .navigation-mobile-header-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navigation-mobile .navigation-mobile-header .navigation-mobile-header-container .close-nav, .navigation-mobile .navigation-mobile-header .navigation-mobile-header-container .close-dropdown {
  width: 35px;
  height: 35px;
  background-image: url(../img/remove.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.navigation-mobile .navigation-mobile-container {
  height: 100%;
  overflow-y: auto;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list {
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-lightest);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item {
  cursor: pointer;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item:first-of-type .main-menu-item-button {
  font-weight: var(--semibold);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item {
  margin-bottom: 20px;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .main-menu-item-button {
  font-size: 20px;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .main-menu-item-button.active {
  pointer-events: none;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .main-menu-item-button.active::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 15px;
  content: "\f054";
  font-size: 20px;
  color: var(--black-text);
  transition: 0.2s ease transform;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content {
  border-top: 0;
  transform: translateX(200%);
  border-top: 5px solid var(--blue);
  position: fixed;
  top: -5px;
  left: 0;
  background-color: var(--blue-lightest);
  width: 100%;
  height: calc(100% + 5px);
  z-index: 12;
  transition: 0.2s ease-out transform;
  cursor: auto;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content.show {
  transform: translateX(100%) !important;
  transition: 0.2s ease-out transform;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .navigation-mobile-header .dropdown-item {
  font-size: 20px;
  cursor: pointer;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .navigation-mobile-header .dropdown-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f053";
  margin-right: 18px;
  font-size: 20px;
  color: var(--black-text);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container {
  height: calc(100% - 100px);
  overflow-y: auto;
  padding-bottom: 3rem;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container {
  padding-top: 2rem;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .no-overlay {
  z-index: -1;
  position: absolute;
  background: #737373 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row {
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .col {
  padding-left: 0;
  padding-right: 0;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-with-links-column {
  padding-bottom: 2.5rem;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-cta-image-column .cta-column-image-container {
  position: relative;
  height: 30vh;
}
@media screen and (min-width: 768px) {
  .navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-cta-image-column .cta-column-image-container {
    max-width: 60%;
  }
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-cta-image-column .cta-column-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: -2;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-cta-image-column .cta-column-image-container .cta-column-tagline, .navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-cta-image-column .cta-column-image-container .cta-column-button {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  text-align: center;
  font-weight: var(--semibold);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-cta-image-column .cta-column-image-container .cta-column-tagline {
  transform: translate(-50%, -100%);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .title-cta-image-column .cta-column-image-container .cta-column-button {
  transform: translate(-50%, 50%);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-tagline {
  font-size: 12px;
  padding-bottom: 0.5rem;
  color: var(--grey-dark);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .column-title {
  font-size: 20px !important;
  font-weight: var(--semibold);
  padding-bottom: 1rem !important;
  color: var(--black-text) !important;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-list .image-grid-list-item {
  padding: 0;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-list .image-grid-list-item .image-grid-list-item-link {
  position: relative;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-list .image-grid-list-item .image-grid-list-item-link .image-grid-image {
  height: 100%;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-list .image-grid-list-item .image-grid-list-item-link .image-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
  z-index: -2;
  position: relative;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .image-grid-column .image-grid-list .image-grid-list-item .image-grid-list-item-link .image-grid-title {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 20px;
  font-weight: var(--semibold);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .col .column-title {
  font-size: 12px;
  padding-bottom: 0.8rem;
  color: var(--grey-dark);
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .col ul li:not(:last-child) {
  padding-bottom: 1rem;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list .main-navigation-item .dropdown-content .list-container .container .row .col ul li .navigation-sub-link {
  font-size: 20px;
}
.navigation-mobile .navigation-mobile-container .main-navigation-item-list a {
  color: var(--black-text);
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links {
  padding-top: 1rem;
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .primary-menu_links .menu-wrapper ul li {
  padding-bottom: 12px;
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .primary-menu_links .menu-wrapper ul li a {
  font-size: var(--font_medium);
  color: var(--black-text);
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .primary-items-mobile li:not(:last-child) {
  padding-bottom: 12px;
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .primary-items-mobile li a {
  font-size: var(--font_medium);
  color: var(--black-text);
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .cta-mobile-container {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-lightest);
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .cta-mobile-container .cta-title-mobile {
  font-weight: bold;
  font-size: var(--font_medium);
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .cta-mobile-container .cta-description-mobile {
  margin-top: 10px;
  font-size: var(--font_medium);
}
@media screen and (min-width: 576px) {
  .navigation-mobile .navigation-mobile-container .relevant-mobile-links .cta-mobile-container .cta-description-mobile {
    width: 80%;
  }
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .cta-mobile-container .cta-button-mobile {
  margin-top: 1.5rem;
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .cta-mobile-container .cta-some {
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}
.navigation-mobile .navigation-mobile-container .relevant-mobile-links .cta-mobile-container .cta-some .icon {
  color: var(--blue);
  font-size: 41px;
}

/* Footer
--------------------------------------------- */
footer.site-footer {
  background-color: var(--blue);
}
footer.site-footer .footer-section {
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  footer.site-footer .footer-section {
    padding-top: 75px;
    max-width: 1080px;
  }
}
footer.site-footer .footer-section__primary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 576px) {
  footer.site-footer .footer-section__primary {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  footer.site-footer .footer-section__primary {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  footer.site-footer .footer-section__primary {
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
footer.site-footer .footer-section__primary-column--title {
  font-size: var(--font-small-title);
  font-weight: var(--semibold);
  margin-bottom: 25px;
}
@media screen and (min-width: 1200px) {
  footer.site-footer .footer-section__primary-column--links {
    font-size: var(--font_medium);
  }
}
footer.site-footer .footer-section__primary-column--links .footer-link a {
  color: var(--white);
}
footer.site-footer .footer-section__primary-column--links .footer-link:not(:last-child) {
  margin-bottom: 10px;
}
footer.site-footer .footer-section__primary-column .footer-social-media {
  margin-top: 24px;
}
footer.site-footer .footer-section__primary-column .footer-social-media__title {
  margin-bottom: 20px;
}
footer.site-footer .footer-section__primary-column .footer-social-media__icons {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
footer.site-footer .footer-section__primary-column .footer-social-media__icons a {
  color: var(--white);
}
footer.site-footer .footer-section__primary-column .footer-social-media__icons a i {
  font-size: 40px;
}
footer.site-footer .footer-section__secondary-title {
  margin: 50px 0 25px 0;
  font-size: var(--font-small-title);
  font-weight: var(--semibold);
}
@media screen and (min-width: 768px) {
  footer.site-footer .footer-section__secondary-shipping-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (max-content)[2];
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
footer.site-footer .footer-section__secondary-shipping-info .shipping-info-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
footer.site-footer .footer-section__secondary-shipping-info .shipping-info-wrapper:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  footer.site-footer .footer-section__secondary-shipping-info .shipping-info-wrapper {
    margin-bottom: 0 !important;
  }
}
footer.site-footer .footer-section__secondary-shipping-info .shipping-info-wrapper__icon {
  margin-right: 12px;
}
footer.site-footer .footer-section__secondary-shipping-info .shipping-info-wrapper__text p {
  display: inline-block;
  margin: 0;
  font-size: 12.8px;
}
footer.site-footer .footer-section__secondary-shipping-info .shipping-info-wrapper__text .svg-shipping-footer {
  display: inline-block;
  margin: -2px 0 0 5px;
}
footer.site-footer .footer-section__partners {
  margin-top: 70px;
}
footer.site-footer .footer-section__partners-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 20px;
}
@media screen and (min-width: 576px) {
  footer.site-footer .footer-section__partners-wrapper {
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  footer.site-footer .footer-section__partners-wrapper {
    gap: 20px;
  }
}
footer.site-footer .footer-section__partners-wrapper .partner-img {
  max-height: 40px;
  max-width: 100px;
  object-fit: contain;
}

/* Single Product
--------------------------------------------- */
/* Single Product
--------------------------------------------- */
.single-product .woocommerce-notices-wrapper .woocommerce-message {
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message {
    padding: 1.25rem 4rem;
  }
}
.single-product .woocommerce-notices-wrapper .woocommerce-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
.single-product .woocommerce-notices-wrapper .woocommerce-message span {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 1.8rem;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message span {
    font-size: var(--font_xs-small);
  }
}
@media screen and (min-width: 768px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message span {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message span {
    padding-left: 3rem;
  }
}
.single-product .woocommerce-notices-wrapper .woocommerce-message span .button {
  white-space: nowrap;
  float: none;
  background-color: var(--blue);
  color: var(--white);
  padding: 9px 25px;
  border-radius: 25px;
}
@media screen and (max-width: 576px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message span .button {
    padding: 9px 18px;
    font-size: var(--font_xs-small);
  }
}
.single-product .woocommerce-notices-wrapper .woocommerce-message::before {
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message::before {
    left: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message::before {
    left: 4rem;
  }
}
.single-product .woocommerce-notices-wrapper .woocommerce-error {
  padding: 1rem;
  background-color: #ffecec;
}
@media screen and (min-width: 992px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-error {
    padding: 1.25rem 4rem;
  }
}
.single-product .woocommerce-notices-wrapper .woocommerce-error {
  margin: 0;
}
.single-product .woocommerce-notices-wrapper .woocommerce-error li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 1.8rem !important;
}
@media screen and (max-width: 576px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-error li {
    font-size: var(--font_xs-small);
  }
}
@media screen and (min-width: 768px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-error li {
    padding-left: 2rem !important;
  }
}
@media screen and (min-width: 992px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-error li {
    padding-left: 3rem !important;
  }
}
.single-product .woocommerce-notices-wrapper .woocommerce-error li span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.single-product .woocommerce-notices-wrapper .woocommerce-error li span .button {
  -ms-flex-order: 2;
  order: 2;
  white-space: nowrap;
  float: none;
  background-color: var(--blue);
  color: var(--white);
  padding: 9px 25px;
  border-radius: 25px;
}
@media screen and (max-width: 576px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-error li span .button {
    padding: 9px 18px;
    font-size: var(--font_xs-small);
  }
}
.single-product .woocommerce-notices-wrapper .woocommerce-error::before {
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-error::before {
    left: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-error::before {
    left: 4rem;
  }
}
.single-product .product.sale .price ins {
  text-decoration: none;
}
.single-product .product.type-product .images,
.single-product .product.type-product .summary {
  float: none;
  width: 100%;
}
.single-product .product.type-product .main-product-content {
  position: relative;
  background-color: var(--white);
  margin-right: 2px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "breadcrumb summary" "images summary" "modules summary";
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
.single-product .product.type-product .main-product-content .summary {
  -ms-flex-order: 2;
  order: 2;
  padding: 2rem 0 4rem 0;
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .summary {
    padding: 0;
    -ms-flex-order: inherit;
    order: inherit;
    grid-area: summary;
    overflow-x: auto;
  }
}
.single-product .product.type-product .main-product-content .summary .summary-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.single-product .product.type-product .main-product-content .summary .summary-wrapper .nb-single-product-extra-details {
  -ms-flex-order: 2;
  order: 2;
}
.single-product .product.type-product .main-product-content .summary .summary-wrapper .woocommerce-product-details__short-description {
  overflow-x: auto;
}
.single-product .product.type-product .main-product-content .summary .summary-wrapper .nb-woocommerce-data-accordions {
  -ms-flex-order: 3;
  order: 3;
}
.single-product .product.type-product .main-product-content .summary .summary-wrapper .variations_form {
  -ms-flex-order: 1;
  order: 1;
  margin-top: -1.125rem;
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .summary .summary-wrapper .variations_form {
    margin-bottom: 2rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .summary .summary-wrapper .nb-single-product-extra-details,
  .single-product .product.type-product .main-product-content .summary .summary-wrapper .nb-woocommerce-data-accordions,
  .single-product .product.type-product .main-product-content .summary .summary-wrapper .variations_form {
    -ms-flex-order: inherit;
    order: inherit;
  }
}
.single-product .product.type-product .main-product-content .product-badges {
  position: absolute;
  top: 25px;
  right: 12px;
  left: auto;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  .single-product .product.type-product .main-product-content .product-badges {
    right: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .main-product-content .product-badges {
    right: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .product-badges {
    top: 2rem;
    right: calc(33.33% + 3rem);
  }
}
.single-product .product.type-product .main-product-content .product-badges .onsale,
.single-product .product.type-product .main-product-content .product-badges .new-product {
  color: var(--white);
  border-radius: 50%;
  line-height: 1;
  font-weight: 700;
  font-size: 13px;
  padding: 0;
  width: 53px;
  height: 53px;
  position: static;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .single-product .product.type-product .main-product-content .product-badges .onsale,
  .single-product .product.type-product .main-product-content .product-badges .new-product {
    line-height: 1rem;
    width: 62px;
    height: 62px;
  }
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .main-product-content .product-badges .onsale,
  .single-product .product.type-product .main-product-content .product-badges .new-product {
    font-size: 1rem;
    line-height: 1.25rem;
    width: 65px;
    height: 65px;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .product-badges .onsale,
  .single-product .product.type-product .main-product-content .product-badges .new-product {
    font-size: 1.25rem;
    width: 82px;
    height: 82px;
  }
}
.single-product .product.type-product .main-product-content .product-badges .onsale {
  background-color: var(--brown);
}
.single-product .product.type-product .main-product-content .product-badges .new-product {
  background-color: var(--blue);
}
.single-product .product.type-product .main-product-content .woocommerce-breadcrumb {
  display: none;
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .woocommerce-breadcrumb {
    color: var(--grey-dark);
    background-color: var(--blue-light);
    display: block;
    padding: 2rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    grid-area: breadcrumb;
  }
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images {
  position: relative;
  border-bottom: 2px solid var(--white);
  background-color: var(--blue-light);
  -ms-flex-order: 2;
  order: 2;
  padding-top: 7rem;
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images {
    padding-top: 9rem;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images {
    padding-top: 0;
    -ms-flex-order: inherit;
    order: inherit;
    grid-area: images;
  }
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper {
  margin: 0;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper {
    padding: 0 2rem;
  }
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery {
  min-width: 100%;
  width: 0;
  mix-blend-mode: multiply;
  opacity: 0;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery.slick-initialized {
  opacity: 1;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery .slick-track {
  display: -ms-flexbox;
  display: flex;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery .slick-track .image-slide-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  outline: 0 !important;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery .slick-track .image-slide-wrapper .zoom-img-wrap {
  width: auto;
  height: auto;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery .slick-track .image-slide-wrapper .zoom-img-wrap img {
  width: min(350px, 100%) !important;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery .slick-track .image-slide-wrapper .zoom-img-wrap img {
    width: min(460px, 100%) !important;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .nb-woocommerce-single-product-gallery .slick-track .image-slide-wrapper .zoom-img-wrap img {
    width: min(670px, 100%) !important;
  }
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .loading-variation {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(3px);
  display: none;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .loading-variation.active {
  display: block;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .woocommerce-product-gallery__wrapper .loading-variation::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  height: 55px;
  width: 55px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/my_spinner.gif");
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .nb-woocommerce-single-product-gallery-arrow {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .nb-woocommerce-single-product-gallery-arrow {
    outline: 0;
    border: 1px solid var(--grey-lightest);
    background: var(--white);
    border-radius: 50%;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
    width: 60px;
    height: 60px;
  }
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .nb-woocommerce-single-product-gallery-arrow.prev-arrow {
    left: 2rem;
  }
  .single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .nb-woocommerce-single-product-gallery-arrow.next-arrow {
    transform: translateY(-50%) rotate(180deg);
    right: 2rem;
  }
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .nb-woocommerce-single-product-gallery-dots .slick-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 2rem;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .nb-woocommerce-single-product-gallery-dots .slick-dots li button {
  font-size: 0;
  outline: 0;
  border: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--grey-lightest);
  margin: 0 0.45rem;
  border-radius: 50%;
  cursor: pointer;
}
.single-product .product.type-product .main-product-content .nb-woocommerce-single-product-images .nb-woocommerce-single-product-gallery-dots .slick-dots li.slick-active button {
  background-color: var(--black-text);
}
.single-product .product.type-product .main-product-content .single-product-three-columns-images {
  border-top: 2px solid var(--white);
  background-color: var(--white);
  display: -ms-grid;
  display: grid;
  gap: 2px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.single-product .product.type-product .main-product-content .single-product-three-columns-images .image-wrapper {
  background-color: var(--blue-light);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .single-product .product.type-product .main-product-content .single-product-three-columns-images .image-wrapper {
    padding: 2rem;
  }
}
.single-product .product.type-product .main-product-content .single-product-three-columns-images .image-wrapper:hover img {
  transform: scale(1.1);
}
.single-product .product.type-product .main-product-content .single-product-three-columns-images .image-wrapper img {
  width: 100%;
  max-width: 20rem;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: 0.4s ease transform;
  transform: scale(1);
}
.single-product .product.type-product .summary {
  margin-bottom: 0;
  background-color: var(--blue-lightest);
}
@media screen and (max-width: 1200px) {
  .single-product .product.type-product .summary .inner-wrapper-sticky {
    position: static !important;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .summary .summary-wrapper {
    padding: 4rem;
    max-width: 100%;
  }
}
.single-product .product.type-product .summary .nb-product-header-extras {
  display: none;
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .summary .nb-product-header-extras {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
}
.single-product .product.type-product .summary .nb-product-header-extras .nb-product-header-extras-category {
  font-size: 1rem;
  color: var(--black-text);
}
.single-product .product.type-product .summary .nb-product-header-extras .nb-product-header-extras-sku {
  font-size: 0.875rem;
  color: var(--black-text);
  opacity: 0.5;
}
.single-product .product.type-product .summary .mobile-price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-size: 16px;
  margin: 1rem 0 0 0;
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .summary .mobile-price {
    margin: 1.5rem 0 2.75rem 0;
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .summary .mobile-price {
    gap: 1rem;
  }
}
.single-product .product.type-product .summary .mobile-price del ~ ins {
  color: var(--brown);
}
.single-product .product.type-product .summary .mobile-price .dof-normal-price {
  color: var(--black-text);
}
.single-product .product.type-product .summary .mobile-price .dof-normal-price .woocommerce-Price-amount,
.single-product .product.type-product .summary .mobile-price .dof-normal-price ins {
  text-decoration: none;
}
.single-product .product.type-product .summary .mobile-price .dof-membership-price {
  color: var(--green);
}
.single-product .product.type-product .summary .mobile-price .dof-membership-price + .dof-normal-price {
  color: var(--grey-dark);
}
.single-product .product.type-product .summary .mobile-price .dof-membership-price + .dof-normal-price .woocommerce-Price-amount {
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .summary .mobile-price .dof-membership-price + .dof-normal-price .woocommerce-Price-amount {
    font-size: 1.2rem;
  }
}
.single-product .product.type-product .summary .mobile-price .dof-normal-price,
.single-product .product.type-product .summary .mobile-price .dof-membership-price,
.single-product .product.type-product .summary .mobile-price .woocommerce-Price-amount {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .summary .mobile-price .dof-normal-price,
  .single-product .product.type-product .summary .mobile-price .dof-membership-price,
  .single-product .product.type-product .summary .mobile-price .woocommerce-Price-amount {
    font-size: 1.3125rem;
  }
}
.single-product .product.type-product .summary .mobile-price del {
  margin-right: 1rem;
  color: var(--grey-dark);
}
.single-product .product.type-product .summary .mobile-price del .woocommerce-Price-amount {
  font-weight: 500;
  font-size: 15px;
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .summary .mobile-price del .woocommerce-Price-amount {
    font-size: 1.2rem;
  }
}
.single-product .product.type-product .summary .mobile-price > .woocommerce-Price-amount {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--grey-dark);
}
.single-product .product.type-product .summary .mobile-price ins {
  color: var(--green);
}
.single-product .product.type-product .summary .mobile-price .dof-normal-price ins {
  color: var(--grey-dark);
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .summary .mobile-price {
    display: none;
  }
}
.single-product .product.type-product .summary .title-price-wrapper {
  position: absolute !important;
  top: 25px !important;
  width: 67%;
  z-index: 5 !important;
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .summary .title-price-wrapper {
    width: 100%;
    position: static !important;
  }
}
.single-product .product.type-product .summary .title-price-wrapper .product_title {
  font-weight: 500;
  font-family: var(--font-title);
  font-size: var(--font-small-title);
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .summary .title-price-wrapper .product_title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .single-product .product.type-product .summary .title-price-wrapper .product_title {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}
.single-product .product.type-product .summary .title-price-wrapper .price {
  display: none;
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .summary .title-price-wrapper .price {
    display: block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    margin: 1rem 0 0 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .single-product .product.type-product .summary .title-price-wrapper .price {
    margin: 1.5rem 0 2.75rem 0;
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .single-product .product.type-product .summary .title-price-wrapper .price {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .summary .title-price-wrapper .price del ~ ins {
    color: var(--brown);
  }
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-normal-price {
    color: var(--black-text);
  }
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-normal-price .woocommerce-Price-amount,
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-normal-price ins {
    text-decoration: none;
  }
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-membership-price {
    color: var(--green);
  }
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-membership-price + .dof-normal-price {
    color: var(--grey-dark);
  }
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-membership-price + .dof-normal-price .woocommerce-Price-amount {
    font-weight: 500;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-membership-price + .dof-normal-price .woocommerce-Price-amount {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-normal-price,
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-membership-price,
  .single-product .product.type-product .summary .title-price-wrapper .price .woocommerce-Price-amount {
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-normal-price,
  .single-product .product.type-product .summary .title-price-wrapper .price .dof-membership-price,
  .single-product .product.type-product .summary .title-price-wrapper .price .woocommerce-Price-amount {
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .summary .title-price-wrapper .price del {
    margin-right: 1rem;
    color: var(--grey-dark);
  }
  .single-product .product.type-product .summary .title-price-wrapper .price del .woocommerce-Price-amount {
    font-weight: 500;
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .single-product .product.type-product .summary .title-price-wrapper .price del .woocommerce-Price-amount {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .summary .title-price-wrapper .price > .woocommerce-Price-amount {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--grey-dark);
  }
}
.single-product .product.type-product .summary .nb-single-product-extra-details .detail-item {
  margin-bottom: 0.6875rem;
}
.single-product .product.type-product .summary .nb-single-product-extra-details .detail-item.delivery-time-label {
  margin-bottom: 1.375rem;
}
.single-product .product.type-product .summary .nb-single-product-extra-details .detail-item.delivery-time-label .detail-item-text .green, .single-product .product.type-product .summary .nb-single-product-extra-details .detail-item.delivery-time-label .detail-item-text.green {
  color: var(--green);
}
.single-product .product.type-product .summary .nb-single-product-extra-details .detail-item .detail-item-icon {
  width: 1.25rem;
}
.single-product .product.type-product .summary .nb-single-product-extra-details .detail-item .detail-item-icon i {
  margin-right: 0.5rem;
  color: var(--black-text);
}
.single-product .product.type-product .summary .nb-single-product-extra-details .detail-item .detail-item-text {
  color: var(--black-text);
}
.single-product .product.type-product .summary .stock {
  margin-bottom: 0;
  font-size: 16px;
}
.single-product .product.type-product .summary .variations_form .variations {
  margin-bottom: 0;
}
.single-product .product.type-product .summary .variations_form .variations th {
  text-align: left;
  margin-top: 1.125rem;
  margin-bottom: 0.875rem;
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .summary .variations_form .variations th {
    font-size: 16px;
  }
}
.single-product .product.type-product .summary .variations_form .variations ul.variable-items-wrapper li[data-value=nvar], .single-product .product.type-product .summary .variations_form .variations ul.variable-items-wrapper li[data-value=no-variant] {
  display: none;
}
.single-product .product.type-product .summary .variations_form .variations ul.variable-items-wrapper .variable-item-contents .variation-sale {
  position: absolute;
  top: -15px;
  left: -12px;
  font-size: 8px;
  line-height: 1;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  color: var(--white);
  background-color: var(--brown);
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.single-product .product.type-product .summary .variations_form .variations ul.variable-items-wrapper li.disabled .variation-sale {
  display: none;
}
.single-product .product.type-product .summary .variations_form .variations ul[data-attribute_name=attribute_pa_farve] .variable-item {
  height: -moz-fit-content;
  height: fit-content;
  overflow: initial;
}
.single-product .product.type-product .summary .variations_form .variations ul[data-attribute_name=attribute_pa_farve] .variable-item .variable-item-contents {
  position: relative;
}
.single-product .product.type-product .summary .variations_form .variations ul[data-attribute_name=attribute_pa_farve] .variable-item .variable-item-contents img {
  max-height: 65px;
  object-fit: contain;
  padding: 5px;
  width: auto;
}
.single-product .product.type-product .summary .variations_form .variations ul[data-attribute_name=attribute_pa_farve] .variable-item .variable-item-contents .variable-item-span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.single-product .product.type-product .summary .variations_form .variations ul[data-attribute_name=attribute_pa_str] .variable-item-span {
  text-transform: uppercase;
}
.single-product .product.type-product .summary .variations_form .variations .variable-item {
  min-width: 52px;
  min-height: 37px;
  box-shadow: none;
  border: 1px solid var(--grey-lightest);
  border-radius: 5px;
}
.single-product .product.type-product .summary .variations_form .variations .variable-item.selected {
  border: 2px solid var(--grey-dark);
}
.single-product .product.type-product .summary .variations_form .variations .variable-item:not(.radio-variable-item).disabled .variable-item-contents:before {
  filter: invert(46%) sepia(90%) saturate(0%) hue-rotate(134deg) brightness(80%) contrast(84%);
}
.single-product .product.type-product .summary .variations_form .variations .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before {
  display: none;
}
.single-product .product.type-product .summary .variations_form .variations .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents:before {
  display: none;
}
.single-product .product.type-product .summary .variations_form .variations .variable-item.color-variable-item {
  padding: 0;
}
.single-product .product.type-product .summary .variations_form .variations .variable-item.image-variable-item {
  height: -moz-fit-content;
  height: fit-content;
  min-width: 90px;
  min-height: 90px;
}
.single-product .product.type-product .summary .variations_form .variations .variable-item .variable-item-span {
  font-size: 0.875rem;
}
.single-product .product.type-product .summary .variations_form .variations .reset_variations {
  display: none !important;
}
.single-product .product.type-product .summary .woocommerce-variation-price {
  display: none;
}
.single-product .product.type-product .summary .cart .quantity {
  display: none !important;
}
.single-product .product.type-product .summary .cart .single_add_to_cart_button {
  background-color: var(--green);
  margin-top: 2.125rem;
  border-radius: 100px;
  padding: 13px 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .single-product .product.type-product .summary .cart .single_add_to_cart_button {
    width: auto;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .single-product .product.type-product .summary .cart .single_add_to_cart_button {
    margin-top: 3.125rem;
    padding: 1rem 2rem;
  }
}
.single-product .product.type-product .summary .cart .single_add_to_cart_button:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 1em;
  background-image: url("../img/cart.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.single-product .product.type-product .summary .nb-woocommerce-data-accordions {
  margin-top: 2.5rem;
}
.single-product footer.site-footer {
  margin-top: 0;
}

/* Zoom Image
--------------------------------------------- */
.zoom-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.zoom-img-wrap.active {
  display: block;
}
@media (min-width: 1200px) {
  .zoom-img-wrap:hover .zoom-img-magnifier {
    display: block;
  }
}
.zoom-img-wrap .zoom-img-magnifier {
  cursor: pointer;
}
@media (min-width: 1200px) {
  .zoom-img-wrap .zoom-img-magnifier {
    display: none;
    position: absolute;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: none;
    width: 250px;
    height: 250px;
    z-index: 99;
  }
}

/* Extra Modules
--------------------------------------------- */
.nb-woocommerce-extra-modules {
  -ms-flex-order: 3;
  order: 3;
}
@media screen and (min-width: 1200px) {
  .nb-woocommerce-extra-modules {
    -ms-flex-order: inherit;
    order: inherit;
    grid-area: modules;
  }
}
.nb-woocommerce-extra-modules {
  /* Large Image
  --------------------------------------------- */
}
.nb-woocommerce-extra-modules .single-product-large-image {
  display: -ms-flexbox;
  display: flex;
}
.nb-woocommerce-extra-modules .single-product-large-image img {
  width: 100%;
  height: auto;
}
.nb-woocommerce-extra-modules {
  /* Video
  --------------------------------------------- */
}
.nb-woocommerce-extra-modules .single-product-video {
  padding-top: 56.25%;
  position: relative;
}
.nb-woocommerce-extra-modules .single-product-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nb-woocommerce-extra-modules {
  /* Two Columns Text
  --------------------------------------------- */
}
.nb-woocommerce-extra-modules .single-product-two-columns-text {
  background-color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .single-product-two-columns-text {
    padding: 6rem 3.5rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-extra-modules .single-product-two-columns-text {
    padding: 6rem 7.5rem;
  }
}
.nb-woocommerce-extra-modules .single-product-two-columns-text .title {
  margin: 0 0 2.75rem 0;
}
.nb-woocommerce-extra-modules .single-product-two-columns-text .two-columns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .single-product-two-columns-text .two-columns-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.nb-woocommerce-extra-modules .single-product-two-columns-text .two-columns-wrapper .text-column {
  line-height: 1.7;
}
.nb-woocommerce-extra-modules {
  /* One Column Text
  --------------------------------------------- */
}
.nb-woocommerce-extra-modules .single-product-one-column-text {
  background-color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .single-product-one-column-text {
    padding: 6rem 3.5rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-extra-modules .single-product-one-column-text {
    padding: 6rem 7.5rem;
  }
}
.nb-woocommerce-extra-modules .single-product-one-column-text .text-column {
  line-height: 1.7;
}
.nb-woocommerce-extra-modules .single-product-one-column-text .title {
  margin: 0 0 2.75rem 0;
}
.nb-woocommerce-extra-modules {
  /* Specifications
  --------------------------------------------- */
}
.nb-woocommerce-extra-modules .single-product-specifications {
  background-color: var(--white);
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .single-product-specifications {
    padding: 0 3.5rem 6rem 3.5rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-extra-modules .single-product-specifications {
    padding: 0 7.5rem 6rem 7.5rem;
  }
}
.nb-woocommerce-extra-modules .single-product-specifications__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  gap: 10px;
  -ms-grid-column-align: center;
  justify-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .nb-woocommerce-extra-modules .single-product-specifications__wrapper {
    -ms-grid-columns: auto auto auto auto;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
  }
}
@media screen and (min-width: 2400px) {
  .nb-woocommerce-extra-modules .single-product-specifications__wrapper {
    -ms-grid-columns: auto auto auto auto auto auto auto auto;
    grid-template-columns: auto auto auto auto auto auto auto auto;
    gap: 20px;
  }
}
.nb-woocommerce-extra-modules .single-product-specifications .single-product-specification {
  width: 100%;
  border-radius: 20px;
  padding: 20px;
}
.nb-woocommerce-extra-modules .single-product-specifications .single-product-specification__icon {
  font-size: 30px;
}
.nb-woocommerce-extra-modules .single-product-specifications .single-product-specification__custom-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.nb-woocommerce-extra-modules .single-product-specifications .single-product-specification__title {
  margin: 0.5rem 0 0 0;
}
.nb-woocommerce-extra-modules .single-product-specifications .single-product-specification__content {
  font-weight: bold;
  margin: 0;
}
.nb-woocommerce-extra-modules {
  /* Embed social
  --------------------------------------------- */
}
.nb-woocommerce-extra-modules .embedsocial-pr {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .embedsocial-pr {
    padding: 4rem 3.5rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-extra-modules .embedsocial-pr {
    padding: 4rem 7.5rem;
  }
}
.nb-woocommerce-extra-modules .embedsocial-pr .title {
  margin: 0 0 2.75rem 0;
}
.nb-woocommerce-extra-modules .related-products {
  width: 100%;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .related-products {
    padding: 0 3.5rem 6rem 3.5rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-extra-modules .related-products {
    padding: 0 7.5rem 6rem 7.5rem;
  }
}
.nb-woocommerce-extra-modules .related-products h2 {
  margin-bottom: 0;
  padding-bottom: 2.75rem;
}
.nb-woocommerce-extra-modules .related-products .related-products-container {
  position: relative;
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr {
  max-width: 100%;
}
@media screen and (min-width: 1200px) {
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr {
    max-width: 51vw;
  }
}
@media screen and (min-width: 1400px) {
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr {
    max-width: 53vw;
  }
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list {
  padding-left: 14.5%;
}
@media screen and (min-width: 490px) {
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list {
    padding-left: 5%;
  }
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list {
    padding-left: 4%;
  }
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list {
    padding-left: 0;
  }
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track {
  margin-right: -25px;
  display: -ms-flexbox;
  display: flex;
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column;
  flex-direction: column;
  height: inherit;
  margin-right: 25px;
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product .price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product .product-badges {
  top: 1rem;
  right: 1rem;
  left: auto;
  position: absolute;
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product .product-badges .onsale, .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product .product-badges .new-product {
  position: static;
  width: 60px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product .product-badges .onsale {
  background-color: var(--brown);
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product .product-badges .new-product {
  background-color: var(--blue);
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-list .slick-track .product .woocommerce-loop-product__title {
  margin: 0 0 0.8rem 0;
  padding: 0;
  text-align: left;
}
.nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-arrow {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-arrow {
    display: block !important;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--grey-lightest);
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    z-index: 1;
    background-image: url("../img/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-arrow.prev {
    left: 0;
    transform: translate(-50%, -50%);
  }
  .nb-woocommerce-extra-modules .related-products .related-products-container .products-slider-wrapper-pr .slick-arrow.next {
    right: 0;
    transform: translate(0, -50%) rotate(180deg);
  }
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-extra-modules .related-products .related-products-container .r-faded {
    display: none;
  }
}

/* Accordion
--------------------------------------------- */
.accordion .accordion-item {
  position: relative;
  border-top: 2px solid var(--grey-lightest);
}
.accordion .accordion-item.active .accordion-item-header .collapse-icon {
  transform: rotate(0);
}
.accordion .accordion-item:last-child {
  border-bottom: 2px solid var(--grey-lightest);
}
.accordion .accordion-item .accordion-item-header {
  cursor: pointer;
  position: relative;
  color: var(--black-text);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 1rem 1.5rem 0;
}
.accordion .accordion-item .accordion-item-header i {
  display: inline;
}
.accordion .accordion-item .accordion-item-header h2 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  margin: 0 0 0 0.75rem;
  display: inline;
}
.accordion .accordion-item .accordion-item-header .collapse-icon {
  margin-left: auto;
  transform: rotate(180deg);
  transition: 0.4s ease transform;
}
.accordion .accordion-item .accordion-item-content {
  display: none;
  padding-bottom: 1.5rem;
}

/* Accordion Product Upsell
--------------------------------------------- */
.single-product-product-upsell {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 2px solid var(--grey-lightest);
  margin: 1.5rem 0;
}
.single-product-product-upsell .product-image {
  background-color: var(--blue-light);
  width: 100px;
  min-height: 100px;
  padding: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.single-product-product-upsell .product-image img {
  mix-blend-mode: multiply;
}
.single-product-product-upsell .product-content {
  padding: 1.3rem 1.75rem 1.3rem 1.75rem;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .single-product-product-upsell .product-content {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .single-product-product-upsell .product-content {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1680px) {
  .single-product-product-upsell .product-content {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
  }
}
.single-product-product-upsell .product-content .product-data {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.single-product-product-upsell .product-content .product-data .product-content-title {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black-text);
}
.single-product-product-upsell .product-content .product-data .product-content-price {
  display: block;
  color: var(--black-text);
  font-size: 0.875rem;
  font-weight: 700;
}
.single-product-product-upsell .product-content .product-add-to-cart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
}
.single-product-product-upsell .product-content .product-add-to-cart .added_to_cart,
.single-product-product-upsell .product-content .product-add-to-cart .add_to_cart_button {
  border: 2px solid var(--green);
  border-radius: 100px;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  font-size: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black-text);
}
.single-product-product-upsell .product-content .product-add-to-cart .added_to_cart.added,
.single-product-product-upsell .product-content .product-add-to-cart .add_to_cart_button.added {
  display: none;
}
.single-product-product-upsell .product-content .product-add-to-cart .added_to_cart:before,
.single-product-product-upsell .product-content .product-add-to-cart .add_to_cart_button:before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 8px;
  background-image: url("../img/cart-black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Giftcard
--------------------------------------------- */
.product-giftcard {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 2rem;
}
.product-giftcard.required label::after {
  content: "*";
  display: inline-block;
}
.product-giftcard label {
  width: 100%;
  font-size: var(--font_xs-small);
  color: var(--grey-dark);
  margin-top: 0.5rem;
  margin-left: 15px;
}
.product-giftcard input {
  width: 100%;
  padding: 15px 22px;
  border: 1px solid var(--blue-light);
  background-color: var(--white);
  border-radius: 50px;
  margin-top: 0.5rem;
  -moz-appearance: textfield;
  outline: 0;
}
.product-giftcard input.novalid {
  border: 1px solid var(--error);
}
.product-giftcard input::-webkit-outer-spin-button, .product-giftcard input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-giftcard .error {
  padding-left: 22px;
  color: var(--error);
  font-size: 12px;
  margin-top: 6px;
}

/* Product Card
--------------------------------------------- */
.archive .products .product[data-big=double-size] {
  -ms-grid-column: span 2;
  grid-column: span 2;
  -ms-grid-row: span 2;
  grid-row: span 2;
}
.archive .products .product[data-big=double-size] > a:first-child {
  padding: 0;
  height: 75%;
}
.archive .products .product[data-big=double-size] > a:first-child img {
  max-height: 65%;
}
.archive .products .product[data-big=double-size] > a:last-child, .archive .products .product[data-big=double-size] > a.product-data {
  padding: 2rem;
}
@media screen and (min-width: 576px) {
  .archive .products .product[data-big=double-size] > a:last-child, .archive .products .product[data-big=double-size] > a.product-data {
    padding: 3rem;
  }
}
.archive .products .product[data-big=double-size] > a:last-child, .archive .products .product[data-big=double-size] > a.product-data {
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.archive .products .product[data-big=double-size] > a:last-child .price, .archive .products .product[data-big=double-size] > a:last-child .woocommerce-loop-product__title, .archive .products .product[data-big=double-size] > a.product-data .price, .archive .products .product[data-big=double-size] > a.product-data .woocommerce-loop-product__title {
  font-size: 1rem;
}

.products .product,
.atc-popup-recommendations .product,
.related-products .product,
.products-grid .product,
.aw-search-overlay-results-products .product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.products .product:hover > a:first-child img,
.atc-popup-recommendations .product:hover > a:first-child img,
.related-products .product:hover > a:first-child img,
.products-grid .product:hover > a:first-child img,
.aw-search-overlay-results-products .product:hover > a:first-child img {
  transform: scale(1.1);
}
.products .product:hover .add-to-cart-wrapper .button,
.products .product:hover .add-to-cart-wrapper .added_to_cart,
.atc-popup-recommendations .product:hover .add-to-cart-wrapper .button,
.atc-popup-recommendations .product:hover .add-to-cart-wrapper .added_to_cart,
.related-products .product:hover .add-to-cart-wrapper .button,
.related-products .product:hover .add-to-cart-wrapper .added_to_cart,
.products-grid .product:hover .add-to-cart-wrapper .button,
.products-grid .product:hover .add-to-cart-wrapper .added_to_cart,
.aw-search-overlay-results-products .product:hover .add-to-cart-wrapper .button,
.aw-search-overlay-results-products .product:hover .add-to-cart-wrapper .added_to_cart {
  opacity: 1;
}
.products .product > a,
.atc-popup-recommendations .product > a,
.related-products .product > a,
.products-grid .product > a,
.aw-search-overlay-results-products .product > a {
  color: var(--black);
}
.products .product > a:hover,
.atc-popup-recommendations .product > a:hover,
.related-products .product > a:hover,
.products-grid .product > a:hover,
.aw-search-overlay-results-products .product > a:hover {
  text-decoration: none;
}
.products .product > a:first-child,
.atc-popup-recommendations .product > a:first-child,
.related-products .product > a:first-child,
.products-grid .product > a:first-child,
.aw-search-overlay-results-products .product > a:first-child {
  background-color: var(--blue-light);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
  height: 70%;
}
@media screen and (min-width: 576px) {
  .products .product > a:first-child,
  .atc-popup-recommendations .product > a:first-child,
  .related-products .product > a:first-child,
  .products-grid .product > a:first-child,
  .aw-search-overlay-results-products .product > a:first-child {
    padding: 2.75rem;
  }
}
.products .product > a:first-child .product-badges,
.atc-popup-recommendations .product > a:first-child .product-badges,
.related-products .product > a:first-child .product-badges,
.products-grid .product > a:first-child .product-badges,
.aw-search-overlay-results-products .product > a:first-child .product-badges {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.products .product > a:first-child .product-badges .onsale, .products .product > a:first-child .product-badges .new-product,
.atc-popup-recommendations .product > a:first-child .product-badges .onsale,
.atc-popup-recommendations .product > a:first-child .product-badges .new-product,
.related-products .product > a:first-child .product-badges .onsale,
.related-products .product > a:first-child .product-badges .new-product,
.products-grid .product > a:first-child .product-badges .onsale,
.products-grid .product > a:first-child .product-badges .new-product,
.aw-search-overlay-results-products .product > a:first-child .product-badges .onsale,
.aw-search-overlay-results-products .product > a:first-child .product-badges .new-product {
  color: var(--white);
  border-radius: 50%;
  position: static;
  padding: 0;
  width: 60px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  border-radius: 100%;
  margin: 0;
  padding: 0.2rem;
}
.products .product > a:first-child .product-badges .onsale,
.atc-popup-recommendations .product > a:first-child .product-badges .onsale,
.related-products .product > a:first-child .product-badges .onsale,
.products-grid .product > a:first-child .product-badges .onsale,
.aw-search-overlay-results-products .product > a:first-child .product-badges .onsale {
  background-color: var(--brown);
}
.products .product > a:first-child .product-badges .new-product,
.atc-popup-recommendations .product > a:first-child .product-badges .new-product,
.related-products .product > a:first-child .product-badges .new-product,
.products-grid .product > a:first-child .product-badges .new-product,
.aw-search-overlay-results-products .product > a:first-child .product-badges .new-product {
  background-color: var(--blue);
}
.products .product > a:first-child img,
.atc-popup-recommendations .product > a:first-child img,
.related-products .product > a:first-child img,
.products-grid .product > a:first-child img,
.aw-search-overlay-results-products .product > a:first-child img {
  mix-blend-mode: multiply;
  transform: scale(1);
  transition: 0.4s ease transform;
  width: 100%;
  height: 100%;
  max-height: 141px;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .products .product > a:first-child img,
  .atc-popup-recommendations .product > a:first-child img,
  .related-products .product > a:first-child img,
  .products-grid .product > a:first-child img,
  .aw-search-overlay-results-products .product > a:first-child img {
    max-height: 110px;
  }
}
@media screen and (min-width: 992px) {
  .products .product > a:first-child img,
  .atc-popup-recommendations .product > a:first-child img,
  .related-products .product > a:first-child img,
  .products-grid .product > a:first-child img,
  .aw-search-overlay-results-products .product > a:first-child img {
    max-height: 151px;
  }
}
@media screen and (min-width: 1400px) {
  .products .product > a:first-child img,
  .atc-popup-recommendations .product > a:first-child img,
  .related-products .product > a:first-child img,
  .products-grid .product > a:first-child img,
  .aw-search-overlay-results-products .product > a:first-child img {
    max-height: 190px;
  }
}
.products .product > a:last-of-type, .products .product > a.product-data,
.atc-popup-recommendations .product > a:last-of-type,
.atc-popup-recommendations .product > a.product-data,
.related-products .product > a:last-of-type,
.related-products .product > a.product-data,
.products-grid .product > a:last-of-type,
.products-grid .product > a.product-data,
.aw-search-overlay-results-products .product > a:last-of-type,
.aw-search-overlay-results-products .product > a.product-data {
  background-color: var(--blue-lightest);
  padding: 1.5rem 1rem;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .products .product > a:last-of-type, .products .product > a.product-data,
  .atc-popup-recommendations .product > a:last-of-type,
  .atc-popup-recommendations .product > a.product-data,
  .related-products .product > a:last-of-type,
  .related-products .product > a.product-data,
  .products-grid .product > a:last-of-type,
  .products-grid .product > a.product-data,
  .aw-search-overlay-results-products .product > a:last-of-type,
  .aw-search-overlay-results-products .product > a.product-data {
    padding: 1.5rem;
  }
}
.products .product > a:last-of-type .price, .products .product > a.product-data .price,
.atc-popup-recommendations .product > a:last-of-type .price,
.atc-popup-recommendations .product > a.product-data .price,
.related-products .product > a:last-of-type .price,
.related-products .product > a.product-data .price,
.products-grid .product > a:last-of-type .price,
.products-grid .product > a.product-data .price,
.aw-search-overlay-results-products .product > a:last-of-type .price,
.aw-search-overlay-results-products .product > a.product-data .price {
  font-size: 0.875rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.products .product > a:last-of-type .price .var-sale-label, .products .product > a.product-data .price .var-sale-label,
.atc-popup-recommendations .product > a:last-of-type .price .var-sale-label,
.atc-popup-recommendations .product > a.product-data .price .var-sale-label,
.related-products .product > a:last-of-type .price .var-sale-label,
.related-products .product > a.product-data .price .var-sale-label,
.products-grid .product > a:last-of-type .price .var-sale-label,
.products-grid .product > a.product-data .price .var-sale-label,
.aw-search-overlay-results-products .product > a:last-of-type .price .var-sale-label,
.aw-search-overlay-results-products .product > a.product-data .price .var-sale-label {
  font-weight: 600;
  color: var(--black-text);
}
.products .product > a:last-of-type .price .var-sale-prices ins, .products .product > a.product-data .price .var-sale-prices ins,
.atc-popup-recommendations .product > a:last-of-type .price .var-sale-prices ins,
.atc-popup-recommendations .product > a.product-data .price .var-sale-prices ins,
.related-products .product > a:last-of-type .price .var-sale-prices ins,
.related-products .product > a.product-data .price .var-sale-prices ins,
.products-grid .product > a:last-of-type .price .var-sale-prices ins,
.products-grid .product > a.product-data .price .var-sale-prices ins,
.aw-search-overlay-results-products .product > a:last-of-type .price .var-sale-prices ins,
.aw-search-overlay-results-products .product > a.product-data .price .var-sale-prices ins {
  color: var(--brown);
}
.products .product > a:last-of-type .price ins, .products .product > a.product-data .price ins,
.atc-popup-recommendations .product > a:last-of-type .price ins,
.atc-popup-recommendations .product > a.product-data .price ins,
.related-products .product > a:last-of-type .price ins,
.related-products .product > a.product-data .price ins,
.products-grid .product > a:last-of-type .price ins,
.products-grid .product > a.product-data .price ins,
.aw-search-overlay-results-products .product > a:last-of-type .price ins,
.aw-search-overlay-results-products .product > a.product-data .price ins {
  color: var(--black-text);
  font-weight: 700;
  text-decoration: none;
}
.products .product > a:last-of-type .price del, .products .product > a.product-data .price del,
.atc-popup-recommendations .product > a:last-of-type .price del,
.atc-popup-recommendations .product > a.product-data .price del,
.related-products .product > a:last-of-type .price del,
.related-products .product > a.product-data .price del,
.products-grid .product > a:last-of-type .price del,
.products-grid .product > a.product-data .price del,
.aw-search-overlay-results-products .product > a:last-of-type .price del,
.aw-search-overlay-results-products .product > a.product-data .price del {
  font-weight: 400;
  color: var(--grey-dark);
  opacity: 0.5 !important;
}
.products .product > a:last-of-type .price del ~ ins, .products .product > a.product-data .price del ~ ins,
.atc-popup-recommendations .product > a:last-of-type .price del ~ ins,
.atc-popup-recommendations .product > a.product-data .price del ~ ins,
.related-products .product > a:last-of-type .price del ~ ins,
.related-products .product > a.product-data .price del ~ ins,
.products-grid .product > a:last-of-type .price del ~ ins,
.products-grid .product > a.product-data .price del ~ ins,
.aw-search-overlay-results-products .product > a:last-of-type .price del ~ ins,
.aw-search-overlay-results-products .product > a.product-data .price del ~ ins {
  margin-top: 6px;
  color: var(--brown);
}
.products .product > a:last-of-type .price .dof-membership-price, .products .product > a.product-data .price .dof-membership-price,
.atc-popup-recommendations .product > a:last-of-type .price .dof-membership-price,
.atc-popup-recommendations .product > a.product-data .price .dof-membership-price,
.related-products .product > a:last-of-type .price .dof-membership-price,
.related-products .product > a.product-data .price .dof-membership-price,
.products-grid .product > a:last-of-type .price .dof-membership-price,
.products-grid .product > a.product-data .price .dof-membership-price,
.aw-search-overlay-results-products .product > a:last-of-type .price .dof-membership-price,
.aw-search-overlay-results-products .product > a.product-data .price .dof-membership-price {
  color: var(--green);
}
@media screen and (max-width: 992px) {
  .products .product > a:last-of-type .price .dof-membership-price, .products .product > a.product-data .price .dof-membership-price,
  .atc-popup-recommendations .product > a:last-of-type .price .dof-membership-price,
  .atc-popup-recommendations .product > a.product-data .price .dof-membership-price,
  .related-products .product > a:last-of-type .price .dof-membership-price,
  .related-products .product > a.product-data .price .dof-membership-price,
  .products-grid .product > a:last-of-type .price .dof-membership-price,
  .products-grid .product > a.product-data .price .dof-membership-price,
  .aw-search-overlay-results-products .product > a:last-of-type .price .dof-membership-price,
  .aw-search-overlay-results-products .product > a.product-data .price .dof-membership-price {
    font-size: 13px;
  }
  .products .product > a:last-of-type .price .dof-membership-price .woocommerce-Price-amount, .products .product > a.product-data .price .dof-membership-price .woocommerce-Price-amount,
  .atc-popup-recommendations .product > a:last-of-type .price .dof-membership-price .woocommerce-Price-amount,
  .atc-popup-recommendations .product > a.product-data .price .dof-membership-price .woocommerce-Price-amount,
  .related-products .product > a:last-of-type .price .dof-membership-price .woocommerce-Price-amount,
  .related-products .product > a.product-data .price .dof-membership-price .woocommerce-Price-amount,
  .products-grid .product > a:last-of-type .price .dof-membership-price .woocommerce-Price-amount,
  .products-grid .product > a.product-data .price .dof-membership-price .woocommerce-Price-amount,
  .aw-search-overlay-results-products .product > a:last-of-type .price .dof-membership-price .woocommerce-Price-amount,
  .aw-search-overlay-results-products .product > a.product-data .price .dof-membership-price .woocommerce-Price-amount {
    font-size: 13px;
  }
}
.products .product > a:last-of-type .price .dof-normal-price, .products .product > a.product-data .price .dof-normal-price,
.atc-popup-recommendations .product > a:last-of-type .price .dof-normal-price,
.atc-popup-recommendations .product > a.product-data .price .dof-normal-price,
.related-products .product > a:last-of-type .price .dof-normal-price,
.related-products .product > a.product-data .price .dof-normal-price,
.products-grid .product > a:last-of-type .price .dof-normal-price,
.products-grid .product > a.product-data .price .dof-normal-price,
.aw-search-overlay-results-products .product > a:last-of-type .price .dof-normal-price,
.aw-search-overlay-results-products .product > a.product-data .price .dof-normal-price {
  color: var(--black-text);
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.products .product > a:last-of-type .price .dof-normal-price.var, .products .product > a.product-data .price .dof-normal-price.var,
.atc-popup-recommendations .product > a:last-of-type .price .dof-normal-price.var,
.atc-popup-recommendations .product > a.product-data .price .dof-normal-price.var,
.related-products .product > a:last-of-type .price .dof-normal-price.var,
.related-products .product > a.product-data .price .dof-normal-price.var,
.products-grid .product > a:last-of-type .price .dof-normal-price.var,
.products-grid .product > a.product-data .price .dof-normal-price.var,
.aw-search-overlay-results-products .product > a:last-of-type .price .dof-normal-price.var,
.aw-search-overlay-results-products .product > a.product-data .price .dof-normal-price.var {
  margin-bottom: 10px;
  color: var(--grey-dark);
}
.products .product > a:last-of-type .price .dof-normal-price.normal-dis, .products .product > a.product-data .price .dof-normal-price.normal-dis,
.atc-popup-recommendations .product > a:last-of-type .price .dof-normal-price.normal-dis,
.atc-popup-recommendations .product > a.product-data .price .dof-normal-price.normal-dis,
.related-products .product > a:last-of-type .price .dof-normal-price.normal-dis,
.related-products .product > a.product-data .price .dof-normal-price.normal-dis,
.products-grid .product > a:last-of-type .price .dof-normal-price.normal-dis,
.products-grid .product > a.product-data .price .dof-normal-price.normal-dis,
.aw-search-overlay-results-products .product > a:last-of-type .price .dof-normal-price.normal-dis,
.aw-search-overlay-results-products .product > a.product-data .price .dof-normal-price.normal-dis {
  text-decoration: none;
  font-weight: 700;
  opacity: 1 !important;
  color: var(--black-text);
}
.products .product > a:last-of-type .woocommerce-loop-product__title, .products .product > a.product-data .woocommerce-loop-product__title,
.atc-popup-recommendations .product > a:last-of-type .woocommerce-loop-product__title,
.atc-popup-recommendations .product > a.product-data .woocommerce-loop-product__title,
.related-products .product > a:last-of-type .woocommerce-loop-product__title,
.related-products .product > a.product-data .woocommerce-loop-product__title,
.products-grid .product > a:last-of-type .woocommerce-loop-product__title,
.products-grid .product > a.product-data .woocommerce-loop-product__title,
.aw-search-overlay-results-products .product > a:last-of-type .woocommerce-loop-product__title,
.aw-search-overlay-results-products .product > a.product-data .woocommerce-loop-product__title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0 0 0.8rem 0;
}
.products .product .add-to-cart-wrapper,
.atc-popup-recommendations .product .add-to-cart-wrapper,
.related-products .product .add-to-cart-wrapper,
.products-grid .product .add-to-cart-wrapper,
.aw-search-overlay-results-products .product .add-to-cart-wrapper {
  position: relative;
}
.products .product .add-to-cart-wrapper .button,
.products .product .add-to-cart-wrapper .added_to_cart,
.atc-popup-recommendations .product .add-to-cart-wrapper .button,
.atc-popup-recommendations .product .add-to-cart-wrapper .added_to_cart,
.related-products .product .add-to-cart-wrapper .button,
.related-products .product .add-to-cart-wrapper .added_to_cart,
.products-grid .product .add-to-cart-wrapper .button,
.products-grid .product .add-to-cart-wrapper .added_to_cart,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .button,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .added_to_cart {
  background-color: var(--green);
  border-radius: 100px;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  font-size: 0.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  transition: 0.6s ease opacity;
}
.products .product .add-to-cart-wrapper .button:hover,
.products .product .add-to-cart-wrapper .added_to_cart:hover,
.atc-popup-recommendations .product .add-to-cart-wrapper .button:hover,
.atc-popup-recommendations .product .add-to-cart-wrapper .added_to_cart:hover,
.related-products .product .add-to-cart-wrapper .button:hover,
.related-products .product .add-to-cart-wrapper .added_to_cart:hover,
.products-grid .product .add-to-cart-wrapper .button:hover,
.products-grid .product .add-to-cart-wrapper .added_to_cart:hover,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .button:hover,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .added_to_cart:hover {
  text-decoration: none;
}
.products .product .add-to-cart-wrapper .button.loading:after,
.products .product .add-to-cart-wrapper .added_to_cart.loading:after,
.atc-popup-recommendations .product .add-to-cart-wrapper .button.loading:after,
.atc-popup-recommendations .product .add-to-cart-wrapper .added_to_cart.loading:after,
.related-products .product .add-to-cart-wrapper .button.loading:after,
.related-products .product .add-to-cart-wrapper .added_to_cart.loading:after,
.products-grid .product .add-to-cart-wrapper .button.loading:after,
.products-grid .product .add-to-cart-wrapper .added_to_cart.loading:after,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .button.loading:after,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .added_to_cart.loading:after {
  position: static;
  margin-left: 10px;
}
.products .product .add-to-cart-wrapper .button.added,
.products .product .add-to-cart-wrapper .added_to_cart.added,
.atc-popup-recommendations .product .add-to-cart-wrapper .button.added,
.atc-popup-recommendations .product .add-to-cart-wrapper .added_to_cart.added,
.related-products .product .add-to-cart-wrapper .button.added,
.related-products .product .add-to-cart-wrapper .added_to_cart.added,
.products-grid .product .add-to-cart-wrapper .button.added,
.products-grid .product .add-to-cart-wrapper .added_to_cart.added,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .button.added,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .added_to_cart.added {
  display: none;
}
.products .product .add-to-cart-wrapper .button:before,
.products .product .add-to-cart-wrapper .added_to_cart:before,
.atc-popup-recommendations .product .add-to-cart-wrapper .button:before,
.atc-popup-recommendations .product .add-to-cart-wrapper .added_to_cart:before,
.related-products .product .add-to-cart-wrapper .button:before,
.related-products .product .add-to-cart-wrapper .added_to_cart:before,
.products-grid .product .add-to-cart-wrapper .button:before,
.products-grid .product .add-to-cart-wrapper .added_to_cart:before,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .button:before,
.aw-search-overlay-results-products .product .add-to-cart-wrapper .added_to_cart:before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 10px;
  background-image: url("../img/cart.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Archive
--------------------------------------------- */
body.archive {
  /* Header
  --------------------------------------------- */
}
body.archive .woocommerce-products-header {
  position: relative;
  max-height: 77vh;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  body.archive .woocommerce-products-header {
    min-height: 30vh;
  }
}
@media screen and (min-width: 576px) {
  body.archive .woocommerce-products-header .iframe-container {
    height: 30vh;
    position: relative;
    z-index: -2;
    overflow: hidden;
  }
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .iframe-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
body.archive .woocommerce-products-header .iframe-container iframe {
  display: none;
}
@media screen and (min-width: 576px) {
  body.archive .woocommerce-products-header .iframe-container iframe {
    display: block;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    min-height: 100%;
    min-width: 100%;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    width: 170vh;
    position: absolute;
    z-index: -1;
  }
}
body.archive .woocommerce-products-header .iframe-container .vimeo-thumb-container {
  display: none;
}
@media screen and (min-width: 576px) {
  body.archive .woocommerce-products-header .iframe-container .vimeo-thumb-container {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    min-height: 100%;
    min-width: 100%;
    z-index: -1;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    width: 170vh;
  }
  body.archive .woocommerce-products-header .iframe-container .vimeo-thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media screen and (min-width: 576px) and (min-width: 768px) {
  body.archive .woocommerce-products-header .iframe-container .vimeo-thumb-container img {
    object-fit: cover;
  }
}
body.archive .woocommerce-products-header .iframe-container .archive-image-opacity {
  display: none;
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .iframe-container .archive-image-opacity {
    z-index: -1;
    height: 30vh;
    position: absolute;
    background: #737373 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .iframe-container .archive-image-opacity {
    height: 100%;
  }
}
body.archive .woocommerce-products-header .archive-image {
  display: none;
}
@media screen and (min-width: 576px) {
  body.archive .woocommerce-products-header .archive-image {
    height: 30vh;
    position: relative;
    z-index: -2;
    object-fit: cover;
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .archive-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
body.archive .woocommerce-products-header .archive-image-opacity {
  display: none;
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .archive-image-opacity {
    z-index: -1;
    height: 30vh;
    position: absolute;
    background: #737373 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .archive-image-opacity {
    height: 100%;
  }
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper {
  color: var(--black-text);
  padding-top: 25px;
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .woocommerce-products-header-wrapper {
    color: var(--white);
    padding-top: 125px;
    padding-bottom: 15rem;
  }
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .woocommerce-breadcrumb {
  color: var(--black-text);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .woocommerce-breadcrumb {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .woocommerce-breadcrumb {
    color: var(--white);
  }
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .woocommerce-breadcrumb a {
  color: var(--black-text);
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .woocommerce-breadcrumb a {
    color: var(--white);
  }
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .page-title {
  margin: 0;
  font-size: 35px;
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .page-title {
    font-size: 40px;
  }
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .term-description {
  max-width: 575px;
  font-size: 16px;
  margin-top: 1.375rem;
  line-height: 1.6;
  font-weight: 500;
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .term-description.long-desc {
  max-width: 100%;
  font-size: 15px;
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .term-description.long-desc {
    max-width: 75%;
    margin-bottom: -3rem;
    font-size: 17px;
  }
}
@media screen and (min-width: 992px) {
  body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .term-description {
    font-size: 18px;
  }
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .term-description p {
  margin-top: 0;
}
body.archive .woocommerce-products-header .woocommerce-products-header-wrapper .term-description p:last-child {
  margin-bottom: 0;
}
body.archive {
  /* Filters
  --------------------------------------------- */
}
body.archive .before-shop-loop {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "filters filters" "filter-selected sorting" "warning warning";
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin-bottom: 3.125rem;
  margin-top: 3rem;
}
@media screen and (min-width: 576px) {
  body.archive .before-shop-loop {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  body.archive .before-shop-loop {
    margin-top: 5.5rem;
  }
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters {
  grid-area: filters;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100vh;
  z-index: 13;
  background-color: var(--blue-lightest);
  border-top: 5px solid var(--blue);
  transition: 0.2s ease-out transform;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters[data-toggle=enabled] {
  transform: translateX(0);
  transition: 0.2s ease-out transform;
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-archive-filters {
    height: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: end;
    justify-content: flex-end;
    transform: translateX(0) !important;
    gap: 1.75rem;
    position: static;
    margin-bottom: 1.3rem;
    padding-bottom: 3.2rem;
    z-index: 11 !important;
    border-bottom: 2px solid var(--blue-light);
    border-top: 0;
    transition: none !important;
    background-color: var(--white);
  }
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .filter-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--black-text);
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-archive-filters .filter-heading {
    display: none;
  }
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .filter-heading .heading {
  font-size: 21px;
  font-family: var(--font-title);
  margin-right: auto;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .filter-heading .reset-filters-mobile {
  font-size: 12px;
  padding: 8px 15px;
  background-color: var(--blue-light);
  cursor: pointer;
  margin-right: 15px;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .filter-heading .close-filters {
  width: 35px;
  height: 35px;
  background-image: url(../img/remove.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget {
  -ms-flex: auto;
  flex: auto;
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget {
    max-width: 50%;
  }
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget:last-child .bapf_sfilter .bapf_body {
  left: auto !important;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter {
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_stoerrelse] .bapf_body {
  min-width: 386px;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=price] .bapf_body {
  padding: 2rem 1.5rem 1rem 1.5rem !important;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=price] .bapf_body .bapf_slidr_main {
  margin-bottom: 1rem;
  background-color: var(--grey-lightest);
  height: 2px;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=price] .bapf_body .bapf_slidr_main .ui-slider-range {
  background-color: var(--blue);
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=price] .bapf_body .bapf_slidr_main .ui-slider-handle {
  border: 4px solid var(--blue);
  background-color: var(--white);
  width: 20px;
  height: 20px;
  top: -8px;
  outline: 0;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=price] .bapf_body .bapf_from {
  margin-left: -0.5rem;
  margin-top: 0.5rem;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=price] .bapf_body .bapf_to {
  transform: translateX(1.5rem);
  margin-top: 0.5rem;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_stoerrelse] .bapf_body ul, body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_forstoerrelse] .bapf_body ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_stoerrelse] .bapf_body ul input[type=checkbox], body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_forstoerrelse] .bapf_body ul input[type=checkbox] {
  visibility: hidden;
  display: none;
  opacity: 0;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_stoerrelse] .bapf_body ul label, body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_forstoerrelse] .bapf_body ul label {
  min-width: 52px;
  min-height: 52px;
  border: 1px solid var(--grey-lightest);
  border-radius: 5px;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  font-size: 14px;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_stoerrelse] .bapf_body ul input[type=checkbox]:checked + label, body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter[data-taxonomy=pa_forstoerrelse] .bapf_body ul input[type=checkbox]:checked + label {
  border: 2px solid var(--green);
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_head {
  padding: 1rem;
  border-bottom: 1px solid var(--black-text);
  font-size: 1rem;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_head {
    border: 1px solid var(--black-text);
  }
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_head h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_head:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f078";
  font-size: 1.25rem;
  margin-left: 10px;
  color: var(--black-text);
  transform: rotate(0deg);
  transition: 0.4s ease transform;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_body {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 10;
  background-color: var(--blue-lightest);
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_body {
    width: auto;
    background-color: var(--white);
    display: none;
    min-width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_body li {
  margin-bottom: 1rem !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_body li input[type=checkbox] {
  border: 1px solid var(--grey-dark);
  margin: 0;
  width: 20px;
  height: 20px;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_body li input[type=checkbox]:after {
  top: 1px;
  left: 5px;
  border-color: var(--green);
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter .bapf_body li label {
  max-width: 80%;
  vertical-align: unset;
  line-height: 1.2;
  word-break: break-word;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter.selected .bapf_head {
  background-color: var(--white);
  transition: all 0.2s;
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter.selected .bapf_head:after {
  transform: rotate(180deg);
}
body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter.selected .bapf_body {
  opacity: 1;
  visibility: visible;
  left: 0;
  right: 0;
  padding: 1rem;
  transition: all 0.2s;
  border: 1px solid var(--black-text);
  background-color: var(--white);
  width: 100%;
  max-height: 42vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-archive-filters .berocket_single_filter_widget .bapf_sfilter.selected .bapf_body {
    width: auto;
    display: block;
    margin-top: 10px;
    max-height: 500px;
  }
}
body.archive .before-shop-loop > .bapf_sfilter {
  margin-bottom: 0;
  grid-area: filter-selected;
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_head {
  display: none;
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area:before {
  content: "Anvendte filtre";
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 0.85rem;
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter .bapf_sfa_taxonomy span {
  display: none;
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter .bapf_sfa_taxonomy ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 576px) {
  body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter .bapf_sfa_taxonomy ul {
    gap: 10px;
  }
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter .bapf_sfa_taxonomy ul a {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--black-text);
  background-color: var(--blue-light);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.2s ease all;
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter .bapf_sfa_taxonomy ul a:hover {
  background-color: var(--grey-lightest);
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter .bapf_sfa_taxonomy ul a i {
  font-size: 1rem;
  margin-right: 10px;
}
body.archive .before-shop-loop > .bapf_sfilter .bapf_body .berocket_aapf_widget_selected_area .berocket_aapf_widget_selected_filter .bapf_sfa_unall {
  display: none;
}
body.archive .before-shop-loop > .bapf_sfilter a {
  color: var(--black-text);
}
body.archive .before-shop-loop .see-results-filter-mobile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: var(--semibold);
  padding: 8px 1rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3rem;
  width: calc(100% - 2rem);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .see-results-filter-mobile {
    display: none;
  }
}
body.archive .before-shop-loop .see-results-filter-mobile .woocommerce-result-count {
  margin: 0;
}
body.archive .before-shop-loop .see-results-filter-mobile .woocommerce-result-count.braapfNotReplaced {
  display: block !important;
}
body.archive .before-shop-loop .see-results-filter-mobile .woocommerce-result-count.braapfNotReplaced::after {
  content: "0 produkter";
}
body.archive .before-shop-loop .nb-woocommerce-count-sorting {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 576px) {
  body.archive .before-shop-loop .nb-woocommerce-count-sorting {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end;
    grid-area: sorting;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 0;
  }
}
body.archive .before-shop-loop .nb-woocommerce-count-sorting .filter-slider {
  display: block;
  width: 100px;
  border: 1px solid var(--black-text);
  padding: 10px 12px;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  body.archive .before-shop-loop .nb-woocommerce-count-sorting .filter-slider {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-count-sorting .filter-slider {
    display: none;
  }
}
body.archive .before-shop-loop .nb-woocommerce-count-sorting .filter-slider .filter {
  position: relative;
  background-image: url(../img/settings-sliders.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 25px;
}
body.archive .before-shop-loop .nb-woocommerce-count-sorting .filter-slider .filter::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f078";
  font-size: 16px;
  color: var(--black-text);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.2s;
}
body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-result-count {
  color: var(--grey-dark);
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-result-count {
    position: absolute;
    margin: 0 !important;
    bottom: -15px;
  }
}
@media screen and (min-width: 768px) {
  body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-result-count {
    margin-bottom: 15px;
  }
}
body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-ordering {
  margin-top: auto;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
@media screen and (max-width: 576px) {
  body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-ordering .custom-select .select-selected {
    padding-left: 0;
  }
  body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-ordering .custom-select .select-items {
    right: auto;
  }
}
@media screen and (min-width: 576px) {
  body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-ordering {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
body.archive .before-shop-loop .nb-woocommerce-count-sorting .woocommerce-ordering .sort-label {
  white-space: nowrap;
  font-size: var(--font_small);
  color: var(--grey-dark);
}
body.archive .before-shop-loop .woocommerce-notices-wrapper {
  grid-area: warning;
}
body.archive .bapf_no_products {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin: 3rem auto;
}
@media (min-width: 576px) {
  body.archive .bapf_no_products {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body.archive .bapf_no_products {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body.archive .bapf_no_products {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body.archive .bapf_no_products {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  body.archive .bapf_no_products {
    max-width: 1320px;
  }
}
body.archive .bapf_no_products .woocommerce-info {
  border-radius: 1px;
  background-color: rgba(223, 180, 182, 0.3490196078);
}
body.archive .bapf_no_products .woocommerce-info::before {
  content: "\e016";
  color: #b81c23;
}
body.archive .bapf_loader_page .bapf_loader .bapf_lfirst,
body.archive .bapf_loader_page .bapf_loader .bapf_lsecond {
  background: var(--green);
}
body.archive .lmp_products_loading {
  position: relative;
}
body.archive .lmp_products_loading .lmp_rotate {
  position: absolute;
  transform: translate(-100%, -100%) !important;
  color: var(--green);
}
@media (min-width: 576px) {
  body.archive .lmp_products_loading .lmp_rotate {
    transform: translate(-100%, -12px) !important;
  }
}
body.archive {
  /* Related Categories
  --------------------------------------------- */
}
body.archive .related-categories {
  margin-top: 3rem;
}
@media screen and (min-width: 992px) {
  body.archive .related-categories {
    margin-top: -125px;
  }
}
body.archive .related-categories__toggle {
  margin-bottom: 20px;
  display: block;
}
@media screen and (min-width: 992px) {
  body.archive .related-categories__toggle {
    display: none;
  }
}
body.archive .related-categories__toggle--label {
  font-size: var(--font_xs-small);
}
body.archive .related-categories__toggle--select {
  margin-top: 12px;
  position: relative;
  font-size: 16px;
  cursor: pointer;
  padding: 1rem;
  border: 1px solid var(--black-text);
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body.archive .related-categories__toggle--select::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f078";
  font-size: 16px;
  color: var(--black-text);
  transition: 0.2s ease transform;
}
body.archive .related-categories__toggle--select[data-toggle=disabled]::after {
  transform: rotate(0deg);
}
body.archive .related-categories__toggle--select[data-toggle=enabled]::after {
  transform: rotate(180deg);
}
body.archive .related-categories__wrapper {
  display: none;
}
@media screen and (min-width: 992px) {
  body.archive .related-categories__wrapper {
    display: block !important;
  }
}
body.archive .related-categories__wrapper .rel-cat-container {
  display: -ms-grid;
  display: grid;
  grid-gap: 3px;
  position: relative;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  max-height: 65vh;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  body.archive .related-categories__wrapper .rel-cat-container {
    max-height: initial;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  body.archive .related-categories__wrapper .rel-cat-container {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  body.archive .related-categories__wrapper .rel-cat-container {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
body.archive .related-categories__wrapper .rel-cat-container .child-category-card {
  max-height: 245px;
  background-color: var(--blue-light);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem 0;
  transition: 0.4s ease background-color;
}
@media screen and (min-width: 576px) {
  body.archive .related-categories__wrapper .rel-cat-container .child-category-card {
    padding: 2.3rem 0;
  }
}
@media screen and (min-width: 992px) {
  body.archive .related-categories__wrapper .rel-cat-container .child-category-card {
    padding: 2.525rem 0;
  }
}
@media screen and (min-width: 1200px) {
  body.archive .related-categories__wrapper .rel-cat-container .child-category-card {
    padding: 2.8125rem 0;
  }
}
body.archive .related-categories__wrapper .rel-cat-container .child-category-card:hover {
  background-color: var(--grey-lightest);
}
body.archive .related-categories__wrapper .rel-cat-container .child-category-card img {
  mix-blend-mode: multiply;
  object-fit: contain;
  height: 90px;
}
@media screen and (min-width: 992px) {
  body.archive .related-categories__wrapper .rel-cat-container .child-category-card img {
    height: 100px;
  }
}
@media screen and (min-width: 1200px) {
  body.archive .related-categories__wrapper .rel-cat-container .child-category-card img {
    height: 120px;
  }
}
body.archive .related-categories__wrapper .rel-cat-container .child-category-card .child-category-title {
  color: var(--black-text);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.75rem;
}
body.archive {
  /* Image category section
  --------------------------------------------- */
}
body.archive .img-cat-section {
  width: 100%;
  position: relative;
  color: var(--white);
  background: transparent linear-gradient(90deg, rgba(0, 0, 0, 0.4784313725) 0%, rgba(84, 84, 84, 0) 100%) 0% 0% no-repeat padding-box;
  margin: 5rem 0 2.5rem 0;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (min-width: 768px) {
  body.archive .img-cat-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 992px) {
  body.archive .img-cat-section {
    margin: 8rem 0 2.5rem 0;
  }
}
@media screen and (min-width: 1200px) {
  body.archive .img-cat-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
body.archive .img-cat-section__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
body.archive .img-cat-section__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
body.archive .img-cat-section__wrapper .title, body.archive .img-cat-section__wrapper .subtitle {
  max-width: 80%;
}
@media screen and (min-width: 768px) {
  body.archive .img-cat-section__wrapper .title, body.archive .img-cat-section__wrapper .subtitle {
    max-width: 475px;
  }
}
@media screen and (min-width: 992px) {
  body.archive .img-cat-section__wrapper .title, body.archive .img-cat-section__wrapper .subtitle {
    max-width: 450px;
  }
}
body.archive .img-cat-section__wrapper .title {
  margin: 0 0 20px 0;
  font-size: 31px;
}
@media screen and (min-width: 992px) {
  body.archive .img-cat-section__wrapper .title {
    font-size: 40px;
  }
}
body.archive .img-cat-section__wrapper .subtitle {
  margin: 0 0 30px 0;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  body.archive .img-cat-section__wrapper .subtitle {
    font-size: 1.1875rem;
    font-weight: var(--semibold);
  }
}
body.archive .img-cat-section__wrapper .cta-link {
  font-size: var(--font_regular);
}
body.archive {
  /* Products Grid
  --------------------------------------------- */
}
body.archive .products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
@media screen and (min-width: 576px) {
  body.archive .products {
    grid-gap: 25px;
  }
}
@media screen and (min-width: 768px) {
  body.archive .products {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  body.archive .products {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
body.archive .products:before, body.archive .products:after {
  display: none;
}
@media screen and (max-width: 576px) {
  body.archive .products .product .add-to-cart-wrapper .add_to_cart_button {
    font-size: 12px;
    white-space: nowrap;
  }
}
body.archive {
  /* Product Banner
  --------------------------------------------- */
}
body.archive .products .shop-product-banner {
  -ms-grid-column: span 2;
  grid-column: span 2;
  background-color: var(--blue-light);
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
body.archive .products .shop-product-banner:not(:first-child) {
  display: none;
}
body.archive .products .shop-product-banner .text-wrapper {
  padding: 2rem 0 2rem 2rem;
  margin: auto 0;
  width: 75%;
}
@media screen and (min-width: 1200px) {
  body.archive .products .shop-product-banner .text-wrapper {
    padding: 0 0 0 3rem;
    width: 60%;
  }
}
body.archive .products .shop-product-banner .text-wrapper h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
}
@media screen and (min-width: 576px) {
  body.archive .products .shop-product-banner .text-wrapper h2 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 576px) {
  body.archive .products .shop-product-banner .text-wrapper p {
    font-size: 1rem;
  }
}
body.archive .products .shop-product-banner .text-wrapper p {
  font-size: 14px;
}
body.archive .products .shop-product-banner .text-wrapper a {
  font-size: 14px;
  padding: 0.4rem 2rem;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 100px;
  margin-top: 2rem;
  display: block;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  body.archive .products .shop-product-banner .text-wrapper a {
    font-size: 1rem;
    padding: 0.5rem 3rem;
  }
}
body.archive .products .shop-product-banner .image-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  body.archive .products .shop-product-banner .image-wrapper {
    width: 37%;
  }
}
body.archive .products .shop-product-banner .image-wrapper img {
  object-fit: contain;
  object-position: right bottom;
  height: 100%;
}
body.archive .products .lmp_products_loading {
  -ms-flex-order: 5;
  order: 5;
  width: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
body.archive {
  /* WC Pagination
  --------------------------------------------- */
}
body.archive .wc-pagination {
  margin-bottom: 5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
body.archive .wc-pagination ul {
  display: -ms-flexbox;
  display: flex;
}
body.archive .wc-pagination ul li {
  height: 40px;
  width: 40px;
  border: 1px solid var(--blue-light);
}
body.archive .wc-pagination ul li a.page-numbers {
  color: var(--green);
}
body.archive .wc-pagination ul li .page-numbers {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 38px;
  font-weight: 600;
}
body.archive .wc-pagination .prev {
  position: relative;
  color: var(--white) !important;
}
body.archive .wc-pagination .prev::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f060";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #b1b1b1;
  font-size: 12px;
  transform: translate(-50%, -50%);
}
body.archive .wc-pagination .next {
  position: relative;
  color: var(--white) !important;
}
body.archive .wc-pagination .next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #b1b1b1;
  font-size: 12px;
  transform: translate(-50%, -50%);
}
body.archive .bapf_loader_page .bapf_lcontainer {
  display: none !important;
}
body.archive .related-products {
  margin-top: 5.45rem;
  padding-bottom: 3rem;
}
body.archive .related-products h2 {
  margin-bottom: 0;
  padding-bottom: 2.75rem;
}
body.archive .related-products .related-products-container {
  position: relative;
}
@media screen and (max-width: 768px) {
  body.archive .related-products .related-products-container {
    max-width: 100%;
    padding: 0;
  }
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list {
  padding-left: 14.5%;
}
@media screen and (min-width: 490px) {
  body.archive .related-products .related-products-container .products-slider-wrapper .slick-list {
    padding-left: 5%;
  }
}
@media screen and (min-width: 576px) {
  body.archive .related-products .related-products-container .products-slider-wrapper .slick-list {
    padding-left: 12%;
  }
}
@media screen and (min-width: 768px) {
  body.archive .related-products .related-products-container .products-slider-wrapper .slick-list {
    padding-left: 0;
  }
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track {
  margin-right: -25px;
  display: -ms-flexbox;
  display: flex;
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column;
  flex-direction: column;
  height: inherit;
  margin-right: 25px;
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  column-gap: 1rem;
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .price del {
  -ms-flex-order: 2;
  order: 2;
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .product-badges {
  top: 1rem;
  right: 1rem;
  left: auto;
  position: absolute;
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .product-badges .onsale, body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .product-badges .new-product {
  position: static;
  width: 60px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .product-badges .onsale {
  background-color: var(--brown);
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .product-badges .new-product {
  background-color: var(--blue);
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-list .slick-track .product .woocommerce-loop-product__title {
  margin: 0 0 0.8rem 0;
  padding: 0;
  text-align: left;
}
body.archive .related-products .related-products-container .products-slider-wrapper .slick-arrow {
  display: none !important;
}
@media screen and (min-width: 768px) {
  body.archive .related-products .related-products-container .products-slider-wrapper .slick-arrow {
    display: block !important;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--grey-lightest);
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    z-index: 1;
    background-image: url("../img/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  body.archive .related-products .related-products-container .products-slider-wrapper .slick-arrow.prev {
    left: 0;
    transform: translate(-50%, -50%);
  }
  body.archive .related-products .related-products-container .products-slider-wrapper .slick-arrow.next {
    right: 0;
    transform: translate(0, -50%) rotate(180deg);
  }
}
@media screen and (min-width: 768px) {
  body.archive .related-products .related-products-container .r-faded {
    display: none;
  }
}
body.archive .second-cat-desc-wrapper {
  background-color: var(--blue-lightest);
  padding: 3rem 0;
}
body.archive .second-cat-desc-wrapper .cat-secondary-desc {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
body.archive .second-cat-desc-wrapper .cat-secondary-desc__master {
  color: var(--black-text);
}
body.archive .second-cat-desc-wrapper .cat-secondary-desc__master h2 {
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem 0;
}
body.archive .second-cat-desc-wrapper .cat-secondary-desc__master p {
  font-size: 15px;
  line-height: 1.8;
  padding: 1rem 0 1.2rem 0;
  margin: 0;
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  body.archive .second-cat-desc-wrapper .cat-secondary-desc__master p {
    max-width: 80%;
  }
}

/* Account
--------------------------------------------- */
@media screen and (min-width: 992px) {
  .nb-woocommerce-account-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: calc(100vh - 136px);
  }
}
.nb-woocommerce-account-form .account-image-wrapper {
  display: none;
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-account-form .account-image-wrapper {
    display: block;
    position: absolute;
    width: 50%;
    height: calc(100vh - 136px);
    left: 0;
  }
  .nb-woocommerce-account-form .account-image-wrapper img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
}
.nb-woocommerce-account-form .account-form-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-account-form .account-form-wrapper {
    position: absolute;
    width: 50%;
    right: 0;
  }
}
.nb-woocommerce-account-form .account-form-wrapper .woocommerce-notices-wrapper {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .nb-woocommerce-account-form .account-form-wrapper .woocommerce-notices-wrapper {
    position: absolute;
    top: 106px;
  }
}
.nb-woocommerce-account-form .account-form-wrapper .woocommerce-notices-wrapper > ul {
  margin-bottom: 0;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container {
  padding: 6rem 0;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-account-form .account-form-wrapper .account-form-container {
    padding: 6rem 3rem;
  }
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-account-form .account-form-wrapper .account-form-container {
    padding: 5rem 3rem;
  }
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container h2 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  margin: 0;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .account-text {
  font-size: 0.81rem;
  font-weight: 600;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form {
  border: 0;
  padding: 0;
  margin: 0;
  margin-top: 1.875rem;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .form-row {
  padding: 0;
  margin: 0;
  margin-bottom: 1.25rem;
  width: 100%;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form input {
  border-radius: 100px;
  border: 2px solid var(--grey-dark);
  height: 3rem;
  padding: 10px 22px;
  color: var(--grey-dark);
  font-size: 1rem;
  font-family: var(--font-body);
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .label-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .label-wrapper .lost-password-link {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: var(--blue);
  text-decoration: underline;
  margin-top: auto;
  margin-right: 22px;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form label {
  color: var(--grey-dark);
  font-size: 0.81rem;
  font-weight: 600;
  margin-left: 1.375rem;
  line-height: 1.75rem;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form label .required {
  color: var(--grey-dark);
  font-size: 0.81rem;
  font-weight: 600;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .show-password-input {
  top: 13px;
  right: 13px;
  color: var(--grey-dark);
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .show-password-input.display-password::after {
  color: var(--green);
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .woocommerce-form-login__rememberme {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  gap: 0.875rem;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .woocommerce-form-login__rememberme input {
  width: 25px;
  height: 25px;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form .woocommerce-form-login__rememberme span {
  color: var(--black-text);
  font-weight: 400;
  font-size: 0.9375rem;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container form button[type=submit] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.25rem;
  background-color: var(--green);
  border-radius: 100px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  width: 260px;
  max-width: 100%;
  color: var(--white);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1607843137);
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .member-text {
  font-family: var(--font-title);
  font-size: 1.375rem;
  margin: 0;
  margin-top: 3.75rem;
  display: block;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .member-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.625rem;
  border: 2px solid var(--green);
  border-radius: 100px;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  width: 260px;
  max-width: 100%;
  color: var(--black-text);
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .woocommerce-privacy-policy-text {
  font-size: 0.81rem;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .go-to-login {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.25rem;
  background-color: var(--green);
  border-radius: 100px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  width: 260px;
  max-width: 100%;
  color: var(--white);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1607843137);
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .woocommerce-password-strength {
  font-size: 0.81rem;
  font-weight: 600;
  color: red;
  text-align: center;
  padding: 0;
  margin-top: 0.5rem;
  background-color: transparent;
  border-color: transparent;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .woocommerce-password-strength.good {
  color: #ffc733;
}
.nb-woocommerce-account-form .account-form-wrapper .account-form-container .woocommerce-password-strength.strong {
  color: var(--green);
}

/* ACF Gutenberg blocks
--------------------------------------------- */
.accordions-section {
  padding: 4rem 0;
}
@media screen and (min-width: 1200px) {
  .accordions-section__wrapper.contained {
    max-width: 1100px;
  }
}
.accordions-section__wrapper .acc-master {
  border-top: 1px solid var(--grey-lightest);
}
.accordions-section__wrapper .acc-master .accordion .acc-heading .acc-title {
  display: block;
  max-width: 85%;
}
.accordions-section__wrapper .acc-master .accordion .acc-heading {
  cursor: pointer;
  color: var(--black-text);
  font-weight: var(--semibold);
  padding: 1rem 0;
  position: relative;
}
.accordions-section__wrapper .acc-master .accordion .acc-heading::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f078";
  font-size: 16px;
  color: var(--black-text);
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.2s;
}
.accordions-section__wrapper .acc-master .accordion .acc-heading.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordions-section__wrapper .acc-master .accordion .acc-desc {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--grey-dark);
  font-size: var(--font_regular);
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .accordions-section__wrapper .acc-master .accordion .acc-desc {
    max-width: 80%;
  }
}
.accordions-section__wrapper .acc-master .accordion .acc-desc a {
  color: var(--blue);
}
.accordions-section__wrapper .acc-master .accordion .acc-desc p {
  color: var(--grey-dark);
  margin: 0;
  font-size: var(--font_regular);
  line-height: 1.7;
}
.accordions-section__wrapper .acc-master .accordion .acc-desc p:not(:last-child) {
  margin-bottom: 12px;
}
.accordions-section__wrapper .acc-master .accordion .acc-desc h3 {
  font-size: var(--font_medium);
  color: var(--grey-dark);
}
.accordions-section__wrapper .acc-master .accordion .acc-desc ul {
  font-size: var(--font_regular);
  color: var(--grey-dark);
  list-style-type: disc;
  padding-left: 19px;
}
.accordions-section__wrapper .acc-master .accordion .acc-desc ul li {
  line-height: 1.5;
}
.accordions-section__wrapper .acc-master .accordion .acc-desc ul ul {
  list-style-type: circle;
  margin-bottom: 1rem;
}
.accordions-section__wrapper .acc-master .accordion .acc-desc .flex-elements {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.accordions-section__wrapper .acc-master .accordion .acc-separator {
  width: 100%;
  height: 1px;
  background-color: var(--grey-lightest);
}

.frontpage-hero-wrapper {
  height: 65vh;
  position: relative;
}
@media screen and (min-width: 576px) {
  .frontpage-hero-wrapper {
    height: 77vh;
  }
}
.frontpage-hero-wrapper.border_bottom_hero {
  border-bottom: 6px solid var(--green);
}
.frontpage-hero-wrapper.auto-height {
  height: auto !important;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.frontpage-hero-wrapper.auto-height .frontpage-hero-text-content {
  transform: translateY(0);
}
.frontpage-hero-wrapper .frontpage-hero-text-content {
  color: var(--white);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  transform: translateY(-10vh);
}
@media screen and (min-width: 1200px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content.contained {
    max-width: 1100px;
  }
}
@media screen and (max-width: 992px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content.bottom {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 992px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content.top {
    -ms-flex-pack: start;
    justify-content: flex-start;
    transform: translateY(10vh);
  }
}
@media screen and (min-width: 992px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content {
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.frontpage-hero-wrapper .frontpage-hero-text-content h1 {
  margin: 0 0 10px 0;
  font-size: 29px;
  max-width: 95%;
}
@media screen and (min-width: 576px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content h1 {
    font-size: 2rem;
    max-width: 85%;
  }
}
@media screen and (min-width: 992px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content h1 {
    max-width: 725px;
    font-size: 2.5rem;
  }
}
.frontpage-hero-wrapper .frontpage-hero-text-content .hero-description {
  max-width: 90%;
  font-size: var(--font_regular);
  line-height: 1.6;
}
.frontpage-hero-wrapper .frontpage-hero-text-content .hero-description h2, .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description h3, .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description h4 {
  margin: 1rem 0 0.5rem 0;
  font-weight: 300;
  line-height: 1.2;
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description h2, .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description h3, .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description h4 {
    font-size: 25px;
  }
}
@media screen and (max-width: 420px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description {
    max-width: 100%;
  }
}
@media screen and (min-width: 576px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description {
    max-width: 85%;
  }
}
@media screen and (min-width: 768px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description {
    font-weight: var(--semibold);
    font-size: var(--font_medium);
  }
}
@media screen and (min-width: 992px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description {
    max-width: 635px;
  }
}
@media screen and (min-width: 1200px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content .hero-description {
    line-height: 1.6;
    font-size: 17px;
  }
}
.frontpage-hero-wrapper .frontpage-hero-text-content .nb-primary-button {
  font-size: var(--font_regular);
  margin-top: 30px;
  padding: 13px 28px;
}
@media screen and (min-width: 768px) {
  .frontpage-hero-wrapper .frontpage-hero-text-content .nb-primary-button {
    font-size: var(--font_medium);
    padding: 16px 35px;
  }
}
.frontpage-hero-wrapper .background-image-container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  padding: 0;
  overflow: hidden;
}
.frontpage-hero-wrapper .background-image-container .frontpage-hero_overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.frontpage-hero-wrapper .background-image-container img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.frontpage-hero-wrapper .background-image-container iframe {
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  min-height: 100%;
  min-width: 100%;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  width: 170vh;
  position: absolute;
}
.frontpage-hero-wrapper .background-image-container .vimeo-thumb-container {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  min-height: 100%;
  min-width: 100%;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  width: 170vh;
}
.frontpage-hero-wrapper .background-image-container .vimeo-thumb-container img {
  width: 100%;
  height: 100%;
  z-index: -1;
}

.highlight-master {
  opacity: 0;
  position: relative;
  transform: translateY(-50%);
  width: 100%;
}
.highlight-master.slick-inizialized {
  opacity: 1;
}
@media screen and (max-width: 992px) {
  .highlight-master {
    max-width: 100%;
    transform: translateY(0);
    padding: 0;
  }
}
.highlight-master .highlighted-categories {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 5px;
}
@media screen and (max-width: 992px) {
  .highlight-master .highlighted-categories {
    overflow: hidden;
  }
}
.highlight-master .highlighted-categories .slick-list {
  width: 100% !important;
  padding-left: 19%;
}
@media screen and (max-width: 525px) {
  .highlight-master .highlighted-categories .slick-list {
    padding-left: 13%;
  }
}
@media screen and (max-width: 440px) {
  .highlight-master .highlighted-categories .slick-list {
    padding-left: 4%;
  }
}
@media screen and (min-width: 576px) {
  .highlight-master .highlighted-categories .slick-list {
    padding-left: 6%;
  }
}
@media screen and (min-width: 768px) {
  .highlight-master .highlighted-categories .slick-list {
    padding-left: 8%;
  }
}
@media screen and (min-width: 992px) {
  .highlight-master .highlighted-categories .slick-list {
    padding-left: 4%;
  }
}
@media screen and (min-width: 1200px) {
  .highlight-master .highlighted-categories .slick-list {
    padding-left: 0;
  }
}
.highlight-master .highlighted-categories .slick-list .slick-track {
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 5px;
  background-color: white;
}
.highlight-master .highlighted-categories .slick-list .slick-track::before {
  display: none;
}
.highlight-master .highlighted-categories .highlight-cat {
  background-color: var(--blue-light);
  padding: 9px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  height: inherit !important;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (min-width: 1400px) {
  .highlight-master .highlighted-categories .highlight-cat {
    padding: 15px;
  }
}
.highlight-master .highlighted-categories .highlight-cat:hover {
  transition: all 0.2s;
  background-color: var(--grey-lightest);
}
.highlight-master .highlighted-categories .highlight-cat.first-cat .highlight-cat__container {
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%) 1;
}
.highlight-master .highlighted-categories .highlight-cat__container {
  height: 100%;
  padding: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 1400px) {
  .highlight-master .highlighted-categories .highlight-cat__container {
    padding: 15px;
  }
}
.highlight-master .highlighted-categories .highlight-cat__container--img {
  object-fit: contain;
  mix-blend-mode: multiply;
  max-height: 85px;
  width: 100%;
  height: 100%;
}
.highlight-master .highlighted-categories .highlight-cat__container--title {
  font-weight: var(--semibold);
  font-size: 12px;
  margin-top: 10px;
  color: var(--black-text);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .highlight-master .r-faded {
    right: 0.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .highlight-master .r-faded {
    display: none;
  }
}

.membership-master {
  position: relative;
  z-index: 1;
  transform: translateY(-30%);
}
.membership-master .r-faded {
  display: none;
}
.membership-master.slick-initialized .r-faded {
  display: block;
}
@media screen and (max-width: 768px) {
  .membership-master {
    max-width: 100%;
    padding: 0;
  }
}
.membership-master .membership-types-wrapper {
  opacity: 0;
  width: 100%;
}
.membership-master .membership-types-wrapper.slick-initialized {
  opacity: 1;
  overflow: hidden;
}
.membership-master .membership-types-wrapper .slick-list {
  margin-right: -1.3rem;
}
@media screen and (min-width: 992px) {
  .membership-master .membership-types-wrapper .slick-list {
    margin-right: -2.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .membership-master .membership-types-wrapper .slick-list {
    margin-right: calc(-2.5rem + 8px);
  }
}
.membership-master .membership-types-wrapper .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}
.membership-master .membership-types-wrapper .slick-list .slick-track .membership-card-wrapper {
  height: inherit;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-right: 1.3rem;
}
@media screen and (min-width: 992px) {
  .membership-master .membership-types-wrapper .slick-list .slick-track .membership-card-wrapper {
    margin-right: 1.2rem;
  }
}
.membership-master .membership-types-wrapper .membership-card-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  position: relative;
  background-color: var(--white);
  box-shadow: 0px 8px 15px var(--box-shadow);
  border-bottom: 8px solid var(--green);
  padding: 2.2rem 2rem;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  .membership-master .membership-types-wrapper .membership-card-wrapper {
    padding: 2.5rem 3rem;
  }
}
.membership-master .membership-types-wrapper .membership-card-wrapper.highlighted-membership-card {
  background-color: var(--green-light) !important;
}
.membership-master .membership-types-wrapper .membership-card-wrapper .card-border-top {
  height: 8px;
  width: 100%;
  background-color: var(--green);
  position: absolute;
  top: 0;
  left: 0;
}
.membership-master .membership-types-wrapper .membership-card-wrapper .membership-type {
  font-size: 15px;
  font-weight: var(--semibold);
  font-family: var(--font-body);
  max-width: 185px;
  text-align: center;
  margin: 0 auto;
  height: 45px;
  color: var(--black-text);
  opacity: 0.8;
}
@media screen and (min-width: 576px) {
  .membership-master .membership-types-wrapper .membership-card-wrapper .membership-type {
    font-size: 17px;
    max-width: 200px;
  }
}
.membership-master .membership-types-wrapper .membership-card-wrapper .membership-price {
  font-family: var(--font-title);
  font-size: 30px;
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 576px) {
  .membership-master .membership-types-wrapper .membership-card-wrapper .membership-price {
    margin-top: 1.7rem;
    font-size: 40px;
  }
}
.membership-master .membership-types-wrapper .membership-card-wrapper .membership-price span {
  font-family: var(--font-body);
  font-size: var(--font_xs-small);
  font-weight: var(--semibold);
}
.membership-master .membership-types-wrapper .membership-card-wrapper .membership-name {
  font-family: var(--font-title);
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .membership-master .membership-types-wrapper .membership-card-wrapper .membership-name {
    margin-bottom: 2rem;
    font-family: var(--font-title);
  }
}
.membership-master .membership-types-wrapper .membership-card-wrapper .benefits {
  padding: 0 0 2rem 0;
  border-bottom: 2px solid var(--green);
  margin: 0 0 1rem 0;
}
.membership-master .membership-types-wrapper .membership-card-wrapper .benefits li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--font_regular);
}
@media screen and (min-width: 576px) {
  .membership-master .membership-types-wrapper .membership-card-wrapper .benefits li {
    font-size: var(--font_medium);
  }
}
.membership-master .membership-types-wrapper .membership-card-wrapper .benefits li:not(:last-child) {
  margin-bottom: 13px;
}
.membership-master .membership-types-wrapper .membership-card-wrapper .benefits li::before {
  content: "";
  background-image: url(../img/checkmark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  display: block;
  width: 6%;
  height: 11px;
  margin-right: 10px;
  transform: translateX(-3px);
}
.membership-master .membership-types-wrapper .membership-card-wrapper .benefits li span {
  width: 94%;
  font-weight: var(--semibold);
}
.membership-master .membership-types-wrapper .membership-card-wrapper .nb-primary-button {
  background-color: var(--blue);
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 77px;
  white-space: nowrap;
}
.membership-master .membership-types-wrapper .membership-card-wrapper .best-price-tag-shape {
  background-color: var(--blue);
  position: absolute;
  transform: rotate(42deg);
  right: -3rem;
  top: 2rem;
  z-index: 5;
  display: none;
}
.membership-master .membership-types-wrapper .membership-card-wrapper .best-price-tag-shape.active-best-price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 4rem;
}
.membership-master .membership-types-wrapper .membership-card-wrapper .best-price-tag-shape .best-price-tag-text {
  color: var(--white);
  line-height: 1;
  font-size: var(--font_xs-small);
  font-weight: var(--semibold);
}
.membership-master .r-faded {
  display: block;
}
@media screen and (min-width: 768px) {
  .membership-master .r-faded {
    right: calc(0.5 * var(--bs-gutter-x));
  }
}
@media screen and (min-width: 1400px) {
  .membership-master .r-faded {
    display: none !important;
  }
}

.contact-hero-wrapper {
  padding-top: 7rem;
  padding-bottom: 2.5rem;
}
.contact-hero-wrapper .row {
  display: block;
}
.contact-hero-wrapper .row .col:first-of-type {
  margin-right: 0;
}
.contact-hero-wrapper .row .col:first-of-type h1 {
  font-size: 31px;
  line-height: 31px;
}
.contact-hero-wrapper .row .col:first-of-type .hero-description {
  margin-bottom: 26.8px;
}
.contact-hero-wrapper .row .col:first-of-type .hero-description p {
  line-height: 20px;
}
.contact-hero-wrapper .row .col:first-of-type .contact-buttons {
  display: block;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 26.8px;
}
.contact-hero-wrapper .row .col:first-of-type .contact-buttons .nb-primary-button {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: var(--semibold);
  font-size: var(--medium);
  padding: 15px 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1607843137);
}
.contact-hero-wrapper .row .col:first-of-type .contact-buttons .nb-primary-button:first-of-type {
  margin-bottom: 20px;
}
.contact-hero-wrapper .row .col:first-of-type .contact-buttons .nb-primary-button:nth-of-type(2) {
  margin-bottom: 40px;
}
.contact-hero-wrapper .row .col:first-of-type .contact-buttons .contact-email:before {
  content: "";
  background-image: url(../img/envelope.svg);
  background-size: cover;
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
}
.contact-hero-wrapper .row .col:first-of-type .contact-buttons .contact-phone:before {
  content: "";
  background-image: url(../img/phone.svg);
  background-size: cover;
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.contact-hero-wrapper .row .col:first-of-type .instagram-icon {
  color: var(--blue);
}
.contact-hero-wrapper .row .col:first-of-type .instagram-icon i {
  font-size: 40px;
}
.contact-hero-wrapper .row .col:first-of-type .facebook-icon {
  margin-right: 10px;
  color: var(--blue);
}
.contact-hero-wrapper .row .col:first-of-type .facebook-icon i {
  font-size: 38px;
}
.contact-hero-wrapper .row .col:nth-of-type(2) {
  margin-top: 3rem;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .accordion-separator {
  margin: 0;
  border: 0;
  height: 1px;
  background-color: var(--grey-lightest);
}
.contact-hero-wrapper .row .col:nth-of-type(2) .faq-accordion-title {
  font-size: var(--font-museo-title);
  margin-top: 26.8px;
  margin-bottom: 19px;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .accordion-item-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .accordion-item-title h3 {
  font-size: 17px;
  font-weight: normal;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .accordion-item-title:after {
  content: "";
  background-image: url(../img/accordion-arrow.svg);
  background-size: contain;
  position: relative;
  width: 15px;
  height: 7px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
  transform: rotate(0deg);
}
.contact-hero-wrapper .row .col:nth-of-type(2) .active-button:after {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .accordion-item-description {
  display: none;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .accordion-item-description p {
  font-size: var(--font_small);
  margin-bottom: 19px;
  margin-top: 0;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .opening-hours-title {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .opening-hours li {
  margin-bottom: 0.5rem;
  font-size: 16px;
}
.contact-hero-wrapper .row .col:nth-of-type(2) .opening-hours:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 330px) {
  .contact-hero-wrapper .row .col:nth-of-type(2) .accordion-item-title h3 {
    font-size: 18px;
  }
}

@media screen and (min-width: 700px) {
  .contact-hero-wrapper .row .col:first-of-type .contact-buttons .nb-primary-button {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .contact-hero-wrapper {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .contact-hero-wrapper .row {
    display: -ms-flexbox;
    display: flex;
  }
  .contact-hero-wrapper .row .col:first-of-type {
    margin-right: 10%;
  }
  .contact-hero-wrapper .row .col:first-of-type h1 {
    font-size: 2.5rem;
    line-height: unset;
  }
  .contact-hero-wrapper .row .col:first-of-type .hero-description p {
    line-height: unset;
  }
  .contact-hero-wrapper .row .col:first-of-type .contact-buttons {
    display: -ms-flexbox;
    display: flex;
  }
  .contact-hero-wrapper .row .col:first-of-type .contact-buttons .nb-primary-button {
    width: 258px;
  }
  .contact-hero-wrapper .row .col:first-of-type .contact-buttons .nb-primary-button:first-of-type {
    margin-bottom: 0;
  }
  .contact-hero-wrapper .row .col:first-of-type .contact-buttons .nb-primary-button:nth-of-type(2) {
    margin-bottom: 0;
  }
  .contact-hero-wrapper .row .col:nth-of-type(2) {
    margin-top: 0;
  }
  .contact-hero-wrapper .row .col:nth-of-type(2) .accordion-item-title h3 {
    font-size: var(--font-secondary-s--title);
  }
  .contact-hero-wrapper .row .col:nth-of-type(2) .opening-hours-title {
    font-size: var(--font-small-title);
  }
  .contact-hero-wrapper .row .col:nth-of-type(2) .opening-hours li {
    font-size: var(--font-secondary-s--title);
  }
}

.standard-hero-banner {
  position: relative;
  min-height: 30vh;
}
.standard-hero-banner .standard-hero-image {
  position: relative;
  height: 30vh;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}
@media screen and (min-width: 992px) {
  .standard-hero-banner .standard-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.standard-hero-banner .standard-hero-banner-wrapper {
  color: var(--black-text);
  padding-top: 25px;
}
@media screen and (min-width: 992px) {
  .standard-hero-banner .standard-hero-banner-wrapper {
    color: var(--white);
    padding-top: 9rem;
    padding-bottom: 12rem;
  }
}
.standard-hero-banner .standard-hero-banner-wrapper .page-title {
  margin: 0;
  line-height: 1.2;
  font-size: 2.2rem;
}
@media screen and (min-width: 992px) {
  .standard-hero-banner .standard-hero-banner-wrapper .page-title {
    max-width: 40rem;
    font-size: 2.5rem;
  }
}
.standard-hero-banner .standard-hero-banner-wrapper .page-description {
  max-width: 33rem;
  line-height: 1.4;
  margin-top: 1rem;
  font-size: var(--font_medium);
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .standard-hero-banner .standard-hero-banner-wrapper .page-description {
    font-size: var(--font-secondary-s--title);
    font-weight: var(--semibold);
  }
}

.map-wrapper {
  background-color: var(--blue-lightest);
  padding: 2rem 0;
}
@media screen and (min-width: 992px) {
  .map-wrapper {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .map-wrapper .container.contained {
    max-width: 1100px;
  }
}
.map-wrapper .container h2 {
  font-size: var(--font-small-title);
  margin: 0;
}
.map-wrapper .container .map-container .embedded-google-map {
  width: 100%;
  height: 500px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}
.map-wrapper .container .map-container .embedded-google-map iframe {
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
}

.featured-blog-posts-wrapper {
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .featured-blog-posts-wrapper {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }
}
.featured-blog-posts-wrapper h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 31px;
  padding-bottom: 2rem;
}
.featured-blog-posts-wrapper .featured-blog-posts-master {
  position: relative;
}
@media screen and (max-width: 768px) {
  .featured-blog-posts-wrapper .featured-blog-posts-master {
    max-width: 100%;
    padding: 0;
  }
}
.featured-blog-posts-wrapper .featured-blog-posts-master .featured-blog-posts {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .featured-blog-posts-wrapper .featured-blog-posts-master .featured-blog-posts {
    overflow: hidden;
  }
}
.featured-blog-posts-wrapper .featured-blog-posts-master .featured-blog-posts.slick-initialized {
  opacity: 1;
}
.featured-blog-posts-wrapper .featured-blog-posts-master .featured-blog-posts .slick-list {
  margin-right: 0;
}
@media screen and (min-width: 1200px) {
  .featured-blog-posts-wrapper .featured-blog-posts-master .featured-blog-posts .slick-list {
    margin-right: -2rem;
  }
}
.featured-blog-posts-wrapper .featured-blog-posts-master .featured-blog-posts .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}
.featured-blog-posts-wrapper .featured-blog-posts-master .featured-blog-posts .slick-list .slick-track .single-post-wrapper {
  margin-right: 2rem;
}
.featured-blog-posts-wrapper .featured-blog-posts-master .r-faded {
  right: 12px;
}
@media screen and (max-width: 768px) {
  .featured-blog-posts-wrapper .featured-blog-posts-master .r-faded {
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .featured-blog-posts-wrapper .featured-blog-posts-master .r-faded {
    display: none;
  }
}
.featured-blog-posts-wrapper .nb-primary-button {
  box-shadow: 0px 8px 20px var(--box-shadow);
  padding: 14px 2.5rem;
  font-size: var(--font_medium);
  white-space: nowrap;
  text-align: center;
  margin: 4rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .featured-blog-posts-wrapper .nb-primary-button {
    margin: 5rem auto 0 auto;
  }
}
.featured-blog-posts-wrapper .nb-primary-button {
  width: -moz-max-content;
  width: max-content;
}

.featured-articles {
  background-color: var(--blue-lightest);
  padding-bottom: 5rem;
  padding-top: 5rem;
}
@media screen and (min-width: 1200px) {
  .featured-articles {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }
}
.featured-articles .featured-articles-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-grid-column-align: center;
  justify-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 1rem;
}
@media screen and (min-width: 576px) {
  .featured-articles .featured-articles-wrapper {
    grid-gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .featured-articles .featured-articles-wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .featured-articles .featured-articles-wrapper {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.featured-articles .featured-articles-wrapper .article {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 30px 22px;
  height: 395px;
}
@media screen and (min-width: 992px) {
  .featured-articles .featured-articles-wrapper .article {
    height: 410px;
  }
}
.featured-articles .featured-articles-wrapper .article__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.featured-articles .featured-articles-wrapper .article .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent linear-gradient(180deg, rgba(28, 33, 38, 0.1019607843) 0%, var(--black-text) 100%) 0% 0% no-repeat padding-box;
}
.featured-articles .featured-articles-wrapper .article__link {
  color: var(--white);
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .featured-articles .featured-articles-wrapper .article__link:hover .article-text h2::after {
    transform: translateX(7px) rotate(180deg);
    transition: all 0.2s ease;
  }
}
.featured-articles .featured-articles-wrapper .article__link .article-text h2 {
  margin: 0;
  font-size: 25px;
  max-width: 85%;
}
@media screen and (min-width: 768px) {
  .featured-articles .featured-articles-wrapper .article__link .article-text h2 {
    font-size: 23px;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .featured-articles .featured-articles-wrapper .article__link .article-text h2 {
    font-size: 25px;
    max-width: 85%;
  }
}
@media screen and (min-width: 1200px) {
  .featured-articles .featured-articles-wrapper .article__link .article-text h2 {
    font-size: 23px;
    max-width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .featured-articles .featured-articles-wrapper .article__link .article-text h2 {
    font-size: 25px;
    max-width: 85%;
  }
}
.featured-articles .featured-articles-wrapper .article__link .article-text h2::after {
  content: "";
  background-image: url(../img/arrow-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 7px;
  transform: translateX(0) rotate(180deg);
  transition: all 0.2s ease;
}
.featured-articles .featured-articles-wrapper .article__link .article-text p {
  margin: 18px 0 0 0;
  font-size: var(--font_small);
  max-width: 95%;
}
@media screen and (min-width: 1200px) {
  .featured-articles .featured-articles-wrapper .article__link .article-text p {
    font-size: var(--font_xs-small);
  }
}
@media screen and (min-width: 1400px) {
  .featured-articles .featured-articles-wrapper .article__link .article-text p {
    font-size: var(--font_small);
    max-width: 95%;
  }
}

.slider-block {
  padding-bottom: 5rem;
  padding-top: 4rem;
}
@media screen and (min-width: 1200px) {
  .slider-block {
    padding-bottom: 7rem;
    padding-top: 6rem;
  }
}
.slider-block .slider-block-extra-wrapper {
  position: relative;
}
@media screen and (min-width: 992px) {
  .slider-block .slider-block-extra-wrapper .cat-master {
    margin-bottom: 2rem;
  }
}
.slider-block .slider-block-extra-wrapper .cat-master .first-highlighted-cat {
  font-size: 1.1rem;
  cursor: pointer;
  margin: 0;
  margin-bottom: 2rem;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .slider-block .slider-block-extra-wrapper .cat-master .first-highlighted-cat {
    display: none;
  }
}
.slider-block .slider-block-extra-wrapper .cat-master .first-highlighted-cat::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 12px;
  position: relative;
  content: "\f078";
  display: inline-block;
  font-size: 1.1rem;
  color: var(--black-text);
  transform: rotate(0);
  transition: 0.2s ease transform;
}
.slider-block .slider-block-extra-wrapper .cat-master .first-highlighted-cat.cat-clicked::after {
  transform: rotate(180deg);
  transition: 0.2s ease transform;
}
.slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container {
  position: absolute;
  top: 40px;
  background-color: var(--white);
  z-index: 1;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1294117647);
  border: 1px solid var(--grey-lightest);
}
@media screen and (min-width: 992px) {
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: auto;
    box-shadow: none;
    border: 0;
  }
}
.slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories {
  display: none;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
  }
}
.slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories .slider-category {
  font-size: 1.1rem;
  color: var(--black-text);
  padding: 7px 35px 10px 20px;
}
@media screen and (min-width: 992px) {
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories .slider-category {
    padding: 0;
    font-weight: bold;
    color: var(--grey-lightest);
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories .slider-category {
    font-size: 23px;
    white-space: nowrap;
  }
}
.slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories .slider-category {
  cursor: pointer;
}
.slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories .slider-category:hover {
  color: var(--black-text);
  transition: all 0.2s;
}
.slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-categories .slider-category.active-category {
  color: var(--black-text);
  pointer-events: none;
}
.slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-arrows {
  display: none;
}
@media screen and (min-width: 1200px) {
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-arrows {
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-arrows .slick-arrow {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) and (min-width: 768px) {
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-arrows .slick-arrow {
    display: block !important;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--grey-lightest);
    width: 60px;
    height: 60px;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/arrow.svg");
    cursor: pointer;
  }
  .slider-block .slider-block-extra-wrapper .cat-master .slider-cat-container .slider-arrows .slick-arrow.next {
    transform: rotate(180deg);
  }
}
.slider-block .slider-block-extra-wrapper .slider-product-master {
  position: relative;
  min-height: 340px;
  overflow: hidden !important;
}
.slider-block .slider-block-extra-wrapper .slider-product-master .slider-products {
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products {
    overflow: hidden;
  }
}
.slider-block .slider-block-extra-wrapper .slider-product-master .slider-products.slick-initialized {
  opacity: 1;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list {
    padding-left: 6%;
  }
}
@media screen and (max-width: 700px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list {
    padding-left: 3%;
  }
}
@media screen and (max-width: 645px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list {
    padding-left: 12%;
  }
}
@media screen and (max-width: 576px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list {
    padding-left: 5%;
  }
}
@media screen and (max-width: 490px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list {
    padding-left: 13%;
  }
}
@media screen and (min-width: 768px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list {
    margin-right: calc(-100vw + 100%);
  }
}
.slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list .slick-track {
  display: -ms-flexbox !important;
  display: flex !important;
}
.slider-block .slider-block-extra-wrapper .slider-product-master .slider-products .slick-list .slick-track .product {
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
  height: inherit !important;
}
.slider-block .slider-block-extra-wrapper .slider-product-master .loader {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background-color: rgba(255, 255, 255, 0.2117647059);
  position: absolute;
  top: 0;
  z-index: -1;
  backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.slider-block .slider-block-extra-wrapper .slider-product-master .loader.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: all 0.2s;
}
.slider-block .slider-block-extra-wrapper .slider-product-master .loader .spinner {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 3;
  height: 35px;
  width: 35px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/my_spinner.gif");
}
@media screen and (min-width: 1200px) {
  .slider-block .slider-block-extra-wrapper .slider-product-master .r-faded {
    display: none;
  }
}

.blog-overview-block {
  margin: 4em auto;
}
@media screen and (min-width: 768px) {
  .blog-overview-block {
    margin: 6rem auto;
  }
}
.blog-overview-block .posts-categories {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1.3rem;
  margin-bottom: 3rem;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .blog-overview-block .posts-categories {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.blog-overview-block .posts-categories .category-item {
  font-size: 1.31rem;
  font-family: var(--font-title);
  color: var(--black-text);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.4s ease all;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-overview-block .posts-categories .category-item.active {
  color: var(--blue);
  text-decoration: underline;
}
.blog-overview-block .posts-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .blog-overview-block .posts-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .blog-overview-block .posts-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-overview-block .load-more {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}
.blog-overview-block .load-more #posts-load-more-btn {
  background: none;
  border: 0;
  font-weight: 400;
  font-size: 1.25rem;
  opacity: 0.5;
  margin-top: 6.5rem;
}

.embed-social-section {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 992px) {
  .embed-social-section {
    min-height: 900px;
  }
}
.embed-social-section__img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}
.embed-social-section__clip-overlay {
  clip-path: polygon(0 0, 14% 0, 100% 30%, 100% 100%, 0 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .embed-social-section__clip-overlay {
    clip-path: polygon(0 0, 30% 0, 100% 45%, 100% 100%, 0 100%);
  }
}
@media screen and (min-width: 992px) {
  .embed-social-section__clip-overlay {
    clip-path: polygon(0 0, 20% 0, 100% 40%, 100% 100%, 0 100%);
  }
}
@media screen and (min-width: 1200px) {
  .embed-social-section__clip-overlay {
    clip-path: polygon(0 0, 40% 0, 100% 90%, 100% 100%, 0 100%);
  }
}
.embed-social-section__wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  .embed-social-section__wrapper {
    padding-top: 10rem;
    padding-bottom: 10rem;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3rem;
  }
}
.embed-social-section__wrapper--master {
  max-width: 90%;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .embed-social-section__wrapper--master {
    max-width: 495px;
  }
}
@media screen and (min-width: 992px) {
  .embed-social-section__wrapper--master {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .embed-social-section__wrapper--master {
    max-width: 570px;
  }
}
.embed-social-section__wrapper--master .embed-social-title {
  margin: 0 0 15px 0;
  font-size: 31px;
}
@media screen and (min-width: 576px) {
  .embed-social-section__wrapper--master .embed-social-title {
    font-size: 2.175rem;
  }
}
@media screen and (min-width: 992px) {
  .embed-social-section__wrapper--master .embed-social-title {
    font-size: 2.7rem;
  }
}
.embed-social-section__wrapper--master .embed-social-subtitle {
  font-weight: var(--semibold);
  font-size: 20px;
  margin: 25px 0;
  font-size: var(--font_small);
}
@media screen and (min-width: 768px) {
  .embed-social-section__wrapper--master .embed-social-subtitle {
    font-size: var(--font_medium);
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .embed-social-section__wrapper--master .embed-social-subtitle {
    font-size: var(--font-secondary-s--title);
  }
}
@media screen and (min-width: 1200px) {
  .embed-social-section__wrapper--master .embed-social-subtitle {
    margin: 35px 0;
  }
}
.embed-social-section__wrapper--master .embed-social-cta {
  padding: 13px 40px;
  font-size: 16px;
}
.embed-social-section__wrapper .embed-social-carousel {
  width: 100%;
  min-height: 270px;
}
@media screen and (min-width: 768px) {
  .embed-social-section__wrapper .embed-social-carousel {
    min-height: 300px;
  }
}
.embed-social-section__wrapper .embed-social-carousel {
  /* Styles EmbedSocial ---- START */
  /* 
  #es-slider  {    padding:  0 !important;}.swiper-container  {      padding:  0 !important;}#es-mainwidget  {      padding:  0 !important;      margin:  0 -8px 0 0 !important; }#es-mainwidget .tns-inner  {    margin:  0 !important;    position:  relative;} .f-slider {display: flex; align-items: flex-end;}#es-mainwidget .tns-outer  {    padding:   0 0 0 7px !important;}#es-mainwidget .tns-controls button[data-controls="prev"] {        top:  50% !important;      transform:  translateY(-50%);        position:  absolute !important;        left:  0 !important;}#es-mainwidget .tns-controls button[data-controls="next"] {        top:  50% !important;      transform:  translateY(-50%);        position:  absolute !important;        right:  10px !important;}#es-carousel  {      padding:  0 !important;}#es-header  {       margin:  0 !important;}#es-carousel .swiper-wrapper  {     align-items:  center;}.es-box  {      padding:  45px !important;      border:  none !important;    box-shadow:  0px 7px 10px #00000024;      border-bottom:  6px solid #55AF30 !important;      border-radius:  0 !important;}.es-box:hover  {      opacity:  1 !important;}.tns-item  {    padding-right:  25px !important;}.es-box .f-box-height  {      position:  relative;}.es-box .f-box-height .es-avatar {      position:  absolute !important;      top:  auto !important;      margin-bottom:  0 !important;      width:  70px;      height:  70px;      background-color:  #55af30;}.es-box .f-box-height .es-text  {      margin-bottom:  0 !important;      margin-top:  25px;      font-size:  13px !important;}.es-box .f-box-height .es-username  {      margin-left:  90px;      margin-bottom:  11px !important;}.es-box .f-box-height .es-stars  {      margin-left:  90px;}.es-meta .es-logo  {      position:  absolute !important;      top:  15px !important;      right:  15px !important;      height:  25px !important;      width:  25px !important;}.es-meta .es-logo svg  {       height:  25px !important;      width:  25px !important;}#slider-prev-btn,  #slider-next-btn  {    background-image:  url(https://naturbutikken.twentyfour.dev/wp-content/themes/dof_naturbutikken/img/arrow.svg);    background-size:  contain !important;        width:  13px !important;        height:  13px !important;        background-position:  center !important;    background-repeat:  no-repeat !important;    float:  none !important;    margin:  0 auto !important;}#slider-next-btn  {    transform:  rotate(180deg);}.tns-controls button  {      border:  1px solid #D3D7DA;    background-color:  #FFFFFF !important;    width:  45px !important;    height:  45px !important;    border-radius:  50%;}@media screen and (max-width: 992px) {.es-box {padding: 35px 60px !important;}.es-box .f-box-height .es-avatar {width: 55px;height: 55px;}.es-box .f-box-height .es-username {margin-left: 75px;font-size: 16px;margin-bottom: 7px !important;}.es-box .f-box-height .es-stars {margin-left: 75px;}}
  */
  /* Styles EmbedSocial ---- END */
}

.two-columns-image-text-wrapper.light-blue-bg {
  background-color: var(--blue-lightest);
}
@media screen and (min-width: 1200px) {
  .two-columns-image-text-wrapper .container.contained {
    max-width: 1100px;
  }
}
.two-columns-image-text-wrapper .column-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 992px) {
  .two-columns-image-text-wrapper .column-wrapper {
    padding-top: 5rem;
    gap: 4rem;
    padding-bottom: 5rem;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .two-columns-image-text-wrapper .column-wrapper.image-align_left {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.two-columns-image-text-wrapper .column-wrapper .content-column {
  -ms-flex: 1;
  flex: 1;
}
.two-columns-image-text-wrapper .column-wrapper .text-content-column {
  -ms-flex-order: 2;
  order: 2;
}
.two-columns-image-text-wrapper .column-wrapper .text-content-column h2 {
  display: none;
}
@media screen and (min-width: 992px) {
  .two-columns-image-text-wrapper .column-wrapper .text-content-column h2 {
    display: block;
    font-size: 25px;
    line-height: 1.3;
    margin-top: 0;
    position: relative;
    top: 0;
  }
}
.two-columns-image-text-wrapper .column-wrapper .text-content-column p, .two-columns-image-text-wrapper .column-wrapper .text-content-column a {
  line-height: 1.5;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 786px) {
  .two-columns-image-text-wrapper .column-wrapper .text-content-column p, .two-columns-image-text-wrapper .column-wrapper .text-content-column a {
    font-size: var(--font_regular);
  }
}
.two-columns-image-text-wrapper .column-wrapper .text-content-column .nb-primary-button {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1607843137);
  padding: 14px 35px;
  text-align: center;
  display: block;
}
.two-columns-image-text-wrapper .column-wrapper .image-column {
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (min-width: 992px) {
  .two-columns-image-text-wrapper .column-wrapper .image-column {
    margin-top: 0;
  }
}
.two-columns-image-text-wrapper .column-wrapper .image-column .title-hidden {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  font-family: var(--font-title);
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .two-columns-image-text-wrapper .column-wrapper .image-column .title-hidden {
    display: none;
  }
}
.two-columns-image-text-wrapper .column-wrapper .image-column img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 992px) {
  .two-columns-image-text-wrapper .column-wrapper .image-column img {
    max-height: 35vh;
  }
}
.two-columns-image-text-wrapper .column-wrapper .image-column img {
  max-height: 50vh;
}

.blog-post-products {
  margin: 5rem 0;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .blog-post-products {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    width: calc(100% + var(--bs-gutter-x));
  }
}
@media screen and (max-width: 576px) {
  .blog-post-products.grid-blog-product {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
.blog-post-products.grid-blog-product .blog-posts-product-master .r-faded {
  display: none;
}
.blog-post-products.grid-blog-product .blog-posts-product-master .blog-posts-product {
  opacity: 1;
  display: -ms-grid;
  display: grid;
  gap: 3rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .blog-post-products.grid-blog-product .blog-posts-product-master .blog-posts-product {
    gap: 2rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .blog-post-products.grid-blog-product .blog-posts-product-master .blog-posts-product .product .woocommerce-loop-product__link {
    padding: 2rem 1.5rem;
  }
  .blog-post-products.grid-blog-product .blog-posts-product-master .blog-posts-product .product .woocommerce-loop-product__link img {
    max-height: 155px;
  }
}
.blog-post-products .blog-post-product-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 2rem;
}
.blog-post-products .blog-posts-product-master {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .blog-post-products .blog-posts-product-master {
    max-width: 100%;
    padding: 0;
  }
}
.blog-post-products .blog-posts-product-master .blog-posts-product {
  opacity: 0;
  width: 100%;
  overflow: hidden;
}
.blog-post-products .blog-posts-product-master .blog-posts-product.slick-initialized {
  opacity: 1;
}
.blog-post-products .blog-posts-product-master .blog-posts-product .slick-list {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .blog-post-products .blog-posts-product-master .blog-posts-product .slick-list {
    margin-right: -2rem;
  }
}
@media screen and (min-width: 992px) {
  .blog-post-products .blog-posts-product-master .blog-posts-product .slick-list {
    margin-right: -3rem;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post-products .blog-posts-product-master .blog-posts-product .slick-list {
    margin-right: -4rem;
  }
}
.blog-post-products .blog-posts-product-master .blog-posts-product .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}
.blog-post-products .blog-posts-product-master .blog-posts-product .slick-list .slick-track .product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  margin-right: 2rem;
}
@media screen and (min-width: 992px) {
  .blog-post-products .blog-posts-product-master .blog-posts-product .slick-list .slick-track .product {
    margin-right: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post-products .blog-posts-product-master .blog-posts-product .slick-list .slick-track .product {
    margin-right: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .blog-post-products .blog-posts-product-master .r-faded {
    display: none;
  }
}

.image-grid-section {
  background-color: var(--white);
}
.image-grid-section.light-blue-bg {
  background-color: var(--blue-lightest);
}
.image-grid-section .image-grid-wrapper h2 {
  margin: 0 0 -2rem 0 !important;
  padding-top: 3rem;
  font-size: 31px;
}
.image-grid-section .image-grid-wrapper .image-grid {
  padding: 4rem 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "first first second" "third fourth fourth" "fifth fourth fourth";
  gap: 1rem;
  height: 58vh;
}
@media screen and (min-width: 768px) {
  .image-grid-section .image-grid-wrapper .image-grid {
    gap: 2rem;
    height: 80vh;
    padding: 5rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .image-grid-section .image-grid-wrapper .image-grid {
    height: 90vh;
  }
}
.image-grid-section .image-grid-wrapper .image-grid .image-wrapper {
  position: relative;
}
.image-grid-section .image-grid-wrapper .image-grid .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.image-grid-section .image-grid-wrapper .image-grid .image-wrapper:nth-child(1) {
  grid-area: first;
}
.image-grid-section .image-grid-wrapper .image-grid .image-wrapper:nth-child(2) {
  grid-area: second;
}
.image-grid-section .image-grid-wrapper .image-grid .image-wrapper:nth-child(3) {
  grid-area: third;
}
.image-grid-section .image-grid-wrapper .image-grid .image-wrapper:nth-child(4) {
  grid-area: fourth;
}
.image-grid-section .image-grid-wrapper .image-grid .image-wrapper:nth-child(5) {
  grid-area: fifth;
}

.single-post-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--black-text);
  background-color: var(--blue-lightest);
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  overflow: hidden;
  position: relative;
  height: 430px !important;
}
@media screen and (min-width: 768px) {
  .single-post-wrapper {
    height: 450px !important;
  }
}
@media screen and (min-width: 1200px) {
  .single-post-wrapper {
    height: 450px !important;
  }
}
@media screen and (min-width: 1400px) {
  .single-post-wrapper {
    height: 500px !important;
  }
}
@media screen and (min-width: 1200px) {
  .single-post-wrapper:hover .blog-post-img {
    transition: all 0.4s ease;
    transform: scale(1.1);
  }
  .single-post-wrapper:hover .featured-post-text-wrapper {
    transition: all 0.3s ease;
    transform: translateY(0);
  }
}
.single-post-wrapper .blog-post-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease;
  min-height: 65%;
}
.single-post-wrapper .featured-post-text-wrapper {
  padding: 20px 22px;
  background-color: var(--blue-lightest);
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(33px);
  transition: all 0.2s ease;
  z-index: 2;
}
.single-post-wrapper .featured-post-text-wrapper .featured-post-date {
  font-size: var(--font_xs-small);
  color: var(--grey-dark);
  margin: 0 0 7px 0;
}
.single-post-wrapper .featured-post-text-wrapper h3 {
  font-family: var(--font-title);
  font-size: 19px;
  margin: 0 0 13px 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .single-post-wrapper .featured-post-text-wrapper h3 {
    font-size: var(--font-small-title);
  }
}
.single-post-wrapper .featured-post-text-wrapper .featured-post-excerpt {
  color: var(--grey-dark);
  font-size: var(--font_xs-small);
  margin: 0 0 13px 0;
}
.single-post-wrapper .featured-post-text-wrapper .post-categories {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}
.single-post-wrapper .featured-post-text-wrapper .post-categories .category-name {
  margin: 0;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: var(--font_xs-small);
  border-radius: 25px;
  padding: 5px 17px 5px 17px;
}
.single-post-wrapper .featured-post-text-wrapper .read-more {
  margin-top: 12px;
  display: block;
  font-size: var(--font_xs-small);
  font-weight: var(--semibold);
}

.proceed-to-checkout-wrapper {
  padding-bottom: 5rem;
  padding-top: 4rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 992px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper {
  padding: 30px 35px;
  background-color: var(--blue-lightest);
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 576px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    padding: 30px 25px;
  }
}
@media screen and (min-width: 992px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper {
    padding: 30px 25px;
  }
}
@media screen and (min-width: 1200px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper {
    padding: 40px 35px;
  }
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper {
  -ms-flex: 1;
  flex: 1;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container h2 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  margin: 0;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .account-text {
  font-size: 0.81rem;
  font-weight: 600;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form {
  border: 0;
  padding: 0;
  margin: 0;
  margin-top: 1.875rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .form-row {
  padding: 0;
  margin: 0;
  margin-bottom: 1.25rem;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form input {
  border-radius: 100px;
  border: 2px solid var(--grey-dark);
  height: 3rem;
  padding: 10px 22px;
  color: var(--grey-dark);
  font-size: 1rem;
  font-family: var(--font-body);
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .label-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .label-wrapper .lost-password-link {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: var(--blue);
  text-decoration: underline;
  margin-top: auto;
  margin-right: 22px;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form label {
  color: var(--grey-dark);
  font-size: 0.81rem;
  font-weight: 600;
  margin-left: 1.375rem;
  line-height: 1.75rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form label .required {
  color: var(--grey-dark);
  font-size: 0.81rem;
  font-weight: 600;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .show-password-input {
  top: 13px;
  right: 13px;
  color: var(--grey-dark);
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .show-password-input.display-password::after {
  color: var(--green);
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .woocommerce-form-login__rememberme {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  gap: 0.875rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .woocommerce-form-login__rememberme input {
  width: 25px;
  height: 25px;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form .woocommerce-form-login__rememberme span {
  color: var(--black-text);
  font-weight: 400;
  font-size: 0.9375rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container form button[type=submit] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.25rem;
  background-color: var(--green);
  border-radius: 100px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  width: 260px;
  max-width: 100%;
  color: var(--white);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1607843137);
  border: 0;
  cursor: pointer;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .member-text {
  font-family: var(--font-title);
  font-size: 1.375rem;
  margin: 0;
  margin-top: 3.75rem;
  display: block;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .member-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.625rem;
  border: 2px solid var(--green);
  border-radius: 100px;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  width: 260px;
  max-width: 100%;
  color: var(--black-text);
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .woocommerce-privacy-policy-text {
  font-size: 0.81rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .go-to-login {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.25rem;
  background-color: var(--green);
  border-radius: 100px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  width: 260px;
  max-width: 100%;
  color: var(--white);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1607843137);
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .woocommerce-password-strength {
  font-size: 0.81rem;
  font-weight: 600;
  color: red;
  text-align: center;
  padding: 0;
  margin-top: 0.5rem;
  background-color: transparent;
  border-color: transparent;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .woocommerce-password-strength.good {
  color: #ffc733;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .login-wrapper .account-form-container .woocommerce-password-strength.strong {
  color: var(--green);
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container,
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .guest-container {
  padding: 30px 35px;
  background-color: var(--blue-lightest);
}
@media screen and (max-width: 576px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container,
  .proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .guest-container {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    padding: 30px 25px;
  }
}
@media screen and (min-width: 992px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container,
  .proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .guest-container {
    padding: 30px 25px;
  }
}
@media screen and (min-width: 1200px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container,
  .proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .guest-container {
    padding: 40px 35px;
  }
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container h2,
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .guest-container h2 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  margin: 0;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .small-title,
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .guest-container .small-title {
  font-size: 0.81rem;
  font-weight: 600;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .benefits {
  margin-top: 2rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .benefits li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .benefits li:not(:last-child) {
  margin-bottom: 1.1rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .benefits li::before {
  content: "";
  background-image: url(../img/checkmark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  display: block;
  width: 1.1rem;
  height: 1rem;
  margin-right: 1rem;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .benefits li p {
  font-weight: var(--semibold);
  font-size: var(--font_regular);
  margin: 0;
}
@media screen and (min-width: 576px) {
  .proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .benefits li p {
    font-size: var(--font_medium);
  }
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .become-a-member-container .nb-secondary-button {
  margin-top: 5.75rem;
  width: 100%;
  text-align: center;
}
.proceed-to-checkout-wrapper .proceed-to-checkout .member-wrapper .guest-container .nb-secondary-button {
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

/* Cart
--------------------------------------------- */
@media screen and (min-width: 1400px) {
  body.woocommerce-cart .container,
  body.woocommerce-checkout .container {
    max-width: 1240px;
  }
}
body.woocommerce-cart .container .woocommerce,
body.woocommerce-checkout .container .woocommerce {
  max-width: 100%;
  padding: 4rem 0 9rem 0;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .container .woocommerce,
  body.woocommerce-checkout .container .woocommerce {
    padding: 5rem 0;
  }
}

body.woocommerce-cart .cart-header-payments {
  padding: 1.125rem 1.625rem;
  background-color: var(--blue-lightest);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.375rem;
  width: 100%;
  position: absolute;
  bottom: -60px;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .cart-header-payments {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    width: calc(100% + var(--bs-gutter-x));
  }
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .cart-header-payments {
    margin-bottom: 0.6875rem;
    position: relative;
    bottom: auto;
  }
}
body.woocommerce-cart .cart-header-payments .payments-left-side {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.375rem;
}
body.woocommerce-cart .cart-header-payments .payments-right-side {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  body.woocommerce-cart .cart-header-payments .payments-right-side {
    gap: 0;
  }
  body.woocommerce-cart .cart-header-payments .payments-right-side span {
    display: none;
  }
}
body.woocommerce-cart .cart-header-payments img {
  max-width: 36px;
}
body.woocommerce-cart .cart-product-upsell {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 1.375rem 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  border-top: 2px solid rgba(28, 33, 38, 0.1);
}
@media screen and (max-width: 768px) {
  body.woocommerce-cart .cart-product-upsell {
    padding: 1rem;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .cart-product-upsell {
    font-size: var(--font_small);
  }
}
body.woocommerce-cart .cart-product-upsell .switch {
  position: relative;
  display: inline-block;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 2rem;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .cart-product-upsell .switch {
    height: 1.7rem;
  }
}
body.woocommerce-cart .cart-product-upsell .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
body.woocommerce-cart .cart-product-upsell .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  transition: 0.4s;
  border: 2px solid var(--grey-lightest);
  border-radius: 34px;
}
body.woocommerce-cart .cart-product-upsell .switch .slider:before {
  position: absolute;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  left: 2px;
  bottom: 2px;
  background-color: var(--green);
  border-radius: 50%;
  transition: 0.4s;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .cart-product-upsell .switch .slider:before {
    height: 1.2rem;
    width: 1.2rem;
  }
}
body.woocommerce-cart .cart-product-upsell .switch input:checked + .slider {
  background-color: var(--green);
}
body.woocommerce-cart .cart-product-upsell .switch input:checked + .slider:before {
  transform: translateX(24px);
  background-color: var(--white);
}
body.woocommerce-cart .cart-product-upsell .product-title {
  font-weight: 700;
}
body.woocommerce-cart .cart-product-upsell .product-price {
  font-weight: 700;
  margin-left: auto;
}
body.woocommerce-cart .cart-banner {
  background: transparent linear-gradient(254deg, var(--blue) 0%, var(--green) 100%) 0% 0% no-repeat padding-box;
  padding: 3rem 2.5rem;
  color: var(--white);
  margin-top: 2rem;
  display: none;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .cart-banner {
    grid-area: cart-banner;
    margin-top: 0;
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  body.woocommerce-cart .cart-banner {
    padding: 3.125rem 2.5rem;
  }
}
body.woocommerce-cart .cart-banner .banner-benefits {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
body.woocommerce-cart .cart-banner .banner-benefits .banner-text {
  max-width: 17.25rem;
  font-size: 18px;
  font-family: var(--font-title);
}
body.woocommerce-cart .cart-banner .banner-benefits .benefits-with-icons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 1rem;
}
@media screen and (min-width: 1200px) {
  body.woocommerce-cart .cart-banner .banner-benefits .benefits-with-icons {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
body.woocommerce-cart .cart-banner .banner-benefits .benefits-with-icons .banner-benefit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
body.woocommerce-cart .cart-banner .banner-benefits .benefits-with-icons .banner-benefit img {
  width: 25px;
  height: 25px;
}
body.woocommerce-cart .cart-banner .banner-benefits .benefits-with-icons .banner-benefit span {
  font-size: 0.875rem;
}
body.woocommerce-cart .cart-banner .banner-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (min-width: 1200px) {
  body.woocommerce-cart .cart-banner .banner-button {
    margin-top: 1rem;
  }
}
body.woocommerce-cart .cart-banner .banner-button a {
  padding: 0.75rem 1rem;
  border: 2px solid var(--white);
  font-family: var(--font-title);
  color: var(--white);
  border-radius: 100px;
  width: 23.25rem;
  max-width: 100%;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.woocommerce-cart .cart-banner .banner-button a img {
  position: absolute;
  right: 1rem;
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}
body.woocommerce-cart .woocommerce .cart-header-title {
  font-size: 1.875rem;
  margin: 0;
  margin-bottom: 1.75rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper {
    display: -ms-grid;
    display: grid;
    gap: 1.5rem;
    grid-template-areas: "cart-form cart-right" "cart-banner cart-banner";
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-cart .woocommerce .cart-wrapper {
    gap: 2.25rem;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form {
  padding-top: 4.3rem;
  position: static !important;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form {
    padding-top: 0;
    grid-area: cart-form;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty .shop_table {
  -ms-flex: 1;
  flex: 1;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty .shop_table .empty-cart {
  background-color: var(--blue-lightest);
  padding: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex: 1;
  flex: 1;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty .shop_table .empty-cart .empty-cart-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty .shop_table .empty-cart .empty-cart-container h2 {
  font-size: 1.875rem;
  margin: 0;
  margin-bottom: 0.625rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty .shop_table .empty-cart .empty-cart-container span {
  font-family: var(--font-title);
  font-size: 1.1875rem;
  font-weight: 600;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty .shop_table .empty-cart .empty-cart-container a {
  margin-top: 3.125rem;
  background-color: var(--green);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty .shop_table .empty-cart .empty-cart-container a img {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
  position: absolute;
  right: 1.75rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form.empty ~ .cart-right-column .nb-cart-free-shipping {
  display: none !important;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--blue-lightest);
  position: relative;
  column-gap: 2rem;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item {
    column-gap: 1rem;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .dof-membership-price {
  color: var(--green);
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item:last-child {
  margin-bottom: 0;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-image {
  width: 30%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--blue-light);
  position: relative;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-image a {
  height: 100%;
  padding: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-image a {
    padding: 10px;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-image a:hover img {
  transform: scale(1.1);
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-image a img {
  width: 100%;
  height: 100%;
  max-height: 130px;
  object-position: center;
  mix-blend-mode: multiply;
  transition: 0.4s ease transform;
  object-fit: contain;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5rem 3rem 1.375rem 0rem;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content {
    padding: 1.5rem 1.5rem 1.375rem 0rem;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .category {
  color: var(--black-text);
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .title {
  max-width: 90%;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .title a {
  color: var(--black-text);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .title a {
    font-size: var(--font_small);
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content dl.variation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content auto;
  grid-template-columns: max-content auto;
  font-size: var(--font_xs-small);
  margin: 10px 0;
  color: var(--grey-dark);
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content dl.variation dt {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content dl.variation dd {
  -ms-grid-column: 2;
  grid-column-start: 2;
  margin-left: 2rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content dl.variation dd p {
  margin: 0;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .price-wrapper {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .price-wrapper {
    font-size: var(--font_small);
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .price-wrapper .dof-normal-price {
  color: var(--black-text);
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .price-wrapper .dof-normal-price del {
  -ms-flex-order: 2;
  order: 2;
  font-weight: 500;
  opacity: 1;
  margin-left: 0.45rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .price-wrapper .dof-normal-price ins {
  text-decoration: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls {
  margin-top: auto;
  background-color: var(--blue-light);
  width: 105px;
  height: 35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls {
    height: 40px;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls div {
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity-value {
  font-size: 1.6rem;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity-value {
    font-size: var(--font_small);
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity {
  width: 1.5rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity .qty {
  font-size: 1rem;
  -moz-appearance: textfield;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  outline: 0;
  width: 1.5rem;
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity .qty {
    font-size: var(--font_small);
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity .qty::-webkit-outer-spin-button, body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity-increase,
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity-decrease {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity-increase.disabled,
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-content .quantity-controls .quantity-decrease.disabled {
  pointer-events: none;
  opacity: 0.5;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-remove {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 25px;
  height: 25px;
  background-color: var(--blue-light);
  border-radius: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: 0.4s ease transform;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-remove:hover {
  transform: scale(1.1);
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .cart_item .product-remove a {
  color: var(--black-text) !important;
  background-color: transparent !important;
  opacity: 0.5;
  font-weight: 400;
  font-size: 1rem;
  font-size: 1.25rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table button[name=update_cart] {
  visibility: hidden;
}
body.woocommerce-cart .woocommerce .cart-wrapper form.woocommerce-cart-form .shop_table .after-cart {
  display: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 3rem;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column {
    grid-area: cart-right;
    margin-top: 0;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .woocommerce-message,
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .woocommerce-error,
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .woocommerce-info {
  margin-bottom: 0.6875rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .nb-cart-member-discount td {
  background: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .nb-cart-member-discount .tooltip {
  position: relative;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .nb-cart-member-discount .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .nb-cart-member-discount .tooltip img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .nb-cart-member-discount .tooltip .tooltiptext {
  top: -5px;
  bottom: auto;
  right: 155%;
  visibility: hidden;
  position: absolute;
  width: 250px;
  background-color: var(--blue);
  color: var(--white);
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 0.75rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .nb-cart-member-discount .tooltip .tooltiptext:after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--blue);
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-not-available-notice,
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-notice.not-available {
  background-color: var(--blue-light);
  color: var(--black-text);
  font-weight: 400;
  font-size: 0.875rem;
  border-top: 0;
  padding: 1.25rem 2rem 1.25rem 4rem;
  margin-bottom: 0.6875rem;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-not-available-notice,
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-notice.not-available {
    position: relative;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-not-available-notice:before,
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-notice.not-available:before {
  content: "";
  background-color: var(--grey-lightest);
  border-radius: 100%;
  font-size: 27px;
  display: inline-block;
  position: absolute;
  width: 27px;
  height: 27px;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-notice {
  background-color: var(--green-light);
  color: var(--black-text);
  font-weight: 400;
  font-size: 0.875rem;
  border-top: 0;
  padding: 1.25rem 2rem 1.25rem 4rem;
  margin-bottom: 0.6875rem;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-notice {
    position: relative;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-notice:before {
  font-family: WooCommerce;
  content: "\e015";
  color: var(--green);
  font-size: 27px;
  display: inline-block;
  position: absolute;
  width: 27px;
  height: 27px;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .free-shipping-notice.hidden {
  display: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper {
  padding: 30px 35px;
  background-color: var(--blue-lightest);
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    padding: 30px 25px;
  }
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper {
    padding: 30px 25px;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper {
    padding: 40px 35px;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper h2 {
  font-weight: 400;
  font-size: 1.5625rem;
  margin: 0;
  margin-bottom: 1.3125rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table {
  border: 0;
  border-top: 1px solid var(--grey-lightest);
  border-radius: 0;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table th {
  display: block;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table td:before {
  content: "";
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table td small {
  display: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table .cart-subtotal .tax_label {
  display: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table .nb-cart-member-discount .amount {
  color: var(--green);
  font-weight: 700;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-lightest);
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr th,
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr td {
  padding: 0;
  border: 0;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr .bold {
  font-weight: 700;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr th {
  font-weight: 400;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total {
  position: relative;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .tax-order-label {
  font-size: 15px;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .includes_tax {
  display: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .taxes {
  font-weight: 400;
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .taxes {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .taxes {
    margin-top: 10px;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .order-total_total {
  background-color: var(--blue-lightest);
  position: relative;
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .order-total_total {
    position: absolute;
    top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.order-total .order-total_total {
    top: auto;
    position: relative;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.nb-cart-free-shipping.hidden {
  display: none;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr.nb-cart-free-shipping td {
  color: var(--green);
  font-weight: 700;
  background-color: transparent !important;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .cart_totals-wrapper .shop_table tr td[data-title=Medlemsrabat] .amount {
  color: var(--green);
  font-weight: 700;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-top: 1.75rem;
  padding: 2.1875rem 25px;
  background-color: var(--blue-light);
}
@media screen and (max-width: 576px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
}
@media screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    margin-top: 1rem;
    background-color: var(--blue-lightest);
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    margin-top: 1.75rem;
    padding: 2.1875rem 35px;
  }
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
  margin: 0;
  background-color: var(--green);
  color: var(--white);
  padding: 1rem;
  border-radius: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
}
body.woocommerce-cart .woocommerce .cart-wrapper .cart-right-column .cart-collaterals .cart_totals .wc-proceed-to-checkout a img {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
  position: absolute;
  right: 1.75rem;
}

/* Checkout
--------------------------------------------- */
body.woocommerce-checkout .woocommerce .checkout-header-title {
  font-size: 1.875rem;
  margin: 0;
  margin-bottom: 2rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container {
  gap: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container {
    gap: 2.25rem;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container > .woocommerce-message {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper {
  position: relative;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .woocommerce-NoticeGroup-checkout {
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  width: calc(100% + var(--bs-gutter-x));
}
@media screen and (min-width: 576px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .woocommerce-NoticeGroup-checkout {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .woocommerce-NoticeGroup-checkout {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .woocommerce-NoticeGroup-checkout .woocommerce-error {
  margin-bottom: 1rem;
  font-size: 15px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .woocommerce-NoticeGroup-checkout .woocommerce-error::before {
  top: 50%;
  transform: translateY(-50%);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .woocommerce-NoticeGroup-checkout .woocommerce-error {
  background-color: #ffecec;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container {
    gap: 35px;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper[data-visible=hidden] {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .hidden {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping-info {
  font-size: var(--font_xs-small);
  margin-top: 5px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping-info .title-shipping {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping-info .title-shipping .edit-shipping-addr {
  cursor: pointer;
  background-image: url("../img/pencil.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin-left: 13px;
  width: 17px;
  height: 17px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_addr_container {
  display: none;
  padding-bottom: 35px;
  margin-top: -10px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods {
  padding-top: 5px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options {
  padding-top: 35px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods {
  border-bottom: 1px solid var(--grey-lightest);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li {
  margin: 0 !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li input[type=radio], body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li input[type=checkbox] {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li input[type=radio]:checked ~ label .radio-replace::after, body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li input[type=checkbox]:checked ~ label .radio-replace::after {
  background-color: var(--black-text);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li label {
  border-top: 1px solid var(--grey-lightest);
  padding: 15px 0;
  cursor: pointer;
  font-size: var(--font-regular);
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li label.woocommerce-form__label {
  padding: 5px 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li label.woocommerce-form__label:first-child {
  padding-top: 1.5rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li label.woocommerce-form__label:not(:first-child) {
  border: 0 !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li label .woocommerce-Price-amount {
  margin-left: 5px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li label .radio-replace {
  border: 1px solid var(--black-text);
  width: 18px;
  height: 18px;
  border-radius: 18px;
  display: block;
  margin-right: 10px;
  position: relative;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .wc-checkout-block__wrapper .shipping_methods .shipping-options .woocommerce-shipping-methods li label .radio-replace::after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 13px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .shipping_method + label + .pakkeshop-selector {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .shipping_method:checked + label + .pakkeshop-selector {
  display: block;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-zipcode-wrapper {
  margin-bottom: 0;
  padding-bottom: 0.5rem;
  margin-left: 1rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-zipcode-wrapper label[for=pakkeshop_zipcode] {
  margin: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: 0 !important;
  font-size: 15px !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-zipcode-wrapper input#pakkeshop_zipcode {
  margin: 1.2rem 0 0 -1rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-zipcode-wrapper input#pakkeshop_zipcode.error {
  outline: 1px solid red;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-zipcode-wrapper input#pakkeshop_zipcode::-webkit-outer-spin-button, body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-zipcode-wrapper input#pakkeshop_zipcode::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-zipcode-wrapper input#pakkeshop_zipcode ~ .error {
  padding-left: 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-pakkeshop-id-wrapper {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-list,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .selected-pakkeshop {
  margin-left: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-list {
  position: relative;
  max-height: 32rem;
  overflow-y: auto;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-list .pakkeshop {
  cursor: pointer;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-list .pakkeshop:hover {
  border: 1px solid var(--green);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .selected-pakkeshop .pakkeshop {
  border: 1px solid var(--green);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .selected-pakkeshop .pakkeshop .pakkeshop-edit-button {
  display: block !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop-selector-label {
  margin-bottom: 15px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: block;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop {
  padding: 1rem 2rem;
  border: 1px solid var(--grey-lightest);
  width: 100%;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex: 1;
  flex: 1;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container .pakkeshop-time-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container span {
  font-size: 0.81rem;
  line-height: 1.3;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container span.pakkeshop-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container span.pakkeshop-time-label {
  font-weight: 600;
  margin-top: 1rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container .pakkeshop-time-wrapper dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content auto;
  grid-template-columns: max-content auto;
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.3;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container .pakkeshop-time-wrapper dl dt {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container .pakkeshop-time-wrapper dl dd {
  -ms-grid-column: 2;
  grid-column-start: 2;
  margin-left: 2rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-container .pakkeshop-time-wrapper dl dd p {
  margin: 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-edit-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-shipping-fields .woocommerce-shipping-totals .pakkeshop-selector .pakkeshop .pakkeshop-edit-container .pakkeshop-edit-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  outline: 0;
  border: 2px solid var(--green);
  background-color: transparent;
  cursor: pointer;
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods {
  padding: 30px 0 0 0 !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li {
  margin: 0 !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper {
  border-top: 1px solid var(--grey-lightest);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper input[type=radio], body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper input[type=checkbox] {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper input[type=radio]:checked ~ label .radio-replace::after, body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper input[type=checkbox]:checked ~ label .radio-replace::after {
  background-color: var(--black-text);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label {
  border-top: 1px solid var(--grey-lightest);
  padding: 15px 0;
  cursor: pointer;
  font-size: var(--font-regular);
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label.woocommerce-form__label {
  padding: 5px 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label.woocommerce-form__label:first-child {
  padding-top: 1.5rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label.woocommerce-form__label:not(:first-child) {
  border: 0 !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label .woocommerce-Price-amount {
  margin-left: 5px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label .radio-replace {
  border: 1px solid var(--black-text);
  width: 18px;
  height: 18px;
  border-radius: 18px;
  display: block;
  margin-right: 10px;
  position: relative;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label .radio-replace::after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 13px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper label {
  border-top: 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper .icon-payment-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment-wrapper .icon-payment-wrapper img {
  margin: 0 !important;
  max-height: 25px !important;
  min-width: 45px;
  object-fit: contain;
  object-position: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .payment_methods li .payment_box {
  display: none !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order {
  padding-top: 30px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-additional-fields #order_comments {
  width: 100%;
  height: 8rem;
  margin-top: 1.2rem;
  border: 1px solid var(--blue-light);
  border-radius: 10px;
  font-family: var(--font-body);
  padding: 1rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p {
  font-size: 12px;
  line-height: 1.7;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper input[type=radio], body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper input[type=checkbox] {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper input[type=radio]:checked ~ label .radio-replace::after, body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper input[type=checkbox]:checked ~ label .radio-replace::after {
  background-color: var(--black-text);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper label {
  border-top: 1px solid var(--grey-lightest);
  padding: 15px 0;
  cursor: pointer;
  font-size: var(--font-regular);
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper label.woocommerce-form__label {
  padding: 5px 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper label.woocommerce-form__label:first-child {
  padding-top: 1.5rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper label.woocommerce-form__label:not(:first-child) {
  border: 0 !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper label .woocommerce-Price-amount {
  margin-left: 5px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper label .radio-replace {
  border: 1px solid var(--black-text);
  width: 18px;
  height: 18px;
  border-radius: 18px;
  display: block;
  margin-right: 10px;
  position: relative;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper label .radio-replace::after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 13px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper input {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .input-checkbox:checked ~ .checkbox-replace::after {
  background-color: var(--black-text);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .checkout-newsletter, body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text {
  line-height: 1.5 !important;
  padding-left: 2rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .checkbox-replace {
  border: 1px solid var(--black-text);
  width: 18px;
  height: 18px;
  border-radius: 18px;
  display: block;
  margin-right: 10px;
  position: absolute;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .checkbox-replace::after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 13px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .woocommerce-checkout-payment .place-order .submit-order-btn {
  margin: 25px auto 0 auto;
  float: none !important;
  padding: 14px 18%;
  font-size: var(--font_regular);
  font-weight: var(--semibold);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block {
  background-color: var(--blue-lightest) !important;
  border-radius: 0 !important;
  padding: 35px 25px;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
@media screen and (min-width: 576px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block {
    margin-right: 0;
    margin-left: 0;
    padding: 35px 40px;
  }
}
@media screen and (min-width: 1400px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block {
    padding: 35px 3.5rem;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block h4 {
  font-weight: var(--semibold);
  font-family: var(--font-title);
  font-size: var(--font-secondary-s--title);
  margin: 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__title .checkout-filled-data {
  font-size: var(--font_xs-small);
  margin-top: 5px;
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__title h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: var(--regular);
  color: var(--black-text);
}
@media screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__title h3 {
    font-size: var(--font-museo-title);
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__title .wc-checkout-edit-btn {
  cursor: pointer;
  background-image: url("../img/pencil.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 17px;
  height: 17px;
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number {
  padding-top: 30px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper.hidden,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper.hidden,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper.hidden {
  display: none !important;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper:not(:last-child),
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper:not(:last-child),
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper:not(:last-child) {
  margin-bottom: 25px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper.required label::after,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper.required label::after,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper.required label::after {
  content: "*";
  display: inline-block;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper label,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper label,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper label {
  width: 100%;
  font-size: var(--font_xs-small);
  color: var(--grey-dark);
  margin: 0 0 8px 22px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper label .optional,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper label .optional,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper label .optional {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper .wc-input-wrapper,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper .wc-input-wrapper,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper .wc-input-wrapper {
  width: 100%;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper .wc-input-wrapper input,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper .wc-input-wrapper input,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper .wc-input-wrapper input {
  width: 100%;
  padding: 15px 22px;
  border: 1px solid var(--blue-light);
  background-color: var(--white);
  border-radius: 50px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper .wc-input-wrapper input.novalid,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper .wc-input-wrapper input.novalid,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper .wc-input-wrapper input.novalid {
  outline-color: var(--error);
  border: 1px solid var(--error);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper .wc-input-wrapper select,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper .wc-input-wrapper select,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper .wc-input-wrapper select {
  padding: 15px 22px;
  width: 100%;
  border-radius: 50px;
  cursor: pointer;
  background-color: var(--white);
  border: 1px solid var(--blue-light);
  position: relative;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--inputs .checkout-input-wrapper .wc-input-wrapper .error,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number .checkout-input-wrapper .wc-input-wrapper .error,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number .checkout-input-wrapper .wc-input-wrapper .error {
  padding-left: 22px;
  color: var(--error);
  font-size: 12px;
  margin-top: 6px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number {
  padding-bottom: 20px;
  padding-top: 0;
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number input::-webkit-outer-spin-button,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number input::-webkit-inner-spin-button,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number input::-webkit-outer-spin-button,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number,
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number {
  /* Firefox */
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .ean-number input[type=number],
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper .cvr-number input[type=number] {
  -moz-appearance: textfield;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--confirm {
  margin-top: 35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--confirm .checkout-confirm-btn {
  padding: 13px 35px;
  margin: 0 auto;
  font-size: var(--font_regular);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1607843137);
  font-weight: var(--semibold);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--edit {
  margin-top: 35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--font_regular);
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--edit .checkout-edit {
  padding: 13px 10%;
  font-size: var(--font_regular);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .checkout-wrapper .checkout-fields-container .wc-checkout-block__wrapper--edit .checkout-edit-cancel {
  color: var(--green);
  cursor: pointer;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper {
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
@media screen and (min-width: 576px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper {
    margin-right: 0;
    margin-left: 0;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .wc-checkout-coupons-warnings .woocommerce-message,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .wc-checkout-coupons-warnings .woocommerce-error {
  margin-bottom: 0;
  font-size: 15px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .wc-checkout-coupons-warnings .woocommerce-message::before,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .wc-checkout-coupons-warnings .woocommerce-error::before {
  top: 50%;
  transform: translateY(-50%);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .wc-checkout-coupons-warnings .woocommerce-error {
  background-color: #ffecec;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order {
  color: var(--black-text);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order #order_review_heading {
  margin: 0;
  font-family: var(--font-title);
  font-weight: var(--regular);
  font-size: 23px;
  background-color: var(--blue-lightest);
  padding: 35px 25px 20px 25px;
}
@media screen and (min-width: 576px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order #order_review_heading {
    padding: 35px 40px 20px 40px;
  }
}
@media screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order #order_review_heading {
    padding: 35px 30px 20px 30px;
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order #order_review_heading {
    padding: 35px 40px 20px 40px;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper {
  background-color: var(--blue-lightest);
  padding: 0 25px;
}
@media screen and (min-width: 576px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper {
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper {
    padding: 0 40px;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid var(--grey-lightest);
  padding: 1rem 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee div:first-child {
  font-weight: 700;
  font-size: var(--font_medium);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee td {
  background: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee .tooltip {
  position: relative;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee .tooltip img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee .tooltip .tooltiptext {
  top: -5px;
  bottom: auto;
  right: 155%;
  visibility: hidden;
  position: absolute;
  width: 250px;
  background-color: var(--blue);
  color: var(--white);
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 0.75rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .fee .tooltip .tooltiptext:after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--blue);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart_item {
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0.75rem 0;
  gap: 20px;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-subtotal,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .order-total {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid var(--grey-lightest);
}
@media screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-subtotal,
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .order-total {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-subtotal,
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .order-total {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-subtotal__title,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .order-total__title {
  font-weight: 700;
  font-size: var(--font_medium);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-subtotal__title span,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .order-total__title span {
  font-size: 15px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .nb-checkout-free-shipping {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid var(--grey-lightest);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .nb-checkout-free-shipping__label {
  color: var(--green);
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-subtotal,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .nb-checkout-member-discount,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .nb-checkout-free-shipping,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount {
  padding: 1rem 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid var(--grey-lightest);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount .cart-discount-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount .cart-discount-title__coupon {
  font-weight: var(--semibold);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount__save {
  font-size: 0;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount__save .woocommerce-Price-amount {
  font-size: 16px;
  float: right;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount__save .woocommerce-Price-amount::before {
  content: "- ";
  display: inline-block;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount__save .woocommerce-Price-amount {
  font-weight: bold;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-discount__save .remove-coupon {
  font-size: 15px;
  color: var(--blue);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .cart-subtotal__amount {
  font-weight: 700;
  font-size: var(--font_medium);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .order-total {
  padding-top: 1rem;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .order-total .includes_tax {
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .review-order-wrapper .tax-rate {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-lightest);
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper {
  background-color: var(--blue-lightest);
  position: relative;
  padding: 0 25px 35px 25px;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper .woocommerce-message,
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper .woocommerce-error {
  display: none;
}
@media screen and (min-width: 576px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper {
    padding: 0 40px 35px 40px;
  }
}
@media screen and (min-width: 992px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper {
    padding: 0 30px 35px 30px;
  }
}
@media screen and (min-width: 1200px) {
  body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper {
    padding: 0 40px 35px 40px;
  }
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper .checkout_coupon.woocommerce-form-coupon {
  display: block !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper input {
  font-size: var(--font_xs-small);
  margin-top: 30px;
  padding: 13px 22px !important;
  border: 1px solid var(--blue-light) !important;
  background-color: var(--white) !important;
  border-radius: 50px !important;
  width: 100%;
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper input:-ms-input-placeholder {
  color: var(--grey-lighter);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper input::placeholder {
  color: var(--grey-lighter);
}
body.woocommerce-checkout .woocommerce .checkout-master-container .order-review-wrapper .checkout-coupon-wrapper button[name=apply_coupon] {
  background-color: var(--blue);
  position: absolute;
  right: 7px;
  bottom: 6px;
  padding: 0;
  cursor: pointer;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-image: url("../img/plus-white.svg");
  background-repeat: no-repeat;
  background-position: center;
}

/* Notices
--------------------------------------------- */
.woocommerce-message {
  background-color: var(--green-light);
}
.woocommerce-message:before {
  color: var(--green);
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  color: var(--black-text);
  font-weight: 400;
  font-size: 0.875rem;
  border-top: 0;
  padding: 1.25rem 2rem 1.25rem 4rem;
}
.woocommerce-error:before,
.woocommerce-message:before,
.woocommerce-info:before {
  width: 27px;
  height: 27px;
  font-size: 27px;
  left: 16px;
  top: 16px;
}

/* Single Post
--------------------------------------------- */
/* Post Banner
--------------------------------------------- */
.single-post-banner {
  position: relative;
  min-height: 30vh;
}
.single-post-banner .single-post-image {
  position: relative;
  height: 30vh;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}
@media screen and (min-width: 992px) {
  .single-post-banner .single-post-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.single-post-banner .single-post-banner-wrapper {
  color: var(--black-text);
  padding-top: 25px;
}
@media screen and (min-width: 992px) {
  .single-post-banner .single-post-banner-wrapper {
    color: var(--white);
    padding-top: 9rem;
    padding-bottom: 12rem;
  }
}
@media screen and (min-width: 1200px) {
  .single-post-banner .single-post-banner-wrapper {
    max-width: 1100px;
  }
}
.single-post-banner .single-post-banner-wrapper .woocommerce-breadcrumb {
  font-size: 0.875rem;
  color: var(--white);
}
.single-post-banner .single-post-banner-wrapper .woocommerce-breadcrumb a {
  color: var(--white);
}
.single-post-banner .single-post-banner-wrapper .post-title {
  margin: 0;
  line-height: 1.2;
  font-size: 2.2rem;
}
@media screen and (min-width: 992px) {
  .single-post-banner .single-post-banner-wrapper .post-title {
    max-width: 40rem;
    font-size: 2.5rem;
  }
}
.single-post-banner .single-post-banner-wrapper .post-description {
  max-width: 26rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  margin-top: 1rem;
}
.single-post-banner .single-post-banner-wrapper .post-details {
  font-size: 0.8125rem;
  line-height: 1rem;
  margin-top: 1.2rem;
  color: var(--grey-dark);
}
@media screen and (min-width: 992px) {
  .single-post-banner .single-post-banner-wrapper .post-details {
    color: var(--white);
  }
}

@media screen and (min-width: 1200px) {
  #page .contain {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #page .contain.post-title {
    max-width: 43rem;
  }
  #page .contain.post-description {
    max-width: 29rem;
  }
  #page .contain.post-title, #page .contain.post-description {
    padding-right: 0;
  }
}
#page main#post-wrapper-master {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 1200px) {
  #page main#post-wrapper-master, #page .page-container {
    max-width: 1100px;
  }
}
#page main#post-wrapper-master .image-grid-wrapper, #page .page-container .image-grid-wrapper {
  padding-left: 0;
  padding-right: 0;
}
#page main#post-wrapper-master h1, #page .page-container h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}
@media screen and (min-width: 576px) {
  #page main#post-wrapper-master h1, #page .page-container h1 {
    font-size: 2.2rem;
  }
}
#page main#post-wrapper-master h2, #page main#post-wrapper-master h3, #page main#post-wrapper-master h4, #page .page-container h2, #page .page-container h3, #page .page-container h4 {
  margin: 0 0 1.2rem 0;
  color: var(--black-text);
}
#page main#post-wrapper-master a, #page .page-container a {
  color: var(--blue);
}
#page main#post-wrapper-master a:hover, #page .page-container a:hover {
  text-decoration: underline;
}
#page main#post-wrapper-master p, #page .page-container p {
  color: var(--black-text);
  margin: 1rem 0 1.2rem 0;
  line-height: 1.6;
  font-size: var(--font_regular);
}
@media screen and (min-width: 992px) {
  #page main#post-wrapper-master p, #page .page-container p {
    font-size: 17px;
  }
}
#page main#post-wrapper-master iframe, #page .page-container iframe {
  margin: 5rem 0;
}
@media screen and (max-width: 786px) {
  #page main#post-wrapper-master iframe.katalog-iframe, #page .page-container iframe.katalog-iframe {
    height: 45vh !important;
  }
}
#page main#post-wrapper-master figure, #page .page-container figure {
  margin: 4rem 0;
  position: relative;
}
@media screen and (max-width: 576px) {
  #page main#post-wrapper-master figure.wp-block-image, #page main#post-wrapper-master figure.wp-block-embed, #page .page-container figure.wp-block-image, #page .page-container figure.wp-block-embed {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    width: calc(100% + var(--bs-gutter-x));
  }
}
#page main#post-wrapper-master figure.wp-block-image figcaption, #page main#post-wrapper-master figure.wp-block-embed figcaption, #page .page-container figure.wp-block-image figcaption, #page .page-container figure.wp-block-embed figcaption {
  position: relative;
  font-size: var(--font_xs-small);
  color: var(--grey-dark);
  margin: 1rem 0 0 0;
}
@media screen and (max-width: 576px) {
  #page main#post-wrapper-master figure.wp-block-image figcaption, #page main#post-wrapper-master figure.wp-block-embed figcaption, #page .page-container figure.wp-block-image figcaption, #page .page-container figure.wp-block-embed figcaption {
    padding-right: calc(0.5 * var(--bs-gutter-x));
    padding-left: calc(0.5 * var(--bs-gutter-x));
  }
}
@media screen and (min-width: 1400px) {
  #page main#post-wrapper-master figure.wp-block-image figcaption, #page main#post-wrapper-master figure.wp-block-embed figcaption, #page .page-container figure.wp-block-image figcaption, #page .page-container figure.wp-block-embed figcaption {
    max-width: 130px;
    margin: 0;
    position: absolute;
    text-align: right;
    top: 50%;
    left: 0;
    transform: translate(calc(-100% - 1rem), -50%);
  }
}
#page main#post-wrapper-master figure.wp-block-image img, #page .page-container figure.wp-block-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  max-height: 40vh;
}
@media screen and (min-width: 768px) {
  #page main#post-wrapper-master figure.wp-block-image img, #page .page-container figure.wp-block-image img {
    max-height: 560px;
  }
}
#page main#post-wrapper-master figure.wp-block-embed iframe, #page .page-container figure.wp-block-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#page main#post-wrapper-master .product a, #page .page-container .product a {
  color: var(--white);
  text-decoration: none;
}
#page main#post-wrapper-master blockquote, #page .page-container blockquote {
  margin: 4rem 0;
  background-color: var(--blue-lightest);
  padding: 2rem 3rem;
}
#page main#post-wrapper-master blockquote .container.page-container, #page .page-container blockquote .container.page-container {
  max-width: 100%;
  padding: 0;
}
@media screen and (max-width: 576px) {
  #page main#post-wrapper-master blockquote, #page .page-container blockquote {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}
#page main#post-wrapper-master blockquote cite, #page .page-container blockquote cite {
  font-size: 0.8125rem;
  color: var(--grey-dark);
}
#page main#post-wrapper-master ul:not(.slider-categories), #page .page-container ul:not(.slider-categories) {
  margin: 4rem 0;
  background-color: var(--blue-lightest);
  padding: 2rem 3rem;
  list-style: none;
}
@media screen and (max-width: 576px) {
  #page main#post-wrapper-master ul:not(.slider-categories), #page .page-container ul:not(.slider-categories) {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}
#page main#post-wrapper-master ul:not(.slider-categories) li, #page .page-container ul:not(.slider-categories) li {
  position: relative;
  padding-left: 1.3rem;
}
@media screen and (min-width: 576px) {
  #page main#post-wrapper-master ul:not(.slider-categories) li, #page .page-container ul:not(.slider-categories) li {
    padding-left: 1.6rem;
  }
}
#page main#post-wrapper-master ul:not(.slider-categories) li::before, #page .page-container ul:not(.slider-categories) li::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f111";
  font-size: 6px;
  color: var(--black-text);
  transition: 0.4s ease transform;
}
#page main#post-wrapper-master ul:not(.slider-categories) li:not(:last-child), #page .page-container ul:not(.slider-categories) li:not(:last-child) {
  margin-bottom: 1rem;
}
#page main#post-wrapper-master ul:not(.slider-categories) li, #page .page-container ul:not(.slider-categories) li {
  line-height: 1.5;
  font-size: var(--font_regular);
}
@media screen and (min-width: 992px) {
  #page main#post-wrapper-master ul:not(.slider-categories) li, #page .page-container ul:not(.slider-categories) li {
    font-size: 17px;
  }
}

/* 404 Page
--------------------------------------------- */
.page-404-container {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.page-404-container .content-wrapper {
  width: 100%;
  max-width: 1235px;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
  padding: 2rem;
}
.page-404-container .content-wrapper .maintext {
  color: var(--white);
  margin: 0;
  font-weight: 700;
}
.page-404-container .content-wrapper .subtext {
  color: var(--white);
  margin-top: 0.625rem;
}
.page-404-container .content-wrapper a {
  margin-top: 2rem;
  font-weight: 600;
  font-size: 0.75rem;
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}
.page-404-container svg {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/* Search
--------------------------------------------- */
.hr-overlay-search .hr-results .hr-results-container {
  margin: 20px auto;
  padding: 0;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .hr-overlay-search .hr-results .hr-results-container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .hr-overlay-search .hr-results .hr-results-container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .hr-overlay-search .hr-results .hr-results-container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .hr-overlay-search .hr-results .hr-results-container {
    max-width: 1240px;
  }
}
.hr-overlay-search .hr-results .hr-results-container .hr-content {
  padding: 0;
}
.hr-overlay-search .hr-results .hr-results-container .hr-content .hr-content-container[data-content=blog_post] .hr-search-overlay-content .hr-search-overlay-content-link[data-index="1"] {
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.7rem;
}
.hr-overlay-search .hr-results .hr-results-container .hr-content .hr-content-container[data-content=blog_post] .hr-search-overlay-content .hr-search-overlay-content-link[data-index="1"] img {
  margin-right: 0 !important;
  width: 100% !important;
  object-fit: cover !important;
  height: auto !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-content .hr-content-container .hr-search-overlay-content .hr-search-overlay-content-link {
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 15px !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  white-space: unset !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-content .hr-content-container .hr-search-overlay-content .hr-search-overlay-content-link svg {
  display: none;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products {
  padding: 0;
}
@media screen and (min-width: 1400px) {
  .hr-overlay-search .hr-results .hr-results-container .hr-products.initialcontent {
    max-width: 1140px;
  }
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters {
  padding: 0;
  margin-bottom: 30px;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper {
  gap: 1rem;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-filter__single-wrapper {
  margin: 0 !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-filter__single-wrapper[data-filter=isOnSale] {
  display: none;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-filter__single-wrapper .aw-filter__heading .hr-selected-filter-count {
  background-color: var(--blue) !important;
  text-align: center !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-price-range-slider {
  height: 4px !important;
  background-color: var(--blue) !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-price-range-slider .aw-range-slider-handle {
  width: 25px !important;
  height: 25px !important;
  background-color: var(--white) !important;
  border: 2px solid var(--blue) !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-price-range-slider-text {
  font-weight: 500 !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-price-range-slider-text .aw-range-slider-text-from, .hr-overlay-search .hr-results .hr-results-container .hr-products .hr-filters .aw-full-search-results__filter-wrapper .aw-price-range-slider-text .aw-range-slider-text-to {
  color: var(--blue) !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-header {
  margin-bottom: 25px !important;
  padding: 0;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-header.hr-initial-content-header ~ .hr-products-container {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 992px) {
  .hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-header.hr-initial-content-header ~ .hr-products-container {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-container {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem !important;
}
@media screen and (min-width: 992px) {
  .hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-container {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-container {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-container .hr-search-overlay-product {
  max-width: 100% !important;
  margin: 0;
  border: 0 !important;
  background-color: transparent !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0 !important;
}
.hr-overlay-search .hr-results .hr-results-container .hr-products .hr-products-container .hr-search-overlay-product h2 {
  letter-spacing: 0 !important;
}

@media screen and (max-width: 768px) {
  .hr-overlay-search {
    text-align: left !important;
  }
  .hr-overlay-search .hr-header {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
  }
  .hr-overlay-search .hr-nav {
    margin-bottom: 15px !important;
  }
  .hr-overlay-search .hr-nav .hr-close {
    position: absolute;
    top: 25px;
    right: 15px;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
  }
  .hr-overlay-search .hr-nav .hr-search {
    background-color: var(--white) !important;
    border: 1px solid var(--black-text) !important;
    height: auto !important;
    border-radius: 25px !important;
    padding: 0.25rem 0 !important;
  }
  .hr-overlay-search .hr-nav .hr-search .hr-btn-search {
    top: 50%;
    transform: translateY(-50%);
  }
  .hr-overlay-search .hr-nav .hr-filters {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 10;
    background-color: var(--white) !important;
    margin: 0 !important;
    width: 70px;
    height: 70px;
    border: 1px solid var(--black-text) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
  }
  .hr-overlay-search .hr-nav .hr-filters[disabled] {
    opacity: 0 !important;
  }
  .hr-overlay-search .hr-nav .hr-filters {
    opacity: 1 !important;
  }
  .hr-overlay-search .hr-nav .hr-filters svg {
    width: 35px;
    height: 35px;
  }
  .hr-overlay-search .hr-tabs .hr-tab-nav {
    overflow-x: auto;
  }
  .hr-overlay-search .hr-tabs .hr-tab-nav .hr-tab-header {
    background-color: var(--white) !important;
    color: var(--black-text) !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
    text-decoration: none !important;
    padding: 0.7rem 1.2rem !important;
    font-weight: 500 !important;
    opacity: 0.5;
    overflow: unset !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-nav .hr-tab-header.active {
    background-color: var(--blue-lightest) !important;
    color: var(--blue) !important;
    font-weight: 600 !important;
    opacity: 1;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content {
    background-color: var(--blue-lightest) !important;
    padding-top: 0 !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body {
    position: relative;
    padding-top: 5rem !important;
    background-color: var(--blue-lightest) !important;
    color: var(--black-text) !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body[data-tab=category] .hr-tab-wrapper, .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body[data-tab=site_page] .hr-tab-wrapper, .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body[data-tab=blog_post] .hr-tab-wrapper {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    grid-gap: 12px;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 1fr !important;
    grid-template-columns: 1fr 1fr !important;
    grid-gap: 1rem !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-tab-header {
    position: absolute;
    top: 2rem;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-tab-header.hr-initial-content-header .hr-tab-subtitle {
    font-size: 1.1rem !important;
    font-family: var(--font-title) !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-tab-header .hr-tab-subtitle {
    color: var(--black-text) !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-search-overlay-content {
    margin-bottom: 0 !important;
    border: 1px solid var(--black-text) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-search-overlay-content svg {
    display: none !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-search-overlay-content .hr-search-overlay-content-link {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    white-space: unset !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-search-overlay-product {
    padding: 0 !important;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }
  .hr-overlay-search .hr-tabs .hr-tab-content .hr-tab-body .hr-tab-wrapper .hr-search-overlay-product .dof-normal-price {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .hr-overlay-search-filters, .hr-overlay-search-filter-values {
    background-color: var(--blue-lightest) !important;
    color: var(--black-text) !important;
  }
  .hr-overlay-search-filters .hr-filter-nav, .hr-overlay-search-filter-values .hr-filter-nav {
    background-color: var(--blue-lightest) !important;
    color: var(--black-text) !important;
  }
  .hr-overlay-search-filters .hr-filter-nav .hr-show-results, .hr-overlay-search-filter-values .hr-filter-nav .hr-show-results {
    text-transform: none !important;
    padding: 10px 2.5rem !important;
    font-family: var(--font-title) !important;
    border-radius: 25px !important;
  }
  .hr-overlay-search-filters .hr-filter-nav .hr-reset, .hr-overlay-search-filters .hr-filter-nav .hr-close, .hr-overlay-search-filter-values .hr-filter-nav .hr-reset, .hr-overlay-search-filter-values .hr-filter-nav .hr-close {
    border: 1px solid var(--black-text) !important;
  }
  .hr-overlay-search-filters .hr-filters .hr-filters-container .hr-search-overlay-filter {
    background-color: var(--blue-lightest) !important;
  }
  .hr-overlay-search-filter-values .hr-search-overlay-filter-wrap .aw-price-range-slider {
    height: 4px !important;
    background-color: var(--blue) !important;
  }
  .hr-overlay-search-filter-values .hr-search-overlay-filter-wrap .aw-price-range-slider .aw-range-slider-handle {
    width: 25px !important;
    height: 25px !important;
    background-color: var(--white) !important;
    border: 2px solid var(--blue) !important;
  }
  .hr-overlay-search-filter-values .hr-search-overlay-filter-wrap .aw-price-range-slider-text {
    font-weight: 500 !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .hr-overlay-search-filter-values .hr-search-overlay-filter-wrap .aw-filter-tag-list label {
    padding: 13px 15px !important;
  }
  .hr-overlay-search-filter-values .hr-search-overlay-filter-wrap .aw-filter-tag-list label:nth-child(even) {
    background-color: var(--blue-lightest) !important;
  }
}
/* Thank you
--------------------------------------------- */
.woocommerce-order-received .woocommerce-order h1 {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order h1 {
    font-size: 2.2rem;
  }
}
.woocommerce-order-received .woocommerce-order .small-title {
  font-size: 1.875rem;
  font-weight: 400;
  font-family: var(--font-title);
  margin: 0 0 2rem 0;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .small-title {
    font-size: 1, 875rem;
  }
}
.woocommerce-order-received .woocommerce-order h1 {
  margin: 0 0 0.625rem 0;
}
.woocommerce-order-received .woocommerce-order .order-delivery {
  margin: 0;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .order-delivery {
    font-size: 1.375rem;
  }
}
.woocommerce-order-received .woocommerce-order .order-sent-to-email {
  margin-top: 0.625rem;
  margin-bottom: 3rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details {
  margin-bottom: 0;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 4rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details {
    gap: 3rem;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details {
    gap: 6rem;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .column-order {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .column-order {
    width: 50%;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--blue-lightest);
  position: relative;
  border-bottom: 1px solid var(--grey-lightest);
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item:last-child {
  margin-bottom: 0;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-image {
  width: 7.1875em;
  min-height: 7.1875rem;
  margin-right: 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--blue-light);
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-image:hover img {
  transform: scale(1.1);
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-image img {
  max-width: 6.125rem;
  mix-blend-mode: multiply;
  padding: 0.8rem;
  transition: 0.4s ease transform;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.875rem 1.25rem 0.875rem 0rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .title a {
  color: var(--black-text);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 1200px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .title a {
    font-size: 1.05rem;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content auto;
  grid-template-columns: max-content auto;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation dt {
  -ms-grid-column: 1;
  grid-column-start: 1;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation dd {
  -ms-grid-column: 2;
  grid-column-start: 2;
  margin-left: 2rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content dl.variation dd p {
  margin: 0;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper {
  font-size: 15px;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper {
    font-size: 1rem;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper .dof-normal-price {
  color: var(--black-text);
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper .dof-normal-price del {
  -ms-flex-order: 2;
  order: 2;
  font-weight: 500;
  opacity: 1;
  margin-left: 0.45rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .price-wrapper .dof-normal-price ins {
  text-decoration: none;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .quantity {
  font-weight: 700;
  font-size: 15px;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .thank-you-order-item .product-content .quantity {
    font-size: 1rem;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .nb-primary-button {
  box-shadow: 0px 8px 20px var(--box-shadow);
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  text-align: center;
  margin-top: 2.625rem;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-products .nb-primary-button {
    padding: 1rem;
    font-size: 1rem;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container {
  -ms-flex: 1;
  flex: 1;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  column-gap: 3.5rem;
  row-gap: 2rem;
}
@media screen and (min-width: 576px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information {
    column-gap: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information {
    column-gap: 2rem;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item {
  -ms-flex: calc(50% - 1.5rem);
  flex: calc(50% - 1.5rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--grey-lightest);
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item.virtual {
  display: none;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item {
    -ms-flex: calc(50% - 1rem);
    flex: calc(50% - 1rem);
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item > span {
  display: block;
}
@media screen and (max-width: 1200px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item > span {
    font-size: 15px;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-information .order-information-item .order-information-title {
  font-weight: bold;
  color: var(--black-text);
  margin-bottom: 0.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter {
  display: none;
}
@media screen and (min-width: 992px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter {
    margin-top: 4rem;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter {
    max-width: 85%;
  }
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter > p {
  font-weight: 600;
  font-size: 1.1875rem;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  position: relative;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form.send .newsletter-form__email, .woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form.send .newsletter-form__submit {
  opacity: 0.5;
  transition: all 0.3s;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form.send .form-spinner {
  display: block;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__email {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  opacity: 1;
  transition: all 0.3s;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__email span {
  font-size: var(--font_xs-small);
  margin-left: 1.5rem;
  margin-bottom: 5px;
  display: block;
  color: var(--grey-dark);
  font-weight: 600;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__email--input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 25px;
  border: 0;
  outline: 0;
  position: relative;
  border: 2px solid var(--grey-lightest);
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form__submit {
  font-size: var(--font_medium);
  padding: 13px 25px;
  height: 45px;
  margin-top: auto;
  opacity: 1;
  transition: all 0.3s;
}
.woocommerce-order-received .woocommerce-order .woocommerce-order-details .order-details .order-information-container .order-newsletter .newsletter-form .ns-mailchimp-result .result-message {
  font-weight: 500;
}

/* Add To Cart Popup
--------------------------------------------- */
.nb-woocommerce-add-to-cart-popup {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(20, 42, 63, 0.6);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s 0.25s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .nb-woocommerce-add-to-cart-popup {
    display: none;
  }
}
.nb-woocommerce-add-to-cart-popup.visible {
  opacity: 1;
  visibility: visible;
  transition: all 0.32s;
  backdrop-filter: blur(2px);
  z-index: 13;
}
@media screen and (max-width: 991px) {
  .nb-woocommerce-add-to-cart-popup.visible {
    display: -ms-flexbox;
    display: flex;
  }
}
.nb-woocommerce-add-to-cart-popup .atc-popup-close {
  transform: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 13;
  position: absolute;
  border: 1px solid var(--blue-light);
  right: 6px;
  top: 0;
  transform: translate(50%, -50%);
  background-color: var(--white);
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .atc-popup-close {
    width: 57px;
    height: 57px;
    right: 0;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container {
  position: relative;
  width: 90%;
  height: 85vh;
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container {
    max-width: 1185px;
    width: 85%;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-wrapper {
  overflow-y: auto;
  z-index: 15;
  background-color: var(--white);
  border-radius: 1px;
  height: 100%;
  padding: 2rem 1.5rem;
  margin: auto;
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-wrapper {
    padding: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-wrapper {
    padding: 3.5rem 4rem;
  }
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-wrapper {
    padding: 4.5rem 5rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-header {
  font-family: var(--font-title);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 3rem;
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-header {
    font-size: 1.875rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1.5rem;
}
@media screen and (max-width: 460px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product {
    gap: 2rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-image {
  width: 45%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--blue-light);
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-image {
    width: 35%;
  }
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-image {
    width: 11.25rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-image img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  padding: 1.625rem;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .category {
  display: none;
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .category {
    margin-bottom: 1rem;
    color: var(--black-text);
    display: block;
    font-size: 16px;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .title {
  color: var(--black-text);
  font-size: 18px;
  font-family: var(--font-title);
  font-weight: 500;
  display: block;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .title {
    font-size: 1.25rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .price-wrapper .price {
  font-size: 16px;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .price-wrapper .price {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .price-wrapper .price .dof-membership-price {
  color: var(--green);
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .price-wrapper .price .dof-normal-price {
  color: var(--black-text);
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .price-wrapper .price .dof-normal-price del {
  -ms-flex-order: 2;
  order: 2;
  font-weight: 500;
  opacity: 1;
  margin-left: 0.45rem;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .price-wrapper .price .dof-normal-price ins {
  text-decoration: none;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls {
  margin-top: auto;
  background-color: var(--blue-light);
  width: 100%;
  padding: 7px 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls {
    padding: 10px 5px;
    width: 10rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls div {
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls .quantity-value {
  font-size: 1.2rem;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls .quantity-increase,
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls .quantity-decrease {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls .quantity-increase.disabled,
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .quantity-controls .quantity-decrease.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-product .atc-popup-product-content .qty-wrapper .qty-error {
  color: red;
  font-size: var(--font_medium);
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-cart-details {
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: 600;
  font-size: 16px;
  color: var(--black-text);
  text-align: left;
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-cart-details {
    font-size: 18px;
    text-align: right;
    margin-top: 0;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-buttons {
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 2.8125rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-buttons a {
  -ms-flex: 1;
  flex: 1;
  padding: 0.75rem 3rem;
  background-color: var(--blue-light);
  border-radius: 100px;
  min-width: 150px;
  text-align: center;
  font-weight: 600;
  color: var(--black-text);
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-buttons a:hover {
  filter: brightness(95%);
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-buttons a.see-cart {
  background-color: var(--green);
  color: var(--white);
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations {
  margin-top: 4rem;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .atc-popup-recommendations-title {
  font-family: var(--font-title);
  font-size: 1.5625rem;
  display: block;
  margin-bottom: 2rem;
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid {
    gap: 1rem;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid {
    gap: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid {
    gap: 3rem;
  }
}
.nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item > a:first-child {
  padding: 2rem;
}
@media screen and (max-width: 992px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item > a:first-child {
    height: 100%;
    padding: 1.5rem;
  }
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item .product-data {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item .add-to-cart-wrapper .button {
    opacity: 1;
    width: -moz-max-content;
    width: max-content;
    bottom: 20px;
    top: auto;
    left: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item > a:first-child {
    padding: 0.2rem;
    max-width: 35%;
  }
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item .product-data {
    padding: 1rem;
  }
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item .add-to-cart-wrapper .button {
    left: 1rem;
    bottom: 13px;
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .nb-woocommerce-add-to-cart-popup .add-to-cart-container .atc-popup-recommendations .products-grid .item .add-to-cart-wrapper .button {
    display: none;
  }
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Custom Select
--------------------------------------------- */
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  background: none;
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  margin: 0;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.custom-select .select-selected {
  text-align: right;
  color: var(--black-text);
  font-weight: 600;
  background-color: var(--white);
}
.custom-select .select-selected::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f078";
  font-size: 14px;
  color: var(--black-text);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.2s;
}
.custom-select .select-selected.placeholder {
  color: var(--black-text);
  padding: 0 18px 0 10px;
  white-space: nowrap;
}
.custom-select {
  /*point the arrow upwards when the select box is open (active):*/
}
.custom-select .select-selected.select-arrow-active:after {
  transition: all 0.2s;
  transform: translateY(-50%) rotate(180deg);
}
.custom-select .select-items div {
  padding-left: 15px;
  color: var(--black-text);
  border-radius: 0 !important;
  top: 0;
  left: 0;
}
.custom-select {
  /*style the items (options), including the selected item:*/
}
.custom-select .select-items div, .custom-select .select-selected {
  position: relative;
  font-size: 14px;
  padding: 8px 18px 8px 10px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-select {
  /*style items (options):*/
}
.custom-select .select-items {
  background-color: var(--white);
  border: 1px solid var(--black-text);
  /*Set to position absolute to overlay on top other items*/
  /*Set to position relative to move items below further*/
  width: 15rem;
  position: absolute;
  right: 0;
  z-index: 10;
  margin-top: 10px;
}
.custom-select .select-hide {
  display: none;
}
.custom-select .select-items div:hover, .custom-select .same-as-selected {
  transition: all 0.1s;
  background-color: var(--blue-light);
}
/*# sourceMappingURL=frontend.css.map */
