/** --------------------------------------------------
*
*   MILLE FLEURS
*   THEME STYLE
*
*   TABLE OF CONTENTS
*   base
*   components
*   layout
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #base
*   -------------------------------------------------- */
/* vars + base */
/** --------------------------------------------------
*
*   base
*   VARIABLES
*
*   TABLE OF CONTENTS
*   fonts
*   colors
*   measurements
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #fonts
*   -------------------------------------------------- */
:root {
  --serif-font: "Libre Baskerville", Times, serif;
  --sans-serif-font: "Cabin", Arial, Helvetica, sans-serif;
}

/** --------------------------------------------------
*   #colors
*   -------------------------------------------------- */
:root {
  --brand-color-orange: #ad662b;
  --brand-color-light: #97a5a9;
  --brand-color-dark: #2f4c54;
  --brand-color: var(--brand-color-orange);
  --background-color: #f6f6f4;
  --box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
  --basic-text: #2f4c54;
  --titles: var(--brand-color);
  --subtext: #97a5a9;
  --white: #ffffff;
  --black: #000000;
  --gray: #939598;
}

/** --------------------------------------------------
*   #measurements
*   -------------------------------------------------- */
:root {
  --content-width: 1250px;
}

/** --------------------------------------------------
*
*   base
*   NORMALIZE
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
/* normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in
*    IE on Windows Phone and in iOS.
*/
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
  margin: 0;
}

/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
* Add the correct margin in IE 8.
*/
figure {
  margin: 1em 40px;
}

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
  font-weight: inherit;
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
* Add the correct font style in Android 4.3-.
*/
dfn {
  font-style: italic;
}

/**
* Add the correct background and color in IE 9-.
*/
mark {
  background-color: #ff0;
  color: #000;
}

/**
* Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
  display: inline-block;
}

/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
* Remove the border on images inside links in IE 10-.
*/
img {
  border-style: none;
}

/**
* Hide the overflow in IE.
*/
svg:not(:root) {
  overflow: hidden;
}

/* Forms
     ========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
  /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
*    controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
  display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
  display: list-item;
}

/* Scripting
     ========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
  display: inline-block;
}

/**
* Add the correct display in IE.
*/
template {
  display: none;
}

/* Hidden
     ========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
  display: none;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   variables
*   BREAKPOINTS
*
*   TABLE OF CONTENTS
*   custom breakpoints
*
*   -------------------------------------------------- */
/** --------------------------------------------------
*   #custom breakpoints
*   -------------------------------------------------- */
/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
* 
*   mixins - base
*   BASE
*
*   TABLE OF CONTENTS
*   media queries
*   clearfix
*   widths
*
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #media queries
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #clearfix
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #widths
*  -------------------------------------------------- */
/** --------------------------------------------------
*   #resets
*   -------------------------------------------------- */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/** --------------------------------------------------
*   #global styles
*   -------------------------------------------------- */
*,
:after,
:before {
  box-sizing: border-box;
}

* {
  margin: 0px;
  padding: 0px;
  outline: none !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--sans-serif-font);
  line-height: 1.5;
  color: var(--basic-text);
  font-size: 1.6rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

iframe {
  border: none;
}

table {
  width: 100%;
}

#wrapper {
  overflow-x: hidden;
}

#holder {
  background-color: var(--background-color);
}

/** --------------------------------------------------
*   #typography
*   -------------------------------------------------- */
a,
a:visited {
  text-decoration: none;
  color: var(--basic-text);
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--titles);
  line-height: 1.2em;
  font-family: var(--serif-font);
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

/** --------------------------------------------------
*   #media queries
*   -------------------------------------------------- */
/* set content value to communicate with javascript */
body:after {
  display: none;
}
@media only screen and (min-width: 0) and (max-width: 1299px) {
  body:after {
    content: "xl";
  }
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  body:after {
    content: "l";
  }
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  body:after {
    content: "lm";
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  body:after {
    content: "m";
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  body:after {
    content: "s";
  }
}
@media only screen and (min-width: 0) and (max-width: 420px) {
  body:after {
    content: "xs";
  }
}

body:before {
  display: none;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  body:before {
    content: "menu";
  }
}

/* vendor */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #F6F6F4;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.7;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s, visibility 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0 6px;
}

.fancybox-slide--iframe {
  padding: 44px 44px 0;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

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

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  vertical-align: top;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  transition: color 0.2s;
  vertical-align: top;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button::after {
  content: "";
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}

.fancybox-close-small svg {
  fill: transparent;
  opacity: 0.8;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: stroke 0.1s;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:hover svg {
  opacity: 1;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
}

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
/* Flickity v2.1.1 - https://flickity.metafizzy.co */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 19px;
  height: 18px;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/** --------------------------------------------------
*   #components
*   -------------------------------------------------- */
/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   SELECTS
*
*   TABLE OF CONTENTS
*   select2
*   custom dropdowns
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #select2
*   -------------------------------------------------- */
.select2-container {
  font-family: var(--serif-font);
  color: var(--brand-color-dark);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  max-width: 160px !important;
  min-width: 75px !important;
  padding: 0px 6px;
}

/* selected text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--brand-color-dark);
  line-height: 28px;
  padding-left: 0px;
  position: relative;
}

.select2-container--open .select2-selection--single {
  border: 0px;
  border-bottom: none !important;
  border-radius: 0px;
}

/* border around select */
.select2-container--default .select2-selection--single {
  border: 0px;
  border-bottom: 1px solid var(--brand-color-light);
  border-radius: 0px;
}

.select2-container--open {
  box-shadow: var(--box-shadow);
}

/* dropdown wrapper */
.select2-dropdown {
  border: 0px;
  border-radius: 0px;
  box-shadow: var(--box-shadow);
}

/* checkered background */
ul.select2-results__options:nth-child(odd) li:nth-child(odd) {
  background: var(--background-color);
}

/* arrow down */
.select2-selection__arrow b {
  display: none;
}
.select2-selection__arrow:after {
  background-image: url("../img/arrows/icon-arrow-down.png");
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background-size: cover;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.select2-container--open .select2-selection__arrow:after {
  transform: translateY(-50%) rotate(180deg);
}

/* hovered item in dropdown */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--brand-color-light) !important;
  color: var(--white);
}

/* hovered item in dropdown */
.select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--brand-color-dark) !important;
  color: var(--white);
}

/* list height */
.select2-container--default .select2-results > .select2-results__options {
  max-height: 320px;
}

/** --------------------------------------------------
*   #custom dropdowns
*   -------------------------------------------------- */
/* countries */
/* ********* */
.select2-selection__rendered .img-flag {
  margin: 0 !important;
  display: inherit !important;
  height: 12px;
  width: 22px;
  padding-right: 4px;
}

.select2-results__option .img-flag {
  margin: 0 !important;
  display: inherit !important;
  height: 12px;
  width: 22px;
  padding-right: 4px;
}

/* sizes */
/* ***** */
.select2-selection__rendered .img-size {
  margin: 0 !important;
  display: inherit !important;
  height: 14px;
  width: 18px;
  padding-right: 4px;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   BREADCRUMBS
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.homepage .breadcrumbs {
  display: none;
}

#path {
  padding-top: 45px;
  font-family: var(--sans-serif-font);
  color: var(--brand-color-light);
  transition: all 0.3s;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 0.131rem;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #path {
    display: none;
  }
}
#path a {
  font-family: var(--sans-serif-font);
  color: var(--brand-color-light);
  transition: all 0.3s;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 0.131rem;
  margin-right: 33px;
}
#path a:hover {
  color: var(--brand-color-dark);
}
#path > span {
  display: inline-block;
}
#path > span span {
  margin-right: 33px;
  display: inline-block;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   HAMBURGER
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
* Slider
*/
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
* 
*   mixins - cta
*   CTA BASIC
*
*   TABLE OF CONTENTS
*   basic cta elements
*   link svg
*   edit button
*
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #basic cta elements
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #link svg
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #edit button
*  -------------------------------------------------- */
/** --------------------------------------------------
*   #region modal
*   -------------------------------------------------- */
body:before {
  visibility: hidden;
  opacity: 0;
}

body.showpopup {
  position: relative;
}
body.showpopup:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
}
body.showpopup .cookie-modal {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: white;
  position: fixed;
  width: 660px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  padding: 48px;
  text-align: center;
  opacity: 0;
  visibility: 0;
  z-index: 100;
  transition: all 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal .logo-wrapper {
  display: block;
  width: 100%;
  margin-bottom: 48px;
  position: static !important;
  transform: translate(0%) !important;
  left: auto !important;
}
.cookie-modal h2 {
  margin-bottom: 25px;
}
.cookie-modal .intro-text-modal {
  line-height: 2.6rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
  margin-bottom: 39px;
}
.cookie-modal .directions-modal {
  font-family: var(--sans-serif-font);
  font-size: 1.2rem;
  color: var(--brand-color-light);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  margin-bottom: 26px;
  display: block;
}
.cookie-modal form {
  text-align: center;
}
.cookie-modal form span, .cookie-modal form select {
  text-align: left;
}
.cookie-modal .first-settings-form-items {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.cookie-modal .first-settings-form-item {
  flex: 0 1 auto;
  min-width: 0;
  padding: 0 1px;
}
.cookie-modal .first-settings-form-item--country .select2-container {
  min-width: 190px !important;
}
.cookie-modal .first-settings-form-item--language .select2-container {
  min-width: 130px !important;
}
.cookie-modal .first-settings-form-item--size .select2-container {
  min-width: 130px !important;
}
.cookie-modal .first-settings-form-item:first-child .select2-container--default .select2-selection--single {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.cookie-modal .first-settings-form-item:last-child .select2-container--default .select2-selection--single {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.cookie-modal .first-settings-form-item:first-child .select2-container--open.select2-container--default .select2-selection--single, .cookie-modal .first-settings-form-item:last-child .select2-container--open.select2-container--default .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cookie-modal .select2-container {
  padding: 0;
}
.cookie-modal .select2-container--open {
  box-shadow: none;
}
.cookie-modal .select2-container--default .select2-selection--single {
  background-color: #F6F6F4;
  border-bottom: 0;
  height: 40px;
}
.cookie-modal .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 14px;
  color: var(--brand-color-dark);
  line-height: 40px;
  padding-right: 28px;
}
.cookie-modal .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
.cookie-modal .select2-selection__arrow:after {
  transition: none;
}
.cookie-modal .select2-selection__rendered .img-flag {
  position: relative;
}
.cookie-modal .select2-selection__rendered .img-size {
  position: relative;
  top: -1px;
}
.cookie-modal .modal-submit {
  text-align: center;
  text-align: center;
  margin-top: 45px;
}
.cookie-modal .modal-submit input {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.cookie-modal .modal-submit input:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.cookie-modal .modal-submit input {
  cursor: pointer;
}
.cookie-modal .country-text-notice {
  margin: 25px auto 0;
  max-width: 380px;
}
.cookie-modal .country-text-notice.hidden {
  display: none;
}
.cookie-modal .country-text-notice-inner {
  color: var(--brand-color-orange);
  border: 1px solid var(--brand-color-orange);
  background-color: rgba(173, 102, 43, 0.1);
  padding: 18px 20px;
  display: flex;
  flex-flow: row nowrap;
  text-align: left;
}
.cookie-modal .country-text-notice-graphic {
  flex: 0 0 auto;
  min-width: 0;
  margin-right: 16px;
  margin-top: 1px;
}
.cookie-modal .country-text-notice-graphic svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.cookie-modal .country-text-notice-content {
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-modal .country-text {
  font-size: 15px;
  line-height: 1.5;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   PAGER
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
div.paging {
  clear: both;
  display: block;
  width: 100%;
  text-align: center;
  width: 100%;
  border-bottom: 2px solid var(--brand-color-orange);
  position: relative;
  padding-top: 46px;
}
div.paging .pager-result-text {
  font-size: 1.3rem;
  font-family: var(--serif-font);
}
div.paging div {
  padding: 43px 0px 16px;
}
div.paging div a {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  color: var(--brand-color-light);
  padding: 0px 6px;
  transition: all 0.3s;
  font-weight: 600;
}
div.paging div a:hover {
  color: var(--brand-color-orange);
}
div.paging div a.active {
  color: var(--brand-color-orange);
  position: relative;
  font-weight: 700;
}
div.paging div a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background: var(--brand-color-orange);
  width: 12px;
  height: 1px;
  transform: translateX(-50%);
}
div.paging > a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--sans-serif-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  padding: 3px 0;
  transition: all 0.3s;
  letter-spacing: 0.15rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  div.paging > a {
    padding: 0;
    line-height: 1;
  }
}
div.paging > a:hover {
  color: var(--brand-color-dark);
}
div.paging > a:hover svg {
  fill: var(--brand-color-dark);
  margin-left: 8px;
}
div.paging > a svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-orange);
  margin-bottom: 3.5px;
  margin-left: 5px;
  transition: all 0.3s;
}
div.paging > a {
  font-weight: 700;
}
div.paging > a.show-all-link {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
div.paging > a.previous {
  display: inline-block;
  position: relative;
  left: 0;
  position: absolute;
  bottom: 20px;
  font-weight: 700;
}
div.paging > a.previous:hover {
  color: var(--brand-color-dark);
}
div.paging > a.previous:hover svg {
  fill: var(--brand-color-dark);
  margin-right: 8px;
}
div.paging > a.previous svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-orange);
  margin-bottom: 3.5px;
  margin-left: 0px;
  transition: all 0.3s;
  margin-right: 6px;
}
div.paging > a.next {
  right: 0;
  position: absolute;
  bottom: 20px;
  font-weight: 700;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   COOKIES
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
#cookiepolicy {
  text-align: center;
  width: 500px;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--background-color);
  box-shadow: var(--box-shadow);
  padding: 25px;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 999;
}
#cookiepolicy div p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: var(--sans-serif-font);
  padding-bottom: 22px;
}
#cookiepolicy div.cookie-text {
  padding-bottom: 15px;
}
#cookiepolicy a {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
#cookiepolicy a:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   SHIPPING COST
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.country-shippingcost h2 {
  font-size: 1.4rem;
  color: var(--basic-text);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-weight: normal;
  margin-bottom: 13px;
  font-family: var(--sans-serif-font);
  letter-spacing: 0.175rem;
}
.country-shippingcost h2:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--brand-color-dark);
  content: "";
}

.free-shippingcost {
  margin: 2rem 0;
  font-weight: bold;
}

.shippingcosts-table {
  width: 100%;
  max-width: 40rem;
  border-collapse: collapse;
}
.shippingcosts-table tr:nth-child(even) {
  background-color: var(--white);
}
.shippingcosts-table td {
  padding: 0.5rem 0 0 0;
}
.shippingcosts-table td:first-child {
  padding-right: 5rem;
}

/** --------------------------------------------------
*   #layout
*   -------------------------------------------------- */
/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   FORMS
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
* 
*   mixins - elements
*   ELEMENTS
*
*   TABLE OF CONTENTS
*   forms
*   art
*
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #forms
*  -------------------------------------------------- */
/** --------------------------------------------------
*  #cart
*  -------------------------------------------------- */
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.radio-wrapper {
  position: relative;
  min-height: 18px;
  width: 44%;
}
.radio-wrapper > input {
  appearance: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: 0;
  width: 18px;
  height: 18px;
  background: transparent;
  border: none;
  outline: none;
}
.radio-wrapper > label {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-left: 30px;
  cursor: pointer;
}
.radio-wrapper > label:before, .radio-wrapper > label:after {
  content: "";
  display: block;
}
.radio-wrapper > label:before {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--brand-color-light);
  border-radius: 50%;
  background-color: var(--brand-color-light);
  transition: border-color 0.2s ease;
}
.radio-wrapper > label:after {
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: rgba(var(--gray), 0.1);
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: scale(0.7);
}
.radio-wrapper > input:hover + label:after, .radio-wrapper > input:focus + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.radio-wrapper label:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.radio-wrapper > input:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  background-color: var(--brand-color-dark);
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   HEADER
*
*   TABLE OF CONTENTS
*   main header
*   logo
*   settings
*   basket & search
*   hamburger
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #main header
*   -------------------------------------------------- */
body.showpopup #cookiepolicy, body.showpopup #top {
  display: none;
}

