/** Shopify CDN: Minification failed

Line 7978:0 Expected "}" to go with "{"

**/
@charset "UTF-8";
/* ---------------------------------------------
    Includes
--------------------------------------------- */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default padding */
ul {
  padding: 0; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

/* Remove list styles on ul, ol elements with a class attribute */
ul {
  list-style: none; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto; }

a {
  color: inherit; }
  a:focus {
    outline: none; }

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

@font-face {
  font-family: 'GillSans';
  src: url("GillSans-Light.eot");
  src: url("GillSans-Light.eot?#iefix") format("embedded-opentype"), url("GillSans-Light.svg#GillSans-Light") format("svg"), url("GillSans-Light.ttf") format("truetype"), url("GillSans-Light.woff") format("woff"), url("GillSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'GillSans';
  src: url("GillSans-Bold.eot");
  src: url("GillSans-Bold.eot?#iefix") format("embedded-opentype"), url("GillSans-Bold.svg#GillSans-Bold") format("svg"), url("GillSans-Bold.ttf") format("truetype"), url("GillSans-Bold.woff") format("woff"), url("GillSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'GillSans';
  src: url("GillSans.eot");
  src: url("GillSans.eot?#iefix") format("embedded-opentype"), url("GillSans.svg#GillSans") format("svg"), url("GillSans.ttf") format("truetype"), url("GillSans.woff") format("woff"), url("GillSans.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AkzidenzGroteskBE-Cn';
  src: url("AkzidenzGroteskBE-Cn.eot");
  src: url("AkzidenzGroteskBE-Cn.eot?#iefix") format("embedded-opentype"), url("AkzidenzGroteskBE-Cn.svg#AkzidenzGroteskBE-Cn") format("svg"), url("AkzidenzGroteskBE-Cn.ttf") format("truetype"), url("AkzidenzGroteskBE-Cn.woff") format("woff"), url("AkzidenzGroteskBE-Cn.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

/* ---------------------------------------------
    Fonts
--------------------------------------------- */
/* ---------------------------------------------
    Colors
--------------------------------------------- */
/* ---------------------------------------------
    Icons
--------------------------------------------- */
/* ---------------------------------------------
    Site header
--------------------------------------------- */
/* ---------------------------------------------
    Screen sizes
--------------------------------------------- */
/* ---------------------------------------------
    Z-index
--------------------------------------------- */
/* ---------------------------------------------
    Spacing
--------------------------------------------- */
/* ---------------------------------------------
    Animation
--------------------------------------------- */
/* ---------------------------------------------
    Borders
--------------------------------------------- */
/*
    responsive-property mixin
    Adds automatic small-desktop & tablet breakpoints based on the desktop + mobile dimensions
    - Parameters: 1 SCSS list containing multiple SCSS lists
    - Usage:
        @include responsive-property((
        ($property, $desktop-dimension, $mobile-dimension),
        (margin-top, 60px, 30px),
        (height, 100px, 50px)
        ))
    - Important: When only adding in one responsive property, add a comma to the end of the list to avoid SCSS errors
*/
/*
    responsive-property-liquid mixin

    Adds automatic small-desktop & tablet breakpoints based on the desktop + mobile dimensions
    - 3 Parameters: property, schema settings id containing desktop dimension value, schema settings id containing mobile dimension value
    - Usage:
        @include responsive-property-liquid(font-size, font_size_title_xl, font_size_title_xl_mobile)
*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }
  .flex.f-inline {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  .flex > *.grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
  .flex.f-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
  .flex.f-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .flex.f-space-evenly {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -moz-justify-content: space-evenly;
    justify-content: space-evenly; }
  .flex.f-flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end; }
  .flex.f-vertical-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .flex.f-vertical-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .flex.f-dir-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  .flex.f-dir-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex.f-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .flex.f-equal-width > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1; }

.visually-hidden {
  display: none;
  opacity: 0;
  visibility: hidden; }

/* ---------------------------------------------
    Helpers
--------------------------------------------- */
/* ---------------------------------------------
    General
--------------------------------------------- */
body {
  font-family: "GillSans";
  color: #000000;
  line-height: calc(100% + 6px);
  font-weight: 400;
  font-size: 14px;
  text-rendering: initial; }
  @media (max-width: 1024px) {
    body {
      font-size: 13px; } }
  @media (max-width: 768px) {
    body {
      font-size: 13px; } }
  @media (max-width: 600px) {
    body {
      font-size: 12px; } }

a {
  text-decoration: none; }

.fnt-pri {
  font-family: "GillSans"; }

.fnt-sec {
  font-family: "AkzidenzGroteskBE-Cn"; }

.view-all__btn {
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  position: relative; }
  .view-all__btn:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #1d1d1b;
    transform-origin: bottom left;
    transition: transform 0.25s ease-out; }
    @media (max-width: 600px) {
      .view-all__btn:after {
        display: none; } }
  .view-all__btn:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left; }
  @media (max-width: 600px) {
    .view-all__btn {
      text-decoration: underline; } }

/* ---------------------------------------------
    Titles
--------------------------------------------- */
h1, h2, h3, h4, h5, h6, p {
  margin: 0; }

.title--xxxl, h1:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 70px; }
  @media (max-width: 1024px) {
    .title--xxxl, h1:not([class]) {
      font-size: 62px; } }
  @media (max-width: 768px) {
    .title--xxxl, h1:not([class]) {
      font-size: 55px; } }
  @media (max-width: 600px) {
    .title--xxxl, h1:not([class]) {
      font-size: 40px; } }

.title--xxl, h2:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 50px; }
  @media (max-width: 1024px) {
    .title--xxl, h2:not([class]) {
      font-size: 45px; } }
  @media (max-width: 768px) {
    .title--xxl, h2:not([class]) {
      font-size: 41px; } }
  @media (max-width: 600px) {
    .title--xxl, h2:not([class]) {
      font-size: 32px; } }

.title--xl, h3:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 40px; }
  @media (max-width: 1024px) {
    .title--xl, h3:not([class]) {
      font-size: 36px; } }
  @media (max-width: 768px) {
    .title--xl, h3:not([class]) {
      font-size: 32px; } }
  @media (max-width: 600px) {
    .title--xl, h3:not([class]) {
      font-size: 24px; } }

.title--lg, h4:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 28px; }
  @media (max-width: 1024px) {
    .title--lg, h4:not([class]) {
      font-size: 26px; } }
  @media (max-width: 768px) {
    .title--lg, h4:not([class]) {
      font-size: 24px; } }
  @media (max-width: 600px) {
    .title--lg, h4:not([class]) {
      font-size: 20px; } }

.title--md, h5:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 24px; }
  @media (max-width: 1024px) {
    .title--md, h5:not([class]) {
      font-size: 22px; } }
  @media (max-width: 768px) {
    .title--md, h5:not([class]) {
      font-size: 21px; } }
  @media (max-width: 600px) {
    .title--md, h5:not([class]) {
      font-size: 18px; } }

.title--sm, h6:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 20px; }
  @media (max-width: 1024px) {
    .title--sm, h6:not([class]) {
      font-size: 19px; } }
  @media (max-width: 768px) {
    .title--sm, h6:not([class]) {
      font-size: 18px; } }
  @media (max-width: 600px) {
    .title--sm, h6:not([class]) {
      font-size: 16px; } }

.title--xs, h7:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 18px; }
  @media (max-width: 1024px) {
    .title--xs, h7:not([class]) {
      font-size: 17px; } }
  @media (max-width: 768px) {
    .title--xs, h7:not([class]) {
      font-size: 16px; } }
  @media (max-width: 600px) {
    .title--xs, h7:not([class]) {
      font-size: 14px; } }

.title--xxs, h8:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 16px; }
  @media (max-width: 1024px) {
    .title--xxs, h8:not([class]) {
      font-size: 15px; } }
  @media (max-width: 768px) {
    .title--xxs, h8:not([class]) {
      font-size: 15px; } }
  @media (max-width: 600px) {
    .title--xxs, h8:not([class]) {
      font-size: 14px; } }

.title--xxxs, h9:not([class]) {
  font-family: "AkzidenzGroteskBE-Cn";
  line-height: calc(100% + 10px);
  font-size: 14px; }
  @media (max-width: 1024px) {
    .title--xxxs, h9:not([class]) {
      font-size: 14px; } }
  @media (max-width: 768px) {
    .title--xxxs, h9:not([class]) {
      font-size: 14px; } }
  @media (max-width: 600px) {
    .title--xxxs, h9:not([class]) {
      font-size: 14px; } }

/* ---------------------------------------------
    Font weights
--------------------------------------------- */
.bolder {
  font-weight: 900; }

.bold {
  font-weight: 700; }

.medium {
  font-weight: 400; }

.light {
  font-weight: 300; }

/* ---------------------------------------------
    Font sizes
--------------------------------------------- */
.sm {
  font-size: 12px; }
  @media (max-width: 1024px) {
    .sm {
      font-size: 12px; } }
  @media (max-width: 768px) {
    .sm {
      font-size: 12px; } }
  @media (max-width: 600px) {
    .sm {
      font-size: 12px; } }

.md {
  font-size: 14px; }
  @media (max-width: 1024px) {
    .md {
      font-size: 13px; } }
  @media (max-width: 768px) {
    .md {
      font-size: 13px; } }
  @media (max-width: 600px) {
    .md {
      font-size: 12px; } }

.lg {
  font-size: 14px; }
  @media (max-width: 1024px) {
    .lg {
      font-size: 13px; } }
  @media (max-width: 768px) {
    .lg {
      font-size: 13px; } }
  @media (max-width: 600px) {
    .lg {
      font-size: 12px; } }

.xl {
  font-size: 18px; }
  @media (max-width: 1024px) {
    .xl {
      font-size: 17px; } }
  @media (max-width: 768px) {
    .xl {
      font-size: 17px; } }
  @media (max-width: 600px) {
    .xl {
      font-size: 16px; } }

/* ---------------------------------------------
    Text transform
--------------------------------------------- */
.lc {
  text-transform: lowercase; }

.uc {
  text-transform: uppercase; }

.underline {
  text-decoration: underline; }

.strike {
  text-decoration: line-through; }

/* ---------------------------------------------
    Text alignment
--------------------------------------------- */
.text-align-left {
  text-align: left !important; }

.text-align-center {
  text-align: center !important; }

.text-align-right {
  text-align: right !important; }

/* ---------------------------------------------
    RichTextEditor
--------------------------------------------- */
.rte li {
  line-height: 20px;
  margin-bottom: 11px; }