#top {
  padding: 23px 0px 0px 0px;
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  #top {
    position: relative;
    padding-top: 0px;
  }
}

.nav-top-logo-wrapper {
  margin-bottom: 21px;
  position: relative;
  z-index: 10;
}
.nav-top-logo-wrapper:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .nav-top-logo-wrapper {
    height: 144px;
    margin-bottom: 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
}

@media only screen and (min-width: 0) and (max-width: 1270px) {
  .mobile-menu-open .nav-top-logo-wrapper {
    border-color: var(--background-color);
    transition: border-color 0.3s;
  }
}

/** --------------------------------------------------
*   #logo
*   -------------------------------------------------- */
.logo-wrapper {
  display: inline-block;
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .logo-wrapper {
    float: none;
    text-align: center;
    width: 100%;
    display: block;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.logo-wrapper a {
  display: inline-block;
}
.logo-wrapper img {
  display: inline-block;
  height: 84px;
  width: auto;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .logo-wrapper img {
    height: 63px;
  }
}

/** --------------------------------------------------
*   #settings
*   -------------------------------------------------- */
.settings {
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .settings {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
  .settings span {
    text-align: left;
  }
}

#settingsform select {
  visibility: hidden;
  opacity: 0;
}
#settingsform .top-form-items {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
#settingsform .top-form-item {
  flex: 0 1 auto;
  min-width: 0;
  padding: 0 1px;
}

/* selects */
/* ******* */
.nav-top .select2-container {
  padding: 0;
  font-size: 1.2rem;
}
.nav-top .select2-container--open {
  box-shadow: none;
}
.nav-top .select2-container--default .select2-selection--single {
  background-color: #F6F6F4;
  border-bottom: 0;
  height: 40px;
}
.nav-top .top-form-item:first-child .select2-container--default .select2-selection--single {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.nav-top .top-form-item:last-child .select2-container--default .select2-selection--single {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.nav-top .top-form-item:first-child .select2-container--open.select2-container--default .select2-selection--single, .nav-top .top-form-item:last-child .select2-container--open.select2-container--default .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.nav-top .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 14px;
  color: var(--brand-color-dark);
  line-height: 40px;
  padding-right: 22px;
}
.nav-top .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
.nav-top .select2-selection__arrow:after {
  transition: none;
}
.nav-top .select2-selection__rendered .img-flag {
  position: relative;
  top: -2px;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .nav-top .select2-selection__rendered .img-flag {
    display: none !important;
  }
}
.nav-top .select2-selection__rendered .img-size {
  position: relative;
  top: -1px;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .nav-top .select2-selection__rendered .img-size {
    display: none !important;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .nav-top .top-form-item--country .select2-container {
    min-width: auto !important;
    max-width: 120px !important;
  }
}
.nav-top .top-form-item--language .select2-container {
  min-width: 116px !important;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .nav-top .top-form-item--language .select2-container {
    min-width: auto !important;
  }
}
.nav-top .top-form-item--language .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 12px;
  padding-right: 22px;
}
.nav-top .top-form-item--size .select2-container {
  min-width: 116px !important;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .nav-top .top-form-item--size .select2-container {
    min-width: 94px !important;
  }
}
.nav-top .top-form-item--size .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 8px;
  padding-right: 22px;
}

/** --------------------------------------------------
*   #basket & search
*   -------------------------------------------------- */
.basket-search {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  z-index: 98;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .basket-search {
    position: absolute;
    left: 0;
    top: 71px;
    margin-left: 0px;
  }
}
.basket-search svg {
  fill: var(--brand-color);
  width: 30px;
  height: auto;
  transition: all 0.3s;
  cursor: pointer;
}
.basket-search .slideout {
  width: 296px;
  max-width: 96vw;
  background: white;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: var(--box-shadow);
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .basket-search .slideout {
    right: auto;
    left: 0;
  }
}
@media only screen and (min-width: 0) and (max-width: 420px) {
  .basket-search .slideout {
    left: -50px;
  }
}
.basket-search > #basket-wrapper, .basket-search > #search-wrapper {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 99;
}
.basket-search > #basket-wrapper:hover, .basket-search > #search-wrapper:hover {
  background: var(--brand-color-light);
  box-shadow: var(--box-shadow);
}
.basket-search > #basket-wrapper:hover > svg, .basket-search > #search-wrapper:hover > svg {
  fill: var(--white);
  cursor: pointer;
}
.basket-search > #basket-wrapper:hover > svg path, .basket-search > #search-wrapper:hover > svg path {
  fill: var(--white);
}
.basket-search > #basket-wrapper:hover > .slideout, .basket-search > #search-wrapper:hover > .slideout {
  opacity: 1;
  visibility: visible;
  z-index: 100;
  background: white;
  height: auto;
  min-height: 100px;
  cursor: default;
}
.basket-search > #search-wrapper .advanced-search-label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.basket-search > #search-wrapper:hover > .slideout:before {
  content: "";
  background: transparent;
  width: calc(100% - 38px);
  display: block;
  position: absolute;
  top: -38px;
  left: 0;
  height: 38px;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .basket-search > #search-wrapper:hover > .slideout:before {
    display: none;
    content: none;
  }
}
.basket-search .basket-search-divider {
  width: 2px;
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--background-color);
  height: 40px;
}

#basket-wrapper {
  padding: 7px 10px;
}
#basket-wrapper .basket-items-number {
  position: absolute;
  top: -0.2rem;
  right: -0.3rem;
  width: 2rem;
  height: 2rem;
  background: var(--white);
  border: 1px solid var(--brand-color-orange);
  border-radius: 50%;
  text-align: center;
}
#basket-wrapper .basket-items-number span {
  display: block;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
#basket-wrapper > svg {
  width: 18px;
  height: 16px;
}
#basket-wrapper > svg path {
  fill: var(--brand-color-orange);
}

#search-wrapper {
  padding: 7px 10px;
}
#search-wrapper svg {
  width: 18px;
  height: 18px;
}

/** --------------------------------------------------
*   #hamburger
*   -------------------------------------------------- */
.hamburger {
  width: 40px;
  height: 40px;
  display: none;
  position: absolute;
  right: 0;
}
.hamburger.is-active .hamburger-box span {
  background-color: var(--brand-color-light);
}
.hamburger.is-active .hamburger-box span:before, .hamburger.is-active .hamburger-box span:after {
  background-color: var(--brand-color-light);
  height: 2px;
  width: 16px;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 70px;
  }
  .hamburger .hamburger-box {
    background: none;
    background-color: transparent;
    height: 2px;
    top: 10px;
    position: absolute;
    left: 0;
  }
  .hamburger .hamburger-box span {
    background-color: var(--brand-color);
    height: 2px;
    top: 8px;
    width: 16px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  .hamburger .hamburger-box span:before, .hamburger .hamburger-box span:after {
    background-color: var(--brand-color);
    height: 2px;
    width: 16px;
    transition: all 0.3s;
  }
  .hamburger .hamburger-box span:before {
    top: 4px;
  }
  .hamburger .hamburger-box span:after {
    top: 8px;
  }
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg) translateX(-50%);
}
.hamburger--slider.is-active .hamburger-inner:after {
  top: 20px;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   HEADER NOTICE
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.header-notice-block .country-text-notice.hidden {
  display: none;
}
.header-notice-block .country-text-notice-inner {
  color: var(--basic-text);
  background-color: rgba(173, 102, 43, 0.1);
  padding: 18px 20px;
  display: flex;
  flex-flow: row nowrap;
  text-align: left;
}
.header-notice-block .country-text-notice-graphic {
  flex: 0 0 auto;
  min-width: 0;
  margin-right: 16px;
  margin-top: 1px;
}
.header-notice-block .country-text-notice-graphic svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.header-notice-block .country-text-notice-content {
  flex: 1 1 auto;
  min-width: 0;
}
.header-notice-block .country-text {
  font-size: 15px;
  line-height: 1.5;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   NAVIGATION
*
*   TABLE OF CONTENTS
*   general
*   main nav
*   shopping nav
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
#navigation {
  position: relative;
  z-index: 100;
}
#navigation:after {
  content: "";
  display: block;
  clear: both;
}

/** --------------------------------------------------
*   #main nav
*   -------------------------------------------------- */
.nav-top {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .nav-top {
    position: static;
    right: auto;
    top: auto;
    transform: translateY(0%);
    display: block;
    width: 100%;
    padding-top: 58px;
  }
}

.main-menu {
  display: inline-block;
}
.main-menu ul {
  list-style-type: none;
  margin-right: 10px;
}
.main-menu li {
  display: inline-block;
}
.main-menu li a {
  color: var(--subtext);
  font-family: var(--serif-font);
  font-size: 1.3rem;
  padding: 8px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.main-menu li a.active {
  color: var(--basic-text);
}
.main-menu li a:hover {
  color: var(--basic-text);
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .main-menu.desktop {
    display: none;
  }
}
.main-menu.mobile {
  display: none;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .main-menu.mobile {
    display: block;
    width: 25%;
    float: right;
  }
  .main-menu.mobile ul {
    margin-right: 0px;
    width: 100%;
    display: block;
  }
  .main-menu.mobile li {
    display: block;
    text-align: right;
    width: 100%;
  }
  .main-menu.mobile li a {
    display: block;
    width: 100%;
    padding: 0px;
    line-height: 28px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 1270px) and (min-width: 0) and (max-width: 670px) {
  .main-menu.mobile li a {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .main-menu.mobile {
    width: 50%;
  }
}

/** --------------------------------------------------
*   #shopping nav
*   -------------------------------------------------- */
.shopping {
  width: 100%;
  position: relative;
}
.shopping:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping {
    display: block;
    max-height: 0px;
    transition: all 0.5s;
    overflow: hidden;
  }
}
.mobile-menu-open .shopping {
  max-height: 300px;
  padding-bottom: 15px;
  padding-top: 15px;
}
.shopping .shopping-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping .shopping-list {
    display: block;
    flex: none;
    width: 75%;
    float: left;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .shopping .shopping-list {
    display: block;
    flex: none;
    width: 50%;
    float: left;
  }
}
.shopping p {
  text-transform: uppercase;
}
.shopping p a {
  display: block;
  position: relative;
  font-weight: 500;
}
.shopping p a span {
  display: inline;
  position: relative;
  letter-spacing: 0.1rem;
  font-weight: 600;
  font-size: 1.4rem;
}
@media only screen and (min-width: 0) and (max-width: 1299px) {
  .shopping p a span {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping p a span {
    line-height: 28px;
  }
}
.shopping p a span:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  display: block;
  content: "";
  background-color: var(--brand-color-dark);
  transition: all 0.3s;
}
.shopping div.image-nav-bg {
  display: block;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 270px;
}
.shopping {
  /* sub menu images */
}
.shopping img {
  display: none;
}
.shopping ul {
  column-count: 3;
  list-style-type: none;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping ul {
    column-count: 1;
  }
}
.shopping ul.nocolumn {
  column-count: 1;
  list-style-type: none;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping ul.nocolumn {
    column-count: 1;
  }
}
.shopping .shopping-menu-sub-item {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: var(--white);
  width: 100%;
  left: 0;
  transform: translateY(65px);
  transition: all 0s;
  z-index: 9;
}
.shopping .shopping-list > div:first-of-type {
  text-align: left;
}
.shopping .shopping-list > div:last-of-type {
  text-align: right;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping .shopping-list > div:last-of-type {
    text-align: left;
  }
}
.shopping .shopping-menu-item {
  display: inline-block;
  padding-bottom: 38px;
  flex: 1 1 auto;
  white-space: nowrap;
  text-align: center;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping .shopping-menu-item {
    display: block;
    width: 100%;
    text-align: left;
    flex: none;
    padding-bottom: 0px;
    float: left;
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .shopping .shopping-menu-item {
    width: 50%;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .shopping .shopping-menu-item {
    display: block;
    width: 100%;
    text-align: left;
    flex: none;
    padding-bottom: 0px;
    float: none;
    width: 100%;
  }
}
.shopping .shopping-menu-item ul li {
  display: block;
  width: 100%;
}
.shopping .shopping-menu-item ul a {
  font-size: 1.3rem;
  font-family: var(--serif-font);
  color: var(--subtext);
  transition: color 0.3s;
  letter-spacing: 0.5px;
  padding: 5px 0px;
  display: inline-block;
  width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping .shopping-menu-item ul a {
    padding: 0px 0px;
  }
  .shopping .shopping-menu-item ul a span {
    line-height: 28px;
  }
}
.shopping .shopping-menu-item ul a:hover {
  color: var(--basic-text);
}
.shopping .shopping-menu-item:hover p a span:before, .shopping .shopping-menu-item:focus p a span:before {
  width: 100%;
}
.shopping .shopping-menu-item:hover .shopping-menu-sub-item, .shopping .shopping-menu-item:focus .shopping-menu-sub-item {
  visibility: visible;
  opacity: 1;
  transform: translateY(35px);
  transition: all 0.25s ease-in;
  transition-delay: 0.1s;
  position: absolute;
  min-height: 320px;
  z-index: 9;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping .shopping-menu-item:hover .shopping-menu-sub-item, .shopping .shopping-menu-item:focus .shopping-menu-sub-item {
    display: none;
  }
}
.shopping .shopping-menu-item:hover .shopping-menu-sub-item:before, .shopping .shopping-menu-item:focus .shopping-menu-sub-item:before {
  position: absolute;
  width: 100vw;
  height: 100%;
  content: "";
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: white;
}
.shopping .shopping-menu-item:hover .shopping-menu-sub-item:after, .shopping .shopping-menu-item:focus .shopping-menu-sub-item:after {
  position: absolute;
  top: -1px;
  left: -20px;
  content: "";
  width: calc(100% + 40px);
  height: 2px;
  background: #F6F6F4;
}
.shopping .shopping-menu-item:hover .shopping-menu-sub-item ul, .shopping .shopping-menu-item:focus .shopping-menu-sub-item ul {
  width: 75%;
  text-align: left;
  position: relative;
  z-index: 2;
  padding: 28px 0px;
  min-height: 320px;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .shopping .shopping-menu-item:hover .shopping-menu-sub-item ul, .shopping .shopping-menu-item:focus .shopping-menu-sub-item ul {
    display: none;
  }
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   FOOTER
*
*   TABLE OF CONTENTS
*   main footer
*   footer bottom
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #main footer
*   -------------------------------------------------- */
#footer {
  padding: 44px 0px 60px 0px;
  font-family: var(--serif-font);
  font-size: 1.3rem;
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}

#footer_main:after {
  content: "";
  display: block;
  clear: both;
}
#footer_main h3 {
  font-size: 1.4rem;
  color: var(--basic-text);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-weight: normal;
  margin-bottom: 13px;
  font-family: var(--sans-serif-font);
  letter-spacing: 0.175rem;
}
#footer_main h3:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--brand-color-dark);
  content: "";
}
#footer_main > div {
  width: 25%;
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  #footer_main > div {
    width: 50%;
    padding-top: 25px;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_main > div {
    padding-top: 23px;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_main > div {
    width: 100%;
    float: none;
    text-align: center;
  }
}
#footer_main > div .footer-block-inner-wrapper {
  max-width: 294px;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  #footer_main > div .footer-block-inner-wrapper {
    padding-bottom: 23px;
    border-bottom: 2px solid var(--background-color);
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_main > div .footer-block-inner-wrapper {
    max-width: 100%;
    margin: auto;
    text-align: center;
  }
}
#footer_main #footer_addressinfo p {
  font-size: 1.3rem;
  line-height: 3rem;
  font-family: var(--serif-font);
}
#footer_main #footer_guarantee ul {
  list-style-type: none;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_main #footer_guarantee ul {
    display: inline-block;
    width: auto;
    margin: auto;
    text-align: left;
  }
}
#footer_main #footer_guarantee ul li svg {
  width: 18px;
  height: auto;
  fill: var(--brand-color-orange);
  display: inline;
}
#footer_main #footer_guarantee ul li p {
  display: inline;
  font-size: 1.3rem;
  line-height: 3rem;
  margin-left: 10px;
}
#footer_main #footer_testimonial .testimonial {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 3.2rem;
  max-width: 253px;
}
#footer_main #footer_testimonial .testimonial em {
  font-family: var(--sans-serif-font);
  color: var(--brand-color-orange);
  font-style: normal;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.15rem;
  padding: 20px 0px;
  display: block;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_main #footer_testimonial .testimonial {
    margin: auto;
    display: block;
  }
}
#footer_main #footer_testimonial h3 {
  margin-bottom: 10px;
}
#footer_main #footer_testimonial .testimonial-link-wrapper {
  border-top: 2px solid var(--background-color);
  padding-top: 19px;
}
#footer_main #footer_testimonial .testimonial-link-wrapper a {
  font-weight: 700;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_main #footer_testimonial .testimonial-link-wrapper {
    padding-top: 25px;
  }
}
#footer_main #footer_testimonial a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--sans-serif-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  padding: 3px 0;
  transition: all 0.3s;
  letter-spacing: 0.15rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_main #footer_testimonial a {
    padding: 0;
    line-height: 1;
  }
}
#footer_main #footer_testimonial a:hover {
  color: var(--brand-color-dark);
}
#footer_main #footer_testimonial a:hover svg {
  fill: var(--brand-color-dark);
  margin-left: 8px;
}
#footer_main #footer_testimonial a svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-orange);
  margin-bottom: 3.5px;
  margin-left: 5px;
  transition: all 0.3s;
}
#footer_main #footer_clientservices ul, #footer_main #footer_addressinfo ul {
  list-style-type: none;
}
#footer_main #footer_clientservices ul li, #footer_main #footer_addressinfo ul li {
  padding: 5px 0px;
}
#footer_main #footer_clientservices ul li:first-of-type, #footer_main #footer_addressinfo ul li:first-of-type {
  padding: 0px 0px 5px 0px;
}
#footer_main #footer_clientservices ul li a, #footer_main #footer_addressinfo ul li a {
  font-size: 1.3rem;
  line-height: 1;
  font-family: var(--serif-font);
  color: var(--brand-color-light);
  transition: all 0.3s;
  padding: 5px 0px;
  display: block;
}
#footer_main #footer_clientservices ul li a:hover, #footer_main #footer_addressinfo ul li a:hover {
  color: var(--brand-color-dark);
}
#footer_main #footer_clientservices .second-header, #footer_main #footer_addressinfo .second-header {
  margin-top: 29px;
}
#footer_main #footer_clientservices img, #footer_main #footer_addressinfo img {
  height: 24px;
  width: auto;
  margin-left: 12px;
  display: inline-block;
}
#footer_main #footer_clientservices img:first-of-type, #footer_main #footer_addressinfo img:first-of-type {
  margin-left: 0px;
}
#footer_main #footer_clientservices img.visa, #footer_main #footer_addressinfo img.visa {
  height: 14px;
}
#footer_main #footer_clientservices img.mc, #footer_main #footer_addressinfo img.mc {
  height: 22px;
}
#footer_main #footer_clientservices img.sepa, #footer_main #footer_addressinfo img.sepa {
  height: 20px;
}
#footer_main #footer_clientservices #footer_payments, #footer_main #footer_addressinfo #footer_payments {
  padding-top: 5px;
}

/** --------------------------------------------------
*   #footer bottom
*   -------------------------------------------------- */
#footer_bottom {
  margin-top: 48px;
  position: relative;
  padding-top: 24px;
}
#footer_bottom:after {
  content: "";
  display: block;
  clear: both;
}
#footer_bottom:after {
  position: absolute;
  top: -1px;
  left: -20px;
  content: "";
  width: calc(100% + 40px);
  height: 2px;
  background: var(--background-color);
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom:after {
    content: none;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom {
    padding-top: 0px;
    margin-top: 24px;
  }
}
#footer_bottom div, #footer_bottom a, #footer_bottom p {
  display: inline;
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: var(--brand-color-light);
  transition: all 0.3s;
  font-family: var(--serif-font);
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom div, #footer_bottom a, #footer_bottom p {
    float: none;
    text-align: center;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom div {
    width: 100%;
    margin: auto;
    display: block;
    margin-bottom: 20px;
  }
  #footer_bottom div a:first-of-type {
    margin-right: 24px;
  }
}
#footer_bottom a {
  margin-right: 23px;
}
#footer_bottom a:hover {
  color: var(--brand-color-dark);
}
#footer_bottom .credit {
  float: right;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom .credit {
    float: none;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}
#footer_bottom .mobile {
  display: none;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom .mobile {
    display: block;
  }
  #footer_bottom .mobile a {
    margin: 0px;
  }
}
#footer_bottom .copyright {
  margin-right: 48px;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  #footer_bottom .copyright {
    margin-right: 23px;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom .copyright {
    width: 100%;
    display: block;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  #footer_bottom .desktop {
    display: none;
  }
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   PRODUCTS
*
*   TABLE OF CONTENTS
*   product lists
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #product lists
*   -------------------------------------------------- */
.product-list-wrapper-homepage {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}

#productList div.product,
.productlist div.product {
  margin-bottom: 24px;
}
#productList div.product:nth-of-type(4n),
.productlist div.product:nth-of-type(4n) {
  margin-right: 0%;
}
#productList div.product:nth-of-type(4n+5),
.productlist div.product:nth-of-type(4n+5) {
  clear: left;
}

.productlist div.product:last-of-type {
  margin-right: 0%;
}

.productlist,
#productList {
  padding-top: 96px;
}
.productlist:after,
#productList:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .productlist,
  #productList {
    padding-top: 45px;
  }
}
.productlist .product-list-header,
#productList .product-list-header {
  position: relative;
  margin-bottom: 35px;
  display: block;
}
.productlist .product-list-header h2,
#productList .product-list-header h2 {
  font-family: var(--serif-font);
  font-weight: 600;
  font-size: 3.9rem;
  line-height: 4.8rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .productlist .product-list-header h2,
  #productList .product-list-header h2 {
    font-size: 2.6rem;
    line-height: 3.8rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .productlist .product-list-header h2,
  #productList .product-list-header h2 {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.productlist .product-list-header .productlist-link,
#productList .product-list-header .productlist-link {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .productlist .product-list-header .productlist-link,
  #productList .product-list-header .productlist-link {
    width: 100%;
    text-align: center;
    display: block;
    position: relative;
    top: auto;
    transform: translateY(0%);
    right: auto;
  }
}
.productlist .product-list-header .productlist-link a,
#productList .product-list-header .productlist-link a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--sans-serif-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  padding: 3px 0;
  transition: all 0.3s;
  letter-spacing: 0.15rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .productlist .product-list-header .productlist-link a,
  #productList .product-list-header .productlist-link a {
    padding: 0;
    line-height: 1;
  }
}
.productlist .product-list-header .productlist-link a:hover,
#productList .product-list-header .productlist-link a:hover {
  color: var(--brand-color-dark);
}
.productlist .product-list-header .productlist-link a:hover svg,
#productList .product-list-header .productlist-link a:hover svg {
  fill: var(--brand-color-dark);
  margin-left: 8px;
}
.productlist .product-list-header .productlist-link a svg,
#productList .product-list-header .productlist-link a svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-orange);
  margin-bottom: 3.5px;
  margin-left: 5px;
  transition: all 0.3s;
}
.productlist .product-list-header .productlist-link a,
#productList .product-list-header .productlist-link a {
  color: var(--basic-text);
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .productlist .product-list-header .productlist-link a,
  #productList .product-list-header .productlist-link a {
    padding-bottom: 3px;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.productlist .product-list-header .productlist-link a:before,
#productList .product-list-header .productlist-link a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-color-dark);
  transition: all 0.3s;
}
.productlist .product-list-header .productlist-link a:hover,
#productList .product-list-header .productlist-link a:hover {
  color: var(--brand-color-orange);
}
.productlist .product-list-header .productlist-link a:hover svg,
#productList .product-list-header .productlist-link a:hover svg {
  fill: var(--brand-color-orange);
}
.productlist .product-list-header .productlist-link a:hover:before,
#productList .product-list-header .productlist-link a:hover:before {
  background-color: var(--brand-color-orange);
}
.productlist .product-list-header .productlist-link a svg,
#productList .product-list-header .productlist-link a svg {
  fill: var(--basic-text);
}
.productlist .product-info-wrapper,
#productList .product-info-wrapper {
  margin-top: 23px;
}
.productlist div.product,
#productList div.product {
  width: 23.5%;
  float: left;
  background: var(--white);
  margin-right: 2%;
  padding: 24px;
  min-height: 457px;
  position: relative;
  padding-bottom: 55px;
  max-width: 294px;
}
@media only screen and (min-width: 0) and (max-width: 1020px) {
  .productlist div.product,
  #productList div.product {
    width: 47%;
    margin-right: 3%;
    margin-bottom: 12px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .productlist div.product,
  #productList div.product {
    width: 100%;
    float: none;
    margin: 0px auto 12px auto;
  }
}
.productlist div.product .promo-cta,
#productList div.product .promo-cta {
  position: absolute;
  display: inline-block;
  padding: 5px 8px;
  background: var(--brand-color-orange);
  text-transform: uppercase;
  top: 48px;
  right: -16px;
  color: var(--white);
  font-family: var(--sans-serif-font);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
}
.productlist div.product .product-image,
#productList div.product .product-image {
  position: relative;
  display: block;
  text-align: center;
  width: 246px;
  max-width: 100%;
  height: 246px;
  margin: auto;
}
.productlist div.product .product-image img,
#productList div.product .product-image img {
  display: none;
}
.productlist div.product .product-image .product-image-background-image,
#productList div.product .product-image .product-image-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.productlist div.product .group,
#productList div.product .group {
  display: block;
  width: 100%;
}
.productlist div.product .group a,
#productList div.product .group a {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--brand-color-light);
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
  transition: all 0.3s;
}
.productlist div.product .group a:hover,
#productList div.product .group a:hover {
  color: var(--brand-color-orange);
}
.productlist div.product .name,
#productList div.product .name {
  display: block;
  width: 100%;
  margin-top: 6px;
}
.productlist div.product .name a,
#productList div.product .name a {
  font-family: var(--serif-font);
  font-size: 2.3rem;
  line-height: 3rem;
  font-style: italic;
  display: block;
  width: 100%;
  transition: all 0.3s;
  min-height: 60px;
}
.productlist div.product .name a:hover,
#productList div.product .name a:hover {
  color: var(--brand-color-orange);
}
.productlist div.product .dimentions,
#productList div.product .dimentions {
  margin: 8px 0px;
  display: block;
}
.productlist div.product .dimentions a,
#productList div.product .dimentions a {
  display: block;
  transition: all 0.3s;
}
.productlist div.product .dimentions a:hover,
#productList div.product .dimentions a:hover {
  color: var(--brand-color-orange);
}
.productlist div.product .moredetails,
#productList div.product .moredetails {
  position: absolute;
  bottom: 23px;
  font-weight: 700;
}
.productlist div.product .moredetails a,
#productList div.product .moredetails a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--sans-serif-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  padding: 3px 0;
  transition: all 0.3s;
  letter-spacing: 0.15rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .productlist div.product .moredetails a,
  #productList div.product .moredetails a {
    padding: 0;
    line-height: 1;
  }
}
.productlist div.product .moredetails a:hover,
#productList div.product .moredetails a:hover {
  color: var(--brand-color-dark);
}
.productlist div.product .moredetails a:hover svg,
#productList div.product .moredetails a:hover svg {
  fill: var(--brand-color-dark);
  margin-left: 8px;
}
.productlist div.product .moredetails a svg,
#productList div.product .moredetails a svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-orange);
  margin-bottom: 3.5px;
  margin-left: 5px;
  transition: all 0.3s;
}
.productlist div.product .moredetails a,
#productList div.product .moredetails a {
  font-weight: 700;
}

.currentprice {
  font-size: 1.6rem;
  color: var(--basic-text);
  font-weight: 600;
  font-family: var(--sans-serif-font);
}

.oldprice,
.oldPrice {
  font-size: 1.6rem;
  color: var(--brand-color-light);
  font-weight: 500;
  text-decoration: line-through;
  padding-left: 5px;
  font-family: var(--sans-serif-font);
}