.rte a:not(.btn) {
  text-decoration: underline;
  -webkit-transition: 0.5s all linear;
  -moz-transition: 0.5s all linear;
  -ms-transition: 0.5s all linear;
  -o-transition: 0.5s all linear;
  transition: 0.5s all linear; }
  @media (min-width: 769px) {
    .rte a:not(.btn) {
      -webkit-transition: 0.5s all linear;
      -moz-transition: 0.5s all linear;
      -ms-transition: 0.5s all linear;
      -o-transition: 0.5s all linear;
      transition: 0.5s all linear; }
      .rte a:not(.btn):hover {
        color: #1F3361; } }

.rte img {
  display: inline-block; }

.rte iframe {
  display: block;
  width: 100%;
  margin: 50px 0; }

img {
  display: block;
  max-width: 100%; }

.object-cover {
  display: block;
  overflow: hidden; }
  .object-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  .object-cover.object-cover__top img {
    object-position: top; }

.object-contain {
  display: block; }
  .object-contain > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center; }
  .object-contain .object-contain__top img {
    object-position: top; }

.alternative-object-fit {
  background-size: cover;
  background-position: center center; }
  .alternative-object-fit.contain {
    background-size: contain;
    background-repeat: no-repeat; }
  .alternative-object-fit img {
    opacity: 0; }

.primary {
  color: #1F3361; }
  .primary button, .primary input, .primary a, .primary h1, .primary h2, .primary h3, .primary h4, .primary h5, .primary h6, .primary span, .primary label, .primary p, .primary strong, .primary em, .primary s, .primary li {
    color: #1F3361; }
  .primary use {
    fill: #1F3361; }

.secondary {
  color: #BC2227; }
  .secondary button, .secondary input, .secondary a, .secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary span, .secondary label, .secondary p, .secondary strong, .secondary em, .secondary s, .secondary li {
    color: #BC2227; }
  .secondary use {
    fill: #BC2227; }

.white {
  color: #ffffff; }
  .white button, .white input, .white a, .white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white span, .white label, .white p, .white strong, .white em, .white s, .white li {
    color: #ffffff; }
  .white use {
    fill: #ffffff; }

.black {
  color: #000000; }
  .black button, .black input, .black a, .black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black span, .black label, .black p, .black strong, .black em, .black s, .black li {
    color: #000000; }
  .black use {
    fill: #000000; }

.bg-primary {
  background: #1F3361; }

.bg-secondary {
  background: #BC2227; }

@media (min-width: 321px) {
  .mobile-small-only {
    display: none !important; } }

@media (min-width: 481px) {
  .mobile-only {
    display: none !important; } }

@media (min-width: 601px) {
  .mobile-large-only {
    display: none !important; } }

@media (min-width: 769px) {
  .tablet-only {
    display: none !important; } }

@media (min-width: 1025px) {
  .small-desktop-only {
    display: none !important; } }

@media (min-width: 1201px) {
  .medium-desktop-only {
    display: none !important; } }

@media (min-width: 1441px) {
  .large-desktop-only {
    display: none !important; } }

@media (max-width: 1440px) {
  .above-large-desktop {
    display: none !important; } }

@media (max-width: 1200px) {
  .above-medium-desktop {
    display: none !important; } }

@media (max-width: 1024px) {
  .above-small-desktop {
    display: none !important; } }

@media (max-width: 768px) {
  .above-tablet {
    display: none !important; } }

@media (max-width: 600px) {
  .above-mobile-large {
    display: none !important; } }

@media (max-width: 480px) {
  .above-mobile {
    display: none !important; } }

@media (max-width: 320px) {
  .above-mobile-small {
    display: none !important; } }

@media (max-width: 600px) {
  body, html {
    overflow-x: hidden !important;
    width: 100vw !important; } }

.container, .container--no-padding {
  width: 1440px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px; }
  @media (max-width: 1024px) {
    .container, .container--no-padding {
      padding-left: 30px;
      padding-right: 30px; } }
  @media (max-width: 600px) {
    .container, .container--no-padding {
      padding-left: 20px;
      padding-right: 20px; } }
  .container--sm {
    width: 1210px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px; }
    @media (max-width: 1024px) {
      .container--sm {
        padding-left: 30px;
        padding-right: 30px; } }
    @media (max-width: 600px) {
      .container--sm {
        padding-left: 20px;
        padding-right: 20px; } }
  .container--no-padding {
    padding-left: 0;
    padding-right: 0; }

main .shopify-section:last-child section {
  margin-bottom: 0px; }

main section {
  margin-top: 60px;
  margin-bottom: 60px; }
  @media (max-width: 1024px) {
    main section {
      margin-top: 52.5px; } }
  @media (max-width: 768px) {
    main section {
      margin-top: 45px; } }
  @media (max-width: 600px) {
    main section {
      margin-top: 30px; } }
  @media (max-width: 1024px) {
    main section {
      margin-bottom: 52.5px; } }
  @media (max-width: 768px) {
    main section {
      margin-bottom: 45px; } }
  @media (max-width: 600px) {
    main section {
      margin-bottom: 30px; } }

.m-0 {
  margin: 0; }

.p-0 {
  padding: 0; }

.m-t-0 {
  margin-top: 0; }

.p-t-0 {
  padding-top: 0; }

.m-b-0 {
  margin-bottom: 0; }

.p-b-0 {
  padding-bottom: 0; }

/* --------------------------------
    Padding
-------------------------------- */
.p-m {
  padding-top: 50px;
  padding-bottom: 50px; }

.p-l {
  padding-top: 60px;
  padding-bottom: 60px; }

.p-s {
  padding-top: 40px;
  padding-bottom: 40px; }

.p-t-s {
  padding-top: 40px; }

.p-t-m {
  padding-top: 50px; }

.p-t-l {
  padding-top: 60px; }

.p-b-s {
  padding-bottom: 40px; }

.p-b-m {
  padding-bottom: 50px; }

.p-b-l {
  padding-bottom: 60px; }

.p-l-s {
  padding-left: 40px; }

.p-l-m {
  padding-left: 50px; }

.p-l-l {
  padding-left: 60px; }

.p-r-s {
  padding-right: 40px; }

.p-r-m {
  padding-right: 50px; }

.p-r-l {
  padding-right: 60px; }

/* --------------------------------
    margin
-------------------------------- */
.m-s {
  margin-top: 40px;
  margin-bottom: 40px; }

.m-m {
  margin-top: 50px;
  margin-bottom: 50px; }

.m-l {
  margin-top: 60px;
  margin-bottom: 60px; }

.m-t-s {
  margin-top: 40px; }

.m-t-m {
  margin-top: 50px; }

.m-t-l {
  margin-top: 60px; }

.m-b-xxs {
  margin-bottom: 13.33333px; }

.m-b-xs {
  margin-bottom: 20px; }

.m-b-s {
  margin-bottom: 40px; }

.m-b-m {
  margin-bottom: 50px; }

.m-b-l {
  margin-bottom: 60px; }

.m-l-xxs {
  margin-left: 13.33333px; }

.m-l-xs {
  margin-left: 20px; }

.m-l-s {
  margin-left: 40px; }

.m-l-m {
  margin-left: 50px; }

.m-l-l {
  margin-left: 60px; }

.m-r-xxs {
  margin-right: 13.33333px; }

.m-r-xs {
  margin-right: 20px; }

.m-r-s {
  margin-right: 40px; }

.m-r-m {
  margin-right: 50px; }

.m-r-l {
  margin-right: 60px; }

.col-2 {
  column-count: 2; }

.col-3 {
  column-count: 3; }

.col-4 {
  column-count: 4; }

.grid, .grid--2, .grid--3, .grid--4, .grid--5, .grid--6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.grid--2 > * {
  width: calc((100% / 2) - 41px);
  margin-left: 20px;
  margin-right: 20px; }

@media screen and (max-width: 1440px) {
  .grid--2.ld--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ld--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ld--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ld--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ld--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ld--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1200px) {
  .grid--2.md--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.md--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.md--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.md--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.md--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.md--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1024px) {
  .grid--2.sd--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sd--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sd--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sd--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sd--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sd--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 768px) {
  .grid--2.tb--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.tb--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.tb--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.tb--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.tb--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.tb--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 600px) {
  .grid--2.ml--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ml--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ml--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ml--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ml--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.ml--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 480px) {
  .grid--2.sm--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sm--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sm--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sm--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sm--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.sm--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 320px) {
  .grid--2.xs--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.xs--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.xs--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.xs--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.xs--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--2.xs--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

.grid--3 > * {
  width: calc((100% / 3) - 41px);
  margin-left: 20px;
  margin-right: 20px; }

@media screen and (max-width: 1440px) {
  .grid--3.ld--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ld--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ld--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ld--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ld--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ld--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1200px) {
  .grid--3.md--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.md--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.md--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.md--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.md--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.md--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1024px) {
  .grid--3.sd--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sd--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sd--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sd--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sd--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sd--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 768px) {
  .grid--3.tb--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.tb--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.tb--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.tb--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.tb--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.tb--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 600px) {
  .grid--3.ml--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ml--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ml--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ml--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ml--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.ml--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 480px) {
  .grid--3.sm--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sm--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sm--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sm--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sm--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.sm--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 320px) {
  .grid--3.xs--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.xs--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.xs--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.xs--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.xs--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--3.xs--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

.grid--4 > * {
  width: calc((100% / 4) - 41px);
  margin-left: 20px;
  margin-right: 20px; }

@media screen and (max-width: 1440px) {
  .grid--4.ld--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ld--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ld--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ld--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ld--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ld--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1200px) {
  .grid--4.md--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.md--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.md--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.md--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.md--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.md--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1024px) {
  .grid--4.sd--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sd--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sd--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sd--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sd--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sd--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 768px) {
  .grid--4.tb--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.tb--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.tb--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.tb--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.tb--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.tb--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 600px) {
  .grid--4.ml--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ml--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ml--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ml--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ml--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.ml--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 480px) {
  .grid--4.sm--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sm--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sm--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sm--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sm--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.sm--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 320px) {
  .grid--4.xs--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.xs--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.xs--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.xs--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.xs--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--4.xs--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

.grid--5 > * {
  width: calc((100% / 5) - 41px);
  margin-left: 20px;
  margin-right: 20px; }

@media screen and (max-width: 1440px) {
  .grid--5.ld--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ld--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ld--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ld--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ld--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ld--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1200px) {
  .grid--5.md--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.md--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.md--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.md--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.md--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.md--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1024px) {
  .grid--5.sd--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sd--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sd--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sd--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sd--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sd--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 768px) {
  .grid--5.tb--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.tb--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.tb--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.tb--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.tb--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.tb--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 600px) {
  .grid--5.ml--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ml--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ml--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ml--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ml--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.ml--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 480px) {
  .grid--5.sm--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sm--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sm--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sm--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sm--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.sm--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 320px) {
  .grid--5.xs--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.xs--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.xs--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.xs--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.xs--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--5.xs--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

.grid--6 > * {
  width: calc((100% / 6) - 41px);
  margin-left: 20px;
  margin-right: 20px; }

@media screen and (max-width: 1440px) {
  .grid--6.ld--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ld--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ld--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ld--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ld--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ld--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1200px) {
  .grid--6.md--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.md--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.md--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.md--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.md--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.md--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 1024px) {
  .grid--6.sd--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sd--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sd--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sd--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sd--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sd--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 768px) {
  .grid--6.tb--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.tb--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.tb--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.tb--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.tb--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.tb--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 600px) {
  .grid--6.ml--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ml--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ml--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ml--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ml--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.ml--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 480px) {
  .grid--6.sm--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sm--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sm--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sm--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sm--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.sm--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

@media screen and (max-width: 320px) {
  .grid--6.xs--1 > * {
    width: calc((100% / 1) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.xs--2 > * {
    width: calc((100% / 2) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.xs--3 > * {
    width: calc((100% / 3) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.xs--4 > * {
    width: calc((100% / 4) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.xs--5 > * {
    width: calc((100% / 5) - 41px);
    margin-left: 20px;
    margin-right: 20px; }
  .grid--6.xs--6 > * {
    width: calc((100% / 6) - 41px);
    margin-left: 20px;
    margin-right: 20px; } }

/* Hides preview bar */
html {
  padding-bottom: 0px !important; }

/* ---------------------------------------------
    Elements
--------------------------------------------- */
.btn {
  font-family: "AkzidenzGroteskBE-Cn";
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  background: #000000;
  width: fit-content;
  width: -moz-fit-content;
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 40px;
  line-height: normal;
  box-shadow: 3px 3px 3px transparent;
  font-size: 16px; }
  @media (min-width: 769px) {
    .btn {
      -webkit-transition: 0.5s all linear;
      -moz-transition: 0.5s all linear;
      -ms-transition: 0.5s all linear;
      -o-transition: 0.5s all linear;
      transition: 0.5s all linear; }
      .btn:hover:not(:disabled) {
        background: #565656;
        box-shadow: 0 12px 14px rgba(0, 0, 0, 0.17); } }

.btn--secondary {
  background: #ffffff;
  color: #000000; }
  @media (min-width: 769px) {
    .btn--secondary {
      -webkit-transition: 0.5s all linear;
      -moz-transition: 0.5s all linear;
      -ms-transition: 0.5s all linear;
      -o-transition: 0.5s all linear;
      transition: 0.5s all linear; }
      .btn--secondary:hover:not(:disabled) {
        background: #EDEDED;
        box-shadow: 0 12px 14px rgba(0, 0, 0, 0.17); } }

button,
input,
textarea {
  resize: none;
  border: none;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none; }

button {
  cursor: pointer;
  margin: 0;
  width: auto;
  height: auto; }

input[type="number"] {
  -moz-appearance: textfield; }
  input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }

[disabled] {
  cursor: default;
  opacity: .5; }

/* ---------------------------------------------
    Radio, Checkbox
--------------------------------------------- */
input[type="radio"], input[type="checkbox"] {
  cursor: pointer;
  display: inline-block;
  position: relative;
  background-color: #EDEDED;
  color: #565656;
  top: 10px;
  height: 20px;
  width: 20px;
  border: 0;
  border-radius: 100%;
  margin-right: 7px;
  outline: none; }
  input[type="radio"]:checked::before, input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #565656;
    width: 30%;
    height: 30%;
    border-radius: 100%; }
  input[type="radio"]:hover, input[type="checkbox"]:hover {
    background-color: #EDEDED; }
  input[type="radio"]:checked, input[type="checkbox"]:checked {
    background-color: #EDEDED; }

input[type="checkbox"] {
  border-radius: 3px; }

.responsive-table {
  width: calc(100% + 20px);
  position: relative;
  left: -10px;
  position: relative; }
  .responsive-table td,
  .responsive-table th {
    padding: 5px 10px;
    text-align: left;
    vertical-align: top; }
  .responsive-table th {
    padding-bottom: 20px;
    padding-top: 0; }
  .responsive-table td {
    font-weight: 300; }
  .responsive-table tfoot {
    font-weight: bold;
    border-top: 20px solid white; }
  .responsive-table a {
    text-decoration: underline; }

/* ---------------------------------------------
    Close cross
--------------------------------------------- */
.close-cross {
  width: 20px;
  height: 20px;
  position: absolute;
  display: block;
  padding: 5px;
  margin-right: -5px;
  box-sizing: content-box;
  background: none; }
  .close-cross::after, .close-cross::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #1F3361;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.5s all linear;
    -moz-transition: 0.5s all linear;
    -ms-transition: 0.5s all linear;
    -o-transition: 0.5s all linear;
    transition: 0.5s all linear; }
  .close-cross::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  @media (min-width: 769px) {
    .close-cross:hover::before {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg); }
    .close-cross:hover::after {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg); } }

.video-container {
  position: relative; }
  .video-container .icon--button {
    position: absolute;
    bottom: 20px;
    left: 20px; }
    .video-container .icon--button svg {
      width: 30px;
      height: 30px; }
  .video-container .video_play-icon {
    display: none; }
  .video-container.video-container--paused .video_play-icon {
    display: inline-block; }
  .video-container.video-container--paused .video_pause-icon {
    display: none; }

.icon--button {
  border: none;
  outline: none; }

.icon--circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%; }
  .icon--circle.icon--white {
    background: #ffffff; }

/* ---------------------------------------------
    Vendor
--------------------------------------------- */
/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px; }
  .choices:focus {
    outline: none; }
  .choices:last-child {
    margin-bottom: 0; }
  .choices.is-disabled .choices__inner,
  .choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    user-select: none; }
  .choices.is-disabled .choices__item {
    cursor: not-allowed; }
  .choices [hidden] {
    display: none !important; }

.choices[data-type*='select-one'] {
  cursor: pointer; }
  .choices[data-type*='select-one'] .choices__inner {
    padding-bottom: 7.5px; }
  .choices[data-type*='select-one'] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #dddddd;
    background-color: #ffffff;
    margin: 0; }
  .choices[data-type*='select-one'] .choices__button {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: 0.5; }
    .choices[data-type*='select-one'] .choices__button:hover, .choices[data-type*='select-one'] .choices__button:focus {
      opacity: 1; }
    .choices[data-type*='select-one'] .choices__button:focus {
      box-shadow: 0px 0px 0px 2px #00bcd4; }
  .choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button {
    display: none; }
  .choices[data-type*='select-one']:after {
    content: '';
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #333333 transparent transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none; }
  .choices[data-type*='select-one'].is-open:after {
    border-color: transparent transparent #333333 transparent;
    margin-top: -7.5px; }
  .choices[data-type*='select-one'][dir='rtl']:after {
    left: 11.5px;
    right: auto; }
  .choices[data-type*='select-one'][dir='rtl'] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0; }

.choices[data-type*='select-multiple'] .choices__inner,
.choices[data-type*='text'] .choices__inner {
  cursor: text; }

.choices[data-type*='select-multiple'] .choices__button,
.choices[data-type*='text'] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0; }
  .choices[data-type*='select-multiple'] .choices__button:hover, .choices[data-type*='select-multiple'] .choices__button:focus,
  .choices[data-type*='text'] .choices__button:hover,
  .choices[data-type*='text'] .choices__button:focus {
    opacity: 1; }

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #dddddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden; }
  .is-focused .choices__inner,
  .is-open .choices__inner {
    border-color: #b7b7b7; }
  .is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0; }
  .is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px; }

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none; }

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%; }
  [dir='rtl'] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px; }
  .choices__list--single .choices__item {
    width: 100%; }

.choices__list--multiple {
  display: inline; }
  .choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #00a5bb;
    color: #ffffff;
    word-break: break-all;
    box-sizing: border-box; }
    .choices__list--multiple .choices__item[data-deletable] {
      padding-right: 5px; }
    [dir='rtl'] .choices__list--multiple .choices__item {
      margin-right: 0;
      margin-left: 3.75px; }
    .choices__list--multiple .choices__item.is-highlighted {
      background-color: #00a5bb;
      border: 1px solid #008fa1; }
    .is-disabled .choices__list--multiple .choices__item {
      background-color: #aaaaaa;
      border: 1px solid #919191; }

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility; }
  .choices__list--dropdown.is-active {
    visibility: visible; }
  .is-open .choices__list--dropdown {
    border-color: #b7b7b7; }
  .is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: 0.25rem 0.25rem 0 0; }
  .choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position; }
  .choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px; }
    [dir='rtl'] .choices__list--dropdown .choices__item {
      text-align: right; }
  @media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
      padding-right: 100px; }
      .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%); }
      [dir='rtl'] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px; }
        [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after {
          right: auto;
          left: 10px; } }
  .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2; }
    .choices__list--dropdown .choices__item--selectable.is-highlighted:after {
      opacity: 0.5; }

.choices__item {
  cursor: default; }

.choices__item--selectable {
  cursor: pointer; }

.choices__item--disabled {
  cursor: not-allowed;
  user-select: none;
  opacity: 0.5; }

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray; }

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }
  .choices__button:focus {
    outline: none; }

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px; }
  .choices__input:focus {
    outline: 0; }
  [dir='rtl'] .choices__input {
    padding-right: 2px;
    padding-left: 0; }

.choices__placeholder {
  opacity: 0.5; }

/*=====  End of Choices  ======*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

#footer__newsletter-form .go1383397259.go1383397259.go1383397259.go1383397259.go1383397259.go1383397259::placeholder {
  font-family: "GillSans" !important;
  font-weight: 300 !important;
  font-size: 0.875rem !important;
  color: #ffffff !important; }

#footer__newsletter-form .klaviyo-form {
  color: #ffffff !important;
  max-width: 100% !important;
  font-family: "GillSans" !important;
  padding: 0 !important; }
  #footer__newsletter-form .klaviyo-form label {
    display: none !important; }
  #footer__newsletter-form .klaviyo-form input[type='email'] {
    font-family: "GillSans" !important;
    font-size: 0.875rem !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 8px !important;
    display: block !important;
    padding: 23px !important;
    margin-bottom: 1rem !important; }
    @media (min-width: 769px) {
      #footer__newsletter-form .klaviyo-form input[type='email'] {
        -webkit-transition: 0.5s all linear;
        -moz-transition: 0.5s all linear;
        -ms-transition: 0.5s all linear;
        -o-transition: 0.5s all linear;
        transition: 0.5s all linear; }
        #footer__newsletter-form .klaviyo-form input[type='email']:hover {
          border-color: #ffffff !important; } }
    @media (min-width: 1025px) {
      #footer__newsletter-form .klaviyo-form input[type='email'] {
        margin-bottom: 0 !important;
        margin-right: 20px !important; } }
  #footer__newsletter-form .klaviyo-form div[data-testid='form-row'] {
    display: block !important; }
    @media (min-width: 1025px) {
      #footer__newsletter-form .klaviyo-form div[data-testid='form-row'] {
        display: flex !important; } }
    #footer__newsletter-form .klaviyo-form div[data-testid='form-row'] > * {
      padding: 0 !important; }
  #footer__newsletter-form .klaviyo-form button {
    font-family: "AkzidenzGroteskBE-Cn" !important;
    font-weight: 300 !important;
    font-size: 1rem !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 11px 30px !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    width: 100% !important; }
    @media (min-width: 1025px) {
      #footer__newsletter-form .klaviyo-form button {
        width: initial !important;
        padding: 16px 40px !important; } }

.shopify-challenge__container {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem; }
  .shopify-challenge__container .shopify-challenge__message,
  .shopify-challenge__container .shopify-challenge__button,
  .shopify-challenge__container .g-recaptcha {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem; }

.slick-slider {
  width: 100%; }

body .yotpo.product__yotpo-stars {
  margin: 20px 0 13px; }
  body .yotpo.product__yotpo-stars .yotpo-stars {
    margin-right: 4px; }

body .yotpo .main-widget .yotpo-label.yotpo-small-box {
  display: none; }

body .yotpo .promoted-products-box {
  display: none !important; }

body .yotpo .yotpo-review .yotpo-main, body .yotpo .yotpo-comment .yotpo-main, body .yotpo .yotpo-question .yotpo-main, body .yotpo .yotpo-onsite-upload .yotpo-main {
  margin-top: 15px;
  margin-left: 0; }

body .yotpo .yotpo-review .yotpo-main .content-title, body .yotpo .yotpo-comment .yotpo-main .content-title, body .yotpo .yotpo-question .yotpo-main .content-title, body .yotpo .yotpo-onsite-upload .yotpo-main .content-title {
  color: #646464;
  font-family: "GillSans";
  font-size: 14px;
  font-weight: 600; }

body .yotpo .yotpo-review .yotpo-main .content-review, body .yotpo .yotpo-comment .yotpo-main .content-review, body .yotpo .yotpo-question .yotpo-main .content-review, body .yotpo .yotpo-onsite-upload .yotpo-main .content-review {
  color: #646464;
  font-family: "GillSans";
  font-size: 14px;
  font-style: normal;
  letter-spacing: normal;
  line-height: 22px; }

body .yotpo .yotpo-review .yotpo-footer, body .yotpo .yotpo-comment .yotpo-footer, body .yotpo .yotpo-question .yotpo-footer, body .yotpo .yotpo-onsite-upload .yotpo-footer {
  margin-left: 0; }

body .yotpo .yotpo-default-button, body .yotpo input[type="button"].yotpo-default-button,
body .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button,
body .yotpo .yotpo-modal-dialog .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button {
  background: #fff;
  color: black;
  border: 1px solid;
  padding: 17px 34px; }
  body .yotpo .yotpo-default-button .yotpo-icon-button-text, body .yotpo input[type="button"].yotpo-default-button .yotpo-icon-button-text,
  body .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button .yotpo-icon-button-text,
  body .yotpo .yotpo-modal-dialog .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button .yotpo-icon-button-text {
    color: black;
    font-family: "GillSans";
    font-size: 16px; }
  body .yotpo .yotpo-default-button .yotpo-icon, body .yotpo input[type="button"].yotpo-default-button .yotpo-icon,
  body .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button .yotpo-icon,
  body .yotpo .yotpo-modal-dialog .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button .yotpo-icon {
    display: none; }

body .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button.write-question-button, body .yotpo .yotpo-modal-dialog .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button.write-question-button {
  top: 30px;
  right: 220px; }

body .yotpo .yotpo-small-box {
  padding: 25px 0px 10px 0px; }

body .yotpo .yotpo-nav ul .yotpo-nav-tab.yotpo-active .yotpo-nav-wrapper,
body .yotpo .yotpo-nav ul .yotpo-nav-tab.yotpo-active .yotpo-nav-wrapper span {
  color: #0e0e0e;
  font-family: "GillSans";
  font-size: 16px;
  font-weight: 600; }

body .yotpo .yotpo-nav li,
body .yotpo .yotpo-nav li span {
  font-family: "GillSans";
  font-size: 16px;
  font-weight: 600; }

.swiper {
  max-width: 900px;
  margin: 0 auto; }
  .swiper .swiper-wrapper,
  .swiper .swiper-slide {
    height: auto; }
  .swiper .product-item {
    width: 100%; }
  .swiper .product-item__image {
    height: 380px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    .swiper .product-item__image img {
      height: auto;
      width: auto;
      margin-bottom: 0; }

.swiper-container {
  --swiper-navigation-color: #fff;
  --swiper-navigation-size: 40px;
  --swiper-navigation-size: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative; }
  .swiper-container .swiper-button-prev,
  .swiper-container .swiper-button-next {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    background: #000000;
    border-radius: 50%;
    top: 30%;
    width: 50px;
    height: 50px; }
  .swiper-container .swiper-button-next:after {
    position: relative;
    left: 2px; }
  .swiper-container .swiper-button-prev:after {
    position: relative;
    right: 2px; }
  .swiper-container .swiper-button-next,
  .swiper-container .swiper-rtl .swiper-button-prev {
    right: -25px; }
  .swiper-container .swiper-button-prev,
  .swiper-container .swiper-rtl .swiper-button-next {
    left: -25px; }

/* ---------------------------------------------
    Apps
--------------------------------------------- */
/* ---------------------------------------------
    Components
--------------------------------------------- */
[data-preloader] [data-preload] {
  -webkit-transition: 0.5s all linear, filter 750ms ease 100ms;
  -moz-transition: 0.5s all linear, filter 750ms ease 100ms;
  -ms-transition: 0.5s all linear, filter 750ms ease 100ms;
  -o-transition: 0.5s all linear, filter 750ms ease 100ms;
  transition: 0.5s all linear, filter 750ms ease 100ms;
  -webkit-filter: blur(15px);
  -moz-filter: blur(15px);
  -o-filter: blur(15px);
  filter: blur(15px); }
  [data-preloader] [data-preload][data-preload="loaded"] {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px); }

.video-container video {
  width: 100%; }

/* ---------------------------------------------
    Templates
--------------------------------------------- */
.article__hero {
  width: 1440px;
  max-width: 100%;
  height: 560px;
  max-height: auto;
  margin: 0 auto 40px auto; }
  .article__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.article__content {
  border-bottom: 1px solid #f3f3f3; }
  .article__content .social-icons {
    margin-top: 40px; }
    .article__content .social-icons .social-icons__list-item {
      margin-bottom: 0; }

.article .social-icons__share-title {
  letter-spacing: 3px;
  margin-right: 20px;
  font-weight: 500; }

.article__author-block {
  border-bottom: 1px solid #f3f3f3; }
  .article__author-block .author-block__image {
    width: auto;
    height: 100%; }
  .article__author-block .author-block__info {
    margin-left: 40px; }
    .article__author-block .author-block__info .author-bio {
      font-size: 14px;
      font-weight: lighter; }

.article-nav {
  font-size: 24px; }
  .article-nav__link {
    font-weight: 300;
    color: #7b7b7b;
    letter-spacing: 2px; }
  .article-nav__next {
    text-align: right; }

.blog .no-blogs-text {
  display: none; }
  .blog .no-blogs-text.active {
    display: flex; }

.blog__articles {
  flex-wrap: wrap; }

.blog__article-item__container {
  margin-bottom: 30px;
  width: 24%; }
  @media (max-width: 1024px) {
    .blog__article-item__container {
      width: 32%; } }
  @media (max-width: 768px) {
    .blog__article-item__container {
      width: 49%; } }
  @media (max-width: 480px) {
    .blog__article-item__container {
      width: 100%; } }
  .blog__article-item__container .article-item__info {
    color: #656565; }

.collection {
  margin-top: 0;
  background-color: white; }
  .collection .collection__hero {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white; }
    .collection .collection__hero .breadcrumbs {
      font-size: 16px; }
    @media (max-width: 600px) {
      .collection .collection__hero .collection__title {
        font-size: 30px; } }
    .collection .collection__hero .collection__description {
      width: 50%;
      text-align: center; }
  .collection .collection__product-grid {
    flex-wrap: wrap; }

/* ---------------------------------------------
    Product
--------------------------------------------- */
.product {
  position: relative; }
  .product__collection-title {
    font-size: 16px; }
  .product__title {
    font-size: 44px; }
    @media (max-width: 600px) {
      .product__title {
        font-size: 34px; } }
  .product__price {
    font-size: 18px; }
  .product__form-container {
    margin-top: 40px; }
    @media (max-width: 600px) {
      .product__form-container {
        margin-top: 20px; } }
  .product__description {
    font-size: 12px; }
    @media (max-width: 600px) {
      .product__description {
        margin-top: 20px; } }
  .product__top-container {
    /* ---------------------------------------------
            Product images
        --------------------------------------------- */
    /* ---------------------------------------------
            Product information
        --------------------------------------------- */ }
    .product__top-container .breadcrumbs__container {
      position: absolute;
      width: 100%;
      top: -40px;
      padding-left: 5px;
      color: #5b5b5b;
      font-size: 14px; }
    .product__top-container .product__images {
      width: 59%; }
      .product__top-container .product__images-group {
        height: 0px;
        overflow: hidden;
        flex-wrap: wrap; }
        .product__top-container .product__images-group.active {
          display: block;
          height: auto;
          visibility: visible;
          opacity: 1;
          z-index: 30; }
        .product__top-container .product__images-group .grouped-images {
          flex-wrap: wrap; }
          .product__top-container .product__images-group .grouped-images .product-img__container,
          .product__top-container .product__images-group .grouped-images .product-media__container {
            margin-left: 5px;
            margin-right: 5px;
            margin-bottom: 10px;
            position: relative;
            width: 47.5%; }
            .product__top-container .product__images-group .grouped-images .product-img__container:last-of-type, .product__top-container .product__images-group .grouped-images .product-img__container--full-width,
            .product__top-container .product__images-group .grouped-images .product-media__container:last-of-type,
            .product__top-container .product__images-group .grouped-images .product-media__container--full-width {
              width: 100%; }
              .product__top-container .product__images-group .grouped-images .product-img__container:last-of-type .product-img, .product__top-container .product__images-group .grouped-images .product-img__container--full-width .product-img,
              .product__top-container .product__images-group .grouped-images .product-media__container:last-of-type .product-img,
              .product__top-container .product__images-group .grouped-images .product-media__container--full-width .product-img {
                width: 100%;
                margin: 0; }
            .product__top-container .product__images-group .grouped-images .product-img__container .product-img,
            .product__top-container .product__images-group .grouped-images .product-media__container .product-img {
              z-index: 1; }
            .product__top-container .product__images-group .grouped-images .product-img__container .product-img--zoom,
            .product__top-container .product__images-group .grouped-images .product-media__container .product-img--zoom {
              position: absolute;
              z-index: 2;
              right: 15px;
              top: 15px;
              cursor: pointer;
              height: 30px;
              width: 30px; }
          .product__top-container .product__images-group .grouped-images .product-img__zoom-in {
            position: relative;
            background-position: -9999px -9999px;
            background-position: center;
            background: no-repeat; }
            .product__top-container .product__images-group .grouped-images .product-img__zoom-in--overlay {
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              background: #fff;
              transition: opacity .3s;
              z-index: -1; }
            .product__top-container .product__images-group .grouped-images .product-img__zoom-in .product-img {
              display: block;
              width: 100%;
              transition: opacity .3s; }
      @media (max-width: 600px) {
        .product__top-container .product__images {
          width: 100%; }
          .product__top-container .product__images .slick-dots {
            display: flex;
            justify-content: center;
            margin: 0;
            padding: 1rem 0;
            list-style-type: none;
            overflow: auto; }
            .product__top-container .product__images .slick-dots li {
              margin: 0 0.25rem; }
            .product__top-container .product__images .slick-dots button {
              display: block;
              height: 2px;
              min-width: 15px;
              max-width: 40px;
              padding: 0;
              border: none;
              background-color: black;
              opacity: 0.25;
              text-indent: -9999px;
              margin-bottom: 10px; }
            .product__top-container .product__images .slick-dots li.slick-active button {
              opacity: 1; } }
    .product__top-container .product__information {
      width: 39%;
      max-width: 427px;
      align-self: baseline; }
      .product__top-container .product__information .product__tabs {
        margin-top: 40px; }
        .product__top-container .product__information .product__tabs .product-tabs__dropdown-title {
          font-size: 14px; }
        .product__top-container .product__information .product__tabs .product-tabs__tab {
          padding: 20px 0;
          border-top: 1px solid lightgray;
          position: relative; }
          .product__top-container .product__information .product__tabs .product-tabs__tab-toggle {
            width: 100%;
            color: #000000; }
            .product__top-container .product__information .product__tabs .product-tabs__tab-toggle .tab-title {
              font-size: 14px !important;
              font-family: "AkzidenzGroteskBE-Cn"; }
            .product__top-container .product__information .product__tabs .product-tabs__tab-toggle .toggle__change-content {
              position: absolute;
              top: 0px;
              width: 100%;
              height: 60px;
              vertical-align: middle;
              display: flex;
              align-items: center;
              justify-content: flex-end;
              font-size: 14px; }
              .product__top-container .product__information .product__tabs .product-tabs__tab-toggle .toggle__change-content::before {
                content: '+';
                transition: content 1s ease; }
              .product__top-container .product__information .product__tabs .product-tabs__tab-toggle .toggle__change-content.is-active::before {
                content: '-'; }
          .product__top-container .product__information .product__tabs .product-tabs__tab.last-tab {
            border-bottom: 1px solid lightgray; }
          .product__top-container .product__information .product__tabs .product-tabs__tab-inner ul {
            list-style-type: disc;
            list-style-position: inside; }
            .product__top-container .product__information .product__tabs .product-tabs__tab-inner ul li {
              padding: 5px;
              margin-left: 10px; }
      .product__top-container .product__information .product__upsell-section .upsell {
        padding: 0 10px; }
        .product__top-container .product__information .product__upsell-section .upsell__title-block {
          height: 50%; }
          .product__top-container .product__information .product__upsell-section .upsell__title-block .title {
            line-height: 18px; }
            .product__top-container .product__information .product__upsell-section .upsell__title-block .title.column-title {
              font-size: 16px;
              font-family: "AkzidenzGroteskBE-Cn"; }
            .product__top-container .product__information .product__upsell-section .upsell__title-block .title.column-body {
              font-size: 12px;
              font-family: "GillSans"; }
      .product__top-container .product__information .product__upsell-section--mobile {
        margin-top: 20px; }
        .product__top-container .product__information .product__upsell-section--mobile .upsell {
          background-color: #ededed;
          display: flex !important;
          justify-content: center; }
          .product__top-container .product__information .product__upsell-section--mobile .upsell__title-block .title {
            line-height: 18px; }
            .product__top-container .product__information .product__upsell-section--mobile .upsell__title-block .title.column-title {
              font-size: 14px;
              font-family: "AkzidenzGroteskBE-Cn"; }
            .product__top-container .product__information .product__upsell-section--mobile .upsell__title-block .title.column-body {
              font-size: 12px;
              font-family: "GillSans"; }
        .product__top-container .product__information .product__upsell-section--mobile .slick-dots {
          display: flex;
          justify-content: center; }
          .product__top-container .product__information .product__upsell-section--mobile .slick-dots li {
            position: relative;
            display: inline-block;
            width: 3px;
            height: 3px;
            margin: -17px 3px 0 3px;
            padding: 0;
            cursor: pointer; }
            .product__top-container .product__information .product__upsell-section--mobile .slick-dots li.slick-active button:before {
              opacity: 1; }
            .product__top-container .product__information .product__upsell-section--mobile .slick-dots li button {
              font-size: 0;
              line-height: 0;
              display: block;
              width: 3px;
              height: 3px;
              cursor: pointer;
              color: transparent;
              border: 0;
              outline: none;
              background: transparent; }
              .product__top-container .product__information .product__upsell-section--mobile .slick-dots li button::before {
                content: '•';
                font-size: 22px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 3px;
                height: 3px;
                text-align: center;
                opacity: .25;
                color: black; }
      @media (max-width: 600px) {
        .product__top-container .product__information {
          width: 100%; } }
    @media (max-width: 600px) {
      .product__top-container {
        flex-direction: column; } }
  .product__hero-banner .title--lg {
    font-size: 50px; }
  .product__reviews--title {
    text-align: center;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 30px; }

.product__information .yotpo-stars + .text-m {
  display: none; }

.product__upsell-section {
  margin-top: 30px; }

.product-media__container video {
  width: 100%; }

.product-img--icon-on-hover .product-img--zoom {
  display: none; }

@media (min-width: 769px) {
  .product-img--icon-on-hover {
    -webkit-transition: 0.5s all linear;
    -moz-transition: 0.5s all linear;
    -ms-transition: 0.5s all linear;
    -o-transition: 0.5s all linear;
    transition: 0.5s all linear; }
    .product-img--icon-on-hover:hover .product-img--zoom {
      display: inline-block; } }

@media (max-width: 600px) {
  .template-cart {
    padding-bottom: 214px; } }

.cart__title-block {
  text-align: center; }
  .cart__title-block .breadcrumbs {
    font-size: 16px; }
  @media (max-width: 600px) {
    .cart__title-block .cart__title {
      font-size: 30px; } }
  @media (max-width: 600px) {
    .cart__title-block {
      margin-bottom: 25px; } }

.cart .empty-cart-text {
  display: none; }
  .cart .empty-cart-text.active {
    display: block; }

.cart__container .cart__items-container {
  width: 59%; }
  @media (max-width: 600px) {
    .cart__container .cart__items-container {
      width: 100%; } }

.cart__container .cart__logo-bar {
  background-color: #ededed;
  padding: 10px 20px 20px; }
  @media (max-width: 600px) {
    .cart__container .cart__logo-bar {
      min-height: auto;
      padding-bottom: 0; } }
  .cart__container .cart__logo-bar-item {
    justify-content: flex-end;
    padding: 0; }
    @media (max-width: 600px) {
      .cart__container .cart__logo-bar-item {
        justify-content: center;
        align-items: center; } }
    .cart__container .cart__logo-bar-item .item-info {
      margin-top: 5px; }
      .cart__container .cart__logo-bar-item .item-info__description {
        font-size: 12px;
        font-family: "GillSans"; }
  @media (max-width: 600px) {
    .cart__container .cart__logo-bar {
      margin: 10px 0 20px 0;
      padding-top: 10px; }
      .cart__container .cart__logo-bar .slick-list {
        max-height: 50px; }
        .cart__container .cart__logo-bar .slick-list .slick-track {
          max-height: 100%; }
      .cart__container .cart__logo-bar .slick-dots {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 1rem 0;
        list-style-type: none; }
        .cart__container .cart__logo-bar .slick-dots li {
          margin: 0 0.25rem; }
        .cart__container .cart__logo-bar .slick-dots button {
          display: block;
          width: 5px;
          height: 5px;
          padding: 0;
          border: none;
          border-radius: 100%;
          background-color: #bfbfbf;
          text-indent: -9999px; }
        .cart__container .cart__logo-bar .slick-dots li.slick-active button {
          background-color: #1d1d1b; }
      .cart__container .cart__logo-bar img {
        margin-right: 15px; } }

.cart__container .cart__summary {
  width: 39%;
  background-color: #ededed;
  border-radius: 9px;
  padding: 20px;
  height: auto;
  align-self: baseline;
  min-height: 351px; }
  @media (max-width: 600px) {
    .cart__container .cart__summary {
      min-height: 208px; } }
  .cart__container .cart__summary .hr {
    margin-left: 0;
    margin-right: 0; }
  .cart__container .cart__summary .subtotal-block .subtotal-text {
    font-size: 18px; }
    @media (max-width: 600px) {
      .cart__container .cart__summary .subtotal-block .subtotal-text {
        font-weight: normal; } }
  .cart__container .cart__summary .subtotal-block .subtotal-price {
    font-weight: 300;
    font-family: "GillSans";
    font-size: 16px !important; }
  .cart__container .cart__summary .summary__promo-text {
    font-family: "GillSans";
    font-weight: 300;
    line-height: 17px; }
  .cart__container .cart__summary .summary__continue-shopping {
    font-size: 12px;
    font-family: "GillSans";
    line-height: 17px; }
  .cart__container .cart__summary button {
    width: 100%;
    margin: 20px 0; }
  @media (max-width: 600px) {
    .cart__container .cart__summary {
      width: 100vw;
      margin-left: -20px;
      border-radius: 0px;
      position: fixed;
      bottom: 0;
      z-index: 1000000; }
      .cart__container .cart__summary .summary__promo-text {
        margin-bottom: 10px; } }

@media (max-width: 600px) {
  .cart__container {
    flex-direction: column; } }

.search-results__title {
  font-weight: 300;
  margin-bottom: 40px; }
  .search-results__title-amt {
    font-size: 16px; }
  .search-results__title-term {
    font-size: 50px; }

.search-results__nav {
  margin-bottom: 20px; }
  .search-results__nav-btn {
    font-family: "AkzidenzGroteskBE-Cn";
    color: #000000; }
    .search-results__nav-btn--with-padding {
      padding: 0 35px; }
    .search-results__nav-btn.active {
      text-decoration: underline; }
  @media (max-width: 600px) {
    .search-results__nav {
      background-color: #ededed;
      padding: 20px 0;
      width: 100vw;
      margin-left: -20px;
      margin-bottom: 0; } }

.search-results .filter-sort-container {
  display: none;
  margin: 0 0 20px 0; }
  @media (max-width: 600px) {
    .search-results .filter-sort-container {
      width: 100vw;
      margin-left: -20px; } }
  @media (max-width: 600px) {
    .search-results .filter-sort-container {
      margin-top: 0; } }
  .search-results .filter-sort-container hr {
    min-width: 200vw;
    position: absolute;
    left: -50vw;
    margin: 0;
    border: none;
    border-top: 1px solid #ededed; }
  .search-results .filter-sort-container.active {
    display: block; }
  .search-results .filter-sort-container hr {
    min-width: 200vw;
    position: absolute;
    left: -50vw;
    margin: 0;
    border: none;
    border-top: 1px solid #ededed; }
  .search-results .filter-sort-container .filtering .filters {
    padding: 10px 0 !important; }
    .search-results .filter-sort-container .filtering .filters .sort-by {
      padding: 10px; }

.search-results__container {
  display: none; }
  .search-results__container.active {
    display: flex;
    flex-wrap: wrap; }
  .search-results__container #product-results {
    flex-wrap: wrap; }
  .search-results__container-collection .search-collection-item {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 20px; }
    @media (max-width: 600px) {
      .search-results__container-collection .search-collection-item {
        width: 49%; } }
    .search-results__container-collection .search-collection-item__image {
      width: 100%;
      height: 315px;
      background-color: #ededed;
      margin-bottom: 5px; }
      .search-results__container-collection .search-collection-item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 9px; }
    .search-results__container-collection .search-collection-item__title {
      font-size: 24px; }

.search-results .paginater {
  width: 100%;
  margin-top: 20px;
  display: none; }
  .search-results .paginater.active {
    display: flex; }

.account {
  padding: 60px 0; }
  .account .form-success {
    padding: 0 20px; }
  .account .container, .account .container--no-padding {
    width: 700px; }
  .account .errors {
    margin: 50px 0 50px; }
    .account .errors ul {
      list-style: none; }
    .account .errors li {
      margin-bottom: 10px;
      font-weight: bold; }

.account-help-links {
  margin-top: 50px; }
  .account-help-links li {
    margin-bottom: 10px; }
  .account-help-links a {
    font-weight: bold;
    text-transform: uppercase; }

.dashboard {
  padding: 0 10%; }
  @media (max-width: 600px) {
    .dashboard {
      margin-top: 0; } }
  @media (max-width: 600px) {
    .dashboard .columns-container {
      flex-direction: column; } }
  .dashboard .account__column-top {
    height: 80px; }
    @media (max-width: 600px) {
      .dashboard .account__column-top {
        display: flex;
        justify-content: space-between;
        height: auto;
        margin: 20px 0; } }
    .dashboard .account__column-top-logout {
      font-size: 14px;
      font-family: "GillSans";
      color: #000000; }
      .dashboard .account__column-top-logout svg {
        margin-right: 7px; }
    .dashboard .account__column-top-title {
      font-size: 40px;
      font-weight: 500;
      font-family: "AkzidenzGroteskBE-Cn"; }
      @media (max-width: 600px) {
        .dashboard .account__column-top-title {
          font-size: 30px; } }
  .dashboard .account__column-left {
    width: 29%; }
  .dashboard .account__column-right {
    width: 69%; }
    .dashboard .account__column-right.account-overview-section {
      border-bottom: 1px solid #cecece; }
    @media (max-width: 600px) {
      .dashboard .account__column-right .customer-info {
        flex-direction: column; } }
    .dashboard .account__column-right .welcome-text {
      margin-bottom: 40px; }
      @media (max-width: 600px) {
        .dashboard .account__column-right .welcome-text {
          margin-bottom: 20px; } }
      .dashboard .account__column-right .welcome-text__info {
        font-weight: 300;
        font-size: 16px;
        line-height: 28px; }
        @media (max-width: 600px) {
          .dashboard .account__column-right .welcome-text__info {
            line-height: 24px; } }
  @media (max-width: 600px) {
    .dashboard .account__column {
      width: 100% !important; } }
  .dashboard .account__column .info-column {
    width: 50%;
    font-family: "GillSans";
    font-weight: 300; }
    .dashboard .account__column .info-column__title {
      font-size: 20px; }
      @media (max-width: 600px) {
        .dashboard .account__column .info-column__title {
          font-size: 18px; } }
    .dashboard .account__column .info-column__p {
      line-height: 28px; }
      @media (max-width: 600px) {
        .dashboard .account__column .info-column__p {
          line-height: 24px; } }
    @media (max-width: 600px) {
      .dashboard .account__column .info-column {
        width: 100%;
        margin-bottom: 20px; } }

.register__title, .login__title, .reset-password__title {
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 44px; }
  @media (max-width: 480px) {
    .register__title, .login__title, .reset-password__title {
      font-size: 40px; } }
  @media (max-width: 320px) {
    .register__title, .login__title, .reset-password__title {
      font-size: 35px; } }

.register__details-text, .login__details-text, .reset-password__details-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #282827;
  font-family: "GillSans"; }
  @media (max-width: 600px) {
    .register__details-text, .login__details-text, .reset-password__details-text {
      font-size: 14px;
      line-height: 24px; } }

.register .input-field, .login .input-field, .reset-password .input-field {
  width: 325px;
  max-width: calc(100vw - 40px);
  margin-bottom: 20px; }
  .register .input-field__label, .login .input-field__label, .reset-password .input-field__label {
    font-size: 14px; }
  .register .input-field__input, .login .input-field__input, .reset-password .input-field__input {
    padding: 10px;
    width: 100%;
    border: 1px solid #cecece;
    border-radius: 8px; }
    .register .input-field__input:focus, .login .input-field__input:focus, .reset-password .input-field__input:focus {
      border: 1px solid black; }

.register .submit-btn, .login .submit-btn, .reset-password .submit-btn {
  width: 325px;
  max-width: calc(100vw - 40px);
  color: #ffffff;
  font-size: 16px; }

.register .btn__line, .login .btn__line, .reset-password .btn__line {
  margin-top: 10px; }

.register__help-links, .login__help-links, .reset-password__help-links {
  color: #75787b;
  margin-top: 20px; }
  .register__help-links .help-link, .login__help-links .help-link, .reset-password__help-links .help-link {
    font-size: 14px;
    font-family: "GillSans"; }
    @media (max-width: 600px) {
      .register__help-links .help-link, .login__help-links .help-link, .reset-password__help-links .help-link {
        font-weight: 300; } }
  .register__help-links .forgot-password, .login__help-links .forgot-password, .reset-password__help-links .forgot-password {
    font-size: 11px;
    font-family: "GillSans";
    color: #000000; }

.page__content {
  width: 100vw;
  max-width: 100%; }
  .page__content .rte {
    width: 1440px;
    max-width: 100vw;
    position: relative;
    margin: 0 auto; }
    .page__content .rte .breadcrumbs {
      align-self: flex-start;
      padding-left: 30px;
      color: #5b5b5b;
      font-size: 14px; }
      .page__content .rte .breadcrumbs a {
        text-decoration: none; }
      @media (max-width: 600px) {
        .page__content .rte .breadcrumbs {
          padding-left: 0;
          align-self: center;
          font-size: 16px; } }
    .page__content .rte h1, .page__content .rte h2, .page__content .rte h3, .page__content .rte h4, .page__content .rte h5 {
      margin: 2rem 0; }
    .page__content .rte p + h1, .page__content .rte p + h2, .page__content .rte p + h3, .page__content .rte p + h4, .page__content .rte p + h5 {
      margin-top: 4rem; }
    .page__content .rte p, .page__content .rte ul, .page__content .rte ol, .page__content .rte h1, .page__content .rte h2, .page__content .rte h3, .page__content .rte h4, .page__content .rte h5, .page__content .rte table {
      display: block;
      width: 100%;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      position: unset;
      padding-left: 60px;
      padding-right: 60px; }
      @media (max-width: 600px) {
        .page__content .rte p, .page__content .rte ul, .page__content .rte ol, .page__content .rte h1, .page__content .rte h2, .page__content .rte h3, .page__content .rte h4, .page__content .rte h5, .page__content .rte table {
          padding-right: 20px;
          padding-left: 20px; } }
    @media (max-width: 600px) {
      .page__content .rte p {
        height: auto; } }
    .page__content .rte ul {
      list-style-type: disc;
      list-style-position: inside; }
    .page__content .rte ol {
      list-style-type: decimal;
      list-style-position: inside; }
    .page__content .rte li::marker {
      font-weight: bolder;
      margin-right: 16px; }
    .page__content .rte img {
      margin: 20px 0; }
    .page__content .rte p + p, .page__content .rte ul + p, .page__content .rte ol + p {
      margin-top: 2rem; }
    .page__content .rte br {
      margin-bottom: .4rem; }

.page-spacer {
  margin-top: 120px; }

.contact {
  position: relative; }
  .contact .breadcrumbs {
    color: #5b5b5b;
    position: absolute;
    top: -20px;
    font-size: 14px;
    font-family: "GillSans"; }
  .contact__column {
    width: 49%; }
    .contact__column .title-block {
      margin: 20px 0 30px 0;
      padding-bottom: 20px;
      border-bottom: 1px solid #cecece; }
      .contact__column .title-block .title--lg {
        font-size: 30px; }
    .contact__column .rte p {
      font-weight: 300;
      line-height: 28px; }
      @media (max-width: 600px) {
        .contact__column .rte p {
          font-size: 16px; } }
      .contact__column .rte p svg {
        margin-right: 10px; }
      .contact__column .rte p a {
        text-decoration: none; }
      .contact__column .rte p strong {
        font-size: 18px;
        font-family: "AkzidenzGroteskBE-Cn";
        display: block;
        margin-bottom: 10px; }
    .contact__column .input-field {
      width: 100%;
      margin-bottom: 20px;
      position: relative; }
      .contact__column .input-field .input {
        padding: 10px;
        width: 100%;
        border: 1px solid #cecece;
        border-radius: 8px;
        background: white; }
        .contact__column .input-field .input:focus {
          border: 1px solid black; }
      .contact__column .input-field .topic-dropdown {
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        color: #757575;
        outline: 0; }
      .contact__column .input-field .topic-dropdown--arrow {
        position: absolute;
        top: calc(50% - 5px);
        right: 20px;
        width: 10px;
        transform: rotate(90deg) scale(1.5); }
    .contact__column .rte a {
      text-decoration: none;
      display: flex;
      align-items: center; }
      .contact__column .rte a svg {
        margin-right: 10px; }
    @media (max-width: 600px) {
      .contact__column {
        width: 100%; } }
  @media (max-width: 600px) {
    .contact__submit-container {
      flex-direction: column; }
      .contact__submit-container .submit-btn {
        width: 100%; } }
  .contact__messages-container {
    height: 60px; }
    .contact__messages-container .success-message, .contact__messages-container .error-message {
      display: none;
      margin-top: 40px; }
      .contact__messages-container .success-message.active, .contact__messages-container .error-message.active {
        display: block; }
  .contact__help-links {
    font-size: 14px;
    color: #75787b;
    margin-top: 20px;
    font-family: "GillSans";
    font-weight: 300; }
  @media (max-width: 600px) {
    .contact {
      flex-direction: column; } }

#shopify-section-faq-template {
  margin-top: -65px; }

.faq {
  padding: 0 10%;
  position: relative; }
  @media (max-width: 600px) {
    .faq {
      padding: 0 20px;
      position: unset; } }
  .faq .breadcrumbs {
    position: absolute;
    font-family: "GillSans";
    font-size: 14px;
    color: #5b5b5b;
    left: 20px;
    top: 40px; }
    @media (max-width: 600px) {
      .faq .breadcrumbs {
        color: #ffffff;
        top: 170px; } }
    @media (max-width: 320px) {
      .faq .breadcrumbs {
        top: 180px; } }
  .faq__search {
    position: relative;
    border-radius: 4px; }
    .faq__search.active {
      box-shadow: 0 0 0 99999px rgba(0, 0, 0, 0.5); }
      .faq__search.active-input-box {
        border: none !important;
        border-top: 1px solid #d8d8d8; }
    .faq__search-input {
      position: relative;
      border-radius: 4px; }
      .faq__search-input-box {
        border: 1px solid #d8d8d8;
        border-radius: 4px;
        box-shadow: 0 2px 34px rgba(112, 118, 125, 0.05);
        padding: 0 50px;
        height: 50px;
        width: 100%;
        color: #75787b;
        cursor: text;
        background-color: #ffffff;
        font-size: 14px;
        font-weight: 300; }
        .faq__search-input-box.active {
          border: none;
          border-radius: unset;
          border-top-right-radius: 4px;
          border-top-left-radius: 4px; }
      .faq__search-input-icon {
        position: absolute;
        top: 0;
        left: 10px;
        height: 100%; }
    .faq__search-results {
      position: absolute;
      background-color: #ffffff;
      width: 100%;
      border-radius: 4px; }
      .faq__search-results-item {
        color: #000000;
        padding: 10px;
        margin: 0 10px;
        border-bottom: 1px solid #cecece;
        width: calc(100% - 20px);
        text-align: left;
        font-size: 14px;
        font-weight: 300;
        width: calc(100% - 20px); }
        .faq__search-results-item:last-child {
          border-bottom: none; }
  .faq__title {
    margin: 40px 0 20px 0;
    font-family: "AkzidenzGroteskBE-Cn";
    line-height: 34px;
    font-size: 30px; }
  .faq__accordion {
    padding: 10px 0;
    border-bottom: 1px solid #cecece; }
    .faq__accordion.--border-top {
      border-top: 1px solid #cecece; }
    .faq__accordion .faq-toggle {
      color: #000000;
      font-size: 18px; }
      @media (max-width: 320px) {
        .faq__accordion .faq-toggle {
          font-size: 14px; } }
      .faq__accordion .faq-toggle .toggle__change-content {
        width: 20px;
        margin-right: 10px; }
        .faq__accordion .faq-toggle .toggle__change-content::before {
          content: '+';
          transition: content 1s ease; }
      .faq__accordion .faq-toggle.is-active .toggle__change-content::before {
        content: '-'; }
  .faq .faq-answer {
    transition: margin-top 500ms ease;
    color: #282827;
    line-height: 24px; }
    .faq .faq-answer.is-active {
      margin-top: 10px; }

[id^='faq-control-'] {
  scroll-margin-top: 200px; }

/* ---------------------------------------------
    Sections
--------------------------------------------- */
/* ------------------------------------------
    Site header
------------------------------------------ */
.site-header {
  color: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20; }
  .site-header:not(.index-overlay) {
    position: relative; }
  .site-header.index-overlay {
    position: absolute; }
    .site-header.index-overlay .site-header__nav-link {
      color: #000000; }

.site-header__logo {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }
  .site-header__logo svg {
    max-width: 92px;
    height: auto; }
  @media (max-width: 1024px) {
    .site-header__logo {
      -webkit-box-flex: 4;
      -webkit-flex: 4;
      -moz-box-flex: 4;
      -moz-flex: 4;
      -ms-flex: 4;
      flex: 4;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; } }

.site-header__main {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  width: 100%;
  transition: background-color 500ms ease-out; }
  .site-header__main.transparent {
    background-color: transparent;
    color: #000000; }
    .site-header__main.transparent .icon {
      fill: #000000; }
  .site-header__main .icon {
    transition: all .2s linear; }

.site-header__nav-link {
  margin: 0 10px;
  padding: 5px;
  border-bottom: 3px solid transparent; }
  @media (min-width: 769px) {
    .site-header__nav-link {
      -webkit-transition: 0.5s all linear;
      -moz-transition: 0.5s all linear;
      -ms-transition: 0.5s all linear;
      -o-transition: 0.5s all linear;
      transition: 0.5s all linear; }
      .site-header__nav-link:hover {
        border-bottom: 3px solid; }
        .site-header__nav-link:hover .megamenu {
          opacity: 1;
          pointer-events: auto; }
          .site-header__nav-link:hover .megamenu:before {
            display: block; } }

.site-header__user-menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }
  .site-header__user-menu li + li {
    margin-left: 30px; }
    @media (max-width: 1024px) {
      .site-header__user-menu li + li {
        margin-left: 27px; } }
    @media (max-width: 768px) {
      .site-header__user-menu li + li {
        margin-left: 24px; } }
    @media (max-width: 600px) {
      .site-header__user-menu li + li {
        margin-left: 18px; } }
  @media (max-width: 1024px) {
    .site-header__user-menu {
      width: 70px; }
      .site-header__user-menu .user-menu__currency, .site-header__user-menu .user-menu__account {
        display: none; } }

.site-header__nav {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
  -moz-box-flex: 4;
  -moz-flex: 4;
  -ms-flex: 4;
  flex: 4; }

.site-header__hamburger {
  width: 30px;
  margin-right: 40px; }
  .site-header__hamburger.white svg path {
    fill: #ffffff; }
  .site-header__hamburger.black svg path {
    fill: #000000; }

/* ------------------------------------------
    Site footer
------------------------------------------ */
.site-footer {
  margin-top: 80px;
  overflow: hidden;
  background-color: white; }
  .site-footer .logo-card__image-container {
    margin-bottom: 10px; }

.site-footer__mountains {
  margin-bottom: -50px;
  pointer-events: none; }

.shopify-section--footer {
  background: #000000;
  padding-top: 90px;
  padding-bottom: 40px; }
  @media (max-width: 1024px) {
    .shopify-section--footer {
      padding-top: 67.5px; } }
  @media (max-width: 768px) {
    .shopify-section--footer {
      padding-top: 45px; } }
  @media (max-width: 600px) {
    .shopify-section--footer {
      padding-top: 0px; } }

@media (min-width: 769px) {
  .footer__nav {
    padding-right: 20px; } }

@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 40px; }
    .footer__nav ul {
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

@media (min-width: 1025px) {
  .footer__newsletter {
    padding-left: 20px; } }

.footer__newsletter-intro {
  color: #ffffff;
  line-height: 1.5;
  font-weight: 300;
  font-size: 0.875rem;
  margin-bottom: 1.375rem; }
  @media (min-width: 1025px) {
    .footer__newsletter-intro {
      margin-bottom: 1.875rem; } }

.footer__nav, .footer__newsletter {
  width: 100%; }
  @media (min-width: 1025px) {
    .footer__nav, .footer__newsletter {
      max-width: 570px; } }

.footer__nav-list {
  line-height: calc(100% + 20px);
  font-size: 14px; }

.footer__nav-column-title, .footer__newsletter-title {
  margin-bottom: 5px;
  font-size: 18px; }

.footer__social-icons {
  margin-top: 30px; }
  .footer__social-icons .social-icons__list-item + .social-icons__list-item {
    margin-left: 30px; }

.footer__nav-link {
  border-bottom: 1px solid transparent; }
  @media (min-width: 769px) {
    .footer__nav-link {
      -webkit-transition: 0.2s all linear;
      -moz-transition: 0.2s all linear;
      -ms-transition: 0.2s all linear;
      -o-transition: 0.2s all linear;
      transition: 0.2s all linear; }
      .footer__nav-link:hover {
        border-bottom-color: #ffffff; } }

.footer__bottom-payment {
  max-height: 15px;
  width: auto; }
  @media (max-width: 1024px) {
    .footer__bottom-payment {
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
      -moz-order: 0;
      -ms-flex-order: 0;
      order: 0; } }

@media (max-width: 1024px) {
  .footer__bottom-payment-svgs {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-order: 0;
    -ms-flex-order: 0;
    order: 0; } }

.footer__bottom {
  margin-top: 75px; }
  @media (max-width: 1024px) {
    .footer__bottom {
      margin-top: 66.25px; } }
  @media (max-width: 768px) {
    .footer__bottom {
      margin-top: 57.5px; } }
  @media (max-width: 600px) {
    .footer__bottom {
      margin-top: 40px; } }
  @media (min-width: 1025px) {
    .footer__bottom {
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center; } }
  @media (max-width: 1024px) {
    .footer__bottom {
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      align-items: flex-start; } }

@media (max-width: 1024px) {
  .footer__main {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media (max-width: 1024px) {
  .footer__nav-column {
    padding: 20px 0;
    border-bottom: 1px solid; }
    .footer__nav-column:first-child {
      border-top: 1px solid; } }

@media (max-width: 1024px) {
  .footer__nav-column-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
    .footer__nav-column-title svg {
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      transform: rotate(90deg);
      -webkit-transition: 0.5s all linear;
      -moz-transition: 0.5s all linear;
      -ms-transition: 0.5s all linear;
      -o-transition: 0.5s all linear;
      transition: 0.5s all linear;
      width: unset;
      height: 16px; }
      .footer__nav-column-title svg path {
        fill: #ffffff; }
    .footer__nav-column-title.active svg {
      -webkit-transform: rotate(-90deg);
      -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      -o-transform: rotate(-90deg);
      transform: rotate(-90deg); } }

@media (max-width: 1024px) {
  .footer__bottom-legal {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: 20px 0; } }

@media (max-width: 1024px) {
  .footer__bottom-credit {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2; } }

.logo-bar {
  padding-bottom: 80px;
  background-color: white; }
  .logo-bar .title-bar {
    border: 2px solid red; }
  .logo-bar .cards-container .logo-card {
    text-align: center;
    max-width: 200px;
    min-height: 150px; }
    .logo-bar .cards-container .logo-card__image {
      width: 100%;
      max-width: 90px; }
    .logo-bar .cards-container .logo-card__title {
      font-weight: normal;
      margin-bottom: 10px;
      font-size: 20px;
      font-family: "AkzidenzGroteskBE-Cn";
      color: #000000; }
    .logo-bar .cards-container .logo-card__description {
      font-size: 14px;
      line-height: 20px;
      color: #000000; }
    @media (max-width: 600px) {
      .logo-bar .cards-container .logo-card {
        margin: 0;
        margin-bottom: 30px; } }
  @media (max-width: 600px) {
    .logo-bar .cards-container {
      flex-direction: column; } }

.logo-card__image-container {
  margin-bottom: 30px; }

.logo-card__image {
  width: 90px;
  height: auto; }

/* ------------------------------------------
      Featured Products
------------------------------------------ */
.featured-products.product-page__featured-products {
  padding-left: 0;
  padding-right: 0; }

.featured-products .main-image {
  width: 30%;
  max-width: 30%;
  overflow: hidden; }
  .featured-products .main-image.equal-space {
    width: 47%;
    max-width: 47%;
    height: auto; }
    .featured-products .main-image.equal-space img {
      width: 100% !important;
      height: auto !important; }
  .featured-products .main-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: left bottom;
    aspect-ratio: 1/1; }

.featured-products__slider,
.product-recommendations__slider {
  position: relative; }
  .featured-products__slider.equal-space,
  .product-recommendations__slider.equal-space {
    width: 47%; }
  .featured-products__slider--no-image,
  .product-recommendations__slider--no-image {
    width: 100%; }
  .featured-products__slider .title-bar,
  .product-recommendations__slider .title-bar {
    margin-bottom: 40px; }
    .featured-products__slider .title-bar .empty-spacer,
    .product-recommendations__slider .title-bar .empty-spacer {
      opacity: 0; }
  .featured-products__slider .slick-slide,
  .product-recommendations__slider .slick-slide {
    margin: 0 10px; }
  .featured-products__slider .slick-list,
  .product-recommendations__slider .slick-list {
    margin: 0 -10px; }
  .featured-products__slider .slick--arrow-custom,
  .product-recommendations__slider .slick--arrow-custom {
    position: absolute;
    z-index: 19;
    background: white;
    filter: invert(100%);
    height: 25px;
    width: 25px;
    font-size: 20px;
    border-radius: 50%;
    top: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-left: 2px; }
    @media (max-width: 768px) {
      .featured-products__slider .slick--arrow-custom,
      .product-recommendations__slider .slick--arrow-custom {
        filter: none; } }
    .featured-products__slider .slick--arrow-custom.slick--arrow-prev,
    .product-recommendations__slider .slick--arrow-custom.slick--arrow-prev {
      left: -20px;
      transform: rotate(180deg) scale(2); }
    .featured-products__slider .slick--arrow-custom.slick--arrow-next,
    .product-recommendations__slider .slick--arrow-custom.slick--arrow-next {
      right: -20px;
      transform: scale(2); }

.featured-products__slider {
  width: 65%; }

.featured-products--mobile {
  position: relative;
  min-width: 110vw;
  margin-left: 20px;
  min-height: 600px; }
  .featured-products--mobile.featured-products--mobile--reduced-height {
    min-height: 500px; }
  .featured-products--mobile.custom-page__featured-products {
    padding-left: 0;
    margin-left: 1px;
    min-width: 100%; }
  .featured-products--mobile.our-fabric__featured-products {
    margin: 0; }
  .featured-products--mobile.remove--height {
    min-height: auto; }
  .featured-products--mobile .title-bar--mobile {
    width: 35%; }
    .featured-products--mobile .title-bar--mobile.full--width {
      width: calc(100% - 80px);
      margin-left: -20px;
      margin-bottom: 20px; }
    .featured-products--mobile .title-bar--mobile.our-fabric__featured-products {
      margin-left: 0; }
    .featured-products--mobile .title-bar--mobile h4 {
      font-size: 24px; }
    .featured-products--mobile .title-bar--mobile .hidden-spacer {
      min-height: 100px;
      width: 100%; }
  .featured-products--mobile .main-image--mobile {
    width: 65%; }
    .featured-products--mobile .main-image--mobile img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: left bottom;
      aspect-ratio: 1/1; }
  .featured-products--mobile .featured-products__slider--mobile {
    position: absolute;
    top: 30%;
    max-width: calc(100vw - 40px); }
    .featured-products--mobile .featured-products__slider--mobile.featured-products__slider--mobile--reduced-height {
      top: 10%; }
    .featured-products--mobile .featured-products__slider--mobile .slider__mobile-grid {
      flex-wrap: wrap; }
      .featured-products--mobile .featured-products__slider--mobile .slider__mobile-grid .product-item {
        width: 49%; }
    .featured-products--mobile .featured-products__slider--mobile--slim {
      margin-left: -20px; }
    .featured-products--mobile .featured-products__slider--mobile.custom-page__featured-products {
      margin-left: -20px;
      max-width: calc(100vw - 80px) !important; }
    .featured-products--mobile .featured-products__slider--mobile.product-page__featured-products {
      max-width: calc(100vw - 70px); }
    .featured-products--mobile .featured-products__slider--mobile.remove--absolute {
      position: relative; }
    .featured-products--mobile .featured-products__slider--mobile .slick-slide {
      margin: 0 10px; }
    .featured-products--mobile .featured-products__slider--mobile .slick-list {
      margin: 0 -10px; }
    .featured-products--mobile .featured-products__slider--mobile .slick--arrow-custom {
      position: absolute;
      z-index: 19;
      background: white;
      filter: invert(100%);
      height: 25px;
      width: 25px;
      font-size: 20px;
      border-radius: 50%;
      top: 35%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      padding-left: 2px; }
      .featured-products--mobile .featured-products__slider--mobile .slick--arrow-custom.slick--arrow-prev {
        left: 0;
        transform: rotate(180deg) scale(2); }
      .featured-products--mobile .featured-products__slider--mobile .slick--arrow-custom.slick--arrow-next {
        right: 0;
        transform: scale(2); }
    .featured-products--mobile .featured-products__slider--mobile .slick-disabled {
      opacity: 0;
      pointer-events: none; }

.covet-pics__title {
  font-family: "AkzidenzGroteskBE-Cn";
  font-size: 32px;
  margin-bottom: 40px;
  margin-left: 30px; }
  @media (max-width: 600px) {
    .covet-pics__title {
      font-size: 24px;
      margin-left: 20px;
      margin-bottom: 20px; } }

.covet-pics__ig-handle {
  font-family: "GillSans";
  line-height: 22px;
  font-weight: 300;
  font-size: 18px; }

/* ------------------------------------------
      Featured Collection
------------------------------------------ */
.home--featured-collection {
  position: relative; }
  .home--featured-collection .title-bar {
    width: 100%; }
    .home--featured-collection .title-bar .title {
      font-size: 32px;
      font-weight: normal; }
      @media (max-width: 600px) {
        .home--featured-collection .title-bar .title {
          font-size: 24px; } }
  .home--featured-collection ul {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px; }
    @media (max-width: 600px) {
      .home--featured-collection ul {
        margin-top: 20px;
        margin-bottom: 20px; } }
  .home--featured-collection .slick-slide {
    margin: 0 10px; }
  .home--featured-collection .slick-list {
    margin: 0 -10px; }
  .home--featured-collection .slick--arrow-custom {
    position: absolute;
    z-index: 19;
    background: white;
    filter: invert(100%);
    height: 25px;
    width: 25px;
    font-size: 20px;
    border-radius: 50%;
    top: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-left: 2px; }
    @media (max-width: 768px) {
      .home--featured-collection .slick--arrow-custom {
        filter: none; } }
    .home--featured-collection .slick--arrow-custom.slick--arrow-prev {
      left: 50px;
      transform: rotate(180deg) scale(2); }
    .home--featured-collection .slick--arrow-custom.slick--arrow-next {
      right: 50px;
      transform: scale(2); }
  .home--featured-collection .slick-disabled {
    opacity: 0;
    pointer-events: none; }

/* ------------------------------------------
      Collection List
------------------------------------------ */
.home--collection-list .title-bar, .collection-list .title-bar {
  width: 100%; }

.home--collection-list ul, .collection-list ul {
  width: 100%;
  margin-top: 40px; }
  .home--collection-list ul li, .collection-list ul li {
    width: 24%;
    height: 300px;
    position: relative;
    margin-bottom: 2%; }
    @media (max-width: 600px) {
      .home--collection-list ul li, .collection-list ul li {
        width: 48%; } }
    .home--collection-list ul li img, .collection-list ul li img {
      border-radius: 10px;
      margin-bottom: 10px;
      object-fit: cover;
      width: 100%;
      height: 100%; }
    .home--collection-list ul li .collection--title, .collection-list ul li .collection--title {
      position: absolute;
      bottom: 20px;
      font-size: 1.5rem;
      width: 100%;
      text-align: center;
      color: #ffffff; }

/* ------------------------------------------
      Featured Blog
------------------------------------------ */
.featured-blog .title-bar {
  margin-bottom: 40px; }
  @media (max-width: 600px) {
    .featured-blog .title-bar {
      margin-bottom: 20px;
      margin-top: 40px; } }

@media (max-width: 600px) {
  .featured-blog .articles__container {
    flex-direction: column; } }

.featured-blog .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none; }
  .featured-blog .slick-dots li {
    margin: 0 0.25rem; }
  .featured-blog .slick-dots button {
    display: block;
    height: 10px;
    width: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: black;
    opacity: 0.25;
    text-indent: -9999px; }
  .featured-blog .slick-dots li.slick-active button {
    opacity: 1; }

/* ------------------------------------------
      2 Columns
------------------------------------------ */
.two-columns .two-columns--column {
  width: 50%;
  position: relative; }
  .two-columns .two-columns--column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; }
  .two-columns .two-columns--column .column--info-container {
    position: absolute;
    bottom: 0;
    z-index: 1;
    color: white;
    width: 100%;
    padding-bottom: 20px; }
  @media (max-width: 600px) {
    .two-columns .two-columns--column {
      width: 100%; } }

@media (max-width: 600px) {
  .two-columns {
    flex-direction: column; } }

/* ------------------------------------------
      3 Column Videos
------------------------------------------ */
.videos .info-container {
  padding: 0 15%;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Gill Sans - Light", sans-serif;
  font-weight: 300;
  line-height: 20px; }
  .videos .info-container h3 {
    color: #1d1d1b;
    font-size: 24px;
    font-family: "Akzidenz Grotesk BE - Cn", sans-serif; }
  .videos .info-container p {
    margin: 20px 0;
    font-size: 16px; }
    @media (max-width: 600px) {
      .videos .info-container p {
        font-size: 14px; } }
  @media (max-width: 600px) {
    .videos .info-container {
      padding: 0; } }

.videos .img-container {
  flex-wrap: wrap; }
  .videos .img-container .thumbnail {
    position: relative; }
    .videos .img-container .thumbnail img {
      margin: 0 !important;
      width: 100%; }
    .videos .img-container .thumbnail.full {
      width: 100%; }
    .videos .img-container .thumbnail.half {
      width: 49%; }
      @media (max-width: 600px) {
        .videos .img-container .thumbnail.half {
          width: 100%; } }
    .videos .img-container .thumbnail.third {
      width: 32%; }
      @media (max-width: 600px) {
        .videos .img-container .thumbnail.third {
          width: 100%; } }
    .videos .img-container .thumbnail .playbtn {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      transform: scale(0.5);
      cursor: pointer; }
    .videos .img-container .thumbnail .video-title {
      position: absolute;
      bottom: 10%;
      width: 100%;
      font-family: "AkzidenzGroteskBE-Cn";
      font-size: 30px;
      line-height: 60px; }
    @media (max-width: 600px) {
      .videos .img-container .thumbnail {
        width: 100%;
        margin-bottom: 20px; } }
  @media (max-width: 600px) {
    .videos .img-container {
      flex-direction: column; } }

.img-container--half > * + *,
.img-container--third > * + * {
  margin-left: 2%; }
  @media (max-width: 600px) {
    .img-container--half > * + *,
    .img-container--third > * + * {
      margin-left: 0; } }

.page__hero {
  width: 2500px;
  max-width: 100%;
  height: 355px;
  max-height: auto;
  margin: 0 auto;
  position: relative; }
  .page__hero .page__title {
    text-align: center; }
  @media (max-width: 600px) {
    .page__hero.contact-page__hero .page__title {
      font-size: 40px; } }
  .page__hero.faq-page__hero .page__title {
    font-weight: normal;
    font-size: 40px; }
  .page__hero--no-margin {
    margin: 0 auto; }
  .page__hero-description {
    width: 600px;
    max-width: 100%;
    line-height: 24px;
    font-weight: 300; }
    @media (max-width: 600px) {
      .page__hero-description {
        padding: 0 20px; } }

/* ---------------------------------------------
    Snippets
--------------------------------------------- */
.product-item {
  width: 32%; }
  .product-item.limit-four {
    width: 24%; }
    @media (max-width: 600px) {
      .product-item.limit-four {
        width: 48%; } }
  .product-item.search__product-item, .product-item.collection__product-item {
    margin-left: 0.5%;
    margin-right: 0.5%; }
  .product-item__image {
    position: relative;
    width: auto;
    height: 410px;
    border-radius: 9px;
    margin-bottom: 10px; }
    @media (max-width: 600px) {
      .product-item__image {
        height: 300px; } }
    .product-item__image .sale-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 6px 20px;
      background-color: #bc2227;
      color: white;
      border-radius: 3px; }
    .product-item__image img {
      border-radius: 10px;
      margin-bottom: 10px;
      object-fit: cover;
      width: 100%;
      height: 100%; }
  .product-item__title {
    font-size: 18px;
    color: #000000; }
  .product-item__collection-info {
    font-size: 14px;
    color: #1f3361; }
  .product-item__price {
    font-size: 14px;
    color: #656565;
    font-weight: 300; }
  .product-item__under {
    position: relative; }
    .product-item__under-content {
      display: none; }
      @media (min-width: 769px) {
        .product-item__under-content.active {
          display: block; } }
    .product-item__under-buy, .product-item__under-quview {
      position: absolute;
      width: 100%;
      padding: 5px;
      margin: 0;
      border-radius: 3px; }
    .product-item__under-text {
      position: absolute;
      font-family: "GillSans";
      font-size: 14px;
      color: #1f3361;
      font-weight: 300; }

.article-item__container {
  position: relative; }
  .article-item__container.article-item--width-override {
    width: 32%; }
    @media (max-width: 600px) {
      .article-item__container.article-item--width-override {
        width: 100%;
        padding: 0 10px; } }
  .article-item__container .article-item {
    width: 100%;
    border-radius: 10px;
    background-color: #ededed;
    padding-bottom: 60px;
    transition: box-shadow 0.5s ease; }
    .article-item__container .article-item .article-item__image img {
      border-radius: 10px 10px 0px 0px; }
    .article-item__container .article-item .article--info {
      padding: 20px; }
      .article-item__container .article-item .article--info .article--mini-title {
        font-size: 12px; }
    .article-item__container .article-item:hover {
      box-shadow: 2px 0px 20px black; }
    .article-item__container .article-item:hover + .hide {
      opacity: 1; }
  .article-item__container .btn--container {
    position: absolute;
    bottom: 20px;
    left: 20px; }
    .article-item__container .btn--container:hover {
      opacity: 1 !important; }
    .article-item__container .btn--container.hide {
      opacity: 0; }
      @media (max-width: 600px) {
        .article-item__container .btn--container.hide {
          opacity: 1;
          margin-bottom: 20px; } }
    @media (max-width: 600px) {
      .article-item__container .btn--container {
        bottom: 5px;
        left: 30px; } }

/* ------------------------------------------
    Cart item
------------------------------------------ */
.cart__item-card {
  padding: 20px;
  border: 1px solid lightgray;
  margin-bottom: 10px;
  min-height: 203px; }
  .cart__item-card .item-card__image {
    background-color: #ededed;
    border-radius: 9px;
    height: 130px;
    width: 100px;
    margin-right: 20px;
    padding: 5px; }
    .cart__item-card .item-card__image img {
      max-height: 100%;
      object-fit: contain; }
  .cart__item-card .item-card__info .collection-title {
    font-size: 14px; }
  .cart__item-card .item-card__info .product-title {
    font-size: 18px; }
  .cart__item-card .item-card__info .product-option {
    font-family: "GillSans"; }
    @media (max-width: 600px) {
      .cart__item-card .item-card__info .product-option {
        line-height: 22px; } }
  .cart__item-card .item-card__quantity {
    border: 1px solid #cecece;
    width: 80px; }
    .cart__item-card .item-card__quantity input[type='button'] {
      height: 30px;
      width: 30px;
      cursor: pointer;
      color: #000000; }
    .cart__item-card .item-card__quantity input[type='number'] {
      width: 20px;
      text-align: center;
      font-family: "AkzidenzGroteskBE-Cn";
      line-height: 16px; }
  .cart__item-card .product-price {
    font-family: "GillSans";
    font-size: 16px; }
  .cart__item-card .remove-item {
    cursor: pointer;
    height: 50px;
    font-size: 12px;
    font-family: "GillSans"; }
    @media (max-width: 600px) {
      .cart__item-card .remove-item {
        line-height: 17px; } }

@media (max-width: 600px) {
  width: 100%; }

.user-menu .user-menu__currency {
  position: relative;
  cursor: pointer; }
  .user-menu .user-menu__currency .geoip-dropdown {
    position: absolute;
    top: 30px;
    left: -10px;
    width: 120px;
    background: #1d1d1b;
    color: white;
    display: none; }
    .user-menu .user-menu__currency .geoip-dropdown div {
      padding: 10px;
      border: 1px solid transparent; }
      .user-menu .user-menu__currency .geoip-dropdown div:hover, .user-menu .user-menu__currency .geoip-dropdown div.geoip--selected {
        border: 1px solid white; }
      .user-menu .user-menu__currency .geoip-dropdown div img {
        height: 20px;
        width: auto; }
    .user-menu .user-menu__currency .geoip-dropdown.geoip-open {
      display: block; }
      @media (max-width: 1024px) {
        .user-menu .user-menu__currency .geoip-dropdown.geoip-open {
          top: -130px; } }
      .user-menu .user-menu__currency .geoip-dropdown.geoip-open .icon {
        transform: rotate(90deg); }

.user-menu .geoip-open .icon {
  transform: rotate(90deg); }

.user-menu .geoip-flag {
  width: 32px;
  height: 21px;
  max-width: none; }

.user-menu .user-menu__bag {
  position: relative;
  cursor: pointer; }
  .user-menu .user-menu__bag .user-menu__bag__counter {
    background-color: #FFF;
    color: #000;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 1;
    font-size: 12px;
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
    top: -10px;
    right: -50%; }

.site-header__promo {
  border-bottom: 1px solid #ffffff;
  padding: 13px;
  background: #000000; }

.index-overlay .site-header__promo {
  background: #000000;
  border-bottom: none; }

.megamenu {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  transition: 0.2s all linear;
  pointer-events: none; }
  .megamenu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    display: none; }
  .megamenu .container, .megamenu .container--no-padding {
    width: 995px; }

.megamenu--cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background: #000000; }

.megamenu--list {
  padding: 40px 0 60px;
  background: #ffffff; }

.megamenu__card {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-height: 620px;
  color: white !important; }
  @media (min-width: 769px) {
    .megamenu__card {
      -webkit-transition: 0.5s all linear;
      -moz-transition: 0.5s all linear;
      -ms-transition: 0.5s all linear;
      -o-transition: 0.5s all linear;
      transition: 0.5s all linear; }
      .megamenu__card:hover .megamenu__card-text {
        opacity: 1; }
      .megamenu__card:hover .megamenu__card-image:after {
        background-color: rgba(0, 0, 0, 0.2); } }

.megamenu__card-image {
  position: relative;
  height: 100%; }
  .megamenu__card-image:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    -webkit-transition: 0.5s all linear;
    -moz-transition: 0.5s all linear;
    -ms-transition: 0.5s all linear;
    -o-transition: 0.5s all linear;
    transition: 0.5s all linear;
    background-color: rgba(0, 0, 0, 0.6); }

.megamenu__card-text {
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.7;
  -webkit-transition: 0.5s all linear;
  -moz-transition: 0.5s all linear;
  -ms-transition: 0.5s all linear;
  -o-transition: 0.5s all linear;
  transition: 0.5s all linear; }

.megamenu__links {
  width: 25%; }

.megamenu__link {
  border-bottom: 3px solid transparent;
  width: fit-content;
  width: -moz-fit-content; }
  @media (min-width: 769px) {
    .megamenu__link {
      -webkit-transition: 0.5s all linear;
      -moz-transition: 0.5s all linear;
      -ms-transition: 0.5s all linear;
      -o-transition: 0.5s all linear;
      transition: 0.5s all linear; }
      .megamenu__link:hover {
        border-bottom-color: #000000; } }
  .megamenu__link + .megamenu__link {
    margin-top: 15px; }

.megamenu__promo {
  width: calc(75% - 30px);
  position: relative; }

.with-card .megamenu__links {
  margin: 30px 0; }

.megamenu__promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 40px; }

.megamenu__promo-btn {
  padding: 11px 30px;
  margin-top: 15px; }

.mobile-menu {
  width: 100%;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  transition: 0.2s all linear;
  background: #ffffff;
  z-index: 10;
  max-width: 375px; }
  .mobile-menu.mobile-menu--open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
    .mobile-menu.mobile-menu--open + .mobile-menu__overlay {
      opacity: 0.4;
      pointer-events: auto; }
  .mobile-menu svg {
    color: #000000; }

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: #000000;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  transition: 0.2s all linear;
  pointer-events: none;
  z-index: 9; }

.mobile-menu__close {
  position: relative;
  z-index: 2; }

.mobile-menu__main-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid rgba(218, 218, 218, 0.7); }

.mobile-menu__main-anchor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.mobile-menu__main-link-image {
  width: 60px;
  height: 60px; }

.mobile-menu__main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: auto; }

.mobile-menu__main {
  padding: 0 20px; }

.mobile-menu__children {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  transition: 0.2s all linear;
  background: #ffffff;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: auto; }
  .mobile-menu__children.children-open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  .mobile-menu__children .mobile-menu__header {
    border-bottom: none; }

.mobile-menu__back {
  position: relative;
  padding: 20px 10px; }
  .mobile-menu__back svg {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    position: absolute;
    top: 50%;
    left: 0; }

.mobile-menu__header {
  padding: 30px 10px;
  margin: 0 20px;
  border-bottom: 1px solid rgba(218, 218, 218, 0.7); }
  .mobile-menu__header svg {
    max-width: 92px; }

.mobile-megamenu {
  position: relative;
  bottom: unset;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  opacity: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  pointer-events: auto; }
  .mobile-megamenu.megamenu--cards {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .mobile-megamenu.megamenu--cards * {
      color: #ffffff; }
  .mobile-megamenu.megamenu--list {
    padding-top: 0; }
  .mobile-megamenu .megamenu__card-image:after {
    background-color: rgba(0, 0, 0, 0.2); }
  .mobile-megamenu .megamenu__card {
    max-height: 150px; }
  .mobile-megamenu .megamenu__card-text {
    opacity: 1;
    width: fit-content;
    width: -moz-fit-content; }
  .mobile-megamenu .container, .mobile-megamenu .container--no-padding {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .mobile-megamenu .megamenu__links {
    width: 100%;
    margin-top: 0; }
  .mobile-megamenu .megamenu__promo {
    min-height: 300px;
    width: calc(100% + 60px);
    position: relative;
    left: -30px; }
    @media (max-width: 600px) {
      .mobile-megamenu .megamenu__promo {
        width: calc(100% + 40px);
        position: relative;
        left: -20px; } }
    .mobile-megamenu .megamenu__promo h2, .mobile-megamenu .megamenu__promo h3 {
      color: #ffffff; }
    .mobile-megamenu .megamenu__promo img {
      position: absolute; }

.mobile-menu__footer {
  background: #000000;
  padding: 20px 20px 40px; }
  .mobile-menu__footer .geoip-open .icon {
    transform: rotate(-90deg); }

.mobile-menu__footer-user-menu.flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }
  .mobile-menu__footer-user-menu.flex svg {
    color: #ffffff; }
  .mobile-menu__footer-user-menu.flex .user-menu__currency {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -moz-order: 4;
    -ms-flex-order: 4;
    order: 4; }
  .mobile-menu__footer-user-menu.flex li:not(.user-menu__currency) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    .mobile-menu__footer-user-menu.flex li:not(.user-menu__currency) svg {
      margin-right: 20px;
      width: 16px; }
  .mobile-menu__footer-user-menu.flex li:not(.user-menu__currency) a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }

.lightbox {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: scroll;
  z-index: 1000;
  padding: 0 15%;
  display: flex;
  justify-content: center;
  align-items: center; }
  .lightbox--has-image {
    background-color: white; }
  .lightbox__inner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; }
    .lightbox__inner-container.lightbox--has-image {
      padding-top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white; }
    .lightbox__inner-container .responsive-iframe {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%; }
    .lightbox__inner-container .lightbox__img {
      max-height: 80vh; }
  .lightbox .lightbox-close {
    font-size: 64px;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer; }
    .lightbox .lightbox-close.lightbox--has-image {
      top: unset;
      bottom: 15%;
      right: calc(50% - 30px);
      background: black;
      color: white;
      height: 60px;
      width: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%; }
  .lightbox .lightbox__custom-arrow {
    position: absolute;
    bottom: calc(15% + 10px);
    height: 40px;
    width: 40px;
    filter: invert(100%);
    background: white;
    border-radius: 50%;
    cursor: pointer; }
    .lightbox .lightbox__custom-arrow.lightbox--prev {
      transform: rotate(180deg);
      left: calc(50% - 80px); }
    .lightbox .lightbox__custom-arrow.lightbox--next {
      right: calc(50% - 80px); }
  @media (max-width: 600px) {
    .lightbox {
      padding: 0; } }

.side-cart {
  position: fixed;
  right: -500px;
  top: 0;
  height: calc(100vh - calc(100vh - 100%));
  background-color: white;
  padding: 20px;
  width: 500px;
  max-width: 100vw;
  transition: right .2s linear;
  z-index: 100000000; }
  .side-cart .cart__items-container {
    height: 70%;
    overflow-y: auto; }
    .side-cart .cart__items-container .empty-cart-text {
      display: none; }
      .side-cart .cart__items-container .empty-cart-text.active {
        display: block; }
  .side-cart.show {
    right: 0; }
  .side-cart__title {
    padding-bottom: 20px; }
    .side-cart__title .my-bag {
      padding-right: 30px;
      font-size: 32px; }
    .side-cart__title .item-count {
      margin-top: 10px;
      font-size: 16px;
      font-family: "GillSans"; }
  .side-cart--close {
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    margin-bottom: 15px; }
  .side-cart__summary {
    background-color: #ededed;
    padding: 20px;
    height: auto;
    width: 100%;
    border-radius: 9px; }
    .side-cart__summary .subtotal-block {
      margin: 20px 0; }
      .side-cart__summary .subtotal-block .subtotal-text {
        font-size: 18px !important; }
      .side-cart__summary .subtotal-block .subtotal-amount {
        font-size: 16px !important;
        font-family: "GillSans"; }
    .side-cart__summary .checkout-btn {
      width: 100%;
      margin: 20px 0; }
    .side-cart__summary .summary__promo-text {
      margin-bottom: 10px;
      font-family: "GillSans";
      font-weight: 300; }
    .side-cart__summary .side-cart--clear {
      cursor: pointer;
      font-size: 12px;
      font-family: "GillSans"; }
  .side-cart .scrollbar-blackline {
    height: 1px;
    width: 100%;
    background-color: #ededed;
    position: absolute;
    bottom: 4px;
    z-index: -1; }
  .side-cart ::-webkit-scrollbar {
    width: 10px; }
  .side-cart ::-webkit-scrollbar-thumb {
    background: #888; }
  .side-cart ::-webkit-scrollbar-thumb:hover {
    background: #555; }

/* ------------------------------------------
      Image with Text
------------------------------------------ */
div.image-text.image-text--auto-height .image-text--item.image-text--text {
  height: auto; }

div.image-text.reverse {
  flex-direction: row-reverse; }
  @media (max-width: 600px) {
    div.image-text.reverse {
      flex-direction: column; } }

@media (max-width: 600px) {
  div.image-text.mobile_reverse {
    flex-direction: column !important; } }

div.image-text .image-text--item {
  width: 50%; }
  div.image-text .image-text--item .mini-title {
    font-family: "AkzidenzGroteskBE-Cn";
    font-size: 16px; }
  div.image-text .image-text--item .title.title--lg {
    font-size: 40px;
    margin: 0 0 10px; }
    @media (max-width: 600px) {
      div.image-text .image-text--item .title.title--lg {
        font-size: 32px; } }
  div.image-text .image-text--item .title.description {
    font-family: "GillSans";
    font-size: 16px;
    line-height: 22px;
    font-weight: 400; }
    @media (max-width: 600px) {
      div.image-text .image-text--item .title.description {
        line-height: 20px;
        font-size: 14px; } }
  @media (max-width: 600px) {
    div.image-text .image-text--item .title {
      margin: 10px 0 0 0; } }
  div.image-text .image-text--item.image-text--image img {
    height: auto; }
  div.image-text .image-text--item.image-text--image.image-text--auto-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  div.image-text .image-text--item.image-text--text {
    padding: 50px;
    background-color: #ededed; }
    @media (max-width: 600px) {
      div.image-text .image-text--item.image-text--text {
        height: auto;
        padding: 20px; } }
  div.image-text .image-text--item .btn {
    margin-top: 20px; }
  @media (max-width: 600px) {
    div.image-text .image-text--item {
      width: 100%; } }

@media (max-width: 600px) {
  div.image-text {
    flex-direction: column; } }

/* ------------------------------------------
      Hero
------------------------------------------ */
.hero__wrapper {
  max-height: 900px;
  height: 100vh;
  position: relative;
  overflow: visible;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  .hero__wrapper--no-margin {
    margin: 0 !important; }
  .hero__wrapper--no-padding {
    padding: 0 !important; }
  @media (max-width: 600px) {
    .hero__wrapper.bottom-spacer {
      margin-bottom: 250px; } }
  @media (max-width: 600px) {
    .hero__wrapper.small-spacer {
      margin-bottom: 200px; } }
  .hero__wrapper.active {
    margin-top: 0 !important; }
  .hero__wrapper .hero__bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover; }
    .hero__wrapper .hero__bg-img.video {
      object-fit: cover;
      object-position: center; }
  .hero__wrapper .hero__content {
    position: relative;
    color: #ffffff;
    width: 100%;
    padding: 120px;
    z-index: 5; }
    .hero__wrapper .hero__content.white-background--with-offset {
      background: white;
      color: black;
      width: 35%;
      padding: 30px; }
      .hero__wrapper .hero__content.white-background--with-offset.right {
        right: 10%;
        left: unset; }
        @media (max-width: 600px) {
          .hero__wrapper .hero__content.white-background--with-offset.right {
            right: unset; } }
      .hero__wrapper .hero__content.white-background--with-offset.left {
        left: 10%;
        right: unset; }
        @media (max-width: 600px) {
          .hero__wrapper .hero__content.white-background--with-offset.left {
            left: unset; } }
      @media (max-width: 600px) {
        .hero__wrapper .hero__content.white-background--with-offset {
          width: 90%;
          left: 5% !important;
          top: 50%;
          border: 1px solid #1d1d1b; } }
    @media (max-width: 600px) {
      .hero__wrapper .hero__content {
        padding: 100px 20px;
        max-width: 100%; } }
    .hero__wrapper .hero__content .mini-title {
      font-family: "AkzidenzGroteskBE-Cn"; }
    .hero__wrapper .hero__content .title {
      text-align: left;
      font-weight: 300; }
      .hero__wrapper .hero__content .title.title--lg {
        font-family: "AkzidenzGroteskBE-Cn";
        letter-spacing: 3px; }
        @media (max-width: 600px) {
          .hero__wrapper .hero__content .title.title--lg {
            font-size: 30px;
            letter-spacing: normal; } }
      .hero__wrapper .hero__content .title.title--xs {
        font-family: "GillSans";
        font-size: 16px;
        line-height: 22px; }
        @media (max-width: 600px) {
          .hero__wrapper .hero__content .title.title--xs {
            font-size: 14px;
            line-height: 20px;
            width: 100% !important; } }
        @media (max-width: 320px) {
          .hero__wrapper .hero__content .title.title--xs {
            width: 100% !important; } }
      .hero__wrapper .hero__content .title.title-alt {
        margin: 20px 0 30px 0; }
        @media (max-width: 768px) {
          .hero__wrapper .hero__content .title.title-alt {
            margin: 10px 0 15px 0; } }

.search-box {
  width: 100%;
  background-color: white;
  color: black;
  display: none;
  z-index: -1;
  padding-left: 20px;
  padding-right: 20px; }
  .search-box__mobile-top {
    width: 100%;
    margin-top: 20px; }
    .search-box__mobile-top--close {
      font-size: 2rem; }
  @media (max-width: 600px) {
    .search-box {
      position: fixed;
      height: calc(100vh - calc(100vh - 100%));
      width: 100%;
      overflow-x: hidden;
      top: 0;
      left: -100%;
      display: flex;
      z-index: 100000000;
      justify-content: flex-start !important;
      transition: left 300ms linear; }
      .search-box.active {
        left: 0; } }
  .search-box.active {
    display: flex;
    z-index: 10000000; }
  .search-box__input {
    width: 100%;
    position: relative;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300; }
    .search-box__input ::placeholder {
      font-size: 14px;
      font-weight: 300; }
    .search-box__input.active {
      margin: 20px 0;
      border-bottom: 1px solid #ececec; }
      @media (max-width: 600px) {
        .search-box__input.active {
          border: none;
          margin: 20px 0 0 0; } }
    @media (max-width: 600px) {
      .search-box__input {
        margin-bottom: 0;
        border-bottom: none; } }
    .search-box__input-field {
      border-radius: 8px;
      border: 1px solid #1d1d1b;
      padding: 10px 0 10px 50px;
      margin-bottom: 20px;
      width: 100%; }
      .search-box__input-field::placeholder {
        font-size: 14px;
        font-weight: 300; }
      @media (max-width: 600px) {
        .search-box__input-field {
          border: none;
          border-top: 1px solid #ececec;
          border-bottom: 1px solid #ececec;
          border-radius: 0;
          padding-left: 35px; } }
    .search-box__input-icon {
      height: calc(100% - 20px);
      margin-left: 20px;
      margin-right: 20px;
      position: absolute;
      top: 0; }
      @media (max-width: 600px) {
        .search-box__input-icon {
          margin-left: 0; } }
      .search-box__input-icon.icon--search {
        left: 0; }
      .search-box__input-icon.icon--close {
        right: 0;
        font-size: 24px;
        font-weight: 300; }
  .search-box__suggestions {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: none; }
    @media (max-width: 600px) {
      .search-box__suggestions {
        flex-direction: column; } }
    .search-box__suggestions.active {
      display: flex; }
    @media (max-width: 600px) {
      .search-box__suggestions {
        flex-direction: column; } }
    .search-box__suggestions-column--first {
      width: 40%; }
    .search-box__suggestions-column--last {
      width: 60%; }
    @media (max-width: 600px) {
      .search-box__suggestions-column {
        width: 100% !important; } }
    .search-box__suggestions-column .title-block {
      width: 100%;
      margin-bottom: 10px; }
      .search-box__suggestions-column .title-block .view-all__btn {
        font-size: 16px; }
      .search-box__suggestions-column .title-block .title {
        font-weight: normal;
        font-size: 20px; }
    .search-box__suggestions-terms {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px;
      max-width: 225px; }
      .search-box__suggestions-terms .suggested-terms {
        font-weight: 300;
        font-size: 14px;
        font-weight: 300;
        width: 30%;
        max-width: 75px; }
    .search-box__suggestions-items {
      flex-wrap: wrap; }
      @media (max-width: 600px) {
        .search-box__suggestions-items {
          flex-direction: column; } }

.loader-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.6); }
  .loader-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: unset; }
  .loader-overlay .loader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    z-index: 1; }
    .loader-overlay .loader .loader-sector {
      border-radius: 50%;
      position: absolute;
      width: 100%;
      height: 100%;
      border: 8px solid transparent;
      mix-blend-mode: overlay; }
      .loader-overlay .loader .loader-sector:nth-child(1) {
        animation: rotate 0.8s ease-in infinite;
        border-top: 8px solid #102b4e; }
      .loader-overlay .loader .loader-sector:nth-child(2) {
        animation: rotate 1.2s ease-in-out infinite;
        border-top: 8px solid #2861a4; }

@keyframes rotate {
  from {
    transform: rotate(0); }
  to {
    transform: rotate(360deg); } }

.suggested-product {
  margin-bottom: 40px;
  width: 49%; }
  @media (max-width: 600px) {
    .suggested-product {
      margin-bottom: 20px;
      width: 100%; } }
  .suggested-product__image {
    display: block;
    height: 125px;
    width: 100px !important;
    width: auto;
    margin-right: 10px; }
    @media (max-width: 600px) {
      .suggested-product__image {
        width: 81px !important;
        height: 105px; } }
    .suggested-product__image img {
      height: 100%;
      object-fit: cover;
      border-radius: 9px; }
  .suggested-product__collection-text {
    font-size: 14px;
    color: #1f3361; }
  .suggested-product__info {
    font-size: 14px; }
    .suggested-product__info-title {
      overflow: hidden;
      font-size: 18px !important;
      font-weight: normal; }
      @media (max-width: 600px) {
        .suggested-product__info-title {
          font-weight: 300;
          white-space: nowrap; } }
    .suggested-product__info .product-price {
      margin: 0;
      font-weight: 300; }
    .suggested-product__info-counter {
      color: #1f3361;
      font-weight: 300; }

.sort-by {
  position: relative;
  text-align: right;
  min-width: 150px; }
  .sort-by__toggle {
    font-size: 14px;
    color: #1d1d1b;
    font-family: "Akzidenz Grotesk BE - Cn", sans-serif;
    cursor: pointer; }
  .sort-by__dropdown-arrow {
    display: inline-block;
    transform: rotate(90deg); }
  .sort-by__dropdown, .sort-by__dropdown--mobile {
    width: 100%;
    position: absolute;
    right: 0;
    top: 38px;
    z-index: 1;
    border: 1px solid #ededed;
    background-color: #ffffff;
    align-items: flex-start;
    display: none; }
    .sort-by__dropdown.active, .sort-by__dropdown--mobile.active {
      display: flex; }
    .sort-by__dropdown-item, .sort-by__dropdown--mobile-item {
      padding: 10px;
      font-size: 14px;
      color: #1d1d1b;
      font-family: "Gill Sans", sans-serif;
      width: 100%; }
      .sort-by__dropdown-item:hover, .sort-by__dropdown--mobile-item:hover {
        color: #1f3361;
        opacity: 0.75; }
  .sort-by__dropdown--mobile {
    top: 40px;
    width: calc(100% + 9px);
    right: -5px; }

.filter-and-sort {
  z-index: 2;
  background-color: white;
  padding: 0 6%;
  border-bottom: 1px solid #ededed;
  width: 100vw; }
  @media (min-width: 1025px) {
    .filter-and-sort {
      margin-bottom: 1.5rem; } }
  .filter-and-sort.open {
    z-index: 21; }
  .filter-and-sort--remove-border {
    border: none; }
  @media (max-width: 1024px) {
    .filter-and-sort {
      border-bottom: 1px solid #cdcdcd;
      border-top: 1px solid #cdcdcd;
      margin-bottom: 20px;
      padding: 0;
      min-width: 100vw; } }
  .filter-and-sort .filtering {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto; }
    @media (max-width: 1024px) {
      .filter-and-sort .filtering {
        width: 49%;
        height: 100%; } }
    .filter-and-sort .filtering .filter-options-btn {
      font-family: "AkzidenzGroteskBE-Cn"; }
    .filter-and-sort .filtering .filters {
      min-height: 0px;
      transition: min-height 300ms ease;
      position: relative;
      width: 100%; }
      @media (min-width: 1025px) {
        .filter-and-sort .filtering .filters {
          margin-top: 1rem;
          margin-bottom: 1rem; } }
      .filter-and-sort .filtering .filters__title-container {
        margin-top: 1rem;
        padding: 20px 30px;
        width: 100%; }
        .filter-and-sort .filtering .filters__title-container .filter-slideout--close {
          font-size: 2rem; }
      .filter-and-sort .filtering .filters__options {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex; }
        @media (max-width: 1024px) {
          .filter-and-sort .filtering .filters__options {
            display: block;
            flex: 1;
            overflow: auto; } }
        .filter-and-sort .filtering .filters__options.open {
          min-height: 100px; }
      .filter-and-sort .filtering .filters .filter-dropdown {
        margin-right: 40px;
        cursor: pointer; }
        .filter-and-sort .filtering .filters .filter-dropdown__title-container {
          font-size: 14px;
          font-family: "AkzidenzGroteskBE-Cn"; }
          @media (max-width: 1024px) {
            .filter-and-sort .filtering .filters .filter-dropdown__title-container.open {
              text-decoration: underline; } }
        @media (max-width: 1024px) {
          .filter-and-sort .filtering .filters .filter-dropdown {
            height: 40px;
            margin-left: 30px;
            margin-bottom: 30px;
            border-bottom: 1px solid lightgray;
            position: relative;
            transition: min-height 1s ease; }
            .filter-and-sort .filtering .filters .filter-dropdown.open {
              min-height: auto;
              height: auto;
              padding-bottom: 50px; } }
        .filter-and-sort .filtering .filters .filter-dropdown .filter-dropdown__arrow {
          display: inline-block;
          transform: rotate(90deg);
          transition: transform 300ms ease-in; }
          .filter-and-sort .filtering .filters .filter-dropdown .filter-dropdown__arrow.open {
            transform: rotate(-90deg); }
        .filter-and-sort .filtering .filters .filter-dropdown__btns-container {
          position: absolute;
          min-width: auto;
          max-width: 100%;
          overflow-x: auto;
          left: 0px;
          top: 50px;
          opacity: 0;
          z-index: -1;
          padding-bottom: 10px; }
          @media (max-width: 1024px) {
            .filter-and-sort .filtering .filters .filter-dropdown__btns-container {
              display: flex;
              flex-direction: column;
              align-items: flex-start;
              position: relative;
              margin-top: -50px; } }
          .filter-and-sort .filtering .filters .filter-dropdown__btns-container::-webkit-scrollbar {
            height: 4px;
            width: 4px;
            border: 1px solid #d5d5d5; }
          .filter-and-sort .filtering .filters .filter-dropdown__btns-container::-webkit-scrollbar-track {
            border-radius: 0;
            background: #eeeeee; }
          .filter-and-sort .filtering .filters .filter-dropdown__btns-container::-webkit-scrollbar-thumb {
            border-radius: 0;
            background: #b0b0b0; }
          .filter-and-sort .filtering .filters .filter-dropdown__btns-container.open {
            margin-bottom: 0px;
            opacity: 1;
            transition: opacity 300ms 300ms ease;
            z-index: 2;
            height: 50px; }
            @media (max-width: 1024px) {
              .filter-and-sort .filtering .filters .filter-dropdown__btns-container.open {
                height: auto; } }
          .filter-and-sort .filtering .filters .filter-dropdown__btns-container .filter-dropdown__btn {
            padding: 3px 20px;
            border-radius: 25px;
            margin-right: 20px;
            border: 1px solid #b8b8b8;
            width: auto;
            white-space: nowrap;
            color: #000000; }
            .filter-and-sort .filtering .filters .filter-dropdown__btns-container .filter-dropdown__btn--color {
              padding: 3px 10px; }
            .filter-and-sort .filtering .filters .filter-dropdown__btns-container .filter-dropdown__btn.open {
              background: black;
              color: white;
              border: none; }
              .filter-and-sort .filtering .filters .filter-dropdown__btns-container .filter-dropdown__btn.open .swatch--black {
                background-color: #ffffff !important; }
            .filter-and-sort .filtering .filters .filter-dropdown__btns-container .filter-dropdown__btn .swatch--color {
              height: 17px;
              width: 17px;
              border-radius: 50%;
              margin-right: 10px; }
            @media (max-width: 1024px) {
              .filter-and-sort .filtering .filters .filter-dropdown__btns-container .filter-dropdown__btn {
                max-width: auto;
                margin-top: 5px; } }
      @media (max-width: 1024px) {
        .filter-and-sort .filtering .filters {
          position: fixed;
          z-index: 100000000;
          height: calc(100vh - calc(100vh - 100%));
          overflow: scroll;
          width: 100vw;
          top: 0px;
          left: -100vw;
          transition: left 500ms ease-out;
          background-color: white;
          flex-direction: column; }
          .filter-and-sort .filtering .filters.open {
            left: 0; } }
      .filter-and-sort .filtering .filters .sorting {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 3; }
      .filter-and-sort .filtering .filters-btns--mobile {
        width: 100%;
        padding: 20px;
        background: #ffffff;
        -webkit-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2); }
        .filter-and-sort .filtering .filters-btns--mobile button {
          width: 49%;
          padding: 10px; }
        .filter-and-sort .filtering .filters-btns--mobile .clear-filters {
          border: 1px solid #1d1d1b;
          border-radius: 8px;
          color: #000000; }
        .filter-and-sort .filtering .filters-btns--mobile .view-all {
          border-radius: 8px;
          background-color: #1d1d1b;
          color: white; }
  .filter-and-sort .divider {
    height: 60px;
    width: 1px;
    background-color: #cdcdcd; }
  .filter-and-sort .sorting.mobile-only {
    font-family: "AkzidenzGroteskBE-Cn"; }
    @media (max-width: 1024px) {
      .filter-and-sort .sorting.mobile-only {
        width: 49%; } }

@media (max-width: 1024px) {
  .active-tags__mobile {
    margin: 0 40px 0 30px; }
    .active-tags__mobile-title {
      margin-bottom: 10px; } }

.active-tags__btn {
  padding: 3px 20px;
  border-radius: 25px;
  margin-right: 20px;
  background-color: #ededed;
  transition: padding-bottom 300ms ease;
  width: auto;
  color: #000000; }
  .active-tags__btn .swatch--color {
    margin-right: 10px;
    height: 10px;
    width: 10px;
    border-radius: 50%; }
  .active-tags__btn .close--btn {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 300;
    margin-top: 2px; }

.active-tags.open {
  padding-bottom: 20px; }

@media (max-width: 1024px) {
  .active-tags {
    overflow-wrap: normal;
    width: auto;
    overflow-x: scroll; } }

/* ------------------------------------------
      Circle Image With Text
------------------------------------------ */
.circle-image-with-text-container {
  padding: 0px 0 0px 40px;
  position: relative; }
  .circle-image-with-text-container.reverse {
    padding: 0px 40px 0px 0; }
    @media (max-width: 600px) {
      .circle-image-with-text-container.reverse {
        padding: 0 40px 40px 40px; } }
  @media (max-width: 600px) {
    .circle-image-with-text-container {
      padding: 0;
      padding-left: 40px; } }
  .circle-image-with-text-container .circle-image-with-text {
    min-height: 400px; }
    .circle-image-with-text-container .circle-image-with-text__text {
      width: 65%; }
      .circle-image-with-text-container .circle-image-with-text__text .title--xxs {
        font-family: "GillSans"; }
    .circle-image-with-text-container .circle-image-with-text.reverse {
      flex-direction: row-reverse; }
    .circle-image-with-text-container .circle-image-with-text .title-bar {
      margin-bottom: 40px; }
      .circle-image-with-text-container .circle-image-with-text .title-bar .empty-spacer {
        opacity: 0; }
    .circle-image-with-text-container .circle-image-with-text .main-image {
      width: 30%;
      max-width: 30%;
      overflow: hidden; }
      .circle-image-with-text-container .circle-image-with-text .main-image .circle-img {
        width: 100%; }
  .circle-image-with-text-container .circle-image-with-text--mobile {
    position: relative;
    margin-top: 20px; }
    .circle-image-with-text-container .circle-image-with-text--mobile .top-container {
      width: 100vw;
      margin-left: 40px;
      align-items: flex-end; }
    .circle-image-with-text-container .circle-image-with-text--mobile .title-bar--mobile {
      width: 50%; }
      .circle-image-with-text-container .circle-image-with-text--mobile .title-bar--mobile.full--width {
        width: calc(100% - 80px); }
      .circle-image-with-text-container .circle-image-with-text--mobile .title-bar--mobile h4 {
        font-size: 24px; }
      .circle-image-with-text-container .circle-image-with-text--mobile .title-bar--mobile .hidden-spacer {
        min-height: 100px;
        width: 100%; }
    .circle-image-with-text-container .circle-image-with-text--mobile .main-image--mobile {
      width: 50%; }
      .circle-image-with-text-container .circle-image-with-text--mobile .main-image--mobile img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: left bottom;
        aspect-ratio: 1/1; }
    .circle-image-with-text-container .circle-image-with-text--mobile .mobile-description {
      max-width: 100vw;
      padding: 20px;
      margin-left: 20px;
      color: #1d1d1b;
      font-size: 14px;
      opacity: 0.85; }
  .circle-image-with-text-container .circle1 {
    height: 88px;
    width: 88px;
    position: absolute;
    top: 12%;
    left: 10px;
    background-color: #ededed;
    border-radius: 50%;
    overflow: hidden;
    z-index: -1; }
    .circle-image-with-text-container .circle1.reverse {
      left: unset;
      right: 10px; }
      @media (max-width: 600px) {
        .circle-image-with-text-container .circle1.reverse {
          right: unset;
          left: 120px;
          top: 5%; } }
    @media (max-width: 600px) {
      .circle-image-with-text-container .circle1 {
        height: 55px;
        width: 55px;
        left: 80px;
        top: 7%; } }
  .circle-image-with-text-container .circle2 {
    height: 205px;
    width: 205px;
    position: absolute;
    top: 50%;
    left: -100px;
    background-color: #ededed;
    border-radius: 50%;
    overflow: hidden;
    z-index: -1; }
    .circle-image-with-text-container .circle2.reverse {
      left: unset;
      right: -100px; }
      @media (max-width: 600px) {
        .circle-image-with-text-container .circle2.reverse {
          right: unset;
          top: 12%;
          left: -30px; } }
    @media (max-width: 600px) {
      .circle-image-with-text-container .circle2 {
        height: 143px;
        width: 143px;
        top: 10%;
        left: -70px; } }

.three-column-upsell .title-bar {
  margin-bottom: 20px; }
  .three-column-upsell .title-bar .title--xs {
    max-width: 60%;
    margin: 0 auto; }
    @media (max-width: 600px) {
      .three-column-upsell .title-bar .title--xs {
        max-width: 90%; } }

@media (max-width: 600px) {
  .three-column-upsell .upsells__container {
    flex-direction: column; }
    .three-column-upsell .upsells__container .upsell {
      margin: 0 auto 20px auto;
      width: 75%; }
      .three-column-upsell .upsells__container .upsell__title {
        font-size: 18px; } }

.three-column-upsell .upsells__container .upsell {
  width: 30%; }
  @media (max-width: 600px) {
    .three-column-upsell .upsells__container .upsell {
      width: 75%; } }
  .three-column-upsell .upsells__container .upsell .circle-img {
    height: auto;
    width: 100%; }
  .three-column-upsell .upsells__container .upsell__title {
    font-size: 24px;
    color: #1d1d1b;
    margin-top: 20px; }
    @media (max-width: 600px) {
      .three-column-upsell .upsells__container .upsell__title {
        margin-bottom: 20px;
        font-size: 18px; } }

.four-collections {
  width: 100%; }
  .four-collections__title-bar {
    width: 100%; }

.three-collections {
  width: calc(100% + 80px); }
  @media (max-width: 600px) {
    .three-collections {
      flex-direction: column;
      width: 100%;
      margin: 0; } }
  .three-collections__collection {
    position: relative; }
    .three-collections__collection img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .three-collections__collection-info {
      position: absolute;
      z-index: 2;
      height: 120px;
      bottom: 0;
      width: 100%; }

.five-columns .title-block {
  margin-bottom: 20px;
  width: 650px;
  max-width: 90vw; }

.five-columns .image-block {
  width: 650px;
  max-width: 90vw; }
  .five-columns .image-block__img {
    width: 90px;
    max-width: 19%;
    border-radius: 50%; }
    .five-columns .image-block__img:hover {
      border: 1px solid black;
      cursor: pointer; }

.image-with-textbox {
  position: relative;
  width: 100%; }
  @media (max-width: 600px) {
    .image-with-textbox {
      margin-bottom: 130px; } }
  .image-with-textbox__image {
    width: 75%;
    height: 400px; }
    .image-with-textbox__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      margin: 0 !important; }
    @media (max-width: 600px) {
      .image-with-textbox__image {
        width: 100%; } }
  .image-with-textbox__textbox {
    width: 40%;
    position: absolute;
    top: calc(50% - 180px);
    right: 0;
    background: #1d1d1b;
    color: white;
    height: 360px;
    padding: 30px; }
    @media (max-width: 600px) {
      .image-with-textbox__textbox {
        top: 50%;
        width: 90%;
        right: 5%;
        bottom: 50%;
        height: 300px; } }

.five-column-upsell {
  background-color: #ededed;
  padding: 20px;
  max-width: 100vw;
  width: 100%; }
  .five-column-upsell .title-bar .title--lg {
    font-family: "AkzidenzGroteskBE-Cn";
    font-size: 32px;
    line-height: 42px; }
    @media (max-width: 600px) {
      .five-column-upsell .title-bar .title--lg {
        font-size: 24px;
        line-height: 34px; } }
  .five-column-upsell .title-bar .title--xs {
    font-family: "GillSans";
    font-size: 16px;
    font-weight: 300;
    color: #1d1d1b;
    line-height: 22px; }
    @media (max-width: 600px) {
      .five-column-upsell .title-bar .title--xs {
        font-size: 14px;
        line-height: 20px; } }
  .five-column-upsell__image {
    margin-top: 20px;
    width: 15%;
    display: block; }
    .five-column-upsell__image .image {
      width: 100%;
      height: auto; }
  @media (max-width: 600px) {
    .five-column-upsell .image-block {
      overflow-x: auto; }
      .five-column-upsell .image-block .five-column-upsell__image {
        width: 120px;
        flex: 0 0 auto;
        margin-right: 20px; } }

.two-column-upsell__columns-container.reverse {
  flex-direction: row-reverse; }

@media (max-width: 600px) {
  .two-column-upsell__columns-container {
    flex-direction: column; }
    .two-column-upsell__columns-container.reverse {
      flex-direction: column; } }

.two-column-upsell__column {
  width: calc(50% - 1px);
  padding: 30px;
  background-color: #1d1d1b;
  color: white; }
  @media (max-width: 600px) {
    .two-column-upsell__column {
      width: 100%;
      margin-bottom: 2px; } }
  .two-column-upsell__column .column-image {
    width: 80%;
    margin: auto; }

.image-scroller {
  position: relative; }
  .image-scroller .title-bar .title {
    color: #1d1d1b;
    line-height: 42px; }
  .image-scroller .title-bar__description {
    width: 50%;
    margin: 0 auto;
    margin-top: 10px;
    font-family: "GillSans";
    font-size: 16px; }
    @media (max-width: 600px) {
      .image-scroller .title-bar__description {
        width: 100%; } }
  .image-scroller .image-block {
    padding-bottom: 10px; }
    .image-scroller .image-block__image {
      margin-top: 20px;
      width: 100%;
      max-width: 31%;
      height: 540px;
      flex: 0 0 auto;
      margin-right: 10px;
      position: relative; }
      @media (max-width: 600px) {
        .image-scroller .image-block__image {
          width: 150px;
          height: 190px; } }
      .image-scroller .image-block__image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .image-scroller .image-block__info {
      position: absolute;
      width: 100%;
      bottom: 0;
      padding-bottom: 10px;
      color: #ffffff; }
      .image-scroller .image-block__info-name {
        font-size: 20px;
        font-family: "AkzidenzGroteskBE-Cn";
        line-height: 30px; }
        @media (max-width: 600px) {
          .image-scroller .image-block__info-name {
            font-size: 14px; } }
      .image-scroller .image-block__info-title {
        font-weight: 300;
        font-size: 16px;
        line-height: 22px; }
        @media (max-width: 600px) {
          .image-scroller .image-block__info-title {
            font-size: 12px; } }
  .image-scroller .scrollbar-blackline {
    height: 1px;
    width: 100%;
    background-color: #ededed;
    position: absolute;
    bottom: 4px;
    z-index: -1; }
  .image-scroller ::-webkit-scrollbar {
    height: 9px;
    z-index: 1; }
  .image-scroller ::-webkit-scrollbar-track {
    height: 0px; }
  .image-scroller ::-webkit-scrollbar-thumb {
    background: #000000; }
  .image-scroller .image-block-mobile__wrap {
    position: relative;
    display: flex;
    align-items: center; }
  .image-scroller .slick__image {
    max-height: 449px;
    position: relative; }
  .image-scroller .slick-slider .slick-slide {
    padding: 0 15px; }
  .image-scroller .slick--arrow-custom {
    position: absolute;
    z-index: 19;
    background: white;
    filter: invert(100%);
    height: 25px;
    width: 25px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-left: 2px; }
    .image-scroller .slick--arrow-custom.slick--arrow-prev {
      left: 0;
      transform: rotate(180deg) scale(2); }
    .image-scroller .slick--arrow-custom.slick--arrow-next {
      right: 0;
      transform: scale(2); }

.product-price {
  margin-top: 10px; }
  .product-price .product-price--sale {
    color: #bc2227; }
  .product-price .product-price--original {
    opacity: .5;
    text-decoration: line-through; }

.product-price__vat {
  font-size: 0.75rem; }

/* ------------------------------------------
    Product Form
------------------------------------------ */
.product-form {
  height: 49%; }
  .product-form__add-to-cart {
    width: 100%; }

.swatch__label {
  font-size: 14px; }

.size-guide-link {
  font-family: "AkzidenzGroteskBE-Cn";
  font-size: 14px;
  color: #5b5b5b;
  cursor: pointer;
  text-transform: uppercase; }

.swatch__label {
  margin-bottom: 5px;
  font-family: "AkzidenzGroteskBE-Cn"; }

.swatch-container {
  margin-bottom: 20px; }
  .swatch-container.search__swatch-container {
    display: none; }
    .swatch-container.search__swatch-container.active {
      display: flex; }
  .swatch-container .swatch {
    cursor: pointer;
    border: 1px solid #b8b8b8;
    font-size: 14px;
    position: relative; }
    .swatch-container .swatch:hover {
      box-shadow: 0 0 0 1pt gray; }
    .swatch-container .swatch.checked {
      box-shadow: 0 0 0 1pt gray; }
      .swatch-container .swatch.checked:hover {
        box-shadow: 0 0 0 1pt gray; }
    .swatch-container .swatch--oos:before {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      border-top: 1px solid #b8b8b8;
      position: absolute;
      top: 50%;
      transform: rotate(-20deg); }
  .swatch-container .color-swatch {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 50%; }
  .swatch-container .size-swatch {
    height: 32px;
    margin-right: 11px;
    text-align: center;
    flex: 1; }
    .swatch-container .size-swatch--last {
      margin-right: 0; }

.size-guide-lightbox {
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000000; }
  @media (max-width: 600px) {
    .size-guide-lightbox {
      overflow-x: hidden;
      overflow-y: scroll; } }
  .size-guide-lightbox.active {
    display: flex; }
  .size-guide-lightbox h3.size-guide__top-description__title {
    font-size: 1.5rem; }
  .size-guide-lightbox .size-guide {
    width: 865px;
    max-width: 100vw;
    padding: 40px;
    background-color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 100vh;
    overflow-y: auto; }
    @media (max-width: 600px) {
      .size-guide-lightbox .size-guide {
        height: 80%;
        width: 90%;
        max-width: 90%;
        overflow-y: scroll;
        display: block;
        padding: 60px 0 0 0; } }
    .size-guide-lightbox .size-guide__top {
      height: 38%;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media (max-width: 600px) {
        .size-guide-lightbox .size-guide__top {
          flex-direction: column;
          height: auto;
          margin-bottom: 40px; } }
      .size-guide-lightbox .size-guide__top-image {
        min-width: 176px;
        height: 221px;
        background-color: #ededed;
        margin-right: 40px; }
        @media (max-width: 600px) {
          .size-guide-lightbox .size-guide__top-image {
            width: calc(100% - 40px);
            margin-right: 0; } }
        .size-guide-lightbox .size-guide__top-image img {
          height: 100%;
          width: 100%;
          object-fit: contain; }
      .size-guide-lightbox .size-guide__top-description {
        max-width: 70%; }
        @media (max-width: 600px) {
          .size-guide-lightbox .size-guide__top-description {
            max-width: unset;
            width: calc(100% - 40px); } }
        .size-guide-lightbox .size-guide__top-description__title {
          font-family: "AkzidenzGroteskBE-Cn";
          font-size: 32px;
          line-height: 42px;
          margin-bottom: 20px;
          font-weight: normal; }
          @media (max-width: 600px) {
            .size-guide-lightbox .size-guide__top-description__title {
              margin-bottom: 10px;
              margin-top: 30px; } }
        .size-guide-lightbox .size-guide__top-description__text {
          font-family: "GillSans";
          font-size: 12px;
          line-height: 22px; }
    .size-guide-lightbox .size-guide .overflow-container {
      height: 60%; }
      @media (max-width: 600px) {
        .size-guide-lightbox .size-guide .overflow-container {
          height: auto;
          overflow: scroll; } }
    .size-guide-lightbox .size-guide__mobile-topbar {
      height: 55px;
      text-align: center;
      font-weight: 300;
      font-size: 20px;
      font-family: "AkzidenzGroteskBE-Cn";
      background-color: #1d1d1b;
      color: #ffffff;
      position: relative; }
      .size-guide-lightbox .size-guide__mobile-topbar .topbar-chevron {
        height: 100%;
        width: 40px;
        position: absolute;
        right: 0; }
    .size-guide-lightbox .size-guide__chart {
      height: 100%;
      width: 785px;
      overflow: auto;
      display: grid;
      grid-template-rows: auto auto auto auto auto auto auto;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-gap: 1px; }
      .size-guide-lightbox .size-guide__chart .cell {
        height: 55px;
        text-align: center;
        font-size: 16px;
        font-family: "GillSans";
        font-weight: 300; }
        .size-guide-lightbox .size-guide__chart .cell.full-width-cell {
          grid-column: 1 / -1;
          font-size: 20px;
          font-family: "AkzidenzGroteskBE-Cn"; }
          .size-guide-lightbox .size-guide__chart .cell.full-width-cell.black-cell {
            background-color: #1d1d1b;
            color: #ffffff; }
        .size-guide-lightbox .size-guide__chart .cell.title-cell {
          font-weight: bold;
          font-family: "AkzidenzGroteskBE-Cn"; }
          .size-guide-lightbox .size-guide__chart .cell.title-cell.gray-cell {
            background-color: #ededed;
            margin-left: -1px;
            margin-top: -1px; }
        .size-guide-lightbox .size-guide__chart .cell.gray-cell {
          background-color: #ededed; }
    .size-guide-lightbox .size-guide--close {
      position: absolute;
      right: 40px;
      top: 40px;
      font-size: 30px;
      cursor: pointer; }
      @media (max-width: 600px) {
        .size-guide-lightbox .size-guide--close {
          right: 20px;
          top: 20px; } }

.size-guide-close-icon {
  display: block; }

.esc-size-guide {
  font-family: "GillSans";
  text-align: center;
  font-weight: 300;
  margin-top: 2rem; }
  .esc-size-guide .esc-size-guide--title {
    background: #000000;
    color: #ffffff;
    font-family: "AkzidenzGroteskBE-Cn";
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 1rem; }
  .esc-size-guide .esc-size-guide--table {
    width: 100%;
    margin-top: 1rem;
    border-spacing: 0; }
  .esc-size-guide .esc-size-guide--heading {
    font-family: "AkzidenzGroteskBE-Cn";
    font-weight: 400; }
  .esc-size-guide .esc-size-guide--cell,
  .esc-size-guide .esc-size-guide--heading {
    font-size: 1rem;
    border: none;
    text-align: center;
    padding: 0; }
  .esc-size-guide .esc-size-guide--cell-type--text {
    display: block;
    padding: 1rem; }
  .esc-size-guide .esc-size-guide--cell {
    font-weight: 300; }
    .esc-size-guide .esc-size-guide--cell .esc-size-guide--cell-type--text {
      margin: 1px; }
  .esc-size-guide .esc-size-guide--row:nth-child(odd) .esc-size-guide--cell-type--text {
    background-color: #ededed; }

.collection-item .collection-item__image {
  position: relative;
  height: 300px;
  padding: 30px 0;
  background-color: #ededed;
  border-radius: 9px; }
  .collection-item .collection-item__image .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 20px;
    background-color: #bc2227;
    color: white;
    border-radius: 3px; }
  .collection-item .collection-item__image img {
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: contain;
    width: 100%;
    height: 100%; }

.collection-item__quick-view {
  background-color: #1d1d1b;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 3px;
  color: white;
  padding: 5px;
  cursor: pointer; }

.collection__quick-view {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  z-index: -1000; }
  .collection__quick-view.show {
    visibility: visible;
    z-index: 20000; }
  .collection__quick-view .quick-view__popup {
    background-color: white;
    height: auto;
    width: 800px;
    padding: 50px;
    position: relative; }
    .collection__quick-view .quick-view__popup .popup__image-slider {
      width: 45%;
      position: relative;
      height: auto; }
      .collection__quick-view .quick-view__popup .popup__image-slider .popup__product-link {
        text-decoration: underline;
        color: #595959; }
      .collection__quick-view .quick-view__popup .popup__image-slider ul li {
        background-color: #ededed; }
        .collection__quick-view .quick-view__popup .popup__image-slider ul li img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
      .collection__quick-view .quick-view__popup .popup__image-slider .slick--arrow-custom {
        position: absolute;
        z-index: 19;
        background: white;
        filter: invert(100%);
        height: 15px;
        width: 15px;
        font-size: 10px;
        border-radius: 50%;
        top: 45%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        padding-left: 2px; }
        @media (max-width: 768px) {
          .collection__quick-view .quick-view__popup .popup__image-slider .slick--arrow-custom {
            filter: none; } }
        .collection__quick-view .quick-view__popup .popup__image-slider .slick--arrow-custom.slick--arrow-prev {
          left: 15px;
          transform: rotate(180deg) scale(2); }
        .collection__quick-view .quick-view__popup .popup__image-slider .slick--arrow-custom.slick--arrow-next {
          right: 15px;
          transform: scale(2); }
    .collection__quick-view .quick-view__popup .popup__info {
      width: 45%;
      height: 400px; }
      .collection__quick-view .quick-view__popup .popup__info .popup__title-block {
        height: 49%;
        justify-content: space-evenly; }
    .collection__quick-view .quick-view__popup .popup--close {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 2rem;
      cursor: pointer; }

.blog-filter__btn {
  padding: 0 10px; }

.account__column-btn {
  padding: 20px;
  background-color: #ededed;
  color: #000000;
  margin: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px; }
  .account__column-btn:nth-child(1) {
    margin-top: 0; }
  .account__column-btn.active {
    background-color: #1d1d1b;
    color: #ffffff; }
  .account__column-btn svg {
    margin-right: 15px; }

.mobile-dropdown-menu {
  position: relative;
  margin-bottom: 80px; }
  .mobile-dropdown-menu .account__column-btn {
    width: calc(100vw + 20px);
    margin: 0;
    margin-left: calc(-10% - 10px);
    border-radius: 0;
    position: absolute;
    z-index: 9;
    left: 0px;
    transition: top 500ms linear; }
    .mobile-dropdown-menu .account__column-btn.active {
      background-color: #ededed;
      color: #000000;
      z-index: 10; }
    .mobile-dropdown-menu .account__column-btn._0 {
      top: 50px; }
    .mobile-dropdown-menu .account__column-btn._1 {
      top: 100px; }
    .mobile-dropdown-menu .account__column-btn._2 {
      top: 150px; }
  .mobile-dropdown-menu .hidden-overlay {
    position: absolute;
    top: 0;
    height: 60px;
    width: calc(100vw + 20px);
    left: calc(-10% - 10px);
    z-index: 11; }

.account__recent-orders .recent-orders {
  width: 69%;
  margin-top: 30px; }
  .account__recent-orders .recent-orders__none {
    background-color: #ededed;
    border-radius: 8px;
    width: 100%;
    padding: 30px 0;
    margin-top: 20px; }
  @media (max-width: 600px) {
    .account__recent-orders .recent-orders {
      width: 100%; } }

.account__new-address .new-address {
  width: 69%; }
  @media (max-width: 600px) {
    .account__new-address .new-address {
      width: 100%; } }
  .account__new-address .new-address__form, .account__new-address .new-address__btn {
    display: none; }
    .account__new-address .new-address__form.active, .account__new-address .new-address__btn.active {
      display: block; }
    @media (max-width: 600px) {
      .account__new-address .new-address__form, .account__new-address .new-address__btn {
        width: 100%; } }
  .account__new-address .new-address__title {
    margin-bottom: 20px;
    font-weight: 500; }
  .account__new-address .new-address .input-row {
    margin-bottom: 20px; }
    @media (max-width: 600px) {
      .account__new-address .new-address .input-row {
        margin-bottom: 0;
        display: flex;
        flex-direction: column; } }
  .account__new-address .new-address .input-row--2 .input-field {
    width: 49%; }
  .account__new-address .new-address .input-row--3 .input-field {
    width: 32%; }
  @media (max-width: 600px) {
    .account__new-address .new-address .input-field {
      width: 100% !important;
      margin-bottom: 10px; } }
  .account__new-address .new-address__label {
    font-size: 14px;
    color: #1d1d1b;
    padding-bottom: 10px; }
  .account__new-address .new-address__input {
    border: 1px solid #cecece;
    width: 100%;
    border-radius: 8px;
    padding: 10px; }
    .account__new-address .new-address__input::placeholder {
      font-size: 14px;
      color: #b6b6b6; }

.account__edit-addresses .customer-info, .account__edit-addresses .welcome-text, .account__edit-addresses .account__column-top-title {
  padding-left: 10px; }
  @media (max-width: 600px) {
    .account__edit-addresses .customer-info, .account__edit-addresses .welcome-text, .account__edit-addresses .account__column-top-title {
      padding: 0; } }
  .account__edit-addresses .customer-info__edit-address, .account__edit-addresses .welcome-text__edit-address, .account__edit-addresses .account__column-top-title__edit-address {
    cursor: pointer;
    margin-bottom: 20px;
    margin-top: 10px; }
  .account__edit-addresses .customer-info__delete-form, .account__edit-addresses .welcome-text__delete-form, .account__edit-addresses .account__column-top-title__delete-form {
    margin-left: 20px;
    margin-top: 10px; }
  .account__edit-addresses .customer-info__delete-button, .account__edit-addresses .welcome-text__delete-button, .account__edit-addresses .account__column-top-title__delete-button {
    color: #000000; }

@media (max-width: 600px) {
  .account__edit-addresses .account__column-top-title {
    font-size: 18px; } }

.account__edit-addresses .edit-addresses {
  display: none; }
  .account__edit-addresses .edit-addresses__title {
    font-family: "GillSans";
    font-size: 20px; }
  .account__edit-addresses .edit-addresses.active {
    display: block; }
  .account__edit-addresses .edit-addresses__label {
    font-size: 14px;
    color: #1d1d1b;
    padding-bottom: 10px;
    font-family: "AkzidenzGroteskBE-Cn"; }
  .account__edit-addresses .edit-addresses .input-row {
    margin-bottom: 20px; }
    @media (max-width: 600px) {
      .account__edit-addresses .edit-addresses .input-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0; } }
    @media (max-width: 600px) {
      .account__edit-addresses .edit-addresses .input-row .input-field {
        margin-bottom: 10px; } }
  .account__edit-addresses .edit-addresses__input {
    border: 1px solid #cecece;
    width: 100%;
    border-radius: 8px;
    padding: 10px; }
    .account__edit-addresses .edit-addresses__input::placeholder {
      font-size: 14px;
      color: #b6b6b6; }
  .account__edit-addresses .edit-addresses .set-as-default {
    font-size: 14px;
    font-weight: 300;
    color: #000000; }
  .account__edit-addresses .edit-addresses__btns-container {
    margin-top: 20px; }
    .account__edit-addresses .edit-addresses__btns-container .btn {
      margin-bottom: 10px; }
    .account__edit-addresses .edit-addresses__btns-container .btn__line {
      cursor: pointer; }

html {
  overflow-x: hidden; }
  @media (max-width: 600px) {
    html {
      overflow-x: auto; } }


[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms; }

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms; }

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: .1s; }

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s; }

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: .15s; }

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s; }

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: .2s; }

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: .2s; }

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: .25s; }

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: .25s; }

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: .3s; }

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: .3s; }

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: .35s; }

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: .35s; }

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: .4s; }

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: .4s; }

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: .45s; }

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: .45s; }

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: .5s; }

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: .5s; }

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: .55s; }

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: .55s; }

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: .6s; }

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: .6s; }

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: .65s; }

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: .65s; }

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: .7s; }

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: .7s; }

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: .75s; }

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: .75s; }

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: .8s; }

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: .8s; }

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: .85s; }

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: .85s; }

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: .9s; }

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: .9s; }

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: .95s; }

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: .95s; }

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s; }

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s; }

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s; }

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s; }

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s; }

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s; }

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s; }

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s; }

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s; }

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s; }

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s; }

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s; }

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s; }

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s; }

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s; }

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s; }

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s; }

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s; }

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s; }

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s; }

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s; }

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s; }

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s; }

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s; }

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s; }

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s; }

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s; }

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s; }

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s; }

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s; }

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s; }

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s; }

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s; }

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s; }

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s; }

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s; }

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s; }

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s; }

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s; }

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s; }

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s; }

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s; }

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s; }

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s; }

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s; }

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s; }

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s; }

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s; }

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s; }

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s; }

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s; }

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s; }

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s; }

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s; }

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s; }

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s; }

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s; }

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s; }

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s; }

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s; }

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s; }

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s; }

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s; }

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s; }

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s; }

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s; }

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s; }

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s; }

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s; }

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s; }

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s; }

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s; }

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s; }

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s; }

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s; }

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s; }

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s; }

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s; }

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s; }

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s; }

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s; }

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s; }

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); }

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease; }

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in; }

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out; }

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out; }

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); }

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); }

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity,transform; }

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0); }

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0); }

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0); }

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0); }

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0); }

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0); }

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0); }

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0); }

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0); }

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity,transform; }

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1); }