/* use images instead of background images, where supported: */
@supports (object-fit: contain) {
  .productlist div.product .product-image img,
  #productList div.product .product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .productlist div.product .product-image .product-image-background-image,
  #productList div.product .product-image .product-image-background-image {
    display: none;
  }
}
/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   CART HEADER
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.basket-slideout {
  padding: 23px;
  padding-bottom: 230px;
}
.basket-slideout.empty-cart {
  padding-bottom: 23px;
}
.basket-slideout table, .basket-slideout tr, .basket-slideout th, .basket-slideout td, .basket-slideout tbody {
  display: block;
}
.basket-slideout h2 {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  border-bottom: 2px solid var(--brand-color-dark);
  padding-bottom: 8px;
  color: var(--brand-color-dark);
}
.basket-slideout table tr td span a {
  display: inline-block;
  clear: both;
  transition: color 0.3s;
}
.basket-slideout table tr td span a:hover {
  color: var(--brand-color-orange);
}
.basket-slideout table tr.total-costs td, .basket-slideout table tr.shipping-costs td {
  padding: 16px 0 !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
  font-family: var(--sans-serif-font) !important;
}
.basket-slideout table tr.total-costs td {
  padding-top: 8px !important;
}
.basket-slideout .item-desc {
  width: 119px;
  display: inline-block;
}
.basket-slideout .item-count {
  display: inline-block;
  width: 32px;
}
.basket-slideout .item-price {
  display: inline-block;
  text-align: right;
  width: calc(100% - 40px - 119px);
}
.basket-slideout .shipping-costs {
  border-top: 2px solid var(--brand-color-dark);
}
.basket-slideout .shipping-costs > td {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--sans-serif-font) !important;
}
.basket-slideout .shipping-costs td:first-of-type {
  width: 150px;
}
.basket-slideout .shipping-costs td:last-of-type {
  width: calc(100% - 154px);
  text-align: right;
}
.basket-slideout .shipping-costs svg {
  margin-top: -3px;
  transition: all 0.3s;
  margin-left: 5px;
  width: 15px;
}
.basket-slideout .total-costs > td {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.basket-slideout .total-costs td:first-of-type {
  width: 150px;
}
.basket-slideout .total-costs td:last-of-type {
  width: calc(100% - 154px);
  text-align: right;
}
.basket-slideout .basket-item-row td span:first-of-type {
  font-weight: 600;
}
.basket-slideout .basket-item-row + .basket-item-row td {
  border-top: 0px solid var(--brand-color-dark) !important;
}
.basket-slideout .basket-item-row + .basket-item-row {
  border-top: 2px solid rgba(171, 182, 187, 0.5);
}
.basket-slideout .change-button {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--brand-color-light);
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.153rem;
  text-transform: uppercase;
  padding: 12px 0;
  margin-bottom: 10px;
}
.basket-slideout .change-button svg {
  fill: var(--brand-color-light) !important;
  width: 13px !important;
  height: 13px !important;
  margin-bottom: 6px;
  margin-right: 5px;
  transition: all 0.3s;
}
.basket-slideout .change-button:hover {
  color: var(--brand-color-orange);
}
.basket-slideout .change-button:hover svg {
  fill: var(--brand-color-orange) !important;
}
.basket-slideout .checkout-button {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.basket-slideout .checkout-button:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.basket-slideout .checkout-button {
  width: 100%;
}

.search-slideout {
  padding: 23px;
}
.search-slideout h2 {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  padding-bottom: 8px;
  color: var(--brand-color-dark);
}
.search-slideout .search-input {
  border: none;
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--brand-color-dark);
  outline: none;
  margin-bottom: 12px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.6rem;
  color: #60767C;
}
.search-slideout .submit-button {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.search-slideout .submit-button:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.search-slideout .submit-button {
  width: 100%;
  cursor: pointer;
}
.search-slideout .advanced-search {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--brand-color-light);
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  margin-top: 10px;
}
.search-slideout .advanced-search svg {
  fill: var(--brand-color-light) !important;
  width: 10px !important;
  height: 10px !important;
  margin-bottom: 4px;
  margin-right: 5px;
  transition: all 0.3s;
}
.search-slideout .advanced-search:hover {
  color: var(--brand-color-orange);
}
.search-slideout .advanced-search:hover svg {
  fill: var(--brand-color-orange) !important;
}

/* pages */
/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   HOMEPAGE
*
*   TABLE OF CONTENTS
*   general
*   testimonial
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
@media only screen and (min-width: 0) and (max-width: 1020px) {
  .hide-mobile {
    display: none;
  }
}

/** --------------------------------------------------
*   #testimonial
*   -------------------------------------------------- */
.homepage_testimonial {
  background-color: var(--brand-color-dark);
  color: var(--white);
  text-align: center;
  padding: 90px 0px;
  margin-top: 96px;
}
@media only screen and (min-width: 0) and (max-width: 1020px) {
  .homepage_testimonial {
    padding: 40px 0px;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .homepage_testimonial {
    margin-top: 45px;
  }
}
.homepage_testimonial .testimonial {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.homepage_testimonial .testimonial {
  font-style: italic;
  font-family: var(--serif-font);
  font-size: 2.6rem;
  line-height: 4.4rem;
  font-weight: 600;
}
@media only screen and (min-width: 0) and (max-width: 1020px) {
  .homepage_testimonial .testimonial {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}
.homepage_testimonial .testimonial a {
  color: var(--white);
}
.homepage_testimonial .testimonial br {
  display: none;
}
.homepage_testimonial .testimonial em {
  margin-top: 37px;
  color: var(--brand-color-orange);
  font-style: normal;
  text-transform: uppercase;
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 1020px) {
  .homepage_testimonial .testimonial em {
    font-size: 1.2rem;
    margin-top: 25px;
  }
}

.promotion-block {
  overflow: hidden;
  position: relative;
}
.promotion-block .promotion-block__inner {
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 2400px;
  margin: auto;
  position: relative;
  z-index: 10;
  min-height: 560px;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .promotion-block .promotion-block__inner {
    min-height: auto;
  }
}
.promotion-block .promotion-block__inner .promotion-block-content:after {
  content: "";
  display: block;
  clear: both;
}
.promotion-block .promotion-block__inner .promotion-block-content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.promotion-block .promotion-block__inner .promotion-block-content {
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .promotion-block .promotion-block__inner .promotion-block-content {
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0%);
  }
}
.promotion-block .group-left {
  width: 50%;
  float: left;
  text-align: left;
  position: relative;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
}
.promotion-block .group-left p {
  margin: 0;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .promotion-block .group-left {
    padding: 40px 20px;
    width: 100%;
    float: none;
    bottom: auto;
    top: auto;
    transform: translateY(0%);
  }
}
.promotion-block .group-left .feature-mobile-image {
  display: none;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .promotion-block .group-left {
    width: 100%;
  }
}
.promotion-block .group-left h3 {
  font-size: 5rem;
  font-family: var(--serif-font);
  line-height: 5rem;
  color: var(--white);
  padding: 23px 0 17px;
}
.promotion-block .group-right {
  bottom: 0;
  right: 0;
  padding: 24px;
  background: white;
  position: absolute;
  width: auto;
  height: 294px;
  z-index: 9;
}
.promotion-block .group-right:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .promotion-block .group-right {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    height: auto;
    max-width: 650px;
  }
}
.promotion-block .group-right .image-group {
  width: 246px;
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .promotion-block .group-right .image-group {
    width: 150px;
    display: inline-block;
    float: none;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .promotion-block .group-right .image-group {
    width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}
.promotion-block .group-right .text-group {
  width: auto;
  float: left;
  padding-left: 50px;
  text-align: left;
  width: 340px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .promotion-block .group-right .text-group {
    transform: translateY(50%);
    top: auto;
  }
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .promotion-block .group-right .text-group {
    display: inline-block;
    float: none;
    width: calc(100% - 200px);
    transform: translateY(0%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .promotion-block .group-right .text-group {
    display: block;
    width: 100%;
    transform: translateY(0%);
    position: relative;
    top: auto;
    padding-left: 0;
    padding-top: 20px;
    max-width: 350px;
  }
}
.promotion-block .group-right .image-cta-bg {
  position: relative;
  width: 246px;
  height: 246px;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .promotion-block .group-right .image-cta-bg {
    width: 150px;
    height: 150px;
  }
}
.promotion-block .group-right h2 {
  color: var(--brand-color-dark);
  display: block;
  line-height: 22px;
}
.promotion-block .group-right h2:after {
  content: none;
  display: none;
}
.promotion-block h2 {
  font-size: 1.4rem;
  letter-spacing: 0.175rem;
  font-weight: 600;
  font-family: var(--sans-serif-font);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: var(--white);
}
.promotion-block h2:after {
  width: 100%;
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 2px;
  background-color: var(--white);
  content: "";
}
.promotion-block p {
  font-size: 2rem;
  line-height: 3.8rem;
  color: var(--white);
  font-family: var(--serif-font);
  width: 613px;
  max-width: 90%;
  display: block;
  margin: 33px auto 38px auto;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .promotion-block p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.promotion-block a {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.promotion-block a:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.promotion-block a {
  margin-top: 23px;
}

.dark.promotion-block .promotion-block-content > .group-left h3 {
  color: var(--brand-color-dark);
}
.dark.promotion-block .promotion-block-content > .group-left p {
  color: var(--brand-color-dark);
}

.light.promotion-block .promotion-block-content > .group-left h3 {
  color: var(--white);
}
.light.promotion-block .promotion-block-content > .group-left p {
  color: var(--white);
}

.homepage #productList div.product, .homepage .productlist div.product,
.groep #productList div.product,
.groep .productlist div.product {
  margin-bottom: 24px;
}
.homepage #productList div.product:nth-of-type(4n), .homepage .productlist div.product:nth-of-type(4n),
.groep #productList div.product:nth-of-type(4n),
.groep .productlist div.product:nth-of-type(4n) {
  margin-right: 2%;
}
.homepage #productList div.product:nth-of-type(4n+5), .homepage .productlist div.product:nth-of-type(4n+5),
.groep #productList div.product:nth-of-type(4n+5),
.groep .productlist div.product:nth-of-type(4n+5) {
  clear: none;
}
.homepage .productlist div.product:last-of-type,
.groep .productlist div.product:last-of-type {
  margin-right: 0%;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   FORMS
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   PRODUCT DETAIL
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.kleur #path {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}

.kleur #content {
  overflow: hidden;
}

#product {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
#product {
  margin-top: 41px;
  position: relative;
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product {
    padding-top: 24px;
    margin-top: 0px;
    padding-bottom: 24px;
  }
}
#product .addedToBasket {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--brand-color-orange);
  margin-bottom: 20px;
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
#product .product-wrapper-top {
  min-height: 100%;
  padding-bottom: 70px;
}
#product .product-wrapper-top:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top {
    display: block;
    width: 100%;
  }
}
#product .product-wrapper-top > div {
  width: 47%;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top > div {
    display: block;
    width: 100%;
  }
}
#product .product-wrapper-top #images {
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top #images {
    margin-bottom: 45px;
    text-align: center;
  }
}
#product .product-wrapper-top #productDesc {
  float: right;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top #productDesc {
    text-align: center;
  }
}
#product .product-wrapper-top #productDesc .promo-cta {
  padding: 5px 8px;
  display: inline-block;
  background: var(--brand-color-orange);
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--sans-serif-font);
  font-size: 1.2rem;
  letter-spacing: 0.175rem;
  margin-bottom: 18px;
}
#product .product-wrapper-top #productDesc h2 {
  font-style: italic;
  font-family: var(--serif-font);
  font-size: 3.9rem;
  line-height: 4.8rem;
}
#product .product-wrapper-top #productDesc .artist {
  font-style: italic;
  font-family: var(--serif-font);
  font-size: 2.4rem;
  line-height: 1.4;
  color: var(--titles);
}
#product .product-wrapper-top #productDesc .return-to-search-link {
  display: inline-block;
  margin: 10px 0;
}
#product .product-wrapper-top #productDesc div.price {
  display: block;
  margin-top: 13px;
}
#product .product-wrapper-top #productDesc div.price span {
  line-height: 3.2rem;
}
#product .product-wrapper-top #productDesc div.description {
  display: block;
  margin-top: 13px;
}
#product .product-wrapper-top #productDesc div.description p {
  font-family: var(--serif-font);
  font-size: 1.3rem;
  line-height: 2.8rem;
}
#product .product-wrapper-top #productDesc .ref, #product .product-wrapper-top #productDesc .samenstelling, #product .product-wrapper-top #productDesc .afwerking, #product .product-wrapper-top #productDesc .techniek {
  display: block;
  margin-top: 5px;
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
#product .product-wrapper-top #productDesc .afwerking {
  padding: 10px 0;
  line-height: 2.8rem;
}
#product .product-wrapper-top #productDesc .ref, #product .product-wrapper-top #productDesc .samenstelling, #product .product-wrapper-top #productDesc .techniek {
  display: block;
  margin-top: 5px;
  font-family: var(--serif-font);
  font-size: 1.3rem;
  line-height: 2.8rem;
}
#product .product-wrapper-top #productDesc {
  /* start form styling */
}
#product .product-wrapper-top #productDesc form#productform {
  margin-top: 38px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top #productDesc form#productform {
    text-align: left;
    max-width: 350px;
    margin: auto;
    display: block;
    margin-top: 27px;
  }
}
#product .product-wrapper-top #productDesc form#productform table {
  background: var(--white);
  padding: 24px;
  position: relative;
}
#product .product-wrapper-top #productDesc form#productform table:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--white);
}
#product .product-wrapper-top #productDesc form#productform tbody {
  width: 100%;
  display: block;
}
#product .product-wrapper-top #productDesc form#productform table, #product .product-wrapper-top #productDesc form#productform td, #product .product-wrapper-top #productDesc form#productform tr, #product .product-wrapper-top #productDesc form#productform th {
  display: block;
  border: 0;
}
#product .product-wrapper-top #productDesc form#productform tr {
  width: 100%;
}
#product .product-wrapper-top #productDesc form#productform td {
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top #productDesc form#productform td.price {
    width: 54%;
    text-align: right;
  }
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper {
  padding: 5px 0px;
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper {
  position: relative;
  min-height: 18px;
  width: 44%;
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > input {
  appearance: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: 0;
  width: 18px;
  height: 18px;
  background: transparent;
  border: none;
  outline: none;
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > label {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-left: 30px;
  cursor: pointer;
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > label:before, #product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > label:after {
  content: "";
  display: block;
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > label:before {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--brand-color-light);
  border-radius: 50%;
  background-color: var(--brand-color-light);
  transition: border-color 0.2s ease;
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > label:after {
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: rgba(var(--gray), 0.1);
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: scale(0.7);
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > input:hover + label:after, #product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > input:focus + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper label:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#product .product-wrapper-top #productDesc form#productform tr.table-product-wrapper .radio-wrapper > input:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  background-color: var(--brand-color-dark);
}
#product .product-wrapper-top #productDesc form#productform .add-to-cart-title {
  font-family: var(--sans-serif-font);
  font-size: 1.2rem;
  color: var(--brand-color-light);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  margin-bottom: 13px;
}
#product .product-wrapper-top #productDesc form#productform .quantity-wrapper {
  border-top: 2px solid var(--background-color);
  padding-top: 18px;
  margin-top: 13px;
}
#product .product-wrapper-top #productDesc form#productform .quantity-wrapper .quantity {
  font-family: var(--sans-serif-font);
  font-size: 1.2rem;
  color: var(--brand-color-light);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  display: inline-block;
  width: 44%;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top #productDesc form#productform .quantity-wrapper .amount-selector-wrapper {
    width: 54%;
    text-align: right;
  }
}
#product .product-wrapper-top #productDesc form#productform .quantity-wrapper #input_div {
  border: 0;
  border-bottom: 2px solid var(--brand-color-dark);
  width: 64px;
  height: 36px;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .product-wrapper-top #productDesc form#productform .quantity-wrapper #input_div {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }
}
#product .product-wrapper-top #productDesc form#productform .quantity-wrapper #input_div input[type=text] {
  width: 64px;
  display: block;
  text-align: left;
  height: 36px;
  border: 0;
  border-bottom: 2px solid var(--brand-color-dark);
  padding-left: 12px;
}
#product .product-wrapper-top #productDesc form#productform .quantity-wrapper #input_div .input-control {
  width: 20px;
  position: absolute;
  top: 0;
  right: 0;
  height: 36px;
}
#product .product-wrapper-top #productDesc form#productform .quantity-wrapper #input_div .input-control input {
  display: block;
  width: 100%;
  line-height: 1;
  border: none;
}
#product .product-wrapper-top #productDesc {
  /* end form styling */
}
#product .product-wrapper-top #productDesc .price-total-wrapper {
  text-align: center;
  display: block;
  margin-top: 23px;
}
#product .product-wrapper-top #productDesc .price-total-wrapper span {
  font-family: var(--sans-serif-font);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.07rem;
}
#product .product-wrapper-top #productDesc .add-to-cart-button {
  text-align: center;
  position: relative;
  margin-top: 23px;
}
#product .product-wrapper-top #productDesc .add-to-cart-button a {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
#product .product-wrapper-top #productDesc .add-to-cart-button a:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
#product .material {
  position: relative;
  background: var(--white);
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 37px 0px 15px 0px;
  justify-content: space-between;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .material {
    display: block;
    width: 100%;
  }
}
#product .material:before {
  position: absolute;
  width: 100vw;
  height: 100%;
  content: "";
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: white;
  z-index: -1;
}
#product .material > div {
  flex-basis: 48%;
  flex-direction: column;
  padding-bottom: 21px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .material > div {
    display: block;
    width: 100%;
    text-align: center;
  }
}
#product .material > div:nth-child(n+3) {
  border-top: 2px solid var(--background-color);
  padding-top: 21px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .material > div:nth-child(n+2) {
    border-top: 2px solid var(--background-color);
    padding-top: 21px;
  }
}
#product .material img {
  height: 100%;
  max-height: 80px;
  width: auto;
}
#product .material h3 {
  font-size: 1.3rem;
  color: var(--basic-text);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
  font-weight: normal;
  margin-bottom: 13px;
  margin-top: 23px;
  width: auto;
  display: inline-block;
}
#product .material h3:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--brand-color-dark);
  content: "";
}
#product .material p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  #product .material p {
    max-width: 500px;
    margin: auto;
    display: block;
  }
}
#product .product-search-button {
  text-align: center;
  position: relative;
  margin-top: 23px;
}
#product .product-search-button a {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
#product .product-search-button a:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}

.carousel-main-wrapper {
  padding: 50px 0px;
  background: white;
  position: relative;
  margin-bottom: 15px;
}
.carousel-main-wrapper .flickity-prev-next-button {
  border-radius: 0px;
  background: var(--brand-color-light);
  transition: all 0.3s;
  width: 40px;
  height: 40px;
}
.carousel-main-wrapper .flickity-prev-next-button:hover {
  background: var(--brand-color-dark);
}
.carousel-main-wrapper .flickity-button.next {
  right: -10px;
}
.carousel-main-wrapper .flickity-button.previous {
  left: -10px;
}
.carousel-main-wrapper:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--white);
}

.carousel-main {
  margin-bottom: 10px;
}
.carousel-main a {
  width: 100%;
  height: auto;
  display: block;
  height: 460px;
  max-width: 90%;
  margin: auto;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .carousel-main a {
    height: 270px;
  }
}
.carousel-main .carousel-cell {
  width: 100%;
}
.carousel-main .carousel-cell a {
  display: block;
  margin: auto;
}
.carousel-main .carousel-cell .carousel-image {
  display: none;
}
.carousel-main svg {
  fill: var(--white);
  width: 9px;
  height: 18px;
}

@supports (object-fit: contain) {
  .carousel-main .carousel-cell .carousel-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .carousel-bg-image {
    display: none;
  }
}
.carousel-nav {
  padding-bottom: 100px;
}
.carousel-nav img, .carousel-nav .carousel-cell {
  width: 150px;
  height: 150;
  display: block;
}

.fancybox-content {
  transition-duration: 0s !important;
}

.fancybox-content {
  max-width: 80vw;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden !important;
}
.fancybox-content .fancybox-image {
  max-width: 70vw;
  max-height: 70vh;
  width: auto !important;
  height: auto !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fancybox-inner:before {
  position: absolute;
  content: "";
  height: 95vh !important;
  transform: translate(-50%, -50%);
  overflow: hidden !important;
  background: white !important;
  width: 95vw !important;
  transform: translate(2.5vw, 2.5vh) !important;
}

.carousel-nav {
  height: 160px;
  width: 100%;
  overflow: hidden;
}
.carousel-nav .flickity-viewport {
  margin: 0 -3px;
}
.carousel-nav .carousel-cell {
  width: 33.3333333333%;
  height: 160px;
}
.carousel-nav .carousel-cell .carousel-cell-inner {
  height: 100%;
  padding: 12px;
  margin: 0 6px;
  background: white;
}
.carousel-nav .carousel-cell .carousel-cell-inner div {
  width: auto;
  height: 160px;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   FORMS
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   CART
*
*   TABLE OF CONTENTS
*   basket slideout
*   shopping cart
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #basket slideout
*   -------------------------------------------------- */
.basket-slideout {
  max-height: 85vh;
  min-height: 360px;
}
.basket-slideout.empty-cart {
  min-height: 0;
}

.cart-table-wrapper {
  overflow-y: auto;
  max-height: calc(85vh - 250px);
  min-height: 110px;
}

.empty-cart .cart-table-wrapper {
  min-height: 0;
}

.cart-bottom {
  position: absolute;
  bottom: 23px;
  right: 23px;
  left: 23px;
}

/** --------------------------------------------------
*   #shopping cart
*   -------------------------------------------------- */
.shopping_cart .grey-text-btw div,
.basket-slideout .grey-text-btw div {
  color: var(--brand-color-light);
}
.shopping_cart #path,
.basket-slideout #path {
  padding-top: 44px;
}
.shopping_cart #content,
.basket-slideout #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.shopping_cart #content,
.basket-slideout #content {
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .shopping_cart #content,
  .basket-slideout #content {
    padding-top: 24px;
    margin-top: 0px;
    padding-bottom: 24px;
  }
}
.shopping_cart h1,
.basket-slideout h1 {
  margin: 0px;
  padding: 40px 0px 25px 0px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .shopping_cart h1,
  .basket-slideout h1 {
    margin-top: 0px;
    padding-top: 0px;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart h1,
  .basket-slideout h1 {
    text-align: center;
  }
}
.shopping_cart table,
.basket-slideout table {
  text-align: left;
  border: 0;
  width: 100%;
}
.shopping_cart table td, .shopping_cart table tr, .shopping_cart table th,
.basket-slideout table td,
.basket-slideout table tr,
.basket-slideout table th {
  border: 0;
}
.shopping_cart table th,
.basket-slideout table th {
  border-bottom: 2px solid var(--brand-color-dark);
  font-family: var(--sans-serif-font);
  text-transform: uppercase;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  padding-bottom: 4px;
}
.shopping_cart table td,
.basket-slideout table td {
  padding: 16px 0px;
}
.shopping_cart table td:first-of-type,
.basket-slideout table td:first-of-type {
  font-family: var(--serif-font);
  font-size: 1.3rem;
  line-height: 2.6rem;
}
.shopping_cart table td:first-of-type a,
.basket-slideout table td:first-of-type a {
  display: block;
  float: left;
  font-family: var(--serif-font);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 2.6rem;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart table td,
  .basket-slideout table td {
    display: block;
    text-align: center;
  }
  .shopping_cart table td .quantitydel,
  .basket-slideout table td .quantitydel {
    margin-left: 20px;
  }
}
.shopping_cart table .basket-item-row + .basket-item-row td,
.basket-slideout table .basket-item-row + .basket-item-row td {
  border-top: 1px solid var(--brand-color-dark);
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart table .basket-item-row + .basket-item-row td,
  .basket-slideout table .basket-item-row + .basket-item-row td {
    border-top: 0px;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart table tr,
  .basket-slideout table tr {
    display: block;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart table .basket-item-row + .basket-item-row,
  .basket-slideout table .basket-item-row + .basket-item-row {
    border-top: 1px solid var(--brand-color-dark);
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart table .basket-header-row,
  .basket-slideout table .basket-header-row {
    display: block;
    border-bottom: 2px solid var(--brand-color-dark);
  }
  .shopping_cart table .basket-header-row th,
  .basket-slideout table .basket-header-row th {
    display: none;
  }
}
.shopping_cart table #input_div,
.basket-slideout table #input_div {
  border: 0;
  border-bottom: 2px solid var(--brand-color-dark);
  width: 64px;
  height: 36px;
  position: relative;
  display: inline-block;
  background: var(--background-color);
  margin-right: 24px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .shopping_cart table #input_div,
  .basket-slideout table #input_div {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }
}
.shopping_cart table #input_div input[type=text],
.basket-slideout table #input_div input[type=text] {
  width: 64px;
  display: block;
  text-align: left;
  height: 36px;
  border: 0;
  border-bottom: 2px solid var(--brand-color-dark);
  padding-left: 12px;
  background: var(--background-color);
}
.shopping_cart table #input_div .input-control,
.basket-slideout table #input_div .input-control {
  width: 20px;
  position: absolute;
  top: 0;
  right: 0;
  height: 36px;
}
.shopping_cart table #input_div .input-control input,
.basket-slideout table #input_div .input-control input {
  display: block;
  width: 100%;
  line-height: 1;
  border: none;
  background: var(--background-color);
  cursor: pointer;
}
.shopping_cart table .price-header,
.basket-slideout table .price-header {
  text-align: left;
}
.shopping_cart table .quantity-header,
.basket-slideout table .quantity-header {
  text-align: center;
}
.shopping_cart table .total-header,
.basket-slideout table .total-header {
  text-align: right;
}
.shopping_cart table .value,
.basket-slideout table .value {
  text-align: right;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart table .value,
  .basket-slideout table .value {
    text-align: center;
  }
}
.shopping_cart table .number,
.basket-slideout table .number {
  text-align: center;
}
.shopping_cart table td:first-of-type a.basket-product,
.basket-slideout table td:first-of-type a.basket-product {
  display: flex;
  flex-flow: row nowrap;
  float: none;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart table td:first-of-type a.basket-product,
  .basket-slideout table td:first-of-type a.basket-product {
    justify-content: center;
    text-align: left;
  }
}
.shopping_cart table td:first-of-type .img-wrapper,
.basket-slideout table td:first-of-type .img-wrapper {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  width: 120px;
  height: 120px;
  margin-right: 20px;
  padding: 5px;
  background-color: var(--white);
}
.shopping_cart table td:first-of-type .img-wrapper img,
.basket-slideout table td:first-of-type .img-wrapper img {
  max-height: 100%;
}
.shopping_cart table td:first-of-type .prod-specs,
.basket-slideout table td:first-of-type .prod-specs {
  flex: 0 0 auto;
}
.shopping_cart table td:first-of-type .prod-ref,
.basket-slideout table td:first-of-type .prod-ref {
  font-size: 1rem;
  font-style: normal;
}
.shopping_cart .amount-in-basket,
.basket-slideout .amount-in-basket {
  margin-bottom: 37px;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .shopping_cart .amount-in-basket,
  .basket-slideout .amount-in-basket {
    text-align: center;
  }
}
.shopping_cart .amount-in-basket p,
.basket-slideout .amount-in-basket p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.shopping_cart #content,
.basket-slideout #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.shopping_cart #content form,
.basket-slideout #content form {
  width: 930px;
  max-width: 100%;
}
.shopping_cart #content form .total-costs-wrapper,
.basket-slideout #content form .total-costs-wrapper {
  position: relative;
  padding-top: 20px;
}
.shopping_cart #content form .total-costs-wrapper:after,
.basket-slideout #content form .total-costs-wrapper:after {
  position: absolute;
  top: 0;
  height: 2px;
  background: var(--brand-color-dark);
  content: "";
  display: block;
  width: 100%;
  left: 0;
}
.shopping_cart #content form .total-costs-wrapper .total-costs div,
.basket-slideout #content form .total-costs-wrapper .total-costs div {
  font-weight: 600;
}
.shopping_cart #content form .total-costs-wrapper > div,
.basket-slideout #content form .total-costs-wrapper > div {
  padding: 15px 0px;
}
.shopping_cart #content form .total-costs-wrapper > div:after,
.basket-slideout #content form .total-costs-wrapper > div:after {
  content: "";
  display: block;
  clear: both;
}
.shopping_cart #content form .total-costs-wrapper > div div:first-of-type,
.basket-slideout #content form .total-costs-wrapper > div div:first-of-type {
  float: left;
}
.shopping_cart #content form .total-costs-wrapper > div div.value,
.basket-slideout #content form .total-costs-wrapper > div div.value {
  float: right;
}
.shopping_cart .shopping-cart-options,
.basket-slideout .shopping-cart-options {
  text-align: right;
  margin-top: 17px;
}
.shopping_cart .shopping-cart-options:after,
.basket-slideout .shopping-cart-options:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .shopping_cart .shopping-cart-options,
  .basket-slideout .shopping-cart-options {
    text-align: center;
  }
}
.shopping_cart .buttonRecalculate,
.basket-slideout .buttonRecalculate {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: all 0.3s;
  color: var(--brand-color-light);
  margin-right: 15px;
  padding: 14px 0px;
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .shopping_cart .buttonRecalculate,
  .basket-slideout .buttonRecalculate {
    margin-right: 0px;
    display: block;
  }
}
.shopping_cart .buttonRecalculate:hover,
.basket-slideout .buttonRecalculate:hover {
  color: var(--brand-color-orange);
}
.shopping_cart .buttonRecalculate:hover svg,
.basket-slideout .buttonRecalculate:hover svg {
  fill: var(--brand-color-orange);
  transform: rotate(-180deg);
}
.shopping_cart .buttonRecalculate svg,
.basket-slideout .buttonRecalculate svg {
  width: 12px;
  height: 12px;
  margin-bottom: 3px;
  transition: color 0.3s, transform 1s;
  fill: var(--brand-color-light);
}
.shopping_cart .buttonCheckout,
.basket-slideout .buttonCheckout {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.shopping_cart .buttonCheckout:hover,
.basket-slideout .buttonCheckout:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   CATEGORY
*
*   TABLE OF CONTENTS
*   category page
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #category page
*   -------------------------------------------------- */
.groep #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.groep #content {
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .groep #content {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.groep #content h1 {
  margin: 0px;
  padding: 40px 0px 25px 0px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .groep #content h1 {
    margin-top: 0px;
  }
}
.groep #content br {
  display: none;
}
.groep #content #groupDesc {
  margin-bottom: 36px;
}
.groep #content #groupDesc p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
  max-width: 100%;
}
.groep #content ul {
  width: 75%;
  display: inline-block;
  column-count: 3;
  list-style-type: none;
  z-index: 3;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .groep #content ul {
    column-count: 2;
    width: 100%;
  }
}
.groep #content ul li {
  display: block;
  width: 100%;
}
.groep #content ul a {
  font-size: 1.3rem;
  font-family: var(--serif-font);
  color: var(--subtext);
  transition: color 0.3s;
  letter-spacing: 0.5px;
  padding: 5px 0px;
  display: inline-block;
  width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 1270px) {
  .groep #content ul a {
    padding: 0px 0px;
  }
  .groep #content ul a span {
    line-height: 28px;
  }
}
.groep #content ul a:hover {
  color: var(--basic-text);
}
.groep #content ul.nocolumn {
  width: 75%;
  display: inline-block;
  column-count: 1;
  list-style-type: none;
  z-index: 1;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .groep #content ul.nocolumn {
    column-count: 1;
    width: 100%;
  }
}
.groep #content .list-wrapper {
  background: white;
  position: relative;
  z-index: 1;
  padding: 36px 0px;
  min-height: 420px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .groep #content .list-wrapper {
    min-height: auto;
  }
}
.groep #content .list-wrapper:before {
  position: absolute;
  width: 100vw;
  height: 100%;
  content: "";
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: white;
  z-index: 1;
}
.groep #content .list-wrapper-header {
  position: relative;
  z-index: 99;
  display: block;
}
.groep #content h3 {
  font-size: 1.3rem;
  color: var(--basic-text);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  font-weight: normal;
  margin-bottom: 18px;
  position: relative;
  z-index: 99;
}
.groep #content h3:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--brand-color-dark);
  content: "";
}
.groep #content div.image-nav-bg {
  display: block;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 246px;
  height: 246px;
}
.groep #content .groupPic {
  width: 24% !important;
  display: inline-block;
  z-index: 3;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .groep #content .groupPic {
    display: none !important;
  }
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   BASIC PAGE
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.pagina #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.pagina #content {
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .pagina #content {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.pagina #content h1 {
  margin: 0px;
  padding: 40px 0px 25px 0px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .pagina #content h1 {
    margin-top: 0px;
  }
}
.pagina #path.breadcrumbs {
  max-width: 100%;
  width: 100%;
}
.pagina #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.pagina #content {
  padding-bottom: 96px;
}
.pagina .blocks + .blocks {
  margin-top: 96px;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .pagina .blocks + .blocks {
    margin-top: 45px;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .pagina .blocks + .blocks {
    margin-top: 25px;
  }
}
.pagina .bestand a {
  transition: color 0.3s;
}
.pagina .bestand svg {
  height: 14px;
  width: auto;
  margin-left: 5px;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.pagina .bestand:hover a {
  color: var(--brand-color-orange);
}
.pagina .bestand:hover svg {
  fill: var(--brand-color-orange);
}
.pagina .blocks:after {
  content: "";
  display: block;
  clear: both;
}
.pagina .blocks .group-img img {
  display: block;
  width: 100%;
  height: auto;
}
.pagina .blocks .group-text h2, .pagina .blocks .group-text h1, .pagina .blocks .group-text h3, .pagina .blocks .group-text h4 {
  display: block;
  margin-bottom: 25px;
  font-size: 3.9rem;
  font-weight: normal;
  line-height: 4.8rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .pagina .blocks .group-text h2, .pagina .blocks .group-text h1, .pagina .blocks .group-text h3, .pagina .blocks .group-text h4 {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}
.pagina .blocks .group-text p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.pagina .link-wrapper {
  margin-top: 35px;
  display: block;
}
.pagina .link-wrapper a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--sans-serif-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-color-dark);
  padding: 3px 0;
  transition: all 0.3s;
  letter-spacing: 0.15rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .pagina .link-wrapper a {
    padding: 0;
    line-height: 1;
  }
}
.pagina .link-wrapper a:hover {
  color: var(--brand-color-orange);
}
.pagina .link-wrapper a:hover svg {
  fill: var(--brand-color-orange);
  margin-left: 8px;
}
.pagina .link-wrapper a svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-dark);
  margin-bottom: 3.5px;
  margin-left: 5px;
  transition: all 0.3s;
}
.pagina .img_left:after {
  content: "";
  display: block;
  clear: both;
}
.pagina .img_left .group-img {
  width: 48%;
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .pagina .img_left .group-img {
    width: 100%;
    float: none;
  }
}
.pagina .img_left .group-text {
  width: 48%;
  float: right;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .pagina .img_left .group-text {
    width: 100%;
    float: none;
    margin-top: 45px;
  }
}
.pagina .img_right .group-img {
  width: 48%;
  float: right;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .pagina .img_right .group-img {
    width: 100%;
    float: none;
  }
}
.pagina .img_right .group-text {
  width: 48%;
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .pagina .img_right .group-text {
    width: 100%;
    float: none;
    margin-top: 45px;
  }
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   SALES
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.search_results .hidden,
.categorie .hidden,
.sales_specials .hidden,
.new_products .hidden,
#searchResults .hidden {
  display: none;
}
.search_results h1,
.categorie h1,
.sales_specials h1,
.new_products h1,
#searchResults h1 {
  margin: 0px;
  line-height: 4.8rem;
  padding: 35px 0px 35px 0px;
}
.search_results #content,
.categorie #content,
.sales_specials #content,
.new_products #content,
#searchResults #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.search_results #content,
.categorie #content,
.sales_specials #content,
.new_products #content,
#searchResults #content {
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .search_results #content,
  .categorie #content,
  .sales_specials #content,
  .new_products #content,
  #searchResults #content {
    padding-bottom: 64px;
  }
}
.search_results #holder .select2-container,
.categorie #holder .select2-container,
.sales_specials #holder .select2-container,
.new_products #holder .select2-container,
#searchResults #holder .select2-container {
  background: var(--white);
  max-width: 100% !important;
}
.search_results #holder .search-input-wrapper:first-of-type .select2-container,
.categorie #holder .search-input-wrapper:first-of-type .select2-container,
.sales_specials #holder .search-input-wrapper:first-of-type .select2-container,
.new_products #holder .search-input-wrapper:first-of-type .select2-container,
#searchResults #holder .search-input-wrapper:first-of-type .select2-container {
  background: var(--white);
  max-width: 100% !important;
  min-width: 160px !important;
}
.search_results .productlist, .search_results #productList,
.categorie .productlist,
.categorie #productList,
.sales_specials .productlist,
.sales_specials #productList,
.new_products .productlist,
.new_products #productList,
#searchResults .productlist,
#searchResults #productList {
  padding-top: 45px;
}
.search_results .search-result-header-wrapper,
.categorie .search-result-header-wrapper,
.sales_specials .search-result-header-wrapper,
.new_products .search-result-header-wrapper,
#searchResults .search-result-header-wrapper {
  margin-bottom: 48px;
  font-family: var(--serif-font);
  font-size: 1.3rem;
  line-height: 3.2rem;
  letter-spacing: 0.05rem;
}
.search_results .search-input-wrapper,
.categorie .search-input-wrapper,
.sales_specials .search-input-wrapper,
.new_products .search-input-wrapper,
#searchResults .search-input-wrapper {
  display: inline-block;
  margin-right: 25px;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .search_results .search-input-wrapper,
  .categorie .search-input-wrapper,
  .sales_specials .search-input-wrapper,
  .new_products .search-input-wrapper,
  #searchResults .search-input-wrapper {
    display: block;
    margin-bottom: 24px;
  }
}
.search_results .search-input-wrapper .search-input-label span,
.categorie .search-input-wrapper .search-input-label span,
.sales_specials .search-input-wrapper .search-input-label span,
.new_products .search-input-wrapper .search-input-label span,
#searchResults .search-input-wrapper .search-input-label span {
  font-family: var(--sans-serif-font);
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 6px;
}
.search_results #sortform, .search_results .sortform,
.categorie #sortform,
.categorie .sortform,
.sales_specials #sortform,
.sales_specials .sortform,
.new_products #sortform,
.new_products .sortform,
#searchResults #sortform,
#searchResults .sortform {
  background: var(--white);
  padding: 25px 0px 25px 0px;
  position: relative;
  z-index: 1;
}
.search_results #sortform:after, .search_results .sortform:after,
.categorie #sortform:after,
.categorie .sortform:after,
.sales_specials #sortform:after,
.sales_specials .sortform:after,
.new_products #sortform:after,
.new_products .sortform:after,
#searchResults #sortform:after,
#searchResults .sortform:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  display: block;
  background: var(--white);
  top: 0;
  left: 0;
  z-index: -1;
}
.search_results #categoryDesc,
.categorie #categoryDesc,
.sales_specials #categoryDesc,
.new_products #categoryDesc,
#searchResults #categoryDesc {
  padding-top: 35px;
  margin-bottom: 40px;
  display: flex;
  flex-flow: row wrap;
}
.search_results #categoryDesc .group-left,
.categorie #categoryDesc .group-left,
.sales_specials #categoryDesc .group-left,
.new_products #categoryDesc .group-left,
#searchResults #categoryDesc .group-left {
  padding-right: 50px;
  flex: 1 0 50%;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .search_results #categoryDesc .group-left,
  .categorie #categoryDesc .group-left,
  .sales_specials #categoryDesc .group-left,
  .new_products #categoryDesc .group-left,
  #searchResults #categoryDesc .group-left {
    width: 100%;
    float: none;
    margin-bottom: 25px;
    flex: 1 0 100%;
  }
}
.search_results #categoryDesc .group-left h1,
.categorie #categoryDesc .group-left h1,
.sales_specials #categoryDesc .group-left h1,
.new_products #categoryDesc .group-left h1,
#searchResults #categoryDesc .group-left h1 {
  padding-top: 0;
}
.search_results #categoryDesc .group-left p,
.categorie #categoryDesc .group-left p,
.sales_specials #categoryDesc .group-left p,
.new_products #categoryDesc .group-left p,
#searchResults #categoryDesc .group-left p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.search_results #categoryDesc .group-right,
.categorie #categoryDesc .group-right,
.sales_specials #categoryDesc .group-right,
.new_products #categoryDesc .group-right,
#searchResults #categoryDesc .group-right {
  text-align: center;
  padding-right: 50px;
  flex: 0 1 50%;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .search_results #categoryDesc .group-right,
  .categorie #categoryDesc .group-right,
  .sales_specials #categoryDesc .group-right,
  .new_products #categoryDesc .group-right,
  #searchResults #categoryDesc .group-right {
    width: 100%;
    float: none;
    margin-bottom: 25px;
    flex: 0 1 100%;
  }
}
.search_results #categoryDesc .group-right img,
.categorie #categoryDesc .group-right img,
.sales_specials #categoryDesc .group-right img,
.new_products #categoryDesc .group-right img,
#searchResults #categoryDesc .group-right img {
  display: inline-block;
  max-height: 350px;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   ADVANCED SEARCH
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.advancedsearch #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.advancedsearch #content {
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .advancedsearch #content h1 {
    padding-top: 25px;
    margin-top: 0px;
  }
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .advancedsearch #content {
    padding-bottom: 24px;
  }
}
.advancedsearch #content > p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.advancedsearch #content .submit-button {
  margin-top: 24px;
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.advancedsearch #content .submit-button:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.advancedsearch #content .advanced-search-row-wrapper {
  margin-bottom: 24px;
}
.advancedsearch #content .advanced-search-row-wrapper > div:nth-of-type(2n) {
  margin-left: 24px;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .advancedsearch #content .advanced-search-row-wrapper > div:nth-of-type(2n) {
    margin-left: 0px;
    margin-top: 24px;
  }
}
.advancedsearch #content .select2-container {
  width: 294px !important;
  max-width: 294px !important;
  padding: 0px !important;
  transition: padding 0.3s;
}
.advancedsearch #content .select2-container span {
  color: #60767C !important;
}
.advancedsearch #content .select2-container.select2-container--open {
  padding: 0 6px !important;
}
.advancedsearch #content .select2-container--default .select2-selection--single {
  border-bottom: 2px solid var(--brand-color-dark);
}
.advancedsearch #content .select2-selection {
  background-color: var(--background-color);
}
.advancedsearch #content .advanced-search-group {
  width: 294px;
  max-width: 100%;
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .advancedsearch #content .advanced-search-group {
    display: block;
  }
}
.advancedsearch #content form {
  margin-top: 45px;
}
.advancedsearch #content input {
  border: none;
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--brand-color-dark);
  outline: none;
  margin-bottom: 0;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  background: transparent;
  position: relative;
  color: #60767C;
}
.advancedsearch #content .input-wrapper {
  position: relative;
}
.advancedsearch #content span.value-unit {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: var(--serif-font);
  font-size: 1.5rem;
  text-transform: lowercase;
  color: #60767C;
}
.advancedsearch #content label {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  padding-bottom: 8px;
  color: var(--brand-color-dark);
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   TESTIMONIALS
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.testimonials #content,
.return_request #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.testimonials #content,
.return_request #content {
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .testimonials #content,
  .return_request #content {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.testimonials h1,