[data-aos=zoom-in] {
  transform: scale(0.6); }

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6); }

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6); }

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6); }

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6); }

[data-aos=zoom-out] {
  transform: scale(1.2); }

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2); }

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2); }

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2); }

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2); }

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform; }

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0); }

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0); }

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0); }

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0); }

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0); }

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform; }

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg); }

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg); }

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg); }

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0); }

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg); }

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0); }


/**
 * Swiper 8.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 4, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color:#007aff; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-pointer-events {
  touch-action: pan-y; }

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height; }

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d; }

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999; }

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center; }


.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%; }

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2); }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet:only-child {
  display: none !important; }

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top; }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left; }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right; }

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-lock {
  display: none; }


:root {
  --swiper-navigation-size:44px; }

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1; }

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

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev'; }

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

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: 'next'; }

.swiper-button-lock {
  display: none; }
/* ZO-ON Color Swatches */
.collection-item__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.collection-item__colors .swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
}

.swatch[data-color="black"]      { background-color: #1a1a1a; }
.swatch[data-color="white"]      { background-color: #f5f5f5; border-color: #ccc; }
.swatch[data-color="orange"]     { background-color: #e8650a; }
.swatch[data-color="blue"]       { background-color: #3a6ea8; }
.swatch[data-color="true blue"]  { background-color: #1a4fa0; }
.swatch[data-color="navy"]       { background-color: #1a2744; }
.swatch[data-color="dusky green"]{ background-color: #4a6650; }
.swatch[data-color="green"]      { background-color: #3a6b3e; }
.swatch[data-color="light grey"] { background-color: #c8c8c8; }
.swatch[data-color="sand"]       { background-color: #c9b89a; }
.swatch[data-color="ivory"]      { background-color: #f0ead6; border-color: #ccc; }
.swatch[data-color="pink"]       { background-color: #e8a0b0; }
.swatch[data-color="turquoise"]  { background-color: #3dbcb8; }
.swatch[data-color="yellow"]     { background-color: #f0c830; }
.product-item__under-content.swatch-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.product-item__info {
  margin-bottom: 8px;
}

.product-item__under-content.swatch-container {
  margin-top: 8px;
  margin-bottom: 10px;
 .section__featured-collection .slick--arrow-custom {
  display: none !important;
}
.section__featured-collection .slick--arrow-prev,
.section__featured-collection .slick--arrow-next {
  display: none !important;
}
span[id^="sliderPrev-homepage_featured_collection"],
span[id^="sliderNext-homepage_featured_collection"] {
  display: none !important;
}
span#sliderPrev-homepage_featured_collection_eq4qhH,
span#sliderNext-homepage_featured_collection_eq4qhH {
  display: none !important;
}
.home--featured-collection .slick-list {
  overflow-x: auto !important;
  cursor: grab;
}

.home--featured-collection .slick-list:active {
  cursor: grabbing;
}

.home--featured-collection .slick-track {
  display: flex !important;
  transform: none !important;
}
/* Featured collection arrows */
.home--featured-collection .slick--arrow-custom {
  display: flex !important;
  background: none;
  border: 1px solid #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  top: 40%;
  filter: none;
}

.home--featured-collection .slick--arrow-prev {
  left: -18px;
}

.home--featured-collection .slick--arrow-next {
  right: -18px;
}

.home--featured-collection .slick--arrow-custom svg {
  filter: none;
  width: 8px;
  height: 8px;
}
.home--featured-collection .slick--arrow-custom {
  display: flex !important;
}
.hero-banner .btn a,
.hero-banner a.btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: inherit;
}
.btn.btn--secondary a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
}

.btn.btn--secondary {
  padding: 0;
}
.hero-banner .btn--secondary {
  padding: 0 !important;
}

.hero-banner .btn--secondary a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px 30px !important;
  text-decoration: none;
  color: inherit;
}
.btn.btn--secondary {
  padding: 0 !important;
}

.btn.btn--secondary a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 40px !important;
  text-decoration: none;
  color: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.btn.btn--secondary {
  padding: 0 !important;
}

.btn.btn--secondary a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 40px !important;
  text-decoration: none;
  color: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: inherit;
}
main#MainContent {
  opacity: 0;
  animation: fadeInSmooth 1.9s ease forwards;
}

@keyframes fadeInSmooth {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero__bg-img {
  filter: none !important;
  transition: none !important;
}