.return_request h1 {
  margin: 0px;
  padding: 40px 0px 25px 0px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .testimonials h1,
  .return_request h1 {
    margin-top: 0px;
  }
}
.testimonials .test-header-wrapper,
.return_request .test-header-wrapper {
  position: relative;
}
.testimonials .test-header-wrapper div,
.return_request .test-header-wrapper div {
  position: absolute;
  top: 40px;
  right: 0;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .testimonials .test-header-wrapper div,
  .return_request .test-header-wrapper div {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 45px;
  }
}
.testimonials .test-header-wrapper + p,
.return_request .test-header-wrapper + p {
  display: block;
  width: 600px;
  max-width: 100%;
  padding: 30px 0;
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.testimonials .date,
.return_request .date {
  font-size: 1.2rem;
  color: var(--brand-color-orange);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  font-weight: normal;
  margin-bottom: 5px;
  letter-spacing: 0.15rem;
}
.testimonials .date:after,
.return_request .date:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--brand-color-orange);
  content: "";
}
.testimonials .name,
.return_request .name {
  color: var(--brand-color-orange);
  font-size: 1.3rem;
  line-height: 2.4rem;
  display: block;
}
.testimonials .submit-testimonial-wrapper a,
.return_request .submit-testimonial-wrapper a {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.testimonials .submit-testimonial-wrapper a:hover,
.return_request .submit-testimonial-wrapper a:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.testimonials .group-desc,
.return_request .group-desc {
  position: relative;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .testimonials .group-desc,
  .return_request .group-desc {
    position: relative;
    top: auto;
    transform: translateY(0%);
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
}
.testimonials #content > .testimonial,
.return_request #content > .testimonial {
  margin-bottom: 24px;
  position: relative;
}
.testimonials #content > .testimonial:after,
.return_request #content > .testimonial:after {
  content: "";
  display: block;
  clear: both;
}
.testimonials #content > .testimonial p,
.return_request #content > .testimonial p {
  background: white;
  padding: 12px 24px;
  font-family: var(--serif-font);
  font-size: 1.5rem;
  line-height: 3.6rem;
  color: var(--brand-color-dark);
  font-style: italic;
  font-weight: 600;
  display: inline-block;
  width: 54%;
  position: relative;
}
.testimonials .testimonial.odd p,
.return_request .testimonial.odd p {
  float: left;
}
.testimonials .testimonial.odd .group-desc,
.return_request .testimonial.odd .group-desc {
  text-align: left;
  margin-left: 24px;
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .testimonials .testimonial.odd .group-desc,
  .return_request .testimonial.odd .group-desc {
    text-align: center;
    margin-left: 0px;
  }
}
.testimonials .testimonial.odd p:after,
.return_request .testimonial.odd p:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent white;
}
.testimonials .testimonial.even p,
.return_request .testimonial.even p {
  float: right;
}
.testimonials .testimonial.even .group-desc,
.return_request .testimonial.even .group-desc {
  float: right;
  text-align: right;
  margin-right: 24px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .testimonials .testimonial.even .group-desc,
  .return_request .testimonial.even .group-desc {
    text-align: center;
    margin-right: 0px;
  }
}
.testimonials .testimonial.even p:after,
.return_request .testimonial.even p:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 12px 0;
  border-color: transparent white transparent transparent;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .testimonials .testimonial.even p, .testimonials .testimonial.odd p,
  .return_request .testimonial.even p,
  .return_request .testimonial.odd p {
    width: 100%;
  }
  .testimonials .testimonial.even p:after, .testimonials .testimonial.odd p:after,
  .return_request .testimonial.even p:after,
  .return_request .testimonial.odd p:after {
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: -12px;
    top: auto;
    right: auto;
    border-style: solid;
    border-width: 12px 12px 0 12px;
    border-color: white transparent transparent transparent;
  }
}
.testimonials #testimonialform, .testimonials #returnrequestform,
.return_request #testimonialform,
.return_request #returnrequestform {
  width: 920px;
  max-width: 100%;
}
.testimonials #testimonialform input, .testimonials #returnrequestform input,
.return_request #testimonialform input,
.return_request #returnrequestform input {
  border: none;
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--brand-color-dark);
  outline: none;
  margin-bottom: 12px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  background: transparent;
  position: relative;
  color: #60767C;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .testimonials #testimonialform input, .testimonials #returnrequestform input,
  .return_request #testimonialform input,
  .return_request #returnrequestform input {
    width: 375px;
    max-width: 100%;
  }
}
.testimonials #testimonialform .message-block, .testimonials #returnrequestform .message-block,
.return_request #testimonialform .message-block,
.return_request #returnrequestform .message-block {
  margin-bottom: 10px;
}
.testimonials #testimonialform .input-wrapper, .testimonials #returnrequestform .input-wrapper,
.return_request #testimonialform .input-wrapper,
.return_request #returnrequestform .input-wrapper {
  position: relative;
}
.testimonials #testimonialform label, .testimonials #returnrequestform label,
.return_request #testimonialform label,
.return_request #returnrequestform label {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  padding-bottom: 8px;
  color: var(--brand-color-dark);
  display: block;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .testimonials #testimonialform label, .testimonials #returnrequestform label,
  .return_request #testimonialform label,
  .return_request #returnrequestform label {
    width: 375px;
    max-width: 100%;
    display: block;
  }
}
.testimonials #testimonialform .checkout-row-wrapper, .testimonials #returnrequestform .checkout-row-wrapper,
.return_request #testimonialform .checkout-row-wrapper,
.return_request #returnrequestform .checkout-row-wrapper {
  margin-bottom: 8px;
}
.testimonials #testimonialform .checkout-row-wrapper > div:nth-of-type(2n), .testimonials #returnrequestform .checkout-row-wrapper > div:nth-of-type(2n),
.return_request #testimonialform .checkout-row-wrapper > div:nth-of-type(2n),
.return_request #returnrequestform .checkout-row-wrapper > div:nth-of-type(2n) {
  margin-left: 24px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .testimonials #testimonialform .checkout-row-wrapper > div:nth-of-type(2n), .testimonials #returnrequestform .checkout-row-wrapper > div:nth-of-type(2n),
  .return_request #testimonialform .checkout-row-wrapper > div:nth-of-type(2n),
  .return_request #returnrequestform .checkout-row-wrapper > div:nth-of-type(2n) {
    margin-left: 0px;
  }
}
.testimonials #testimonialform .checkout-form-group, .testimonials #returnrequestform .checkout-form-group,
.return_request #testimonialform .checkout-form-group,
.return_request #returnrequestform .checkout-form-group {
  width: 294px;
  max-width: 100%;
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .testimonials #testimonialform .checkout-form-group, .testimonials #returnrequestform .checkout-form-group,
  .return_request #testimonialform .checkout-form-group,
  .return_request #returnrequestform .checkout-form-group {
    width: 375px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .testimonials #testimonialform .checkout-form-group, .testimonials #returnrequestform .checkout-form-group,
  .return_request #testimonialform .checkout-form-group,
  .return_request #returnrequestform .checkout-form-group {
    display: block;
  }
}
.testimonials #testimonialform .checkout-form-group.textarea, .testimonials #returnrequestform .checkout-form-group.textarea,
.return_request #testimonialform .checkout-form-group.textarea,
.return_request #returnrequestform .checkout-form-group.textarea {
  width: 100%;
}
.testimonials #testimonialform .select2-container, .testimonials #returnrequestform .select2-container,
.return_request #testimonialform .select2-container,
.return_request #returnrequestform .select2-container {
  width: 294px !important;
  max-width: 294px !important;
  padding: 0px !important;
  transition: padding 0.3s;
  margin-bottom: 10px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .testimonials #testimonialform .select2-container, .testimonials #returnrequestform .select2-container,
  .return_request #testimonialform .select2-container,
  .return_request #returnrequestform .select2-container {
    width: 375px !important;
    max-width: 100% !important;
  }
}
.testimonials #testimonialform .select2-container span, .testimonials #returnrequestform .select2-container span,
.return_request #testimonialform .select2-container span,
.return_request #returnrequestform .select2-container span {
  color: #60767C !important;
  font-size: 1.5rem;
}
.testimonials #testimonialform .select2-container.select2-container--open, .testimonials #returnrequestform .select2-container.select2-container--open,
.return_request #testimonialform .select2-container.select2-container--open,
.return_request #returnrequestform .select2-container.select2-container--open {
  padding: 0 6px !important;
}
.testimonials #testimonialform .select2-container--default .select2-selection--single, .testimonials #returnrequestform .select2-container--default .select2-selection--single,
.return_request #testimonialform .select2-container--default .select2-selection--single,
.return_request #returnrequestform .select2-container--default .select2-selection--single {
  border-bottom: 2px solid var(--brand-color-dark);
}
.testimonials #testimonialform .select2-selection, .testimonials #returnrequestform .select2-selection,
.return_request #testimonialform .select2-selection,
.return_request #returnrequestform .select2-selection {
  background-color: var(--background-color);
}
.testimonials #testimonialform textarea, .testimonials #returnrequestform textarea,
.return_request #testimonialform textarea,
.return_request #returnrequestform textarea {
  width: 615px;
  max-width: 100%;
  column-span: 100;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--brand-color-dark);
  min-height: 160px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  color: #60767C;
}
.testimonials #testimonialform .checkout-form-group.max-width, .testimonials #returnrequestform .checkout-form-group.max-width,
.return_request #testimonialform .checkout-form-group.max-width,
.return_request #returnrequestform .checkout-form-group.max-width {
  width: 100%;
}
.testimonials #testimonialform .radio-wrapper, .testimonials #returnrequestform .radio-wrapper,
.return_request #testimonialform .radio-wrapper,
.return_request #returnrequestform .radio-wrapper {
  width: 100%;
}
.testimonials #testimonialform .radio-wrapper + .radio-wrapper, .testimonials #returnrequestform .radio-wrapper + .radio-wrapper,
.return_request #testimonialform .radio-wrapper + .radio-wrapper,
.return_request #returnrequestform .radio-wrapper + .radio-wrapper {
  margin-top: 10px;
}
.testimonials #testimonialform .radio-wrapper label, .testimonials #returnrequestform .radio-wrapper label,
.return_request #testimonialform .radio-wrapper label,
.return_request #returnrequestform .radio-wrapper label {
  padding-bottom: 0px;
}
.testimonials #testimonialform .submit-testimonial, .testimonials #returnrequestform .submit-testimonial,
.return_request #testimonialform .submit-testimonial,
.return_request #returnrequestform .submit-testimonial {
  text-align: left;
  position: relative;
  margin-top: 23px;
}
.testimonials #testimonialform .submit-testimonial a, .testimonials #testimonialform .submit-testimonial input#buttonSubmitTestimonial, .testimonials #testimonialform .submit-testimonial input#buttonSubmitReturnRequest, .testimonials #returnrequestform .submit-testimonial a, .testimonials #returnrequestform .submit-testimonial input#buttonSubmitTestimonial, .testimonials #returnrequestform .submit-testimonial input#buttonSubmitReturnRequest,
.return_request #testimonialform .submit-testimonial a,
.return_request #testimonialform .submit-testimonial input#buttonSubmitTestimonial,
.return_request #testimonialform .submit-testimonial input#buttonSubmitReturnRequest,
.return_request #returnrequestform .submit-testimonial a,
.return_request #returnrequestform .submit-testimonial input#buttonSubmitTestimonial,
.return_request #returnrequestform .submit-testimonial input#buttonSubmitReturnRequest {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.testimonials #testimonialform .submit-testimonial a:hover, .testimonials #testimonialform .submit-testimonial input#buttonSubmitTestimonial:hover, .testimonials #testimonialform .submit-testimonial input#buttonSubmitReturnRequest:hover, .testimonials #returnrequestform .submit-testimonial a:hover, .testimonials #returnrequestform .submit-testimonial input#buttonSubmitTestimonial:hover, .testimonials #returnrequestform .submit-testimonial input#buttonSubmitReturnRequest:hover,
.return_request #testimonialform .submit-testimonial a:hover,
.return_request #testimonialform .submit-testimonial input#buttonSubmitTestimonial:hover,
.return_request #testimonialform .submit-testimonial input#buttonSubmitReturnRequest:hover,
.return_request #returnrequestform .submit-testimonial a:hover,
.return_request #returnrequestform .submit-testimonial input#buttonSubmitTestimonial:hover,
.return_request #returnrequestform .submit-testimonial input#buttonSubmitReturnRequest:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.testimonials #testimonialform .submit-testimonial a, .testimonials #testimonialform .submit-testimonial input#buttonSubmitTestimonial, .testimonials #testimonialform .submit-testimonial input#buttonSubmitReturnRequest, .testimonials #returnrequestform .submit-testimonial a, .testimonials #returnrequestform .submit-testimonial input#buttonSubmitTestimonial, .testimonials #returnrequestform .submit-testimonial input#buttonSubmitReturnRequest,
.return_request #testimonialform .submit-testimonial a,
.return_request #testimonialform .submit-testimonial input#buttonSubmitTestimonial,
.return_request #testimonialform .submit-testimonial input#buttonSubmitReturnRequest,
.return_request #returnrequestform .submit-testimonial a,
.return_request #returnrequestform .submit-testimonial input#buttonSubmitTestimonial,
.return_request #returnrequestform .submit-testimonial input#buttonSubmitReturnRequest {
  cursor: pointer;
  width: auto;
}
.testimonials h1 + p,
.return_request h1 + p {
  display: block;
  width: 600px;
  max-width: 100%;
  padding: 30px 0;
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   CONTACT
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.contact #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.contact #content {
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .contact #content {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.contact #content h1 {
  margin: 0px;
  padding: 40px 0px 25px 0px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .contact #content h1 {
    margin-top: 0px;
  }
}
.contact #content .contact-group-wrapper:after {
  content: "";
  display: block;
  clear: both;
}
.contact #content .group-left {
  width: calc(100% - 620px);
  float: left;
  padding-right: 70px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .contact #content .group-left {
    width: 100%;
    float: none;
    padding-right: 0px;
    max-width: 620px;
  }
}
.contact #content .group-right {
  width: 620px;
  float: left;
  max-width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .contact #content .group-right {
    width: 100%;
    float: none;
  }
}

@media only screen and (min-width: 0) and (max-width: 980px) {
  .contact #content .group-left {
    margin-bottom: 45px;
  }
}
.contact #content .group-left p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.contact #content .group-left #googlemap {
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin-top: 35px;
  text-align: center;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .contact #content .group-left #googlemap {
    height: 350px;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .contact #content .group-left #googlemap {
    height: 250px;
  }
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .contact #content .group-left #googlemap img {
    height: 350px;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .contact #content .group-left #googlemap img {
    max-height: 250px;
  }
}

.contact #content input {
  border: none;
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--brand-color-dark);
  outline: none;
  margin-bottom: 12px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  background: transparent;
  position: relative;
  color: #60767C;
}
.contact #content .input-wrapper {
  position: relative;
}
.contact #content label {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  padding-bottom: 8px;
  color: var(--brand-color-dark);
}
.contact #content .contact-row-wrapper {
  margin-bottom: 8px;
}
.contact #content .contact-row-wrapper > div:nth-of-type(2n) {
  margin-left: 24px;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .contact #content .contact-row-wrapper > div:nth-of-type(2n) {
    margin-left: 0px;
  }
}
.contact #content .contact-form-group {
  width: 294px;
  max-width: 100%;
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .contact #content .contact-form-group {
    display: block;
  }
}
.contact #content .contact-form-group.textarea {
  width: 100%;
}
.contact #content .select2-container {
  width: 294px !important;
  max-width: 294px !important;
  padding: 0px !important;
  transition: padding 0.3s;
}
.contact #content .select2-container span {
  color: #60767C !important;
  font-size: 1.5rem;
}
.contact #content .select2-container.select2-container--open {
  padding: 0 6px !important;
}
.contact #content .select2-container--default .select2-selection--single {
  border-bottom: 2px solid var(--brand-color-dark);
}
.contact #content .select2-selection {
  background-color: var(--background-color);
}
.contact #content #buttonSubmitContact {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.contact #content #buttonSubmitContact:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.contact #content #buttonSubmitContact {
  cursor: pointer;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .contact #content #buttonSubmitContact {
    min-width: 20px;
  }
}
.contact #content textarea {
  width: 100%;
  column-span: 100;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--brand-color-dark);
  min-height: 160px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  color: #60767C;
}
.contact #content form {
  max-width: 620px;
}
.contact #content .form-bottom-wrapper {
  padding-top: 8px;
}
.contact #content .form-bottom-wrapper:after {
  content: "";
  display: block;
  clear: both;
}
.contact #content .form-bottom-wrapper > div {
  width: 50%;
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .contact #content .form-bottom-wrapper > div {
    width: 100%;
    float: none;
  }
}
.contact #content .form-bottom-wrapper .required-desc span {
  color: var(--subtext);
  font-size: 1.3rem;
  line-height: 4.9rem;
}
.contact #content .form-bottom-wrapper .submit-form-wrapper a {
  width: 100%;
  max-width: 100%;
  min-width: 20px;
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   components
*   MODAL
*
*   TABLE OF CONTENTS
*   region modal
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout
*   FORMS
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   CHECKOUT
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
.checkout .grey-text-btw div {
  color: var(--brand-color-light);
}
.checkout #holder > #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
.checkout #holder > #content {
  padding-top: 40px;
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .checkout #holder > #content {
    padding-top: 24px;
    margin-top: 0px;
    padding-bottom: 24px;
  }
}
.checkout #path {
  display: none;
}
.checkout {
  /* steps */
  /* ***** */
}
.checkout ul#steps {
  list-style-type: none;
  margin-bottom: 38px;
}
.checkout ul#steps:after {
  content: "";
  display: block;
  clear: both;
}
.checkout ul#steps li {
  width: 33.3333333333%;
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout ul#steps li {
    width: 100%;
    text-align: center;
    float: none;
    display: none;
  }
}
.checkout ul#steps li.active {
  display: block;
}
.checkout ul#steps li.active .step-header {
  color: var(--brand-color-dark);
}
.checkout ul#steps li.active .step-header:after {
  background-color: var(--brand-color-dark);
}
.checkout ul#steps li.active .step-title {
  color: var(--brand-color-orange);
}
.checkout ul#steps li .step-header {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.175rem;
  color: var(--brand-color-light);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 23px;
}
.checkout ul#steps li .step-header:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--brand-color-light);
  content: "";
}
.checkout ul#steps li .step-title {
  font-size: 2.6rem;
  letter-spacing: 0.05rem;
  font-family: var(--serif-font);
  color: var(--brand-color-light);
}
.checkout {
  /* header */
  /* ****** */
}
.checkout #content > p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
  width: 612px;
  max-width: 100%;
  display: block;
  margin-bottom: 39px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #content > p {
    text-align: center;
  }
}
.checkout {
  /* buttons */
  /* ******* */
}
.checkout #buttons {
  padding-top: 30px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #buttons .previous-button-wrapper {
    text-align: center;
  }
}
.checkout #buttons .previous-button-wrapper a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--sans-serif-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  padding: 3px 0;
  transition: all 0.3s;
  letter-spacing: 0.15rem;
}
@media only screen and (min-width: 0) and (max-width: 670px) {
  .checkout #buttons .previous-button-wrapper a {
    padding: 0;
    line-height: 1;
  }
}
.checkout #buttons .previous-button-wrapper a:hover {
  color: var(--brand-color-dark);
}
.checkout #buttons .previous-button-wrapper a:hover svg {
  fill: var(--brand-color-dark);
  margin-left: 8px;
}
.checkout #buttons .previous-button-wrapper a svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-orange);
  margin-bottom: 3.5px;
  margin-left: 5px;
  transition: all 0.3s;
}
.checkout #buttons .previous-button-wrapper a {
  display: inline-block;
  float: left;
  top: 12px;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #buttons .previous-button-wrapper a {
    float: none;
    text-align: center;
  }
}
.checkout #buttons .previous-button-wrapper a:hover {
  color: var(--brand-color-dark);
}
.checkout #buttons .previous-button-wrapper a:hover svg {
  fill: var(--brand-color-dark);
  margin-left: 0px;
  margin-right: 8px;
}
.checkout #buttons .previous-button-wrapper a svg {
  width: 5px;
  height: 12px;
  fill: var(--brand-color-orange);
  margin-bottom: 3.5px;
  margin-left: 0px;
  transition: all 0.3s;
  margin-right: 6px;
}
.checkout #buttons .continue-button-wrapper {
  text-align: right;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #buttons .continue-button-wrapper {
    text-align: center;
    margin-top: 30px;
  }
}
.checkout #buttons .continue-button-wrapper a, .checkout #buttons .continue-button-wrapper input {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--brand-color-orange);
  border: 2px solid var(--brand-color-orange);
  padding: 12px 20px;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}
.checkout #buttons .continue-button-wrapper a:hover, .checkout #buttons .continue-button-wrapper input:hover {
  background: var(--brand-color-orange);
  color: var(--white);
}
.checkout #buttons .continue-button-wrapper a, .checkout #buttons .continue-button-wrapper input {
  cursor: pointer;
  width: auto;
}
.checkout {
  /* form */
  /* **** */
}
.checkout #content > form {
  width: 920px;
  max-width: 100%;
}
.checkout #content > form input {
  border: none;
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--brand-color-dark);
  outline: none;
  margin-bottom: 12px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  background: transparent;
  position: relative;
  color: #60767C;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #content > form input {
    width: 375px;
    max-width: 100%;
  }
}
.checkout #content > form .input-wrapper {
  position: relative;
}
.checkout #content > form label {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  padding-bottom: 8px;
  color: var(--brand-color-dark);
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #content > form label {
    width: 375px;
    max-width: 100%;
    display: block;
  }
}
.checkout #content > form .checkout-row-wrapper {
  margin-bottom: 8px;
}
.checkout #content > form .checkout-row-wrapper > div:nth-of-type(2n) {
  margin-left: 24px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #content > form .checkout-row-wrapper > div:nth-of-type(2n) {
    margin-left: 0px;
  }
}
.checkout #content > form .checkout-form-group {
  width: 294px;
  max-width: 100%;
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #content > form .checkout-form-group {
    width: 375px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 0) and (max-width: 750px) {
  .checkout #content > form .checkout-form-group {
    display: block;
  }
}
.checkout #content > form .checkout-form-group.textarea {
  width: 100%;
}
.checkout #content > form .select2-container {
  width: 294px !important;
  max-width: 294px !important;
  padding: 0px !important;
  transition: padding 0.3s;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #content > form .select2-container {
    width: 375px !important;
    max-width: 100% !important;
  }
}
.checkout #content > form .select2-container span {
  color: #60767C !important;
  font-size: 1.5rem;
}
.checkout #content > form .select2-container.select2-container--open {
  padding: 0 6px !important;
}
.checkout #content > form .select2-container--default .select2-selection--single {
  border-bottom: 2px solid var(--brand-color-dark);
}
.checkout #content > form .select2-selection {
  background-color: var(--background-color);
}
.checkout #content > form textarea {
  width: 615px;
  max-width: 100%;
  column-span: 100;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--brand-color-dark);
  min-height: 160px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  color: #60767C;
}
.checkout #content > form .checkout-form-group.max-width {
  width: 100%;
}
.checkout #content > form .radio-wrapper {
  width: 100%;
}
.checkout #content > form .radio-wrapper + .radio-wrapper {
  margin-top: 10px;
}
.checkout #content > form .radio-wrapper label {
  padding-bottom: 0px;
}
.checkout {
  /* step 1 cart */
  /* *********** */
}
.checkout #step1 {
  width: 664px !important;
  max-width: 100%;
}
.checkout #step1 .radio-buttons-wrapper {
  margin-top: 24px;
}
.checkout #step1 .warning-text {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
  width: 600px;
  max-width: 100%;
  display: block;
  margin-top: 25px;
}
.checkout #step1 .warning-text br {
  display: none;
}
.checkout #step1 .value > span {
  border: none;
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--brand-color-dark);
  outline: none;
  margin-bottom: 12px;
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 2.8rem;
  background: transparent;
  position: relative;
  color: #60767C;
  cursor: default;
}
.checkout #step1 .message-block {
  margin-top: 25px;
}
.checkout #step1 #shippingfields {
  margin-top: 25px;
  background: var(--white);
  position: relative;
  padding: 24px;
}
.checkout #step1 #shippingfields:after {
  left: 100px;
  top: -12px;
  right: auto;
  bottom: auto;
  width: 0;
  content: "";
  position: absolute;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent white transparent;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #step1 #shippingfields:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.checkout #step1 #shippingfields small {
  display: none;
}
.checkout #step1 #shippingfields .select2-selection {
  background: var(--white);
}
.checkout #step1 #shippingfields .select2-selection .select2-selection--single {
  background: var(--white);
}
.checkout #step1 #buttons {
  width: 615px;
  max-width: 100%;
}
.checkout .radio-button-title {
  margin-bottom: 8px;
}
.checkout .radio-button-title span {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  padding-bottom: 8px;
  color: var(--brand-color-dark);
}
.checkout .radio-wrapper input {
  display: none !important;
}
.checkout {
  /* step 2 cart */
  /* *********** */
}
.checkout #cart {
  text-align: left;
  border: 0;
  width: 100%;
}
.checkout #cart td, .checkout #cart tr, .checkout #cart th {
  border: 0;
}
.checkout #cart th {
  border-bottom: 2px solid var(--brand-color-dark);
  font-family: var(--sans-serif-font);
  text-transform: uppercase;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  padding-bottom: 4px;
}
.checkout #cart td {
  padding: 16px 0px;
}
.checkout #cart td:first-of-type {
  font-family: var(--serif-font);
  font-size: 1.3rem;
  line-height: 2.6rem;
}
.checkout #cart td:first-of-type a {
  display: block;
  float: left;
  font-family: var(--serif-font);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 2.6rem;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .checkout #cart td {
    display: block;
    text-align: center;
  }
  .checkout #cart td .quantitydel {
    margin-left: 20px;
  }
}
.checkout #cart .basket-item-row + .basket-item-row td {
  border-top: 1px solid var(--brand-color-dark);
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .checkout #cart .basket-item-row + .basket-item-row td {
    border-top: 0px;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .checkout #cart tr {
    display: block;
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .checkout #cart .basket-item-row + .basket-item-row {
    border-top: 1px solid var(--brand-color-dark);
  }
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .checkout #cart .basket-header-row {
    display: block;
    border-bottom: 2px solid var(--brand-color-dark);
  }
  .checkout #cart .basket-header-row th {
    display: none;
  }
}
.checkout #cart #input_div {
  border: 0;
  border-bottom: 2px solid var(--brand-color-dark);
  width: 64px;
  height: 36px;
  position: relative;
  display: inline-block;
  background: var(--background-color);
  margin-right: 24px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  .checkout #cart #input_div {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }
}
.checkout #cart #input_div input[type=text] {
  width: 64px;
  display: block;
  text-align: left;
  height: 36px;
  border: 0;
  border-bottom: 2px solid var(--brand-color-dark);
  padding-left: 12px;
  background: var(--background-color);
}
.checkout #cart #input_div .input-control {
  width: 20px;
  position: absolute;
  top: 0;
  right: 0;
  height: 36px;
}
.checkout #cart #input_div .input-control input {
  display: block;
  width: 100%;
  line-height: 1;
  border: none;
  background: var(--background-color);
  cursor: pointer;
}
.checkout #cart .price-header {
  text-align: left;
}
.checkout #cart .quantity-header {
  text-align: center;
}
.checkout #cart .total-header {
  text-align: right;
}
.checkout #cart .value {
  text-align: right;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .checkout #cart .value {
    text-align: center;
  }
}
.checkout #cart .number {
  text-align: center;
}
.checkout #cart td:first-of-type a.basket-product {
  display: flex;
  flex-flow: row nowrap;
  float: none;
}
@media only screen and (min-width: 0) and (max-width: 568px) {
  .checkout #cart td:first-of-type a.basket-product {
    justify-content: center;
    text-align: left;
  }
}
.checkout #cart td:first-of-type .img-wrapper {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  width: 120px;
  height: 120px;
  margin-right: 20px;
  padding: 5px;
  background-color: var(--white);
}
.checkout #cart td:first-of-type .img-wrapper img {
  max-height: 100%;
}
.checkout #cart td:first-of-type .prod-specs {
  flex: 0 0 auto;
}
.checkout #cart td:first-of-type .prod-ref {
  font-size: 1rem;
  font-style: normal;
}
.checkout .amount-in-basket {
  margin-bottom: 37px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout .amount-in-basket {
    text-align: center;
    display: block;
  }
}
.checkout .amount-in-basket p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.checkout .total-costs-wrapper {
  position: relative;
  padding-top: 20px;
}
.checkout .total-costs-wrapper:after {
  position: absolute;
  top: 0;
  height: 2px;
  background: var(--brand-color-dark);
  content: "";
  display: block;
  width: 100%;
  left: 0;
}
.checkout .total-costs-wrapper .total-costs {
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout .total-costs-wrapper .total-costs {
    padding-bottom: 50px;
  }
}
.checkout .total-costs-wrapper .total-costs div {
  font-weight: 600;
}
.checkout .total-costs-wrapper > div {
  padding: 15px 0px;
}
.checkout .total-costs-wrapper > div:after {
  content: "";
  display: block;
  clear: both;
}
.checkout .total-costs-wrapper > div div:first-of-type {
  float: left;
}
.checkout .total-costs-wrapper > div div.value {
  float: right;
}
.checkout .edit-basket-checkout {
  float: left;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout .edit-basket-checkout {
    float: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.checkout .edit-basket-checkout a {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--brand-color-light);
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.153rem;
  text-transform: uppercase;
  padding: 12px 0;
  margin-bottom: 10px;
}
.checkout .edit-basket-checkout a svg {
  fill: var(--brand-color-light) !important;
  width: 13px !important;
  height: 13px !important;
  margin-bottom: 6px;
  margin-right: 5px;
  transition: all 0.3s;
}
.checkout .edit-basket-checkout a:hover {
  color: var(--brand-color-orange);
}
.checkout .edit-basket-checkout a:hover svg {
  fill: var(--brand-color-orange) !important;
}
.checkout .edit-basket-checkout a {
  margin-bottom: 0;
  padding: 0;
  margin-left: 50px;
  margin-top: 2px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout .edit-basket-checkout a {
    margin-left: 0px;
    margin-top: 0px;
    width: 100%;
  }
}
.checkout .edit-basket-checkout a svg .st0 {
  fill: var(--background-color) !important;
}
.checkout #billingAndShippping {
  margin-top: 25px;
}
.checkout #billingAndShippping:after {
  content: "";
  display: block;
  clear: both;
}
.checkout #billingAndShippping .billing-address, .checkout #billingAndShippping .shipping-address {
  background: var(--white);
  padding: 23px;
  width: 48%;
  float: left;
  position: relative;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #billingAndShippping .billing-address, .checkout #billingAndShippping .shipping-address {
    width: 100%;
    float: none;
  }
}
.checkout #billingAndShippping .shipping-address {
  float: right;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #billingAndShippping .shipping-address {
    margin-top: 25px;
  }
}
.checkout #billingAndShippping .buttonBack {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--brand-color-light);
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.153rem;
  text-transform: uppercase;
  padding: 12px 0;
  margin-bottom: 10px;
}
.checkout #billingAndShippping .buttonBack svg {
  fill: var(--brand-color-light) !important;
  width: 13px !important;
  height: 13px !important;
  margin-bottom: 6px;
  margin-right: 5px;
  transition: all 0.3s;
}
.checkout #billingAndShippping .buttonBack:hover {
  color: var(--brand-color-orange);
}
.checkout #billingAndShippping .buttonBack:hover svg {
  fill: var(--brand-color-orange) !important;
}
.checkout #billingAndShippping .buttonBack {
  display: inline-block;
  width: auto;
  position: absolute;
  top: 15px;
  right: 23px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #billingAndShippping .buttonBack {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    padding: 0;
  }
}
.checkout #billingAndShippping h3 {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  letter-spacing: 0.175rem;
  color: var(--basic-text);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 23px;
}
.checkout #billingAndShippping h3:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--brand-color-dark);
  content: "";
}
.checkout #billingAndShippping .remarks-header {
  margin-top: 25px;
}
.checkout #billingAndShippping p {
  line-height: 3.2rem;
  font-family: var(--serif-font);
  font-size: 1.3rem;
}
.checkout {
  /* step 4 cart */
  /* *********** */
}
.checkout #step4 {
  border-top: 2px solid var(--brand-color-dark);
}
.checkout #step4 .payment-option-wrapper + .payment-option-wrapper {
  border-top: 2px solid var(--brand-color-light);
}
.checkout #step4 .payment-option-wrapper {
  padding: 21px 0px;
}
.checkout #step4 .payment-option-wrapper input {
  display: none;
}
.checkout #step4 .payment-option-wrapper:nth-of-type(3n) {
  position: relative;
}
.checkout #step4 .payment-option-wrapper:nth-of-type(3n) .check.radio-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #step4 .payment-option-wrapper:nth-of-type(3n) .check.radio-wrapper {
    position: relative;
    top: auto;
    transform: translateY(0%);
  }
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #step4 .payment-option-wrapper:nth-of-type(3n) .pay_method {
    padding-left: 29px;
    padding-top: 20px;
  }
}
.checkout #step4 .payment-option-wrapper .payment-select-wrapper {
  width: 400px;
  display: inline-block;
  padding-right: 20px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #step4 .payment-option-wrapper .payment-select-wrapper {
    width: auto;
  }
}
.checkout #step4 .payment-option-wrapper .payment-select-wrapper label {
  font-family: var(--sans-serif-font);
  font-size: 1.4rem;
  text-transform: none;
  letter-spacing: 0.05em;
  width: 100%;
  color: var(--brand-color-dark);
}
.checkout #step4 .payment-option-wrapper .pay_method {
  width: calc(100% - 404px);
  display: inline-block;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #step4 .payment-option-wrapper .pay_method {
    width: auto;
  }
}
.checkout #step4 .payment-option-wrapper #checkout_payments img {
  height: 42px;
  width: auto;
  margin-left: 11px;
}
@media only screen and (min-width: 0) and (max-width: 800px) {
  .checkout #step4 .payment-option-wrapper #checkout_payments img {
    height: 24px;
    margin-left: 7px;
  }
}
.checkout #step4 .payment-option-wrapper #checkout_payments img:first-of-type {
  margin-left: 0px;
}
.checkout #step4 #buttons {
  border-top: 2px solid var(--brand-color-dark);
}

/** --------------------------------------------------
*
*   base
*   GLOBAL
*
*   TABLE OF CONTENTS
*   resets
*   global styles
*   typography
*   media queries
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*
*   layout - pages
*   ERROR
*
*   TABLE OF CONTENTS
*   general
*
*   -------------------------------------------------- **/
/** --------------------------------------------------
*   #general
*   -------------------------------------------------- */
body[class*="404"] #content {
  width: var(--content-width);
  max-width: 90%;
  margin: auto;
}
body[class*="404"] #content {
  margin-top: 41px;
  position: relative;
  padding-bottom: 96px;
}
@media only screen and (min-width: 0) and (max-width: 980px) {
  body[class*="404"] #content {
    padding-top: 24px;
    margin-top: 0px;
    padding-bottom: 24px;
  }
}

/*# sourceMappingURL=theme-styles.css.map */
