/*============================================================================
  Boundless Theme by Shopify
==============================================================================*/
/*============================================================================
  DO NOT EDIT THIS FILE. CHANGES ADDED HERE WILL BE OVERWRITTEN ON EVERY DEPLOYMENT.

  INSTEAD USE theme-custom.css
==============================================================================*/
/*================ TOOLS ================*/
/*================ THEME FUNCTIONS ================*/
/*============================================================================
  Strip units off number to have a safe working base, then append units.
  Add unit by multiplying by 1 (ex. 20 * 1px = 20px)
==============================================================================*/
/*============================================================================
  #Mixins and Functions
==============================================================================*/
/*================ #Clear Fix ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes:

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }

  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
==============================================================================*/
/*============================================================================
  Convert pixels to ems

  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)

  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Convert pixels to rem
==============================================================================*/
/*============================================================================
  Strips the unit from a number.

  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}

  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*============================================================================
  #Media Query Mixin
==============================================================================*/
/*============================================================================
  #Responsive Helper Mixins
==============================================================================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*================ Theme mixins ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ Keyframe animations ================*/
@-webkit-keyframes fadeIn {
  0%, 35% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0%, 35% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  40% {
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  40% {
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*================ THEME FUNCTIONS ================*/
/*============================================================================
  Strip units off number to have a safe working base, then append units.
  Add unit by multiplying by 1 (ex. 20 * 1px = 20px)
==============================================================================*/
/*============================================================================
  #Aldo Mixins
==============================================================================*/
/* Button Mixins
   ========================================================================== */
/* Style Mixins
   ========================================================================== */
/* Visibility Mixins
   ========================================================================== */
/* Icons Mixins
   ========================================================================== */
/* RTL
   ========================================================================== */
/* Scrollbars */
/* ==========================================================================
   [Tools] Easing Equations
   ========================================================================== */
/*================ VARIABLES ================*/
/*================ VARIABLES ================*/
/*============================================================================
  Table of Contents:
    *Color Variables
    *Action Bar
    *Logo Width
    *Navigation Header
    *Sale Badges
    *Sizing Variables
    *Typography Variables
    *Z-Index
    *Site Header
    *Forms
    *Misc
    *Drawers
    *Hero
    *Collection Grid
==============================================================================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
@custom-media --at-bp-small-only (width < 34.375em);
@custom-media --at-bp-medium (width >= 34.375em);
@custom-media --at-bp-medium-low-only (width >= 34.375em) and (width < 47.5em);
@custom-media --at-bp-under-medium-mid-only (width < 47.5em);
@custom-media --at-bp-medium-mid (width >= 47.5em);
@custom-media --at-bp-medium-mid-only (width >= 47.5em) and (width < 53.75em);
@custom-media --at-bp-medium-high (width >= 53.75em);
@custom-media --at-bp-medium-high-only (width >= 53.75em) and (width < 68.75em);
@custom-media --at-bp-under-medium-high-only (width < 53.75em);
@custom-media --at-bp-medium-low-and-mid-only (width >= 34.375em) and (width < 53.75em);
@custom-media --at-bp-medium-mid-and-high-only (width >= 47.5em) and (width < 68.75em);
@custom-media --at-bp-medium-only (width >= 34.375em) and (width < 68.75em);
@custom-media --at-bp-under-large-only (width < 68.75em);
@custom-media --at-bp-large (width >= 68.75em);
@custom-media --at-bp-large-only (width >= 68.75em) and (width < 100em);
@custom-media --at-bp-large-low-only (width >= 68.75em) and (width < 84.375em);
@custom-media --at-bp-large-mid (width >= 84.375em);
@custom-media --at-bp-xlarge (width >= 100em);
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
/*================ #Color Variables ================*/
/*================ Logo Width ================*/
/*================ Navigation Header ================*/
/*================ #Action Bar ================*/
/*================ Sale badges ================*/
/*================ #Sizing Variables ================*/
/*================ #Typography Variables ================*/
@font-face {
  font-family: "Sectra";
  font-style: normal;
  font-weight: normal;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/gt-sectra-fine-book.woff2?v=182470725728357909491606824750") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/gt-sectra-fine-book.woff?v=56092534978375199171606824624") format("woff"); }

@font-face {
  font-family: "Sectra";
  font-style: italic;
  font-weight: normal;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/gt-sectra-fine-book-italic.woff2?v=87294354226602534451606822863") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/gt-sectra-fine-book-italic.woff?v=29050281040788277291606824017") format("woff"); }

@font-face {
  font-family: "Sectra";
  font-style: normal;
  font-weight: bold;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/gt-sectra-fine-medium.woff2?v=17178674703640733401606824128") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/gt-sectra-fine-medium.woff?v=96983940813892700951606822858") format("woff"); }

@font-face {
  font-family: "Patron";
  font-style: normal;
  font-weight: thin;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-thin.woff2?v=51459309874562768401606824313") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-thin.woff?v=70486684913401954261606823362") format("woff"); }

@font-face {
  font-family: "Patron";
  font-style: normal;
  font-weight: 100;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-thin.woff2?v=51459309874562768401606824313") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-thin.woff?v=70486684913401954261606823362") format("woff"); }

@font-face {
  font-family: "Patron";
  font-style: normal;
  font-weight: normal;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-regular.woff2?v=157079233430075634131606822867") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-regular.woff?v=166848342150909078711606824432") format("woff"); }

@font-face {
  font-family: "Patron";
  font-style: normal;
  font-weight: 400;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-regular.woff2?v=157079233430075634131606822867") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-regular.woff?v=166848342150909078711606824432") format("woff"); }

@font-face {
  font-family: "Patron";
  font-style: normal;
  font-weight: bold;
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-bold.woff2?v=75292427931400552831606822854") format("woff2"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/patron-bold.woff?v=89364608895561787831606824785") format("woff"); }

@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/icons.eot?v=20028156566840377271606822862");
  src: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/icons.eot?v=20028156566840377271606822862#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/icons.woff?v=15017938242008778141606825032") format("woff"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/icons.ttf?v=27219823213237099761606822951") format("truetype"), url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/icons.svg?v=181733883950945120391606824883#shop-icons") format("svg");
  font-weight: 400;
  font-style: normal; }

/*================ #Z-Index ================*/
/*================ Misc ================*/
/*================ #Site Header ================*/
/*================ #Forms ================*/
/*================ #Drawers ================*/
/*================ #Collection Grid ================*/
/*================ #Sizes ================*/
/*================ UTILITIES ================*/
/* ==========================================================================
   [Utility] Hide
   ========================================================================== */
.u-hide {
  display: none !important; }

.u-opacity-0 {
  opacity: 0; }

.u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin-top: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px; }

/* ==========================================================================
   [Utilities] Links
   ========================================================================== */
.u-link--underlined.u-link.u-btn .u-btn__content:not(:hover):not(:active):not(:focus), .u-link--underlined.u-link:not(.u-btn):not(:hover):not(:active):not(:focus) {
  border-bottom: 1px solid #d8d5d5;
  position: relative; }

.u-link--underlined:hover.u-btn .u-btn__content, .u-link--underlined:hover:not(.u-btn) {
  border-bottom: 1px solid #3300ad;
  color: #3300ad; }

.u-link:not(:active) {
  color: #3a2e2c; }

.u-link--basic-text {
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-family: sans-serif;
  display: inline-block; }

/* ==========================================================================
   [Utility] Buttons
   ========================================================================== */
.u-btn {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0; }

/*================ CANVAS ================*/
/*============================================================================
  Shopify Canvas
  Copyright 2015 Shopify Inc.
    - The font icons are prepared using https://icomoon.io/app
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
/*============================================================================
  #Normalize

  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*, *:before, *:after {
  box-sizing: border-box; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

a {
  background-color: transparent; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  max-width: 100%;
  border: 0; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

textarea {
  overflow: auto; }

[tabindex='-1']:focus {
  outline: none; }

/*============================================================================
  #Helper Classes
==============================================================================*/
/*============================================================================
  #Helper Classes
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: '';
    display: table;
    clear: both; }

.visually-hidden, .supports-fontface .icon__fallback-text, .no-js .lazyload, .no-js .fade-in, .no-js .product-item__image-container, .modern .shopify-name, .no-js .article__featured-image-wrapper {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*============================================================================
  #Grid
==============================================================================*/
/*============================================================================
  #Grid
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid {
  *zoom: 1; }
  .grid:after {
    content: '';
    display: table;
    clear: both; }

.grid {
  list-style: none;
  margin: 0;
  padding: 0; }
  html:not(.rtl) .grid {
    margin-left: -20px; }
  html.rtl .grid {
    margin-right: -20px; }
  @media only screen and (max-width: 34.365em) {
    .grid {
      margin-left: -13.33333px; } }

.grid__item {
  width: 100%; }
  html:not(.rtl) .grid__item {
    float: left; }
  html.rtl .grid__item {
    float: right; }
  html:not(.rtl) .grid__item {
    padding-left: 20px; }
  html.rtl .grid__item {
    padding-right: 20px; }
  @media only screen and (max-width: 34.365em) {
    .grid__item {
      padding-left: 13.33333px; } }

.grid__item[class*="--push"] {
  position: relative; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

.rtl .grid--rev {
  direction: ltr;
  text-align: right; }
  .rtl .grid--rev > .grid__item {
    direction: rtl;
    text-align: right;
    float: left; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.33333%; }

.two-thirds {
  width: 66.66667%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.66667%; }

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.33333%; }

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

/* RTL */
/* Halves */
.rtl .push-one-half {
  left: -50%; }

/* Thirds */
.rtl .push-one-third {
  left: -33.33333%; }

.rtl .push-two-thirds {
  left: -66.66667%; }

/* Quarters */
.rtl .push-one-quarter {
  left: -25%; }

.rtl .push-two-quarters {
  left: -50%; }

.rtl .push-three-quarters {
  left: -75%; }

/* Fifths */
.rtl .push-one-fifth {
  left: -20%; }

.rtl .push-two-fifths {
  left: -40%; }

.rtl .push-three-fifths {
  left: -60%; }

.rtl .push-four-fifths {
  left: -80%; }

/* Sixths */
.rtl .push-one-sixth {
  left: -16.66667%; }

.rtl .push-two-sixths {
  left: -33.33333%; }

.rtl .push-three-sixths {
  left: -50%; }

.rtl .push-four-sixths {
  left: -66.66667%; }

.rtl .push-five-sixths {
  left: -83.33333%; }

/* Eighths */
.rtl .push-one-eighth {
  left: -12.5%; }

.rtl .push-two-eighths {
  left: -25%; }

.rtl .push-three-eighths {
  left: -37.5%; }

.rtl .push-four-eighths {
  left: -50%; }

.rtl .push-five-eighths {
  left: -62.5%; }

.rtl .push-six-eighths {
  left: -75%; }

.rtl .push-seven-eighths {
  left: -87.5%; }

/* Tenths */
.rtl .push-one-tenth {
  left: -10%; }

.rtl .push-two-tenths {
  left: -20%; }

.rtl .push-three-tenths {
  left: -30%; }

.rtl .push-four-tenths {
  left: -40%; }

.rtl .push-five-tenths {
  left: -50%; }

.rtl .push-six-tenths {
  left: -60%; }

.rtl .push-seven-tenths {
  left: -70%; }

.rtl .push-eight-tenths {
  left: -80%; }

.rtl .push-nine-tenths {
  left: -90%; }

/* Twelfths */
.rtl .push-one-twelfth {
  left: -8.33333%; }

.rtl .push-two-twelfths {
  left: -16.66667%; }

.rtl .push-three-twelfths {
  left: -25%; }

.rtl .push-four-twelfths {
  left: -33.33333%; }

.rtl .push-five-twelfths {
  left: -41.66667%; }

.rtl .push-six-twelfths {
  left: -50%; }

.rtl .push-seven-twelfths {
  left: -58.33333%; }

.rtl .push-eight-twelfths {
  left: -66.66667%; }

.rtl .push-nine-twelfths {
  left: -75%; }

.rtl .push-ten-twelfths {
  left: -83.33333%; }

.rtl .push-eleven-twelfths {
  left: -91.66667%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 34.365em) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.33333%; }

  .small--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%; }

  .small--two-quarters {
    width: 50%; }

  .small--three-quarters {
    width: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.66667%; }

  .small--two-sixths {
    width: 33.33333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.66667%; }

  .small--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }

  .small--two-eighths {
    width: 25%; }

  .small--three-eighths {
    width: 37.5%; }

  .small--four-eighths {
    width: 50%; }

  .small--five-eighths {
    width: 62.5%; }

  .small--six-eighths {
    width: 75%; }

  .small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%; }

  .small--two-tenths {
    width: 20%; }

  .small--three-tenths {
    width: 30%; }

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

  .small--seven-tenths {
    width: 70%; }

  .small--eight-tenths {
    width: 80%; }

  .small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.33333%; }

  .small--two-twelfths {
    width: 16.66667%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.33333%; }

  .small--five-twelfths {
    width: 41.66667%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.33333%; }

  .small--eight-twelfths {
    width: 66.66667%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.33333%; }

  .small--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .small--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .small--push-one-third {
    left: -33.33333%; }

  .rtl .small--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .small--push-one-quarter {
    left: -25%; }

  .rtl .small--push-two-quarters {
    left: -50%; }

  .rtl .small--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .small--push-one-fifth {
    left: -20%; }

  .rtl .small--push-two-fifths {
    left: -40%; }

  .rtl .small--push-three-fifths {
    left: -60%; }

  .rtl .small--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .small--push-one-sixth {
    left: -16.66667%; }

  .rtl .small--push-two-sixths {
    left: -33.33333%; }

  .rtl .small--push-three-sixths {
    left: -50%; }

  .rtl .small--push-four-sixths {
    left: -66.66667%; }

  .rtl .small--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .small--push-one-eighth {
    left: -12.5%; }

  .rtl .small--push-two-eighths {
    left: -25%; }

  .rtl .small--push-three-eighths {
    left: -37.5%; }

  .rtl .small--push-four-eighths {
    left: -50%; }

  .rtl .small--push-five-eighths {
    left: -62.5%; }

  .rtl .small--push-six-eighths {
    left: -75%; }

  .rtl .small--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .small--push-one-tenth {
    left: -10%; }

  .rtl .small--push-two-tenths {
    left: -20%; }

  .rtl .small--push-three-tenths {
    left: -30%; }

  .rtl .small--push-four-tenths {
    left: -40%; }

  .rtl .small--push-five-tenths {
    left: -50%; }

  .rtl .small--push-six-tenths {
    left: -60%; }

  .rtl .small--push-seven-tenths {
    left: -70%; }

  .rtl .small--push-eight-tenths {
    left: -80%; }

  .rtl .small--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .small--push-one-twelfth {
    left: -8.33333%; }

  .rtl .small--push-two-twelfths {
    left: -16.66667%; }

  .rtl .small--push-three-twelfths {
    left: -25%; }

  .rtl .small--push-four-twelfths {
    left: -33.33333%; }

  .rtl .small--push-five-twelfths {
    left: -41.66667%; }

  .rtl .small--push-six-twelfths {
    left: -50%; }

  .rtl .small--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .small--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .small--push-nine-twelfths {
    left: -75%; }

  .rtl .small--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .small--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .small--one-half:nth-child(2n+1),
  .grid--uniform .small--one-third:nth-child(3n+1),
  .grid--uniform .small--one-quarter:nth-child(4n+1),
  .grid--uniform .small--one-fifth:nth-child(5n+1),
  .grid--uniform .small--one-sixth:nth-child(6n+1),
  .grid--uniform .small--two-sixths:nth-child(3n+1),
  .grid--uniform .small--three-sixths:nth-child(2n+1),
  .grid--uniform .small--two-eighths:nth-child(4n+1),
  .grid--uniform .small--four-eighths:nth-child(2n+1),
  .grid--uniform .small--five-tenths:nth-child(2n+1),
  .grid--uniform .small--one-twelfth:nth-child(12n+1),
  .grid--uniform .small--two-twelfths:nth-child(6n+1),
  .grid--uniform .small--three-twelfths:nth-child(4n+1),
  .grid--uniform .small--four-twelfths:nth-child(3n+1),
  .grid--uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

  .small--text-left {
    text-align: left !important; }

  .rtl .small--text-left {
    text-align: right !important; }

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

  .rtl .small--text-right {
    text-align: left !important; }

  .small--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 34.375em) and (max-width: 47.49em) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

  /* Halves */
  .medium--one-half {
    width: 50%; }

  /* Thirds */
  .medium--one-third {
    width: 33.33333%; }

  .medium--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium--one-quarter {
    width: 25%; }

  .medium--two-quarters {
    width: 50%; }

  .medium--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium--one-fifth {
    width: 20%; }

  .medium--two-fifths {
    width: 40%; }

  .medium--three-fifths {
    width: 60%; }

  .medium--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium--one-sixth {
    width: 16.66667%; }

  .medium--two-sixths {
    width: 33.33333%; }

  .medium--three-sixths {
    width: 50%; }

  .medium--four-sixths {
    width: 66.66667%; }

  .medium--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }

  .medium--two-eighths {
    width: 25%; }

  .medium--three-eighths {
    width: 37.5%; }

  .medium--four-eighths {
    width: 50%; }

  .medium--five-eighths {
    width: 62.5%; }

  .medium--six-eighths {
    width: 75%; }

  .medium--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium--one-tenth {
    width: 10%; }

  .medium--two-tenths {
    width: 20%; }

  .medium--three-tenths {
    width: 30%; }

  .medium--four-tenths {
    width: 40%; }

  .medium--five-tenths {
    width: 50%; }

  .medium--six-tenths {
    width: 60%; }

  .medium--seven-tenths {
    width: 70%; }

  .medium--eight-tenths {
    width: 80%; }

  .medium--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium--one-twelfth {
    width: 8.33333%; }

  .medium--two-twelfths {
    width: 16.66667%; }

  .medium--three-twelfths {
    width: 25%; }

  .medium--four-twelfths {
    width: 33.33333%; }

  .medium--five-twelfths {
    width: 41.66667%; }

  .medium--six-twelfths {
    width: 50%; }

  .medium--seven-twelfths {
    width: 58.33333%; }

  .medium--eight-twelfths {
    width: 66.66667%; }

  .medium--nine-twelfths {
    width: 75%; }

  .medium--ten-twelfths {
    width: 83.33333%; }

  .medium--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .medium--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .medium--push-one-third {
    left: -33.33333%; }

  .rtl .medium--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .medium--push-one-quarter {
    left: -25%; }

  .rtl .medium--push-two-quarters {
    left: -50%; }

  .rtl .medium--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .medium--push-one-fifth {
    left: -20%; }

  .rtl .medium--push-two-fifths {
    left: -40%; }

  .rtl .medium--push-three-fifths {
    left: -60%; }

  .rtl .medium--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .medium--push-one-sixth {
    left: -16.66667%; }

  .rtl .medium--push-two-sixths {
    left: -33.33333%; }

  .rtl .medium--push-three-sixths {
    left: -50%; }

  .rtl .medium--push-four-sixths {
    left: -66.66667%; }

  .rtl .medium--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .medium--push-one-eighth {
    left: -12.5%; }

  .rtl .medium--push-two-eighths {
    left: -25%; }

  .rtl .medium--push-three-eighths {
    left: -37.5%; }

  .rtl .medium--push-four-eighths {
    left: -50%; }

  .rtl .medium--push-five-eighths {
    left: -62.5%; }

  .rtl .medium--push-six-eighths {
    left: -75%; }

  .rtl .medium--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .medium--push-one-tenth {
    left: -10%; }

  .rtl .medium--push-two-tenths {
    left: -20%; }

  .rtl .medium--push-three-tenths {
    left: -30%; }

  .rtl .medium--push-four-tenths {
    left: -40%; }

  .rtl .medium--push-five-tenths {
    left: -50%; }

  .rtl .medium--push-six-tenths {
    left: -60%; }

  .rtl .medium--push-seven-tenths {
    left: -70%; }

  .rtl .medium--push-eight-tenths {
    left: -80%; }

  .rtl .medium--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .medium--push-one-twelfth {
    left: -8.33333%; }

  .rtl .medium--push-two-twelfths {
    left: -16.66667%; }

  .rtl .medium--push-three-twelfths {
    left: -25%; }

  .rtl .medium--push-four-twelfths {
    left: -33.33333%; }

  .rtl .medium--push-five-twelfths {
    left: -41.66667%; }

  .rtl .medium--push-six-twelfths {
    left: -50%; }

  .rtl .medium--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .medium--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .medium--push-nine-twelfths {
    left: -75%; }

  .rtl .medium--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .medium--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .medium--one-half:nth-child(2n+1),
  .grid--uniform .medium--one-third:nth-child(3n+1),
  .grid--uniform .medium--one-quarter:nth-child(4n+1),
  .grid--uniform .medium--one-fifth:nth-child(5n+1),
  .grid--uniform .medium--one-sixth:nth-child(6n+1),
  .grid--uniform .medium--two-sixths:nth-child(3n+1),
  .grid--uniform .medium--three-sixths:nth-child(2n+1),
  .grid--uniform .medium--two-eighths:nth-child(4n+1),
  .grid--uniform .medium--four-eighths:nth-child(2n+1),
  .grid--uniform .medium--five-tenths:nth-child(2n+1),
  .grid--uniform .medium--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium--show {
    display: block !important; }

  .medium--hide {
    display: none !important; }

  .medium--text-left {
    text-align: left !important; }

  .rtl .medium--text-left {
    text-align: right !important; }

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

  .rtl .medium--text-right {
    text-align: left !important; }

  .medium--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 34.375em) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%; }

  /* Halves */
  .medium-up--one-half {
    width: 50%; }

  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%; }

  .medium-up--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-up--one-quarter {
    width: 25%; }

  .medium-up--two-quarters {
    width: 50%; }

  .medium-up--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-up--one-fifth {
    width: 20%; }

  .medium-up--two-fifths {
    width: 40%; }

  .medium-up--three-fifths {
    width: 60%; }

  .medium-up--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%; }

  .medium-up--two-sixths {
    width: 33.33333%; }

  .medium-up--three-sixths {
    width: 50%; }

  .medium-up--four-sixths {
    width: 66.66667%; }

  .medium-up--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%; }

  .medium-up--two-eighths {
    width: 25%; }

  .medium-up--three-eighths {
    width: 37.5%; }

  .medium-up--four-eighths {
    width: 50%; }

  .medium-up--five-eighths {
    width: 62.5%; }

  .medium-up--six-eighths {
    width: 75%; }

  .medium-up--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-up--one-tenth {
    width: 10%; }

  .medium-up--two-tenths {
    width: 20%; }

  .medium-up--three-tenths {
    width: 30%; }

  .medium-up--four-tenths {
    width: 40%; }

  .medium-up--five-tenths {
    width: 50%; }

  .medium-up--six-tenths {
    width: 60%; }

  .medium-up--seven-tenths {
    width: 70%; }

  .medium-up--eight-tenths {
    width: 80%; }

  .medium-up--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%; }

  .medium-up--two-twelfths {
    width: 16.66667%; }

  .medium-up--three-twelfths {
    width: 25%; }

  .medium-up--four-twelfths {
    width: 33.33333%; }

  .medium-up--five-twelfths {
    width: 41.66667%; }

  .medium-up--six-twelfths {
    width: 50%; }

  .medium-up--seven-twelfths {
    width: 58.33333%; }

  .medium-up--eight-twelfths {
    width: 66.66667%; }

  .medium-up--nine-twelfths {
    width: 75%; }

  .medium-up--ten-twelfths, .shopify-policy__body {
    width: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .medium-up--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .medium-up--push-one-third {
    left: -33.33333%; }

  .rtl .medium-up--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .medium-up--push-one-quarter {
    left: -25%; }

  .rtl .medium-up--push-two-quarters {
    left: -50%; }

  .rtl .medium-up--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .medium-up--push-one-fifth {
    left: -20%; }

  .rtl .medium-up--push-two-fifths {
    left: -40%; }

  .rtl .medium-up--push-three-fifths {
    left: -60%; }

  .rtl .medium-up--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .medium-up--push-one-sixth {
    left: -16.66667%; }

  .rtl .medium-up--push-two-sixths {
    left: -33.33333%; }

  .rtl .medium-up--push-three-sixths {
    left: -50%; }

  .rtl .medium-up--push-four-sixths {
    left: -66.66667%; }

  .rtl .medium-up--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .medium-up--push-one-eighth {
    left: -12.5%; }

  .rtl .medium-up--push-two-eighths {
    left: -25%; }

  .rtl .medium-up--push-three-eighths {
    left: -37.5%; }

  .rtl .medium-up--push-four-eighths {
    left: -50%; }

  .rtl .medium-up--push-five-eighths {
    left: -62.5%; }

  .rtl .medium-up--push-six-eighths {
    left: -75%; }

  .rtl .medium-up--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .medium-up--push-one-tenth {
    left: -10%; }

  .rtl .medium-up--push-two-tenths {
    left: -20%; }

  .rtl .medium-up--push-three-tenths {
    left: -30%; }

  .rtl .medium-up--push-four-tenths {
    left: -40%; }

  .rtl .medium-up--push-five-tenths {
    left: -50%; }

  .rtl .medium-up--push-six-tenths {
    left: -60%; }

  .rtl .medium-up--push-seven-tenths {
    left: -70%; }

  .rtl .medium-up--push-eight-tenths {
    left: -80%; }

  .rtl .medium-up--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .medium-up--push-one-twelfth {
    left: -8.33333%; }

  .rtl .medium-up--push-two-twelfths {
    left: -16.66667%; }

  .rtl .medium-up--push-three-twelfths {
    left: -25%; }

  .rtl .medium-up--push-four-twelfths {
    left: -33.33333%; }

  .rtl .medium-up--push-five-twelfths {
    left: -41.66667%; }

  .rtl .medium-up--push-six-twelfths {
    left: -50%; }

  .rtl .medium-up--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .medium-up--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .medium-up--push-nine-twelfths {
    left: -75%; }

  .rtl .medium-up--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .medium-up--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-up--show {
    display: block !important; }

  .medium-up--hide {
    display: none !important; }

  .medium-up--text-left {
    text-align: left !important; }

  .rtl .medium-up--text-left {
    text-align: right !important; }

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

  .rtl .medium-up--text-right {
    text-align: left !important; }

  .medium-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 47.5em) and (max-width: 53.74em) {
  /** Whole */
  .medium-mid--one-whole {
    width: 100%; }

  /* Halves */
  .medium-mid--one-half {
    width: 50%; }

  /* Thirds */
  .medium-mid--one-third {
    width: 33.33333%; }

  .medium-mid--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-mid--one-quarter {
    width: 25%; }

  .medium-mid--two-quarters {
    width: 50%; }

  .medium-mid--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-mid--one-fifth {
    width: 20%; }

  .medium-mid--two-fifths {
    width: 40%; }

  .medium-mid--three-fifths {
    width: 60%; }

  .medium-mid--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-mid--one-sixth {
    width: 16.66667%; }

  .medium-mid--two-sixths {
    width: 33.33333%; }

  .medium-mid--three-sixths {
    width: 50%; }

  .medium-mid--four-sixths {
    width: 66.66667%; }

  .medium-mid--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium-mid--one-eighth {
    width: 12.5%; }

  .medium-mid--two-eighths {
    width: 25%; }

  .medium-mid--three-eighths {
    width: 37.5%; }

  .medium-mid--four-eighths {
    width: 50%; }

  .medium-mid--five-eighths {
    width: 62.5%; }

  .medium-mid--six-eighths {
    width: 75%; }

  .medium-mid--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-mid--one-tenth {
    width: 10%; }

  .medium-mid--two-tenths {
    width: 20%; }

  .medium-mid--three-tenths {
    width: 30%; }

  .medium-mid--four-tenths {
    width: 40%; }

  .medium-mid--five-tenths {
    width: 50%; }

  .medium-mid--six-tenths {
    width: 60%; }

  .medium-mid--seven-tenths {
    width: 70%; }

  .medium-mid--eight-tenths {
    width: 80%; }

  .medium-mid--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-mid--one-twelfth {
    width: 8.33333%; }

  .medium-mid--two-twelfths {
    width: 16.66667%; }

  .medium-mid--three-twelfths {
    width: 25%; }

  .medium-mid--four-twelfths {
    width: 33.33333%; }

  .medium-mid--five-twelfths {
    width: 41.66667%; }

  .medium-mid--six-twelfths {
    width: 50%; }

  .medium-mid--seven-twelfths {
    width: 58.33333%; }

  .medium-mid--eight-twelfths {
    width: 66.66667%; }

  .medium-mid--nine-twelfths {
    width: 75%; }

  .medium-mid--ten-twelfths {
    width: 83.33333%; }

  .medium-mid--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .medium-mid--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .medium-mid--push-one-third {
    left: -33.33333%; }

  .rtl .medium-mid--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .medium-mid--push-one-quarter {
    left: -25%; }

  .rtl .medium-mid--push-two-quarters {
    left: -50%; }

  .rtl .medium-mid--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .medium-mid--push-one-fifth {
    left: -20%; }

  .rtl .medium-mid--push-two-fifths {
    left: -40%; }

  .rtl .medium-mid--push-three-fifths {
    left: -60%; }

  .rtl .medium-mid--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .medium-mid--push-one-sixth {
    left: -16.66667%; }

  .rtl .medium-mid--push-two-sixths {
    left: -33.33333%; }

  .rtl .medium-mid--push-three-sixths {
    left: -50%; }

  .rtl .medium-mid--push-four-sixths {
    left: -66.66667%; }

  .rtl .medium-mid--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .medium-mid--push-one-eighth {
    left: -12.5%; }

  .rtl .medium-mid--push-two-eighths {
    left: -25%; }

  .rtl .medium-mid--push-three-eighths {
    left: -37.5%; }

  .rtl .medium-mid--push-four-eighths {
    left: -50%; }

  .rtl .medium-mid--push-five-eighths {
    left: -62.5%; }

  .rtl .medium-mid--push-six-eighths {
    left: -75%; }

  .rtl .medium-mid--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .medium-mid--push-one-tenth {
    left: -10%; }

  .rtl .medium-mid--push-two-tenths {
    left: -20%; }

  .rtl .medium-mid--push-three-tenths {
    left: -30%; }

  .rtl .medium-mid--push-four-tenths {
    left: -40%; }

  .rtl .medium-mid--push-five-tenths {
    left: -50%; }

  .rtl .medium-mid--push-six-tenths {
    left: -60%; }

  .rtl .medium-mid--push-seven-tenths {
    left: -70%; }

  .rtl .medium-mid--push-eight-tenths {
    left: -80%; }

  .rtl .medium-mid--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .medium-mid--push-one-twelfth {
    left: -8.33333%; }

  .rtl .medium-mid--push-two-twelfths {
    left: -16.66667%; }

  .rtl .medium-mid--push-three-twelfths {
    left: -25%; }

  .rtl .medium-mid--push-four-twelfths {
    left: -33.33333%; }

  .rtl .medium-mid--push-five-twelfths {
    left: -41.66667%; }

  .rtl .medium-mid--push-six-twelfths {
    left: -50%; }

  .rtl .medium-mid--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .medium-mid--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .medium-mid--push-nine-twelfths {
    left: -75%; }

  .rtl .medium-mid--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .medium-mid--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .medium-mid--one-half:nth-child(2n+1),
  .grid--uniform .medium-mid--one-third:nth-child(3n+1),
  .grid--uniform .medium-mid--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-mid--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-mid--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-mid--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-mid--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-mid--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-mid--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-mid--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-mid--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-mid--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-mid--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-mid--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-mid--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-mid--show {
    display: block !important; }

  .medium-mid--hide {
    display: none !important; }

  .medium-mid--text-left {
    text-align: left !important; }

  .rtl .medium-mid--text-left {
    text-align: right !important; }

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

  .rtl .medium-mid--text-right {
    text-align: left !important; }

  .medium-mid--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 47.5em) {
  /** Whole */
  .medium-mid-up--one-whole {
    width: 100%; }

  /* Halves */
  .medium-mid-up--one-half {
    width: 50%; }

  /* Thirds */
  .medium-mid-up--one-third {
    width: 33.33333%; }

  .medium-mid-up--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-mid-up--one-quarter {
    width: 25%; }

  .medium-mid-up--two-quarters {
    width: 50%; }

  .medium-mid-up--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-mid-up--one-fifth {
    width: 20%; }

  .medium-mid-up--two-fifths {
    width: 40%; }

  .medium-mid-up--three-fifths {
    width: 60%; }

  .medium-mid-up--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-mid-up--one-sixth {
    width: 16.66667%; }

  .medium-mid-up--two-sixths {
    width: 33.33333%; }

  .medium-mid-up--three-sixths {
    width: 50%; }

  .medium-mid-up--four-sixths {
    width: 66.66667%; }

  .medium-mid-up--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium-mid-up--one-eighth {
    width: 12.5%; }

  .medium-mid-up--two-eighths {
    width: 25%; }

  .medium-mid-up--three-eighths {
    width: 37.5%; }

  .medium-mid-up--four-eighths {
    width: 50%; }

  .medium-mid-up--five-eighths {
    width: 62.5%; }

  .medium-mid-up--six-eighths {
    width: 75%; }

  .medium-mid-up--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-mid-up--one-tenth {
    width: 10%; }

  .medium-mid-up--two-tenths {
    width: 20%; }

  .medium-mid-up--three-tenths {
    width: 30%; }

  .medium-mid-up--four-tenths {
    width: 40%; }

  .medium-mid-up--five-tenths {
    width: 50%; }

  .medium-mid-up--six-tenths {
    width: 60%; }

  .medium-mid-up--seven-tenths {
    width: 70%; }

  .medium-mid-up--eight-tenths {
    width: 80%; }

  .medium-mid-up--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-mid-up--one-twelfth {
    width: 8.33333%; }

  .medium-mid-up--two-twelfths {
    width: 16.66667%; }

  .medium-mid-up--three-twelfths {
    width: 25%; }

  .medium-mid-up--four-twelfths {
    width: 33.33333%; }

  .medium-mid-up--five-twelfths {
    width: 41.66667%; }

  .medium-mid-up--six-twelfths {
    width: 50%; }

  .medium-mid-up--seven-twelfths {
    width: 58.33333%; }

  .medium-mid-up--eight-twelfths {
    width: 66.66667%; }

  .medium-mid-up--nine-twelfths {
    width: 75%; }

  .medium-mid-up--ten-twelfths {
    width: 83.33333%; }

  .medium-mid-up--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .medium-mid-up--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .medium-mid-up--push-one-third {
    left: -33.33333%; }

  .rtl .medium-mid-up--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .medium-mid-up--push-one-quarter {
    left: -25%; }

  .rtl .medium-mid-up--push-two-quarters {
    left: -50%; }

  .rtl .medium-mid-up--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .medium-mid-up--push-one-fifth {
    left: -20%; }

  .rtl .medium-mid-up--push-two-fifths {
    left: -40%; }

  .rtl .medium-mid-up--push-three-fifths {
    left: -60%; }

  .rtl .medium-mid-up--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .medium-mid-up--push-one-sixth {
    left: -16.66667%; }

  .rtl .medium-mid-up--push-two-sixths {
    left: -33.33333%; }

  .rtl .medium-mid-up--push-three-sixths {
    left: -50%; }

  .rtl .medium-mid-up--push-four-sixths {
    left: -66.66667%; }

  .rtl .medium-mid-up--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .medium-mid-up--push-one-eighth {
    left: -12.5%; }

  .rtl .medium-mid-up--push-two-eighths {
    left: -25%; }

  .rtl .medium-mid-up--push-three-eighths {
    left: -37.5%; }

  .rtl .medium-mid-up--push-four-eighths {
    left: -50%; }

  .rtl .medium-mid-up--push-five-eighths {
    left: -62.5%; }

  .rtl .medium-mid-up--push-six-eighths {
    left: -75%; }

  .rtl .medium-mid-up--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .medium-mid-up--push-one-tenth {
    left: -10%; }

  .rtl .medium-mid-up--push-two-tenths {
    left: -20%; }

  .rtl .medium-mid-up--push-three-tenths {
    left: -30%; }

  .rtl .medium-mid-up--push-four-tenths {
    left: -40%; }

  .rtl .medium-mid-up--push-five-tenths {
    left: -50%; }

  .rtl .medium-mid-up--push-six-tenths {
    left: -60%; }

  .rtl .medium-mid-up--push-seven-tenths {
    left: -70%; }

  .rtl .medium-mid-up--push-eight-tenths {
    left: -80%; }

  .rtl .medium-mid-up--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .medium-mid-up--push-one-twelfth {
    left: -8.33333%; }

  .rtl .medium-mid-up--push-two-twelfths {
    left: -16.66667%; }

  .rtl .medium-mid-up--push-three-twelfths {
    left: -25%; }

  .rtl .medium-mid-up--push-four-twelfths {
    left: -33.33333%; }

  .rtl .medium-mid-up--push-five-twelfths {
    left: -41.66667%; }

  .rtl .medium-mid-up--push-six-twelfths {
    left: -50%; }

  .rtl .medium-mid-up--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .medium-mid-up--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .medium-mid-up--push-nine-twelfths {
    left: -75%; }

  .rtl .medium-mid-up--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .medium-mid-up--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .medium-mid-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-mid-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-mid-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-mid-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-mid-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-mid-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-mid-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-mid-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-mid-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-mid-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-mid-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-mid-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-mid-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-mid-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-mid-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-mid-up--show {
    display: block !important; }

  .medium-mid-up--hide {
    display: none !important; }

  .medium-mid-up--text-left {
    text-align: left !important; }

  .rtl .medium-mid-up--text-left {
    text-align: right !important; }

  .medium-mid-up--text-right {
    text-align: right !important; }

  .rtl .medium-mid-up--text-right {
    text-align: left !important; }

  .medium-mid-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 53.75em) and (max-width: 68.74em) {
  /** Whole */
  .medium-high--one-whole {
    width: 100%; }

  /* Halves */
  .medium-high--one-half {
    width: 50%; }

  /* Thirds */
  .medium-high--one-third {
    width: 33.33333%; }

  .medium-high--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-high--one-quarter {
    width: 25%; }

  .medium-high--two-quarters {
    width: 50%; }

  .medium-high--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-high--one-fifth {
    width: 20%; }

  .medium-high--two-fifths {
    width: 40%; }

  .medium-high--three-fifths {
    width: 60%; }

  .medium-high--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-high--one-sixth {
    width: 16.66667%; }

  .medium-high--two-sixths {
    width: 33.33333%; }

  .medium-high--three-sixths {
    width: 50%; }

  .medium-high--four-sixths {
    width: 66.66667%; }

  .medium-high--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium-high--one-eighth {
    width: 12.5%; }

  .medium-high--two-eighths {
    width: 25%; }

  .medium-high--three-eighths {
    width: 37.5%; }

  .medium-high--four-eighths {
    width: 50%; }

  .medium-high--five-eighths {
    width: 62.5%; }

  .medium-high--six-eighths {
    width: 75%; }

  .medium-high--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-high--one-tenth {
    width: 10%; }

  .medium-high--two-tenths {
    width: 20%; }

  .medium-high--three-tenths {
    width: 30%; }

  .medium-high--four-tenths {
    width: 40%; }

  .medium-high--five-tenths {
    width: 50%; }

  .medium-high--six-tenths {
    width: 60%; }

  .medium-high--seven-tenths {
    width: 70%; }

  .medium-high--eight-tenths {
    width: 80%; }

  .medium-high--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-high--one-twelfth {
    width: 8.33333%; }

  .medium-high--two-twelfths {
    width: 16.66667%; }

  .medium-high--three-twelfths {
    width: 25%; }

  .medium-high--four-twelfths {
    width: 33.33333%; }

  .medium-high--five-twelfths {
    width: 41.66667%; }

  .medium-high--six-twelfths {
    width: 50%; }

  .medium-high--seven-twelfths {
    width: 58.33333%; }

  .medium-high--eight-twelfths {
    width: 66.66667%; }

  .medium-high--nine-twelfths {
    width: 75%; }

  .medium-high--ten-twelfths {
    width: 83.33333%; }

  .medium-high--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .medium-high--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .medium-high--push-one-third {
    left: -33.33333%; }

  .rtl .medium-high--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .medium-high--push-one-quarter {
    left: -25%; }

  .rtl .medium-high--push-two-quarters {
    left: -50%; }

  .rtl .medium-high--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .medium-high--push-one-fifth {
    left: -20%; }

  .rtl .medium-high--push-two-fifths {
    left: -40%; }

  .rtl .medium-high--push-three-fifths {
    left: -60%; }

  .rtl .medium-high--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .medium-high--push-one-sixth {
    left: -16.66667%; }

  .rtl .medium-high--push-two-sixths {
    left: -33.33333%; }

  .rtl .medium-high--push-three-sixths {
    left: -50%; }

  .rtl .medium-high--push-four-sixths {
    left: -66.66667%; }

  .rtl .medium-high--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .medium-high--push-one-eighth {
    left: -12.5%; }

  .rtl .medium-high--push-two-eighths {
    left: -25%; }

  .rtl .medium-high--push-three-eighths {
    left: -37.5%; }

  .rtl .medium-high--push-four-eighths {
    left: -50%; }

  .rtl .medium-high--push-five-eighths {
    left: -62.5%; }

  .rtl .medium-high--push-six-eighths {
    left: -75%; }

  .rtl .medium-high--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .medium-high--push-one-tenth {
    left: -10%; }

  .rtl .medium-high--push-two-tenths {
    left: -20%; }

  .rtl .medium-high--push-three-tenths {
    left: -30%; }

  .rtl .medium-high--push-four-tenths {
    left: -40%; }

  .rtl .medium-high--push-five-tenths {
    left: -50%; }

  .rtl .medium-high--push-six-tenths {
    left: -60%; }

  .rtl .medium-high--push-seven-tenths {
    left: -70%; }

  .rtl .medium-high--push-eight-tenths {
    left: -80%; }

  .rtl .medium-high--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .medium-high--push-one-twelfth {
    left: -8.33333%; }

  .rtl .medium-high--push-two-twelfths {
    left: -16.66667%; }

  .rtl .medium-high--push-three-twelfths {
    left: -25%; }

  .rtl .medium-high--push-four-twelfths {
    left: -33.33333%; }

  .rtl .medium-high--push-five-twelfths {
    left: -41.66667%; }

  .rtl .medium-high--push-six-twelfths {
    left: -50%; }

  .rtl .medium-high--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .medium-high--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .medium-high--push-nine-twelfths {
    left: -75%; }

  .rtl .medium-high--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .medium-high--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .medium-high--one-half:nth-child(2n+1),
  .grid--uniform .medium-high--one-third:nth-child(3n+1),
  .grid--uniform .medium-high--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-high--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-high--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-high--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-high--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-high--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-high--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-high--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-high--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-high--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-high--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-high--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-high--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-high--show {
    display: block !important; }

  .medium-high--hide {
    display: none !important; }

  .medium-high--text-left {
    text-align: left !important; }

  .rtl .medium-high--text-left {
    text-align: right !important; }

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

  .rtl .medium-high--text-right {
    text-align: left !important; }

  .medium-high--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 53.75em) {
  /** Whole */
  .medium-high-up--one-whole {
    width: 100%; }

  /* Halves */
  .medium-high-up--one-half {
    width: 50%; }

  /* Thirds */
  .medium-high-up--one-third {
    width: 33.33333%; }

  .medium-high-up--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-high-up--one-quarter {
    width: 25%; }

  .medium-high-up--two-quarters {
    width: 50%; }

  .medium-high-up--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-high-up--one-fifth {
    width: 20%; }

  .medium-high-up--two-fifths {
    width: 40%; }

  .medium-high-up--three-fifths {
    width: 60%; }

  .medium-high-up--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-high-up--one-sixth {
    width: 16.66667%; }

  .medium-high-up--two-sixths {
    width: 33.33333%; }

  .medium-high-up--three-sixths {
    width: 50%; }

  .medium-high-up--four-sixths {
    width: 66.66667%; }

  .medium-high-up--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium-high-up--one-eighth {
    width: 12.5%; }

  .medium-high-up--two-eighths {
    width: 25%; }

  .medium-high-up--three-eighths {
    width: 37.5%; }

  .medium-high-up--four-eighths {
    width: 50%; }

  .medium-high-up--five-eighths {
    width: 62.5%; }

  .medium-high-up--six-eighths {
    width: 75%; }

  .medium-high-up--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-high-up--one-tenth {
    width: 10%; }

  .medium-high-up--two-tenths {
    width: 20%; }

  .medium-high-up--three-tenths {
    width: 30%; }

  .medium-high-up--four-tenths {
    width: 40%; }

  .medium-high-up--five-tenths {
    width: 50%; }

  .medium-high-up--six-tenths {
    width: 60%; }

  .medium-high-up--seven-tenths {
    width: 70%; }

  .medium-high-up--eight-tenths {
    width: 80%; }

  .medium-high-up--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-high-up--one-twelfth {
    width: 8.33333%; }

  .medium-high-up--two-twelfths {
    width: 16.66667%; }

  .medium-high-up--three-twelfths {
    width: 25%; }

  .medium-high-up--four-twelfths {
    width: 33.33333%; }

  .medium-high-up--five-twelfths {
    width: 41.66667%; }

  .medium-high-up--six-twelfths {
    width: 50%; }

  .medium-high-up--seven-twelfths {
    width: 58.33333%; }

  .medium-high-up--eight-twelfths {
    width: 66.66667%; }

  .medium-high-up--nine-twelfths, .shopify-policy__body {
    width: 75%; }

  .medium-high-up--ten-twelfths {
    width: 83.33333%; }

  .medium-high-up--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .medium-high-up--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .medium-high-up--push-one-third {
    left: -33.33333%; }

  .rtl .medium-high-up--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .medium-high-up--push-one-quarter {
    left: -25%; }

  .rtl .medium-high-up--push-two-quarters {
    left: -50%; }

  .rtl .medium-high-up--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .medium-high-up--push-one-fifth {
    left: -20%; }

  .rtl .medium-high-up--push-two-fifths {
    left: -40%; }

  .rtl .medium-high-up--push-three-fifths {
    left: -60%; }

  .rtl .medium-high-up--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .medium-high-up--push-one-sixth {
    left: -16.66667%; }

  .rtl .medium-high-up--push-two-sixths {
    left: -33.33333%; }

  .rtl .medium-high-up--push-three-sixths {
    left: -50%; }

  .rtl .medium-high-up--push-four-sixths {
    left: -66.66667%; }

  .rtl .medium-high-up--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .medium-high-up--push-one-eighth {
    left: -12.5%; }

  .rtl .medium-high-up--push-two-eighths {
    left: -25%; }

  .rtl .medium-high-up--push-three-eighths {
    left: -37.5%; }

  .rtl .medium-high-up--push-four-eighths {
    left: -50%; }

  .rtl .medium-high-up--push-five-eighths {
    left: -62.5%; }

  .rtl .medium-high-up--push-six-eighths {
    left: -75%; }

  .rtl .medium-high-up--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .medium-high-up--push-one-tenth {
    left: -10%; }

  .rtl .medium-high-up--push-two-tenths {
    left: -20%; }

  .rtl .medium-high-up--push-three-tenths {
    left: -30%; }

  .rtl .medium-high-up--push-four-tenths {
    left: -40%; }

  .rtl .medium-high-up--push-five-tenths {
    left: -50%; }

  .rtl .medium-high-up--push-six-tenths {
    left: -60%; }

  .rtl .medium-high-up--push-seven-tenths {
    left: -70%; }

  .rtl .medium-high-up--push-eight-tenths {
    left: -80%; }

  .rtl .medium-high-up--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .medium-high-up--push-one-twelfth {
    left: -8.33333%; }

  .rtl .medium-high-up--push-two-twelfths {
    left: -16.66667%; }

  .rtl .medium-high-up--push-three-twelfths {
    left: -25%; }

  .rtl .medium-high-up--push-four-twelfths {
    left: -33.33333%; }

  .rtl .medium-high-up--push-five-twelfths {
    left: -41.66667%; }

  .rtl .medium-high-up--push-six-twelfths {
    left: -50%; }

  .rtl .medium-high-up--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .medium-high-up--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .medium-high-up--push-nine-twelfths {
    left: -75%; }

  .rtl .medium-high-up--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .medium-high-up--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .medium-high-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-high-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-high-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-high-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-high-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-high-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-high-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-high-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-high-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-high-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-high-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-high-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-high-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-high-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-high-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-high-up--show {
    display: block !important; }

  .medium-high-up--hide {
    display: none !important; }

  .medium-high-up--text-left {
    text-align: left !important; }

  .rtl .medium-high-up--text-left {
    text-align: right !important; }

  .medium-high-up--text-right {
    text-align: right !important; }

  .rtl .medium-high-up--text-right {
    text-align: left !important; }

  .medium-high-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 68.75em) {
  /** Whole */
  .large-up--one-whole {
    width: 100%; }

  /* Halves */
  .large-up--one-half {
    width: 50%; }

  /* Thirds */
  .large-up--one-third {
    width: 33.33333%; }

  .large-up--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .large-up--one-quarter {
    width: 25%; }

  .large-up--two-quarters {
    width: 50%; }

  .large-up--three-quarters {
    width: 75%; }

  /* Fifths */
  .large-up--one-fifth {
    width: 20%; }

  .large-up--two-fifths {
    width: 40%; }

  .large-up--three-fifths {
    width: 60%; }

  .large-up--four-fifths {
    width: 80%; }

  /* Sixths */
  .large-up--one-sixth {
    width: 16.66667%; }

  .large-up--two-sixths {
    width: 33.33333%; }

  .large-up--three-sixths {
    width: 50%; }

  .large-up--four-sixths {
    width: 66.66667%; }

  .large-up--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .large-up--one-eighth {
    width: 12.5%; }

  .large-up--two-eighths {
    width: 25%; }

  .large-up--three-eighths {
    width: 37.5%; }

  .large-up--four-eighths {
    width: 50%; }

  .large-up--five-eighths {
    width: 62.5%; }

  .large-up--six-eighths {
    width: 75%; }

  .large-up--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .large-up--one-tenth {
    width: 10%; }

  .large-up--two-tenths {
    width: 20%; }

  .large-up--three-tenths {
    width: 30%; }

  .large-up--four-tenths {
    width: 40%; }

  .large-up--five-tenths {
    width: 50%; }

  .large-up--six-tenths {
    width: 60%; }

  .large-up--seven-tenths {
    width: 70%; }

  .large-up--eight-tenths {
    width: 80%; }

  .large-up--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .large-up--one-twelfth {
    width: 8.33333%; }

  .large-up--two-twelfths {
    width: 16.66667%; }

  .large-up--three-twelfths {
    width: 25%; }

  .large-up--four-twelfths {
    width: 33.33333%; }

  .large-up--five-twelfths {
    width: 41.66667%; }

  .large-up--six-twelfths {
    width: 50%; }

  .large-up--seven-twelfths {
    width: 58.33333%; }

  .large-up--eight-twelfths, .shopify-policy__body {
    width: 66.66667%; }

  .large-up--nine-twelfths {
    width: 75%; }

  .large-up--ten-twelfths {
    width: 83.33333%; }

  .large-up--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .large-up--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .large-up--push-one-third {
    left: -33.33333%; }

  .rtl .large-up--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .large-up--push-one-quarter {
    left: -25%; }

  .rtl .large-up--push-two-quarters {
    left: -50%; }

  .rtl .large-up--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .large-up--push-one-fifth {
    left: -20%; }

  .rtl .large-up--push-two-fifths {
    left: -40%; }

  .rtl .large-up--push-three-fifths {
    left: -60%; }

  .rtl .large-up--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .large-up--push-one-sixth {
    left: -16.66667%; }

  .rtl .large-up--push-two-sixths {
    left: -33.33333%; }

  .rtl .large-up--push-three-sixths {
    left: -50%; }

  .rtl .large-up--push-four-sixths {
    left: -66.66667%; }

  .rtl .large-up--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .large-up--push-one-eighth {
    left: -12.5%; }

  .rtl .large-up--push-two-eighths {
    left: -25%; }

  .rtl .large-up--push-three-eighths {
    left: -37.5%; }

  .rtl .large-up--push-four-eighths {
    left: -50%; }

  .rtl .large-up--push-five-eighths {
    left: -62.5%; }

  .rtl .large-up--push-six-eighths {
    left: -75%; }

  .rtl .large-up--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .large-up--push-one-tenth {
    left: -10%; }

  .rtl .large-up--push-two-tenths {
    left: -20%; }

  .rtl .large-up--push-three-tenths {
    left: -30%; }

  .rtl .large-up--push-four-tenths {
    left: -40%; }

  .rtl .large-up--push-five-tenths {
    left: -50%; }

  .rtl .large-up--push-six-tenths {
    left: -60%; }

  .rtl .large-up--push-seven-tenths {
    left: -70%; }

  .rtl .large-up--push-eight-tenths {
    left: -80%; }

  .rtl .large-up--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .large-up--push-one-twelfth {
    left: -8.33333%; }

  .rtl .large-up--push-two-twelfths {
    left: -16.66667%; }

  .rtl .large-up--push-three-twelfths {
    left: -25%; }

  .rtl .large-up--push-four-twelfths {
    left: -33.33333%; }

  .rtl .large-up--push-five-twelfths {
    left: -41.66667%; }

  .rtl .large-up--push-six-twelfths {
    left: -50%; }

  .rtl .large-up--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .large-up--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .large-up--push-nine-twelfths {
    left: -75%; }

  .rtl .large-up--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .large-up--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .large-up--one-half:nth-child(2n+1),
  .grid--uniform .large-up--one-third:nth-child(3n+1),
  .grid--uniform .large-up--one-quarter:nth-child(4n+1),
  .grid--uniform .large-up--one-fifth:nth-child(5n+1),
  .grid--uniform .large-up--one-sixth:nth-child(6n+1),
  .grid--uniform .large-up--two-sixths:nth-child(3n+1),
  .grid--uniform .large-up--three-sixths:nth-child(2n+1),
  .grid--uniform .large-up--two-eighths:nth-child(4n+1),
  .grid--uniform .large-up--four-eighths:nth-child(2n+1),
  .grid--uniform .large-up--five-tenths:nth-child(2n+1),
  .grid--uniform .large-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .large-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .large-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .large-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .large-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .large-up--show {
    display: block !important; }

  .large-up--hide {
    display: none !important; }

  .large-up--text-left {
    text-align: left !important; }

  .rtl .large-up--text-left {
    text-align: right !important; }

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

  .rtl .large-up--text-right {
    text-align: left !important; }

  .large-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 100em) {
  /** Whole */
  .widescreen--one-whole {
    width: 100%; }

  /* Halves */
  .widescreen--one-half {
    width: 50%; }

  /* Thirds */
  .widescreen--one-third {
    width: 33.33333%; }

  .widescreen--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .widescreen--one-quarter {
    width: 25%; }

  .widescreen--two-quarters {
    width: 50%; }

  .widescreen--three-quarters {
    width: 75%; }

  /* Fifths */
  .widescreen--one-fifth {
    width: 20%; }

  .widescreen--two-fifths {
    width: 40%; }

  .widescreen--three-fifths {
    width: 60%; }

  .widescreen--four-fifths {
    width: 80%; }

  /* Sixths */
  .widescreen--one-sixth {
    width: 16.66667%; }

  .widescreen--two-sixths {
    width: 33.33333%; }

  .widescreen--three-sixths {
    width: 50%; }

  .widescreen--four-sixths {
    width: 66.66667%; }

  .widescreen--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .widescreen--one-eighth {
    width: 12.5%; }

  .widescreen--two-eighths {
    width: 25%; }

  .widescreen--three-eighths {
    width: 37.5%; }

  .widescreen--four-eighths {
    width: 50%; }

  .widescreen--five-eighths {
    width: 62.5%; }

  .widescreen--six-eighths {
    width: 75%; }

  .widescreen--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .widescreen--one-tenth {
    width: 10%; }

  .widescreen--two-tenths {
    width: 20%; }

  .widescreen--three-tenths {
    width: 30%; }

  .widescreen--four-tenths {
    width: 40%; }

  .widescreen--five-tenths {
    width: 50%; }

  .widescreen--six-tenths {
    width: 60%; }

  .widescreen--seven-tenths {
    width: 70%; }

  .widescreen--eight-tenths {
    width: 80%; }

  .widescreen--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .widescreen--one-twelfth {
    width: 8.33333%; }

  .widescreen--two-twelfths {
    width: 16.66667%; }

  .widescreen--three-twelfths {
    width: 25%; }

  .widescreen--four-twelfths {
    width: 33.33333%; }

  .widescreen--five-twelfths {
    width: 41.66667%; }

  .widescreen--six-twelfths {
    width: 50%; }

  .widescreen--seven-twelfths {
    width: 58.33333%; }

  .widescreen--eight-twelfths {
    width: 66.66667%; }

  .widescreen--nine-twelfths {
    width: 75%; }

  .widescreen--ten-twelfths {
    width: 83.33333%; }

  .widescreen--eleven-twelfths {
    width: 91.66667%; }

  /* RTL */
  /* Halves */
  .rtl .widescreen--push-one-half {
    left: -50%; }

  /* Thirds */
  .rtl .widescreen--push-one-third {
    left: -33.33333%; }

  .rtl .widescreen--push-two-thirds {
    left: -66.66667%; }

  /* Quarters */
  .rtl .widescreen--push-one-quarter {
    left: -25%; }

  .rtl .widescreen--push-two-quarters {
    left: -50%; }

  .rtl .widescreen--push-three-quarters {
    left: -75%; }

  /* Fifths */
  .rtl .widescreen--push-one-fifth {
    left: -20%; }

  .rtl .widescreen--push-two-fifths {
    left: -40%; }

  .rtl .widescreen--push-three-fifths {
    left: -60%; }

  .rtl .widescreen--push-four-fifths {
    left: -80%; }

  /* Sixths */
  .rtl .widescreen--push-one-sixth {
    left: -16.66667%; }

  .rtl .widescreen--push-two-sixths {
    left: -33.33333%; }

  .rtl .widescreen--push-three-sixths {
    left: -50%; }

  .rtl .widescreen--push-four-sixths {
    left: -66.66667%; }

  .rtl .widescreen--push-five-sixths {
    left: -83.33333%; }

  /* Eighths */
  .rtl .widescreen--push-one-eighth {
    left: -12.5%; }

  .rtl .widescreen--push-two-eighths {
    left: -25%; }

  .rtl .widescreen--push-three-eighths {
    left: -37.5%; }

  .rtl .widescreen--push-four-eighths {
    left: -50%; }

  .rtl .widescreen--push-five-eighths {
    left: -62.5%; }

  .rtl .widescreen--push-six-eighths {
    left: -75%; }

  .rtl .widescreen--push-seven-eighths {
    left: -87.5%; }

  /* Tenths */
  .rtl .widescreen--push-one-tenth {
    left: -10%; }

  .rtl .widescreen--push-two-tenths {
    left: -20%; }

  .rtl .widescreen--push-three-tenths {
    left: -30%; }

  .rtl .widescreen--push-four-tenths {
    left: -40%; }

  .rtl .widescreen--push-five-tenths {
    left: -50%; }

  .rtl .widescreen--push-six-tenths {
    left: -60%; }

  .rtl .widescreen--push-seven-tenths {
    left: -70%; }

  .rtl .widescreen--push-eight-tenths {
    left: -80%; }

  .rtl .widescreen--push-nine-tenths {
    left: -90%; }

  /* Twelfths */
  .rtl .widescreen--push-one-twelfth {
    left: -8.33333%; }

  .rtl .widescreen--push-two-twelfths {
    left: -16.66667%; }

  .rtl .widescreen--push-three-twelfths {
    left: -25%; }

  .rtl .widescreen--push-four-twelfths {
    left: -33.33333%; }

  .rtl .widescreen--push-five-twelfths {
    left: -41.66667%; }

  .rtl .widescreen--push-six-twelfths {
    left: -50%; }

  .rtl .widescreen--push-seven-twelfths {
    left: -58.33333%; }

  .rtl .widescreen--push-eight-twelfths {
    left: -66.66667%; }

  .rtl .widescreen--push-nine-twelfths {
    left: -75%; }

  .rtl .widescreen--push-ten-twelfths {
    left: -83.33333%; }

  .rtl .widescreen--push-eleven-twelfths {
    left: -91.66667%; }

  .grid--uniform .widescreen--one-half:nth-child(2n+1),
  .grid--uniform .widescreen--one-third:nth-child(3n+1),
  .grid--uniform .widescreen--one-quarter:nth-child(4n+1),
  .grid--uniform .widescreen--one-fifth:nth-child(5n+1),
  .grid--uniform .widescreen--one-sixth:nth-child(6n+1),
  .grid--uniform .widescreen--two-sixths:nth-child(3n+1),
  .grid--uniform .widescreen--three-sixths:nth-child(2n+1),
  .grid--uniform .widescreen--two-eighths:nth-child(4n+1),
  .grid--uniform .widescreen--four-eighths:nth-child(2n+1),
  .grid--uniform .widescreen--five-tenths:nth-child(2n+1),
  .grid--uniform .widescreen--one-twelfth:nth-child(12n+1),
  .grid--uniform .widescreen--two-twelfths:nth-child(6n+1),
  .grid--uniform .widescreen--three-twelfths:nth-child(4n+1),
  .grid--uniform .widescreen--four-twelfths:nth-child(3n+1),
  .grid--uniform .widescreen--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .widescreen--show {
    display: block !important; }

  .widescreen--hide {
    display: none !important; }

  .widescreen--text-left {
    text-align: left !important; }

  .rtl .widescreen--text-left {
    text-align: right !important; }

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

  .rtl .widescreen--text-right {
    text-align: left !important; }

  .widescreen--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (min-width: 34.375em) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }

  /* Thirds */
  .medium-up--push-one-third {
    left: 33.33333%; }

  .medium-up--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .medium-up--push-one-quarter {
    left: 25%; }

  .medium-up--push-two-quarters {
    left: 50%; }

  .medium-up--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .medium-up--push-one-fifth {
    left: 20%; }

  .medium-up--push-two-fifths {
    left: 40%; }

  .medium-up--push-three-fifths {
    left: 60%; }

  .medium-up--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .medium-up--push-one-sixth {
    left: 16.66667%; }

  .medium-up--push-two-sixths {
    left: 33.33333%; }

  .medium-up--push-three-sixths {
    left: 50%; }

  .medium-up--push-four-sixths {
    left: 66.66667%; }

  .medium-up--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .medium-up--push-one-eighth {
    left: 12.5%; }

  .medium-up--push-two-eighths {
    left: 25%; }

  .medium-up--push-three-eighths {
    left: 37.5%; }

  .medium-up--push-four-eighths {
    left: 50%; }

  .medium-up--push-five-eighths {
    left: 62.5%; }

  .medium-up--push-six-eighths {
    left: 75%; }

  .medium-up--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .medium-up--push-one-tenth {
    left: 10%; }

  .medium-up--push-two-tenths {
    left: 20%; }

  .medium-up--push-three-tenths {
    left: 30%; }

  .medium-up--push-four-tenths {
    left: 40%; }

  .medium-up--push-five-tenths {
    left: 50%; }

  .medium-up--push-six-tenths {
    left: 60%; }

  .medium-up--push-seven-tenths {
    left: 70%; }

  .medium-up--push-eight-tenths {
    left: 80%; }

  .medium-up--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .medium-up--push-one-twelfth {
    left: 8.33333%; }

  .medium-up--push-two-twelfths {
    left: 16.66667%; }

  .medium-up--push-three-twelfths {
    left: 25%; }

  .medium-up--push-four-twelfths {
    left: 33.33333%; }

  .medium-up--push-five-twelfths {
    left: 41.66667%; }

  .medium-up--push-six-twelfths {
    left: 50%; }

  .medium-up--push-seven-twelfths {
    left: 58.33333%; }

  .medium-up--push-eight-twelfths {
    left: 66.66667%; }

  .medium-up--push-nine-twelfths {
    left: 75%; }

  .medium-up--push-ten-twelfths {
    left: 83.33333%; }

  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 68.75em) {
  /* Halves */
  .large-up--push-one-half {
    left: 50%; }

  /* Thirds */
  .large-up--push-one-third {
    left: 33.33333%; }

  .large-up--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .large-up--push-one-quarter {
    left: 25%; }

  .large-up--push-two-quarters {
    left: 50%; }

  .large-up--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .large-up--push-one-fifth {
    left: 20%; }

  .large-up--push-two-fifths {
    left: 40%; }

  .large-up--push-three-fifths {
    left: 60%; }

  .large-up--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .large-up--push-one-sixth {
    left: 16.66667%; }

  .large-up--push-two-sixths {
    left: 33.33333%; }

  .large-up--push-three-sixths {
    left: 50%; }

  .large-up--push-four-sixths {
    left: 66.66667%; }

  .large-up--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .large-up--push-one-eighth {
    left: 12.5%; }

  .large-up--push-two-eighths {
    left: 25%; }

  .large-up--push-three-eighths {
    left: 37.5%; }

  .large-up--push-four-eighths {
    left: 50%; }

  .large-up--push-five-eighths {
    left: 62.5%; }

  .large-up--push-six-eighths {
    left: 75%; }

  .large-up--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .large-up--push-one-tenth {
    left: 10%; }

  .large-up--push-two-tenths {
    left: 20%; }

  .large-up--push-three-tenths {
    left: 30%; }

  .large-up--push-four-tenths {
    left: 40%; }

  .large-up--push-five-tenths {
    left: 50%; }

  .large-up--push-six-tenths {
    left: 60%; }

  .large-up--push-seven-tenths {
    left: 70%; }

  .large-up--push-eight-tenths {
    left: 80%; }

  .large-up--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .large-up--push-one-twelfth {
    left: 8.33333%; }

  .large-up--push-two-twelfths {
    left: 16.66667%; }

  .large-up--push-three-twelfths {
    left: 25%; }

  .large-up--push-four-twelfths {
    left: 33.33333%; }

  .large-up--push-five-twelfths {
    left: 41.66667%; }

  .large-up--push-six-twelfths {
    left: 50%; }

  .large-up--push-seven-twelfths {
    left: 58.33333%; }

  .large-up--push-eight-twelfths {
    left: 66.66667%; }

  .large-up--push-nine-twelfths {
    left: 75%; }

  .large-up--push-ten-twelfths {
    left: 83.33333%; }

  .large-up--push-eleven-twelfths {
    left: 91.66667%; } }
/*================ Grid | Horizontal gutters ================*/
.grid--with-horizontal-gutters {
  margin-top: -20px; }
  @media only screen and (max-width: 34.365em) {
    .grid--with-horizontal-gutters {
      margin-top: -13.33333px; } }
  .grid--with-horizontal-gutters > .grid__item {
    padding-top: 20px; }
    @media only screen and (max-width: 34.365em) {
      .grid--with-horizontal-gutters > .grid__item {
        padding-top: 13.33333px; } }

/*================ Grid | No gutters ================*/
html:not(.rtl) .grid--no-gutters,
html.rtl .grid--no-gutters {
  margin-left: 0;
  margin-right: 0; }
  html:not(.rtl) .grid--no-gutters > .grid__item,
  html.rtl .grid--no-gutters > .grid__item {
    padding-left: 0;
    padding-right: 0; }

/*================ Grid | Half gutters ================*/
.grid--half-gutters {
  margin-left: -10px; }
  .grid--half-gutters > .grid__item {
    padding-left: 10px; }

/*================ Grid | Vertically centered items ================*/
.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    min-height: 1px;
    padding-left: 0; }

@media only screen and (min-width: 68.75em) {
  .large-up--grid--table {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-left: 0; }
    .large-up--grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle;
      min-height: 1px;
      padding-left: 0; } }
/*============================================================================
  #Layout
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
body,
html {
  background-color: white; }

.c-root {
  width: 100%; }

.page-width, .page-width--wide {
  *zoom: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px; }
  .page-width:after, .page-width--wide:after {
    content: '';
    display: table;
    clear: both; }

/*============================================================================
  #Main Sections Width
==============================================================================*/
body {
  min-width: 20em;
  overflow-y: scroll; }

.o-container:not(.o-container--unlimited), .shopify-policy__container:not(.o-container--unlimited) {
  margin: 0 0.9375rem;
  max-width: 98.125rem;
  min-width: 18.125rem; }
  @media only screen and (min-width: 34.375em) {
    .o-container:not(.o-container--unlimited), .shopify-policy__container:not(.o-container--unlimited) {
      margin: 0 2.8125rem;
      min-width: 14.375rem; } }
  @media only screen and (min-width: 68.75em) {
    .o-container:not(.o-container--unlimited), .shopify-policy__container:not(.o-container--unlimited) {
      margin: 0 6.125rem;
      min-width: 7.75rem; } }
  @media only screen and (min-width: 100em) {
    .o-container:not(.o-container--unlimited), .shopify-policy__container:not(.o-container--unlimited) {
      margin: 0 auto;
      min-width: 20rem; } }

/*============================================================================
  #Section Headers
==============================================================================*/
.section-header {
  margin-bottom: 30px; }

/*================ GLOBAL ================*/
/*================ General theme related layout ================*/
.page-gutter {
  padding-left: 5px;
  padding-right: 5px; }
  @media only screen and (min-width: 34.375em) {
    .page-gutter {
      padding-left: 10px;
      padding-right: 10px; } }

.main-content {
  position: relative; }
  @media only screen and (min-width: 47.5em) {
    .main-content {
      margin-top: 110px; } }
  @media only screen and (min-width: 100em) {
    .main-content {
      margin-top: 120px; } }
  @media only screen and (max-width: 47.49em) {
    .js-sticky-header .main-content {
      margin-top: 50px; } }

.main-content--no-template {
  padding-top: 0; }

.page-width--wide {
  max-width: 1200px; }

hr {
  margin-bottom: 60px; }
  hr.hr--clear {
    border: 0 none;
    height: 1px;
    margin-top: -1px; }

.page-content__content {
  margin: 0 10%; }

/* General */
.index-section {
  margin: 4rem 0; }
  @media only screen and (max-width: 47.49em) {
    .index-section {
      margin: 3rem 0; } }

.featured-collection-section,
.map {
  margin-top: 0px;
  margin-bottom: 0px; }

/* FOR DEMO PURPOSES, HIDE ADMIN BAR */
html {
  padding-bottom: 0 !important; }

#preview-bar-iframe {
  display: none; }

/*============================================================================
  #Typography
==============================================================================*/
/*============================================================================
  #Typography
==============================================================================*/
html {
  font-size: 16px; }

body,
input,
textarea,
button,
select {
  font-size: 1rem;
  font-family: "Patron";
  font-weight: 400;
  font-style: normal;
  color: #3a2e2c;
  line-height: 1.6; }

blockquote p + cite {
  margin-top: 10px; }
blockquote cite {
  display: block; }
  blockquote cite:before {
    content: '\2014 \0020'; }

code, pre {
  font-family: Consolas,monospace;
  font-size: 1em; }

pre {
  overflow: auto; }

@media only screen and (max-width: 47.49em) {
  input,
  textarea {
    font-size: 16px; } }
/*================ Headings ================*/
/*================ Headings ================*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin: 0 0 0.625em;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 100;
  font-family: "Patron", sans-serif; }
  h1 a, .h1 a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  padding: 2.5rem 0;
  font-size: 1.875rem;
  line-height: 1.875rem; }
  @media only screen and (min-width: 34.375em) {
    h1, .h1 {
      font-size: 2.25rem;
      line-height: 2.25rem; } }
  @media only screen and (min-width: 68.75em) {
    h1.h0, .h0.h1, .cms-page header h1, .shopify-policy__container header h1, .cms-page header .h1, .shopify-policy__container header .h1, .shopify-policy__title h1, .shopify-policy__title .h1 {
      font-size: 3.75rem;
      line-height: 3.75rem; } }

h2, .h2 {
  font-size: 1.5rem;
  line-height: normal;
  padding: initial; }
  @media only screen and (min-width: 34.375em) {
    h2, .h2 {
      font-size: 1.875rem;
      line-height: 1.875rem; } }

h3, .h3 {
  font-size: 1.0625em; }

h4, .h4 {
  font-size: 0.9375em; }

h5, .h5,
h6,
.h6 {
  font-size: 0.75em; }

/*================ Paragraph styles ================*/
p {
  margin: 0 0 20px; }

.txt--minor {
  font-size: 80%; }

.txt--emphasis {
  font-style: italic; }

.txt--price {
  white-space: nowrap; }

del.txt--price {
  position: relative;
  text-decoration: none; }
  del.txt--price:after {
    border-bottom: 1px solid #767676;
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    transform: skewY(11deg);
    width: 100%; }

/*================ Blockquote ================*/
blockquote {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.3125em;
  text-align: center;
  color: #1a1a1a;
  margin: 40px 20px; }
  blockquote cite {
    font-family: "Patron", sans-serif;
    font-size: 0.85em;
    font-weight: 400;
    font-style: normal; }

/*============================================================================
  #Icons
==============================================================================*/
/*============================================================================
  #Icons
==============================================================================*/
.icon {
  display: inline-block; }
  .supports-no-fontface .icon {
    display: none; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.supports-no-fontface .icon:before {
  display: none; }

/*================ Icon mapping ================*/
.icon-arrow-down:before {
  content: "\e607"; }

.icon-arrow-left:before {
  content: "\e608"; }

.icon-arrow-right:before {
  content: "\e609"; }

.icon-arrow:before {
  content: "\e901"; }

.icon-cart:before {
  content: "\e600"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-google_plus:before {
  content: "\e904"; }

.icon-grid-view:before {
  content: "\e603"; }

.icon-hamburger:before {
  content: "\e601"; }

.icon-instagram:before {
  content: "\e905"; }

.icon-list-view:before {
  content: "\e604"; }

.icon-minus:before {
  content: "\e602"; }

.icon-pause:before {
  content: "\e902"; }

.icon-pin:before {
  content: "\e909"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-play:before {
  content: "\e900"; }

.icon-plus:before {
  content: "\e605"; }

.icon-rss:before {
  content: "\72"; }

.icon-saletag:before {
  content: "\e907"; }

.icon-search:before {
  content: "\73"; }

.icon-snapchat:before {
  content: "\e908"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-x:before {
  content: "\e606"; }

.icon-youtube:before {
  content: "\79"; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons .icon {
    font-size: 20px; }

/*================ Social Icons ================*/
.social-icons .icon {
  font-size: 20px; }

/* ==========================================================================
  [Component] Icon
  ========================================================================== */
.c-icon {
  display: inline-block; }
  .c-icon .c-icon--title {
    fill: transparent;
    font-size: xx-small; }

.c-icon--is-small {
  height: 1.25rem;
  width: 1.25rem; }

.c-icon--text-left {
  margin-left: 10px; }

.c-icon--text-right {
  margin-right: 10px; }

/*============================================================================
  #Lists
==============================================================================*/
/*============================================================================
  #Lists
==============================================================================*/
ul, ol {
  margin: 0;
  padding: 0; }

ol {
  list-style: decimal; }

.list--inline {
  padding: 0;
  margin: 0; }
  .list--inline li {
    display: inline-block;
    margin-bottom: 0; }

/*================ Lists ================*/
.list--inline__separator {
  position: relative;
  padding-left: 18px;
  margin-left: 10px; }
  .list--inline__separator:before {
    content: '\2022';
    display: block;
    position: absolute;
    top: 0;
    left: 0; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte ul, .rte ol {
  margin: 0 0 10px 20px; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

.rte img {
  height: auto; }

.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*================ RTE headings ================*/
.rte h1, .rte .h1,
.rte h2,
.rte .h2,
.rte h3,
.rte .h3,
.rte h4,
.rte .h4,
.rte h5,
.rte .h5,
.rte h6,
.rte .h6 {
  margin-top: 70px;
  margin-bottom: 20px; }
  .rte h1:first-child, .rte .h1:first-child,
  .rte h2:first-child,
  .rte .h2:first-child,
  .rte h3:first-child,
  .rte .h3:first-child,
  .rte h4:first-child,
  .rte .h4:first-child,
  .rte h5:first-child,
  .rte .h5:first-child,
  .rte h6:first-child,
  .rte .h6:first-child {
    margin-top: 0; }

/*================ Indented article/page images and blockquotes ================*/
@media only screen and (min-width: 34.375em) {
  .rte--indented-images img:not([style]),
  .rte--indented-images img[style='float: none;'] {
    max-width: 140%;
    margin-left: -20%; }
    .rte--indented-images img:not([style]).rte__no-indent,
    .rte--indented-images img[style='float: none;'].rte__no-indent {
      margin: 0 auto;
      max-width: 100%; }
  .rte--indented-images img[style='float: right;'] {
    margin: 0 -10% 10px 10px; }
  .rte--indented-images img[style='float: left;'] {
    margin: 0 10px 10px -10%; } }
@media only screen and (max-width: 34.365em) {
  .rte--indented-images img:not([style]),
  .rte--indented-images img[style='float: none;'] {
    max-width: 120%;
    margin-left: -10%; } }
/*================ RTE collection description ================*/
.rte--description {
  font-size: 1.0625em;
  margin: 30px 40px 30px;
  text-align: center; }
  .rte--description ol,
  .rte--description ul {
    list-style-position: inside;
    margin-left: 0; }

/*================ General ================*/
.rte table {
  margin-bottom: 20px; }
.rte th,
.rte td {
  border: 1px solid #eeeeee;
  padding: 10px 26.66667px; }
.rte.text-center ul,
.rte.text-center ol, .text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
/*============================================================================
  #Links and Buttons
==============================================================================*/
/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

.btn, .shopify-payment-button .shopify-payment-button__button--unbranded,
.rte .btn,
.rte .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .rte .shopify-payment-button__button--unbranded {
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #1a1a1a;
  color: white; }
  .btn:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .rte .btn:hover,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:hover {
    background-color: #230077;
    color: white; }
  .btn:active, .shopify-payment-button .shopify-payment-button__button--unbranded:active, .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
  .rte .btn:active,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:active,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:active,
  .rte .btn:focus,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:focus {
    background-color: #230077;
    color: white; }

/*================ Theme links and buttons ================*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
  position: relative;
  padding: 1.125rem 2rem;
  border-radius: 0;
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 16px; }
  @media only screen and (max-width: 34.365em) {
    .btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
      font-size: 15px; } }
  .btn.btn--ajax-disabled:before, .shopify-payment-button .btn--ajax-disabled.shopify-payment-button__button--unbranded:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #1a1a1a; }
  .btn.btn--ajax-disabled:after, .shopify-payment-button .btn--ajax-disabled.shopify-payment-button__button--unbranded:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 50%;
    border: 3px solid white;
    border-top-color: transparent;
    -webkit-animation: spin 0.65s infinite linear;
    -moz-animation: spin 0.65s infinite linear;
    left: 50%; }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, .btn.btn--disabled, .shopify-payment-button .btn--disabled.shopify-payment-button__button--unbranded {
    opacity: 0.5; }
  .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
    outline: 1px dotted #3300ad;
    outline-offset: 2px; }

button:focus {
  outline: 1px dotted #3300ad;
  outline-offset: 2px; }

.btn--sm {
  padding: 0.75rem 0.9375rem;
  font-size: 0.75rem;
  line-height: 1.125rem; }

.btn--xs {
  font-size: 0.75rem;
  padding: 5px; }

.btn--full {
  display: block;
  width: 100%; }

.btn--primary {
  background-color: #3300ad; }

.btn--outline {
  color: #3a2e2c;
  border-color: #767676;
  background: transparent; }
  .btn--outline:hover {
    color: white;
    background-color: black; }

/*================ Default link styles ================*/
a {
  text-decoration: none;
  color: #3a2e2c; }
  a.btn:hover, .shopify-payment-button a.shopify-payment-button__button--unbranded:hover, a.btn:focus, .shopify-payment-button a.shopify-payment-button__button--unbranded:focus {
    opacity: 1; }
  a.btn.btn--disabled, .shopify-payment-button a.btn--disabled.shopify-payment-button__button--unbranded {
    opacity: 0.5; }

/*================ Smart Payment Buttons ================*/
.btn--secondary-accent {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  min-height: 47px;
  padding: 6px 30px; }
  .btn--secondary-accent:hover {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    opacity: 0.8; }
  .btn--secondary-accent:active, .btn--secondary-accent:focus {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a; }
  .btn--secondary-accent[disabled], .btn--secondary-accent.disabled {
    background-color: #1a1a1a;
    color: white;
    opacity: 0.5; }

.shopify-payment-button {
  margin-top: 10px; }
  .shopify-payment-button .shopify-payment-button__button--unbranded {
    white-space: normal;
    width: 100%;
    min-height: 47px; }
    .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
      opacity: 0.8;
      background: #685bc7 !important; }
    .shopify-payment-button .shopify-payment-button__button--unbranded[disabled], .shopify-payment-button .shopify-payment-button__button--unbranded.disabled {
      opacity: 0.5; }
  .shopify-payment-button .shopify-payment-button__button--branded {
    border-radius: 2px;
    overflow: hidden;
    min-height: 46px; }
    .shopify-payment-button .shopify-payment-button__button--branded[disabled], .shopify-payment-button .shopify-payment-button__button--branded.disabled {
      opacity: 0.5; }
  .shopify-payment-button .shopify-payment-button__more-options {
    color: #1a1a1a;
    text-decoration: underline;
    margin: 13px 0 20px; }
    .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
      opacity: 0.7; }
    .shopify-payment-button .shopify-payment-button__more-options[disabled], .shopify-payment-button .shopify-payment-button__more-options.disabled {
      opacity: 0.5; }

/*================ Text links ================*/
.link-body-color {
  color: #666666; }
  .link-body-color:hover, .link-body-color:focus {
    opacity: 0.7; }

.btn--link {
  background-color: transparent;
  border: none;
  color: #1a1a1a; }
  .btn--link:hover, .btn--link:focus {
    opacity: 0.7; }

.text-link {
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px; }
  .text-link:hover, .text-link:focus {
    opacity: 0.7; }

/*================ Action Links ================*/
.action-link {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 0.875em; }

.action-link__icon {
  font-size: 0.6875em;
  vertical-align: middle; }

/*============================================================================
  #Tables
==============================================================================*/
/*============================================================================
  #Tables
==============================================================================*/
th {
  font-weight: 700; }

th, td {
  border: 1px solid #eeeeee; }
  html:not(.rtl) th, html:not(.rtl) td {
    text-align: left; }
  html.rtl th, html.rtl td {
    text-align: right; }

.responsive-table tbody {
  font-weight: 100; }

/*============================================================================
  Responsive tables, defined with .table on table element.
==============================================================================*/
@media only screen and (max-width: 34.365em) {
  .responsive-table thead {
    display: none; }
  .responsive-table tr {
    display: block; }
  .responsive-table th,
  .responsive-table td {
    display: block;
    padding: 10px;
    border: none;
    margin: 0; }
    html:not(.rtl) .responsive-table th, html:not(.rtl)
    .responsive-table td {
      text-align: right; }
    html.rtl .responsive-table th, html.rtl
    .responsive-table td {
      text-align: left; }
  .responsive-table td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }

  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 20px; }
    .responsive-table__row + .responsive-table__row:after,
    tfoot > .responsive-table__row:first-child:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 10px;
      right: 10px;
      border-bottom: 1px solid #eeeeee; } }
.order-table {
  font-weight: 100; }
  .order-table a {
    color: #1a1a1a; }
  .order-table p.txt--minor {
    margin-bottom: 0; }
    .order-table p.txt--minor a {
      border-bottom: solid 1px #767676; }
  .order-table th, .order-table td {
    border: 0; }
  html:not(.rtl) .order-table tr th:first-child, html:not(.rtl)
  .order-table tr td:first-child {
    padding-left: 0; }
  html.rtl .order-table tr th:first-child, html.rtl
  .order-table tr td:first-child {
    padding-right: 0; }
  html:not(.rtl) .order-table tr th:last-child, html:not(.rtl)
  .order-table tr td:last-child {
    padding-right: 0; }
  html.rtl .order-table tr th:last-child, html.rtl
  .order-table tr td:last-child {
    padding-left: 0; }
  .order-table tbody th,
  .order-table tfoot th {
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    font-family: "Patron", sans-serif; }
  .order-table tbody tr + tr {
    border-top: 1px solid #eeeeee; }
  .order-table thead {
    border-bottom: 1px solid #1a1a1a; }
  .order-table tfoot {
    border-top: 1px solid #1a1a1a; }
    .order-table tfoot th, .order-table tfoot td {
      color: #666666; }
    .order-table tfoot tr:first-child th, .order-table tfoot tr:first-child td {
      padding-top: 1.25em; }
    .order-table tfoot tr:nth-last-child(2) th, .order-table tfoot tr:nth-last-child(2) td {
      padding-bottom: 1.25em; }
    .order-table tfoot tr:last-child th, .order-table tfoot tr:last-child td {
      border-top: 1px solid #666666;
      font-weight: 100;
      font-size: 1.7rem;
      padding-bottom: 1.25em;
      color: #1a1a1a; }
  .order-table th, .order-table td {
    padding: 1.25em 1em; }
  .order-table tfoot th, .order-table tfoot td {
    padding: 0.5em 1em;
    vertical-align: bottom; }
  .order-table tbody tr:last-child th .order-discount--list, .order-table tbody tr:last-child td .order-discount--list {
    margin-bottom: 0; }

.order-discount {
  text-transform: uppercase;
  color: #c60a00;
  display: block;
  line-height: 1.2; }
  .order-discount .icon-saletag {
    margin-right: 0.8em;
    font-size: 0.9em;
    display: inline; }

.order-discount--title {
  word-break: break-word;
  padding-right: 20px; }

.order-discount--list {
  margin: 0.8em 0 0 1.3em;
  list-style: none;
  padding: 0; }

.order-discount--cart-list {
  display: inline-block; }
  @media only screen and (max-width: 34.365em) {
    .order-discount--cart-list {
      max-width: 50%; } }

.order-discount__item {
  text-indent: -1.5em; }
  .order-discount__item + .order-discount__item {
    margin-top: 0.6em; }

@media only screen and (max-width: 34.365em) {
  .order-discount-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    width: 100%; } }

.order-discount-wrapper-cart {
  display: inline-flex;
  margin-bottom: 20px; }

.order-discount--cart {
  font-size: 0.85em; }

.order-discount--cart-title {
  font-weight: 700; }

/*================ Tables ================*/
.responsive-table th,
.responsive-table td {
  padding: 20px 0;
  border: none; }
  @media only screen and (min-width: 34.375em) {
    .responsive-table th,
    .responsive-table td {
      border-bottom: 1px solid #eeeeee;
      padding: 20px; } }
html:not(.rtl) .responsive-table th:first-child, html:not(.rtl)
.responsive-table td:first-child {
  padding-left: 0; }
html.rtl .responsive-table th:first-child, html.rtl
.responsive-table td:first-child {
  padding-right: 0; }
html:not(.rtl) .responsive-table th:last-child, html:not(.rtl)
.responsive-table td:last-child {
  padding-right: 0; }
html.rtl .responsive-table th:last-child, html.rtl
.responsive-table td:last-child {
  padding-left: 0; }
.responsive-table th {
  padding-bottom: 20px; }
@media only screen and (max-width: 34.365em) {
  .responsive-table td:before {
    font-family: "Patron", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 0.8125em;
    color: #1a1a1a; } }

/*================ Tables ================*/
th {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 0.875em;
  color: #1a1a1a; }

/*================ Aldo Tables ================*/
.cms-page .c-table, .shopify-policy__container .c-table {
  margin: 1rem 0 2rem;
  width: 100%;
  position: relative; }
.cms-page .c-table__row, .shopify-policy__container .c-table__row {
  height: 3.125rem; }
  .cms-page .c-table__row td, .shopify-policy__container .c-table__row td, .cms-page .c-table__row th, .shopify-policy__container .c-table__row th {
    font-size: 0.8rem;
    line-height: 0.8125rem;
    border: none;
    font-family: "Sectra", serif;
    vertical-align: middle; }
.cms-page .c-table__row--is-header .c-table__cell, .shopify-policy__container .c-table__row--is-header .c-table__cell {
  font-weight: 700; }
.cms-page .c-table__row:nth-child(2n), .shopify-policy__container .c-table__row:nth-child(2n) {
  background-color: #f5f3f5; }
.cms-page .c-table__cell-inner, .shopify-policy__container .c-table__cell-inner {
  min-width: 1.875rem; }
.cms-page .c-table__caption, .shopify-policy__container .c-table__caption {
  border: 0;
  height: 0.0625rem;
  margin-top: -0.0625rem;
  overflow: hidden;
  padding: 0;
  width: 0.0625rem;
  position: static; }

/*============================================================================
  #Accordion
==============================================================================*/
.c-accordion {
  margin: 3rem 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column; }

.c-accordion__item-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: space-between; }
  .c-accordion__item-header:focus {
    outline: 1px dotted #3300ad; }
  .c-accordion__item-header h2, .c-accordion__item-header .h2 {
    cursor: pointer;
    margin: 0;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .c-accordion__item-header .c-accordion-item__icon {
    fill: #3a2e2c;
    height: 0.625rem;
    margin-left: 1.25rem;
    transition: transform .24s; }
    html:not(.rtl) .c-accordion__item-header .c-accordion-item__icon {
      float: right; }
    html.rtl .c-accordion__item-header .c-accordion-item__icon {
      float: left; }

.c-accordion__item-button {
  padding: 1.375rem 0;
  flex-grow: 1;
  background-color: transparent;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 100;
  background-color: transparent;
  border: none; }
  html:not(.rtl) .c-accordion__item-button {
    text-align: left; }
  html.rtl .c-accordion__item-button {
    text-align: right; }
  .c-accordion__item-button:focus {
    outline-offset: 0; }

.c-accordion__item-header--expanded .c-accordion-item__icon {
  transform: rotate(180deg); }

.c-accordion__item-wrapper {
  border-bottom: 1px solid #d8d5d5;
  margin-top: 3px; }

.c-accordion__item {
  transform: translateZ(0);
  padding-bottom: 1.875rem;
  background-color: white;
  transition: all 0.15s ease-in;
  height: auto;
  flex: 1;
  font-size: 1rem;
  line-height: 1.6rem; }
  .c-accordion__item p {
    margin: 0 0 1.375rem; }
    .c-accordion__item p:last-child {
      margin: 0; }

.c-accordion__item--collapsed {
  flex: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  padding: 0; }
  .c-accordion__item--collapsed p {
    margin: 0; }

/*================  Accordion in policy pages ================*/
.shopify-policy__container h2.c-accordion__item-button, .shopify-policy__container .c-accordion__item-button.h2 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .shopify-policy__container h2.c-accordion__item-button:after, .shopify-policy__container .c-accordion__item-button.h2:after {
    content: '';
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/ico-chevron.svg?v=19181080258637667461607521994");
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-color: transparent; }
.shopify-policy__container .c-accordion__item-header--expanded .c-accordion__item-button:after {
  transform: rotate(180deg); }

/*============================================================================
  #Images and Iframes
==============================================================================*/
/*============================================================================
  #Images and Iframes
==============================================================================*/
svg:not(:root) {
  overflow: hidden; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*============================================================================
  #Forms
==============================================================================*/
/*============================================================================
  #Forms
==============================================================================*/
@media only screen and (max-width: 47.49em) {
  input,
  textarea,
  select {
    font-size: 16px; } }
fieldset {
  border: 1px solid #eeeeee;
  padding: 10px; }

legend {
  border: 0;
  padding: 0; }

button,
input[type="submit"] {
  cursor: pointer; }

input,
input[type],
textarea,
select {
  border: 1px solid #eeeeee;
  -webkit-appearance: none;
  border-radius: 0;
  max-width: 100%; }
  input:focus,
  input[type]:focus,
  textarea:focus,
  select:focus {
    border-color: #d4d4d4; }
  input[disabled],
  input[type][disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #e0e0e0;
    border-color: black; }

textarea {
  min-height: 100px; }

/*================ Error styles ================*/
input.error,
select.error,
textarea.error {
  border-color: #b62b2b;
  background-color: #fff0f0;
  color: #b62b2b; }

label.error {
  color: #b62b2b; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/ico-select.svg?v=47506079765394230751606822889");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer; }
  .rtl select {
    background-position: left center; }

optgroup {
  font-weight: 700; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
.label--hidden {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

label[for] {
  cursor: pointer; }

/*================ Forms and inputs ================*/
input,
textarea,
select {
  background-color: #f4f4f4;
  border: 0 none;
  max-width: 100%; }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    color: #666666;
    opacity: 0.6; }
  input::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder {
    color: #666666;
    opacity: 0.6; }
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    color: #666666;
    opacity: 0.6; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    color: rgba(0, 0, 0, 0.5);
    background-color: #e0e0e0;
    border-color: black; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }
  input.input--error,
  textarea.input--error,
  select.input--error {
    border: 1px solid #b62b2b;
    background-color: #fff0f0;
    color: #b62b2b; }
    input.input--error::-webkit-input-placeholder,
    textarea.input--error::-webkit-input-placeholder,
    select.input--error::-webkit-input-placeholder {
      color: #b62b2b;
      opacity: 0.6; }
    input.input--error::-moz-placeholder,
    textarea.input--error::-moz-placeholder,
    select.input--error::-moz-placeholder {
      color: #b62b2b;
      opacity: 0.6; }
    input.input--error:-ms-input-placeholder,
    textarea.input--error:-ms-input-placeholder,
    select.input--error:-ms-input-placeholder {
      color: #b62b2b;
      opacity: 0.6; }

input,
textarea {
  padding: 10px 12px; }

select {
  padding-top: 12px;
  padding-left: 12px;
  padding-bottom: 12px; }

.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 12px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }
.form-vertical input[type="checkbox"] {
  -webkit-appearance: checkbox; }
.form-vertical input[type="submit"],
.form-vertical .btn,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: inline-block; }

textarea {
  min-height: 150px; }

/*================ Individual block elements ================*/
.label--block {
  display: block; }

.input--block {
  display: block;
  width: 100%; }

/*================ Error & Success states ================*/
.errors,
.form--success {
  border: 0;
  padding: 12px;
  margin: 0 0 3em;
  font-size: 0.875rem;
  line-height: 1.25rem; }
  .errors li,
  .form--success li {
    list-style-position: inside; }

.errors {
  background: #fff0f0; }
  html:not(.rtl) .errors {
    text-align: left; }
  html.rtl .errors {
    text-align: right; }
  .errors li {
    color: #b62b2b; }

.form--success {
  margin-top: 40px;
  border-color: #56ad6a;
  background: #ecfef0;
  color: #56ad6a; }
  .form--success li {
    list-style-type: none; }

/*================ Contact Form ================*/
@media only screen and (min-width: 34.375em) {
  .contact-form .contact-form__email {
    padding-left: 12px; } }
/*================ Newsletter Form ================*/
.newsletter .form--success {
  width: 50%;
  margin: 0 auto; }
  @media only screen and (max-width: 34.365em) {
    .newsletter .form--success {
      width: 80%; } }

/*================ Inline Forms ================*/
.form--success {
  margin-top: 40px; }

.input-group {
  display: block;
  width: 100%; }

.input-group__field,
.input-group__btn {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px; }

.input-group__btn {
  border-width: 0; }
  html:not(.rtl) .input-group__btn {
    margin-left: 10px; }
  html.rtl .input-group__btn {
    margin-right: 10px; }
  .input-group__btn .btn, .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
    padding: 10px 20px; }

.input-group__field {
  padding: 10px;
  width: 270px; }
  @media only screen and (max-width: 34.365em) {
    .input-group__field {
      width: 230px; } }

.input-group {
  position: relative;
  padding-bottom: 1.5625rem;
  margin: 1.875rem 0 0; }
  .input-group input, .input-group select, .input-group textarea {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: solid 1px #bab6b5;
    padding: 0 0 13px;
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    line-height: 1.4375rem; }
    @media only screen and (min-width: 68.75em) {
      .input-group input, .input-group select, .input-group textarea {
        font-size: 1.5rem;
        line-height: 1.875rem; } }
  .input-group input:focus {
    border-bottom: solid 2px #3300ad;
    padding-bottom: 12px;
    outline: 0; }
  .input-group label {
    position: absolute;
    font-family: "Patron";
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: 0.2s;
    color: #878787;
    font-size: 1.2em;
    font-weight: 100; }
    html:not(.rtl) .input-group label {
      text-align: left; }
    html.rtl .input-group label {
      text-align: right; }
  .input-group input:focus + label, .input-group input:valid + label, .input-group select:focus + label, .input-group select:valid + label, .input-group textarea:valid + label, .input-group textarea:focus + label, .input-group input:-webkit-autofill + label, .input-group select:-webkit-autofill + label, .input-group textarea:-webkit-autofill + label {
    top: 0;
    margin-top: -30px;
    font-size: 0.9em;
    color: #3a2e2c; }
  .input-group .input--is-invalid {
    border-bottom: 2px solid #b62b2b; }
  .input-group .validation-error {
    font-family: "Patron";
    color: #b62b2b;
    font-size: 0.8rem;
    position: absolute;
    bottom: 8px; }
    html:not(.rtl) .input-group .validation-error {
      left: 0; }
    html.rtl .input-group .validation-error {
      right: 0; }

/*================ Challenges ================*/
.shopify-challenge__container {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media only screen and (min-width: 34.375em) {
    .shopify-challenge__container {
      padding-top: 60px;
      padding-bottom: 80px; } }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.site-nav li {
  display: inline-block; }

/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap; }
  .site-nav__link .icon-arrow-down {
    position: relative; }

/*================ Dropdowns ================*/
.site-nav--has-dropdown {
  position: relative; }

.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 2; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown li {
    display: block; }

/*================ 404 ================*/
/*================ 404 ================*/
.template-404 .main-content .search__form {
  margin-top: 5rem; }
.template-404 .main-content .search-browse h1, .template-404 .main-content .search-browse .h1 {
  padding-top: 0; }

.o-container.not-found__wrapper, .not-found__wrapper.shopify-policy__container {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5625rem;
  margin-top: 1.25rem;
  background-color: #3a2e2c;
  color: white; }
  @media only screen and (min-width: 34.375em) {
    .o-container.not-found__wrapper, .not-found__wrapper.shopify-policy__container {
      padding: 5rem 2.5rem 5.625rem; } }
  .o-container.not-found__wrapper h1, .not-found__wrapper.shopify-policy__container h1, .o-container.not-found__wrapper .h1, .not-found__wrapper.shopify-policy__container .h1 {
    padding: 0;
    font-size: 2.25rem;
    color: white; }
    @media only screen and (min-width: 34.375em) {
      .o-container.not-found__wrapper h1, .not-found__wrapper.shopify-policy__container h1, .o-container.not-found__wrapper .h1, .not-found__wrapper.shopify-policy__container .h1 {
        font-size: 3rem; } }

.not-found__footer {
  position: relative;
  z-index: 0;
  background: #efecf0;
  margin-top: -2em;
  padding-bottom: 3rem; }

/*================ Search ================*/
/*================ Search ================*/
.search-template-section {
  padding-bottom: 4em; }

.search-title {
  padding: 100px 0;
  font-size: 2.25rem;
  font-weight: 100;
  line-height: 1; }
  @media only screen and (max-width: 47.49em) {
    .search-title {
      font-size: 1.75rem;
      padding: 50px 0; } }

.search-title--form {
  padding-bottom: 0px; }

.search-item__table {
  height: 100%; }
  .search-item__table > .search-item__cell {
    padding: 20px; }

.search__form {
  position: relative; }
  .search__form input {
    font-size: 1.5rem;
    font-weight: 400; }
    html:not(.rtl) .search__form input {
      padding-left: 40px; }
    html.rtl .search__form input {
      padding-right: 40px; }
  .search__form label {
    color: #3a2e2c; }
    html:not(.rtl) .search__form label {
      left: 40px; }
    html.rtl .search__form label {
      right: 40px; }
    html:not(.rtl) .search__form label {
      text-align: left; }
    html.rtl .search__form label {
      text-align: right; }
  .search__form svg {
    width: 22px;
    position: absolute;
    top: 6px; }

.search__results-count {
  padding-bottom: 2em;
  font-size: 0.75rem; }

.search-browse .search-title {
  padding: 50px 0 0; }

.search-browse__linklist li.submenu {
  flex: 1 1 0px; }
  .search-browse__linklist li.submenu h3 a, .search-browse__linklist li.submenu .h3 a {
    display: block;
    font-weight: 100;
    font-size: 1.875rem;
    margin-bottom: 1.4375rem; }
    .search-browse__linklist li.submenu h3 a:hover, .search-browse__linklist li.submenu .h3 a:hover {
      border-bottom: none; }
    @media only screen and (max-width: 47.49em) {
      .search-browse__linklist li.submenu h3 a, .search-browse__linklist li.submenu .h3 a {
        font-size: 1.4rem;
        margin-bottom: 1rem; } }
  .search-browse__linklist li.submenu a {
    color: #3a2e2c; }
    html:not(.rtl) .search-browse__linklist li.submenu a span {
      margin-right: 10px; }
    html.rtl .search-browse__linklist li.submenu a span {
      margin-left: 10px; }
    .search-browse__linklist li.submenu a:hover {
      border-bottom: solid 1px #d8d5d5; }
    @media only screen and (max-width: 47.49em) {
      .search-browse__linklist li.submenu a {
        font-size: 0.75rem; } }
  .search-browse__linklist li.submenu ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .search-browse__linklist li.submenu ul li {
    font-weight: 100;
    width: 50%;
    margin-bottom: 1.75rem; }
    @media only screen and (min-width: 34.375em) {
      .search-browse__linklist li.submenu ul li {
        width: 100%; } }
  @media only screen and (max-width: 47.49em) {
    .search-browse__linklist li.submenu {
      display: block;
      border-bottom: 1px solid #efecf0;
      padding: 2.125rem 0.9375rem 0; } }
  @media only screen and (min-width: 34.375em) and (max-width: 68.74em) {
    .search-browse__linklist li.submenu {
      padding-bottom: 2.5rem;
      padding-top: 2.5rem; } }
@media only screen and (min-width: 34.375em) and (max-width: 68.74em) {
  .search-browse__linklist {
    padding: 0 2.8125rem; } }
@media only screen and (min-width: 34.375em) {
  .search-browse__linklist {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; } }
@media only screen and (min-width: 68.75em) {
  .search-browse__linklist {
    margin: 0 6.125rem;
    padding-bottom: 3.75rem;
    padding-top: 3.75rem; } }

/* Searchanise */
.template-collection #snize-search-results-grid-mode .snize-price-list,
#search-results #snize-search-results-grid-mode .snize-price-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
.template-collection #snize-search-results-grid-mode span.snize-out-of-stock,
#search-results #snize-search-results-grid-mode span.snize-out-of-stock {
  background-color: transparent;
  color: #c60a00;
  top: auto;
  bottom: 0px;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400; }
  html:not(.rtl) .template-collection #snize-search-results-grid-mode span.snize-out-of-stock, html:not(.rtl)
  #search-results #snize-search-results-grid-mode span.snize-out-of-stock {
    right: 10px; }
  html.rtl .template-collection #snize-search-results-grid-mode span.snize-out-of-stock, html.rtl
  #search-results #snize-search-results-grid-mode span.snize-out-of-stock {
    left: 10px; }
  html:not(.rtl) .template-collection #snize-search-results-grid-mode span.snize-out-of-stock, html:not(.rtl)
  #search-results #snize-search-results-grid-mode span.snize-out-of-stock {
    left: auto; }
  html.rtl .template-collection #snize-search-results-grid-mode span.snize-out-of-stock, html.rtl
  #search-results #snize-search-results-grid-mode span.snize-out-of-stock {
    right: auto; }
.template-collection #snize_results.snize-mobile-design #snize-search-results-grid-mode span.snize-out-of-stock,
#search-results #snize_results.snize-mobile-design #snize-search-results-grid-mode span.snize-out-of-stock {
  bottom: 25px; }
.template-collection .cms-page, .template-collection .shopify-policy__container,
#search-results .cms-page,
#search-results .shopify-policy__container {
  font-family: "Patron";
  padding-top: 1rem; }
  .template-collection .cms-page header, .template-collection .shopify-policy__container header,
  #search-results .cms-page header,
  #search-results .shopify-policy__container header {
    display: none; }
.template-collection .search__form,
#search-results .search__form {
  padding-top: 4rem; }
.template-collection .page-container > .grid > .grid__item, .template-collection .shopify-policy__container > .grid > .grid__item,
#search-results .page-container > .grid > .grid__item,
#search-results .shopify-policy__container > .grid > .grid__item {
  width: 100%; }
.template-collection div.snize-search-results,
#search-results div.snize-search-results {
  position: relative; }
.template-collection .snize-header,
#search-results .snize-header {
  width: auto;
  margin: 0 1.5rem 0 0;
  padding: 0; }
  html:not(.rtl) .template-collection .snize-header, html:not(.rtl)
  #search-results .snize-header {
    float: right; }
  html.rtl .template-collection .snize-header, html.rtl
  #search-results .snize-header {
    float: left; }
  html:not(.rtl) .template-collection .snize-header, html:not(.rtl)
  #search-results .snize-header {
    text-align: right; }
  html.rtl .template-collection .snize-header, html.rtl
  #search-results .snize-header {
    text-align: left; }
.template-collection div.snize div.snize-main-panel,
#search-results div.snize div.snize-main-panel {
  border: none;
  width: auto; }
  html:not(.rtl) .template-collection div.snize div.snize-main-panel, html:not(.rtl)
  #search-results div.snize div.snize-main-panel {
    float: right; }
  html.rtl .template-collection div.snize div.snize-main-panel, html.rtl
  #search-results div.snize div.snize-main-panel {
    float: left; }
  .template-collection div.snize div.snize-main-panel .snize-main-panel-controls, .template-collection div.snize div.snize-main-panel .snize-main-panel-view-mode,
  #search-results div.snize div.snize-main-panel .snize-main-panel-controls,
  #search-results div.snize div.snize-main-panel .snize-main-panel-view-mode {
    display: none; }
.template-collection div.snize div.snize-search-results-header,
#search-results div.snize div.snize-search-results-header {
  font-size: 0.8rem; }
  .template-collection div.snize div.snize-search-results-header b,
  #search-results div.snize div.snize-search-results-header b {
    font-weight: normal; }
@media only screen and (max-width: 47.49em) {
  .template-collection div.snize div.snize-horizontal-filters,
  #search-results div.snize div.snize-horizontal-filters {
    display: none; } }
.template-collection div.snize div.snize-horizontal-filters .snize-filters-dropdown,
#search-results div.snize div.snize-horizontal-filters .snize-filters-dropdown {
  display: none !important; }
  .rtl .template-collection div.snize div.snize-horizontal-filters .snize-filters-dropdown, .rtl
  #search-results div.snize div.snize-horizontal-filters .snize-filters-dropdown {
    float: right; }
.template-collection div.snize div.snize-horizontal-filters.filters-open .snize-filters-dropdown,
#search-results div.snize div.snize-horizontal-filters.filters-open .snize-filters-dropdown {
  display: block !important; }
.template-collection div.snize div.snize-filters-dropdown-title,
#search-results div.snize div.snize-filters-dropdown-title {
  border: 0;
  padding: 0.5rem 1rem;
  font-weight: 100;
  font-size: 1.3125rem; }
.template-collection div.snize div.slider-container.snize-theme .back-bar .pointer,
#search-results div.snize div.slider-container.snize-theme .back-bar .pointer {
  background-color: #3300ad; }
.rtl .template-collection div.snize div.snize-main-panel-collection-results-found, .rtl
#search-results div.snize div.snize-main-panel-collection-results-found {
  float: right; }
.template-collection div.snize div.snize-main-panel-collection-results-found b,
#search-results div.snize div.snize-main-panel-collection-results-found b {
  font-weight: normal !important; }
.rtl .template-collection div.snize div.snize-main-panel-dropdown, .rtl
#search-results div.snize div.snize-main-panel-dropdown {
  float: left; }
.template-collection div.snize div.snize-main-panel-dropdown > a,
#search-results div.snize div.snize-main-panel-dropdown > a {
  border: 0;
  border-radius: 0;
  border-bottom: solid 1px #bab6b5;
  color: #767676;
  padding-left: 0;
  padding-bottom: 3px; }
  html:not(.rtl) .template-collection div.snize div.snize-main-panel-dropdown > a, html:not(.rtl)
  #search-results div.snize div.snize-main-panel-dropdown > a {
    padding-right: 1.4rem !important; }
  html.rtl .template-collection div.snize div.snize-main-panel-dropdown > a, html.rtl
  #search-results div.snize div.snize-main-panel-dropdown > a {
    padding-left: 1.4rem !important; }
  .template-collection div.snize div.snize-main-panel-dropdown > a b,
  #search-results div.snize div.snize-main-panel-dropdown > a b {
    margin-left: 2rem !important; }
    .rtl .template-collection div.snize div.snize-main-panel-dropdown > a b, .rtl
    #search-results div.snize div.snize-main-panel-dropdown > a b {
      margin-left: initial !important;
      margin-right: 2rem !important; }
.template-collection #snize-search-results-grid-mode li.snize-product span.snize-title,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product span.snize-title,
#search-results #snize-search-results-grid-mode li.snize-product span.snize-title,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product span.snize-title {
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: #3a2e2c;
  font-weight: 100;
  margin: 0;
  height: auto !important;
  min-height: 0; }
  html:not(.rtl) .template-collection #snize-search-results-grid-mode li.snize-product span.snize-title, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product span.snize-title, html:not(.rtl)
  #search-results #snize-search-results-grid-mode li.snize-product span.snize-title, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product span.snize-title {
    text-align: left; }
  html.rtl .template-collection #snize-search-results-grid-mode li.snize-product span.snize-title, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product span.snize-title, html.rtl
  #search-results #snize-search-results-grid-mode li.snize-product span.snize-title, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product span.snize-title {
    text-align: right; }
.template-collection #snize-search-results-grid-mode span.snize-description,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-description,
#search-results #snize-search-results-grid-mode span.snize-description,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-description {
  display: none; }
.template-collection #snize-search-results-grid-mode .snize-price-list,
.template-collection #snize-search-results-grid-mode .snize-price-list .snize-price,
.template-collection #snize-search-results-grid-mode .snize-price-list .snize-discounted-price,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-discounted-price,
#search-results #snize-search-results-grid-mode .snize-price-list,
#search-results #snize-search-results-grid-mode .snize-price-list .snize-price,
#search-results #snize-search-results-grid-mode .snize-price-list .snize-discounted-price,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-discounted-price {
  font-size: 0.75rem !important;
  line-height: 0.875rem !important;
  color: #3a2e2c;
  font-weight: 400;
  margin: 0;
  vertical-align: initial; }
  html:not(.rtl) .template-collection #snize-search-results-grid-mode .snize-price-list, html:not(.rtl)
  .template-collection #snize-search-results-grid-mode .snize-price-list .snize-price, html:not(.rtl)
  .template-collection #snize-search-results-grid-mode .snize-price-list .snize-discounted-price, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-discounted-price, html:not(.rtl)
  #search-results #snize-search-results-grid-mode .snize-price-list, html:not(.rtl)
  #search-results #snize-search-results-grid-mode .snize-price-list .snize-price, html:not(.rtl)
  #search-results #snize-search-results-grid-mode .snize-price-list .snize-discounted-price, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-discounted-price {
    text-align: left; }
  html.rtl .template-collection #snize-search-results-grid-mode .snize-price-list, html.rtl
  .template-collection #snize-search-results-grid-mode .snize-price-list .snize-price, html.rtl
  .template-collection #snize-search-results-grid-mode .snize-price-list .snize-discounted-price, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-discounted-price, html.rtl
  #search-results #snize-search-results-grid-mode .snize-price-list, html.rtl
  #search-results #snize-search-results-grid-mode .snize-price-list .snize-price, html.rtl
  #search-results #snize-search-results-grid-mode .snize-price-list .snize-discounted-price, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-discounted-price {
    text-align: right; }
.template-collection #snize-search-results-grid-mode .snize-discounted-price,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-discounted-price,
#search-results #snize-search-results-grid-mode .snize-discounted-price,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-discounted-price {
  text-decoration: none;
  position: relative; }
  .template-collection #snize-search-results-grid-mode .snize-discounted-price:after,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-discounted-price:after,
  #search-results #snize-search-results-grid-mode .snize-discounted-price:after,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-discounted-price:after {
    border-bottom: 1px solid #767676;
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    transform: skewY(11deg);
    width: 100%; }
.template-collection #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount,
#search-results #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount {
  color: #c60a00;
  order: 1; }
  html:not(.rtl) .template-collection #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount, html:not(.rtl)
  #search-results #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount {
    margin-left: 5px; }
  html.rtl .template-collection #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount, html.rtl
  #search-results #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode .snize-price-list .snize-price-with-discount {
    margin-right: 5px; }
.template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link, .template-collection #snize-search-results-grid-mode li.snize-product .snize-item,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item,
#search-results #snize-search-results-grid-mode li.snize-product .snize-view-link,
#search-results #snize-search-results-grid-mode li.snize-product .snize-item,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  overflow: hidden;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  color: #666666; }
  .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link p, .template-collection #snize-search-results-grid-mode li.snize-product .snize-item p,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link p,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item p,
  #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link p,
  #search-results #snize-search-results-grid-mode li.snize-product .snize-item p,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link p,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item p {
    margin: 0 15px 2px 15px; }
    .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link p:last-child, .template-collection #snize-search-results-grid-mode li.snize-product .snize-item p:last-child,
    .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link p:last-child,
    .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item p:last-child,
    #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link p:last-child,
    #search-results #snize-search-results-grid-mode li.snize-product .snize-item p:last-child,
    #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link p:last-child,
    #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item p:last-child {
      margin-bottom: 0; }
  .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail, .template-collection #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail,
  #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail,
  #search-results #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail {
    position: relative;
    height: 0;
    display: block;
    width: 100%;
    padding-top: 127.0%; }
    .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, .template-collection #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img,
    .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img,
    .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img,
    #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img,
    #search-results #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img,
    #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img,
    #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img {
      position: absolute;
      top: 0;
      bottom: auto;
      width: 100%;
      max-height: initial;
      margin: 0 auto 20px;
      transition: transform .625s;
      aspect-ratio: auto 100 / 127; }
      html:not(.rtl) .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl) .template-collection #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html:not(.rtl)
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl)
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img {
        left: 0; }
      html.rtl .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl .template-collection #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html.rtl
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html.rtl
      #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl
      #search-results #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html.rtl
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img {
        right: 0; }
      html:not(.rtl) .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl) .template-collection #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html:not(.rtl)
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl)
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html:not(.rtl)
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img {
        right: auto; }
      html.rtl .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl .template-collection #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html.rtl
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl
      .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html.rtl
      #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl
      #search-results #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img, html.rtl
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-thumbnail img, html.rtl
      #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item span.snize-thumbnail img {
        left: auto; }
  .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link .snize-thumbnail-wrapper, .template-collection #snize-search-results-grid-mode li.snize-product .snize-item .snize-thumbnail-wrapper,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link .snize-thumbnail-wrapper,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item .snize-thumbnail-wrapper,
  #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link .snize-thumbnail-wrapper,
  #search-results #snize-search-results-grid-mode li.snize-product .snize-item .snize-thumbnail-wrapper,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link .snize-thumbnail-wrapper,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-item .snize-thumbnail-wrapper {
    position: relative;
    margin: 0 auto; }
@media only screen and (min-width: 47.5em) {
  .template-collection #snize-search-results-grid-mode li.snize-product .snize-view-link:hover .snize-thumbnail img,
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link:hover .snize-thumbnail img,
  #search-results #snize-search-results-grid-mode li.snize-product .snize-view-link:hover .snize-thumbnail img,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode li.snize-product .snize-view-link:hover .snize-thumbnail img {
    transform: scale(1.05); } }
.template-collection #snize-search-results-grid-mode span.snize-overhidden,
.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden,
#search-results #snize-search-results-grid-mode span.snize-overhidden,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden {
  position: absolute;
  bottom: 8px !important;
  font-size: 0.75rem;
  line-height: 0.875rem;
  width: calc(100% - 0.625rem);
  font-weight: 400;
  color: #3a2e2c;
  display: block;
  outline: 0;
  background: none;
  padding: 0; }
  html:not(.rtl) .template-collection #snize-search-results-grid-mode span.snize-overhidden, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden, html:not(.rtl)
  #search-results #snize-search-results-grid-mode span.snize-overhidden, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden {
    left: 10px; }
  html.rtl .template-collection #snize-search-results-grid-mode span.snize-overhidden, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden, html.rtl
  #search-results #snize-search-results-grid-mode span.snize-overhidden, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden {
    right: 10px; }
.template-collection #snize-modal-mobile-sortby-dialog,
.template-collection #snize-modal-mobile-filters-dialog,
#search-results #snize-modal-mobile-sortby-dialog,
#search-results #snize-modal-mobile-filters-dialog {
  border-radius: 0; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-filter-opened div.snize-product-filters-header,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-filter-opened div.snize-product-filters-header,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-filter-opened div.snize-product-filters-header,
  #search-results #snize-modal-mobile-filters-dialog div.snize-filter-opened div.snize-product-filters-header {
    padding-top: 70px; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-container,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-container,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-container,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-container {
    top: 130px; }
    html:not(.rtl) .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-container span.snize-filter-variant-count, html:not(.rtl)
    .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-container span.snize-filter-variant-count, html:not(.rtl)
    #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-container span.snize-filter-variant-count, html:not(.rtl)
    #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-container span.snize-filter-variant-count {
      float: right; }
    html.rtl .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-container span.snize-filter-variant-count, html.rtl
    .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-container span.snize-filter-variant-count, html.rtl
    #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-container span.snize-filter-variant-count, html.rtl
    #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-container span.snize-filter-variant-count {
      float: left; }
  .rtl .template-collection #snize-modal-mobile-sortby-dialog .snize-close-button, .rtl
  .template-collection #snize-modal-mobile-filters-dialog .snize-close-button, .rtl
  #search-results #snize-modal-mobile-sortby-dialog .snize-close-button, .rtl
  #search-results #snize-modal-mobile-filters-dialog .snize-close-button {
    left: 0;
    right: auto; }
  html:not(.rtl) .template-collection #snize-modal-mobile-sortby-dialog .snize-sortby-header, html:not(.rtl)
  .template-collection #snize-modal-mobile-sortby-dialog .snize-product-filters-header, html:not(.rtl)
  .template-collection #snize-modal-mobile-filters-dialog .snize-sortby-header, html:not(.rtl)
  .template-collection #snize-modal-mobile-filters-dialog .snize-product-filters-header, html:not(.rtl)
  #search-results #snize-modal-mobile-sortby-dialog .snize-sortby-header, html:not(.rtl)
  #search-results #snize-modal-mobile-sortby-dialog .snize-product-filters-header, html:not(.rtl)
  #search-results #snize-modal-mobile-filters-dialog .snize-sortby-header, html:not(.rtl)
  #search-results #snize-modal-mobile-filters-dialog .snize-product-filters-header {
    text-align: left; }
  html.rtl .template-collection #snize-modal-mobile-sortby-dialog .snize-sortby-header, html.rtl
  .template-collection #snize-modal-mobile-sortby-dialog .snize-product-filters-header, html.rtl
  .template-collection #snize-modal-mobile-filters-dialog .snize-sortby-header, html.rtl
  .template-collection #snize-modal-mobile-filters-dialog .snize-product-filters-header, html.rtl
  #search-results #snize-modal-mobile-sortby-dialog .snize-sortby-header, html.rtl
  #search-results #snize-modal-mobile-sortby-dialog .snize-product-filters-header, html.rtl
  #search-results #snize-modal-mobile-filters-dialog .snize-sortby-header, html.rtl
  #search-results #snize-modal-mobile-filters-dialog .snize-product-filters-header {
    text-align: right; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-sortby-header span.snize-sortby-title,
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-header span.snize-product-filters-title,
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-sortby-header span.snize-sortby-title,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-header span.snize-product-filters-title,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-sortby-header span.snize-sortby-title,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-header span.snize-product-filters-title,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters,
  #search-results #snize-modal-mobile-filters-dialog div.snize-sortby-header span.snize-sortby-title,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-header span.snize-product-filters-title,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters {
    font-size: 1.6rem;
    font-weight: 100;
    color: #3a2e2c; }
  .rtl .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters, .rtl
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters, .rtl
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters, .rtl
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters {
    right: 0;
    left: auto; }
  .rtl .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters .snize-back-arrow, .rtl
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters .snize-back-arrow, .rtl
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters .snize-back-arrow, .rtl
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters .snize-back-arrow {
    float: left;
    margin-top: 10px; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters + div,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters + div,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters + div,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters + div {
    display: inline-block; }
    .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title,
    .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title,
    #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title,
    #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title {
      display: inline-flex;
      align-items: center; }
      .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title .snize-product-filter-count,
      .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title .snize-product-filter-count,
      #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title .snize-product-filter-count,
      #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-header a.snize-back-to-filters + div .snize-product-filters-title .snize-product-filter-count {
        margin-right: 8px; }
  .rtl .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener span.snize-product-filter-count, .rtl
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-opener span.snize-product-filter-count, .rtl
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener span.snize-product-filter-count, .rtl
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-opener span.snize-product-filter-count {
    margin-left: 0;
    margin-right: 8px; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener span.snize-product-filter-title,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-opener span.snize-product-filter-title,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener span.snize-product-filter-title,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-opener span.snize-product-filter-title {
    font-size: 1.2rem;
    font-weight: 100; }
  .rtl .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener .snize-product-filters-reset, .rtl
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-opener .snize-product-filters-reset, .rtl
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener .snize-product-filters-reset, .rtl
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-opener .snize-product-filters-reset {
    margin-left: 0;
    margin-right: 8px; }
  html:not(.rtl) .template-collection #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content, html:not(.rtl)
  .template-collection #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content, html:not(.rtl)
  #search-results #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content, html:not(.rtl)
  #search-results #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content {
    text-align: left; }
  html.rtl .template-collection #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content, html.rtl
  .template-collection #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content, html.rtl
  #search-results #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content, html.rtl
  #search-results #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content {
    text-align: right; }
  .template-collection #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li,
  .template-collection #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li,
  #search-results #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li,
  #search-results #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li {
    height: 5rem;
    line-height: 5rem; }
    html:not(.rtl) .template-collection #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a, html:not(.rtl)
    .template-collection #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li a, html:not(.rtl)
    #search-results #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a, html:not(.rtl)
    #search-results #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li a {
      padding-left: 25px; }
    html.rtl .template-collection #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a, html.rtl
    .template-collection #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li a, html.rtl
    #search-results #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a, html.rtl
    #search-results #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li a {
      padding-right: 25px; }
    .rtl .template-collection #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a.current, .rtl
    .template-collection #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li a.current, .rtl
    #search-results #snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a.current, .rtl
    #search-results #snize-modal-mobile-filters-dialog ul.snize-main-panel-dropdown-content li a.current {
      background-position: right center; }
  html:not(.rtl) .template-collection #snize-modal-mobile-sortby-dialog .snize-product-filters-list-container, html:not(.rtl)
  .template-collection #snize-modal-mobile-filters-dialog .snize-product-filters-list-container, html:not(.rtl)
  #search-results #snize-modal-mobile-sortby-dialog .snize-product-filters-list-container, html:not(.rtl)
  #search-results #snize-modal-mobile-filters-dialog .snize-product-filters-list-container {
    text-align: left; }
  html.rtl .template-collection #snize-modal-mobile-sortby-dialog .snize-product-filters-list-container, html.rtl
  .template-collection #snize-modal-mobile-filters-dialog .snize-product-filters-list-container, html.rtl
  #search-results #snize-modal-mobile-sortby-dialog .snize-product-filters-list-container, html.rtl
  #search-results #snize-modal-mobile-filters-dialog .snize-product-filters-list-container {
    text-align: right; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener,
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener span.snize-product-filter-title,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-opener,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filter-opener span.snize-product-filter-title,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filter-opener span.snize-product-filter-title,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-opener,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filter-opener span.snize-product-filter-title {
    height: 5rem;
    line-height: 5rem; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-buttons-container button.snize-product-filters-show-products,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-buttons-container button.snize-product-filters-show-products,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-buttons-container button.snize-product-filters-show-products,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-buttons-container button.snize-product-filters-show-products {
    border-radius: 0;
    background-color: #3300ad;
    font-weight: normal;
    font-size: 0.75rem !important; }
  .template-collection #snize-modal-mobile-sortby-dialog div.snize-product-filters-buttons-container button.snize-product-filters-reset-all,
  .template-collection #snize-modal-mobile-filters-dialog div.snize-product-filters-buttons-container button.snize-product-filters-reset-all,
  #search-results #snize-modal-mobile-sortby-dialog div.snize-product-filters-buttons-container button.snize-product-filters-reset-all,
  #search-results #snize-modal-mobile-filters-dialog div.snize-product-filters-buttons-container button.snize-product-filters-reset-all {
    color: #3a2e2c;
    font-weight: normal;
    font-size: 0.75rem !important;
    border: 0; }
  .template-collection #snize-modal-mobile-sortby-dialog .snize-price-range-slider,
  .template-collection #snize-modal-mobile-filters-dialog .snize-price-range-slider,
  #search-results #snize-modal-mobile-sortby-dialog .snize-price-range-slider,
  #search-results #snize-modal-mobile-filters-dialog .snize-price-range-slider {
    width: 270px !important; }
  .rtl .template-collection #snize-modal-mobile-sortby-dialog ul.snize-product-color-filter li .snize-color-filter-checkbox input[type=checkbox]:checked + span:after, .rtl
  .template-collection #snize-modal-mobile-filters-dialog ul.snize-product-color-filter li .snize-color-filter-checkbox input[type=checkbox]:checked + span:after, .rtl
  #search-results #snize-modal-mobile-sortby-dialog ul.snize-product-color-filter li .snize-color-filter-checkbox input[type=checkbox]:checked + span:after, .rtl
  #search-results #snize-modal-mobile-filters-dialog ul.snize-product-color-filter li .snize-color-filter-checkbox input[type=checkbox]:checked + span:after {
    left: 0;
    right: -5px; }
.template-collection .snize-main-panel,
#search-results .snize-main-panel {
  margin: 0;
  padding-bottom: 1.5rem; }
html:not(.rtl) .template-collection #snize_results.snize-mobile-design div.snize-main-panel-dropdown, html:not(.rtl)
#search-results #snize_results.snize-mobile-design div.snize-main-panel-dropdown {
  float: right; }
html.rtl .template-collection #snize_results.snize-mobile-design div.snize-main-panel-dropdown, html.rtl
#search-results #snize_results.snize-mobile-design div.snize-main-panel-dropdown {
  float: left; }
.template-collection #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a,
.template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a,
#search-results #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a,
#search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a {
  border-radius: 0;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #3a2e2c;
  border: 0;
  border: solid 1px #eeeeee;
  padding: 0.8rem;
  padding-right: 1.4rem; }
  .template-collection #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a > span,
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a > span,
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a > span,
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a > span {
    text-transform: initial;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1.125rem; }
  .template-collection #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a > .caret,
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a > .caret,
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a > .caret,
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a > .caret {
    height: 5px;
    width: 5px;
    border-width: 0px 1px 1px 0px;
    border-color: #767676;
    right: 9px;
    top: 19px; }
    .rtl .template-collection #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a > .caret, .rtl
    .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a > .caret, .rtl
    #search-results #snize_results.snize-mobile-design div.snize-main-panel-dropdown > a > .caret, .rtl
    #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-dropdown > a > .caret {
      left: 9px;
      right: auto; }
.template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters,
.template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters,
#search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters,
#search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters {
  max-width: initial; }
  html:not(.rtl) .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters {
    float: left; }
  html.rtl .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters, html.rtl
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters {
    float: right; }
  html:not(.rtl) .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html:not(.rtl)
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters {
    margin-left: 0; }
  html.rtl .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html.rtl
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters, html.rtl
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters {
    margin-right: 0; }
  .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a,
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a,
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a,
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a {
    font-size: 0.75rem;
    line-height: 1.125rem;
    border-radius: 0;
    padding: 0.8rem;
    border: 0;
    text-transform: initial;
    color: white;
    background-color: #3300ad;
    font-weight: normal; }
  .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before,
  .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before,
  #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before,
  #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before {
    content: "+";
    font-size: 1.4rem;
    font-weight: 100; }
    html:not(.rtl) .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html:not(.rtl)
    .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before, html:not(.rtl)
    #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html:not(.rtl)
    #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before {
      float: right; }
    html.rtl .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html.rtl
    .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before, html.rtl
    #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html.rtl
    #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before {
      float: left; }
    html:not(.rtl) .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html:not(.rtl)
    .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before, html:not(.rtl)
    #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html:not(.rtl)
    #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before {
      margin-left: 10px; }
    html.rtl .template-collection #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html.rtl
    .template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before, html.rtl
    #search-results #snize_results.snize-mobile-design div.snize-main-panel-mobile-filters a:before, html.rtl
    #search-results #snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-mobile-filters a:before {
      margin-right: 10px; }
.template-collection div.snize div.snize-pagination,
#search-results div.snize div.snize-pagination {
  margin: 2.8125rem 0; }
  .template-collection div.snize div.snize-pagination a.snize-pagination-load-more,
  #search-results div.snize div.snize-pagination a.snize-pagination-load-more {
    display: inline-block;
    min-width: 25%;
    padding: 1.125rem 1.5625rem;
    border-radius: 0;
    border-color: #3a2e2c;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.3125rem; }
    .template-collection div.snize div.snize-pagination a.snize-pagination-load-more:hover,
    #search-results div.snize div.snize-pagination a.snize-pagination-load-more:hover {
      color: white;
      background-color: black; }
.template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-pagination,
#search-results #snize_results.snize-mobile-design.snize-new-version div.snize-pagination {
  display: block; }
.template-collection #snize_results.snize-mobile-design.snize-new-version div.snize-pagination a.snize-pagination-load-more,
#search-results #snize_results.snize-mobile-design.snize-new-version div.snize-pagination a.snize-pagination-load-more {
  display: block;
  width: 100%;
  border-radius: 0;
  border-color: #3a2e2c;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.3125rem; }
.template-collection div.snize.snize-rtl ul.snize-product-filters-list li .snize-filter-checkbox span,
#search-results div.snize.snize-rtl ul.snize-product-filters-list li .snize-filter-checkbox span {
  top: 3px !important; }
.rtl .template-collection div.snize ul.snize-product-filters-list li .snize-filter-checkbox, .rtl
#search-results div.snize ul.snize-product-filters-list li .snize-filter-checkbox {
  margin-right: 7px; }
html:not(.rtl) .template-collection .snize ul.snize-product-size-filter li, html:not(.rtl)
.template-collection .snize ul.snize-product-color-filter li, html:not(.rtl)
#search-results .snize ul.snize-product-size-filter li, html:not(.rtl)
#search-results .snize ul.snize-product-color-filter li {
  float: left; }
html.rtl .template-collection .snize ul.snize-product-size-filter li, html.rtl
.template-collection .snize ul.snize-product-color-filter li, html.rtl
#search-results .snize ul.snize-product-size-filter li, html.rtl
#search-results .snize ul.snize-product-color-filter li {
  float: right; }
.template-collection .snize-price-range,
#search-results .snize-price-range {
  direction: ltr; }

.template-collection div.snize div.snize-horizontal-filters.filters-open #snize_filters_dropdown_product_type,
.template-collection .snize-product-filter-opener[data-se-facet-attribute="product_type"] {
  display: none !important; }

#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode ul {
  margin: 0 -0.4375rem !important;
  padding: 0 !important;
  width: auto !important; }

#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product {
  border: 0 !important;
  min-width: initial !important; }
  html:not(.rtl) #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product {
    padding-left: 0.4375rem; }
  html.rtl #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product {
    padding-right: 0.4375rem; }
  html:not(.rtl) #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product {
    padding-right: 0.4375rem; }
  html.rtl #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product {
    padding-left: 0.4375rem; }

#snize_results.snize-mobile-design #snize-search-results-grid-mode.snize-two-columns li.snize-product {
  min-width: initial !important; }

.template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden,
#search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden {
  position: relative;
  bottom: initial;
  margin: 0;
  top: initial;
  bottom: initial;
  right: initial;
  padding: 1rem 0 1.5rem; }
  html:not(.rtl) .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden, html:not(.rtl)
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden {
    left: 0 !important; }
  html.rtl .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden, html.rtl
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden {
    right: 0 !important; }
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden span.snize-title,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden span.snize-title {
    font-size: 0.875rem;
    line-height: 1.125rem; }
  .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden .snize-price-list, .template-collection #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden .snize-price-list .snize-price,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden .snize-price-list,
  #search-results #snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode span.snize-overhidden .snize-price-list .snize-price {
    font-size: 0.875rem;
    line-height: 1.125rem; }

div.snize-ac-results span.snize-description {
  display: none !important; }

div.snize-ac-results span.snize-title {
  font-weight: 100 !important;
  color: #3a2e2c !important; }

div.snize-ac-results .snize-price-list {
  font-weight: normal !important;
  color: #3a2e2c !important;
  font-size: 1rem !important; }

div.snize-ac-results li.snize-view-all-link span {
  font-size: 0.75rem !important;
  color: #3300ad !important; }

#snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a {
  font-weight: 100 !important; }

.snize-filters-dropdown-title .caret {
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  border-top: 4px solid !important; }

.snize-filters-sidebar {
  display: none !important; }

.snize-search-results-main-content {
  margin-left: 0 !important; }
  .snize-search-results-main-content > div {
    width: 100% !important; }

#snize_results.snize-mobile-design.snize-new-version div.snize-selected-filters-container > span {
  text-transform: initial !important;
  margin-top: 4px;
  margin-bottom: 4px; }
  html:not(.rtl) #snize_results.snize-mobile-design.snize-new-version div.snize-selected-filters-container > span {
    margin-right: 6px; }
  html.rtl #snize_results.snize-mobile-design.snize-new-version div.snize-selected-filters-container > span {
    margin-left: 6px; }

#snize_results.snize-mobile-design div.snize-main-panel-mobile-filters span.snize-selected-filters-count-container {
  display: none !important; }

.snize-selected-filters-container span {
  color: #767676; }
  .snize-selected-filters-container span .snize-product-filters-reset {
    background: none !important;
    margin-top: -7px !important; }
    html:not(.rtl) .snize-selected-filters-container span .snize-product-filters-reset {
      margin-left: 10px !important; }
    html.rtl .snize-selected-filters-container span .snize-product-filters-reset {
      margin-right: 10px !important; }
    .snize-selected-filters-container span .snize-product-filters-reset:before {
      content: "\2715";
      font-style: normal;
      font-size: 1rem;
      line-height: 1rem;
      color: #767676; }

#snize-modal-mobile-filters-dialog .snize-product-filter-opener .snize-selected-filter-values {
  display: none !important; }

html:not(.rtl) #snize-modal-mobile-filters-dialog ul.snize-product-filters-list {
  text-align: left; }
html.rtl #snize-modal-mobile-filters-dialog ul.snize-product-filters-list {
  text-align: right; }
#snize-modal-mobile-filters-dialog ul.snize-product-filters-list li .snize-filter-checkbox span {
  border-radius: 0 !important;
  top: 0 !important; }
  #snize-modal-mobile-filters-dialog ul.snize-product-filters-list li .snize-filter-checkbox span:after {
    border-color: #3a2e2c !important; }

div.snize ul.snize-product-filters-list li:hover span {
  color: inherit !important; }
.rtl div.snize ul.snize-product-filters-list li label > span {
  padding-left: 0 !important;
  padding-right: 24px !important; }

.snize-selected-filter-color {
  border: solid 1px #767676 !important; }

#snize_results.snize-mobile-design.snize-new-version div.snize-main-panel {
  width: 100% !important;
  margin: 0 !important; }

div.snize.snize-rtl ul.snize-product-filters-list .snize-filter-checkbox {
  left: auto !important; }

.btn.btn--controls-filters, .shopify-payment-button .btn--controls-filters.shopify-payment-button__button--unbranded {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #3300ad;
  border: solid 1px #3300ad;
  color: white !important;
  min-width: 6rem;
  margin-top: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 768px) {
    .btn.btn--controls-filters, .shopify-payment-button .btn--controls-filters.shopify-payment-button__button--unbranded {
      display: none; } }
  .btn.btn--controls-filters.btn--active, .shopify-payment-button .btn--controls-filters.btn--active.shopify-payment-button__button--unbranded {
    background-color: transparent;
    border: solid 1px #eeeeee;
    color: #3a2e2c !important; }
  .btn.btn--controls-filters .btn__icon, .shopify-payment-button .btn--controls-filters.shopify-payment-button__button--unbranded .btn__icon {
    font-size: 1.3rem; }

div.snize div.snize-filters-dropdown-content {
  z-index: 74 !important; }

@media only screen and (min-device-width: 768px) {
  #snize-modal-mobile-filters-dialog .snize-price-range-input {
    max-width: 300px;
    width: 45% !important; } }
div.snize-ac-results.snize-rtl ul > li .snize-price-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  html:not(.rtl) div.snize-ac-results.snize-rtl ul > li .snize-price-list .snize-discounted-price {
    margin-left: 6px; }
  html.rtl div.snize-ac-results.snize-rtl ul > li .snize-price-list .snize-discounted-price {
    margin-right: 6px; }

div.snize #snize-search-results-grid-mode li.snize-banner img {
  aspect-ratio: auto 100 / 127; }

div.snize div.snize-horizontal-filters {
  margin-top: 0;
  float: left; }

/*================ Customer login/register form ================*/
/*================ Customer login/register form ================*/
.customer__account-form {
  margin: 0 auto;
  max-width: 380px; }
  .customer__account-form h1, .customer__account-form .h1 {
    margin-bottom: 0;
    padding: 0; }
  .customer__account-form h1 + p, .customer__account-form .h1 + p {
    padding: 1em 0;
    margin-bottom: 0; }
  .customer__account-form a {
    border-bottom: 1px solid #d8d5d5; }
  .customer__account-form .btn--link {
    margin: 1em 0;
    padding: 0;
    border-bottom: 1px solid #d8d5d5;
    color: #3a2e2c; }

#GuestAccountForm {
  margin-top: 4rem; }

.recover-pwd-text {
  padding-bottom: 2em; }

.page-container.account, .account.shopify-policy__container {
  padding-bottom: 80px; }
  .page-container.account .section-header, .account.shopify-policy__container .section-header, .page-container.account h1, .account.shopify-policy__container h1, .page-container.account .h1, .account.shopify-policy__container .h1 {
    margin-bottom: 0; }

.account-icons {
  margin-bottom: 70px; }
  .account-icons h1, .account-icons .h1 {
    margin-bottom: 0; }
  .account-icons .account-icon {
    font-size: 0.625rem;
    text-align: center;
    padding: 0 0.3125rem;
    font-weight: 100;
    color: #7f7776; }
  .account-icons svg {
    display: block;
    width: 2.625rem;
    height: 2.625rem;
    margin: 0 auto 0.9375rem;
    color: #7f7776; }

.sign-out {
  position: relative;
  display: block;
  padding-bottom: 4em;
  color: #7f7776;
  font-weight: 100;
  font-size: 0.75rem;
  line-height: 1.6rem;
  padding-left: 3em; }
  .sign-out svg {
    position: absolute;
    left: 0;
    width: 1.875rem;
    height: 1.875rem; }

.address {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 100;
  color: #767676;
  margin-bottom: 2rem; }
  .address h4, .address .h4 {
    color: #3a2e2c;
    font-size: 1.125rem;
    font-weight: normal; }
  .address .address-status {
    font-size: 0.8rem;
    color: #3a2e2c;
    margin-bottom: 0.5rem; }

.new-address {
  border-top: solid 1px #eeeeee;
  padding: 1.5625rem 0; }
  .new-address button {
    font-size: 1.125rem;
    line-height: 1.5rem; }
  .new-address svg {
    height: 1.125rem;
    width: 1.125rem; }
    html:not(.rtl) .new-address svg {
      margin-right: 1rem; }
    html.rtl .new-address svg {
      margin-left: 1rem; }

.form-address {
  margin-bottom: 30px; }
  .form-address .input-group input, .form-address .input-group select {
    font-size: 1.125rem;
    line-height: 1.4375rem; }
  .form-address input.btn, .form-address .shopify-payment-button input.shopify-payment-button__button--unbranded, .shopify-payment-button .form-address input.shopify-payment-button__button--unbranded {
    margin-bottom: 0; }
    html:not(.rtl) .form-address input.btn, html:not(.rtl) .form-address .shopify-payment-button input.shopify-payment-button__button--unbranded, .shopify-payment-button html:not(.rtl) .form-address input.shopify-payment-button__button--unbranded {
      margin-right: 15px; }
    html.rtl .form-address input.btn, html.rtl .form-address .shopify-payment-button input.shopify-payment-button__button--unbranded, .shopify-payment-button html.rtl .form-address input.shopify-payment-button__button--unbranded {
      margin-left: 15px; }
  .form-address h4, .form-address .h4 {
    color: #3a2e2c;
    font-size: 1.125rem;
    font-weight: 100;
    border-top: solid 1px #eeeeee;
    padding: 30px 0 20px;
    margin-top: 15px; }

.order-addresses {
  margin-top: 50px;
  margin-bottom: 30px; }
  @media only screen and (max-width: 34.365em) {
    .order-addresses {
      margin-bottom: 0; } }
  @media only screen and (max-width: 34.365em) {
    .order-addresses .address {
      margin-bottom: 15px; } }

@media only screen and (min-width: 34.375em) {
  .order__row td:first-child {
    width: 130px; }
  .order__row td:nth-child(2) {
    max-width: 300px; } }
@media only screen and (min-width: 68.75em) {
  .order__row td:first-child {
    width: 150px; } }
@media only screen and (max-width: 34.365em) {
  .order-table tr.order__row td {
    padding-right: 0; }
  .order-table tr.order__row .order__table-cell--image {
    width: 100px; } }

.order__product-image-wrapper {
  position: relative;
  display: block;
  overflow: hidden; }
  .order__product-image-wrapper:before {
    content: "";
    display: block;
    padding-top: 100%; }

.order__product-image-content {
  height: 100%;
  position: absolute;
  top: -26%; }

.form-success {
  background: #008342;
  color: white;
  font-size: 1.125rem;
  line-height: 1.5rem;
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem; }

.order-history tr:not(:last-of-type) {
  border-bottom: solid 1px #d8d5d5; }

/*================ Cart page ================*/
/*================ Cart page ================*/
.cart__header {
  padding-bottom: 30px; }

.responsive-table__row .js-qty, .responsive-table__row .ajaxcart__qty {
  display: inline-block;
  margin-bottom: 0; }

@media only screen and (min-width: 34.375em) {
  .cart__row td:first-child {
    width: 130px; }
  .cart__row td:nth-child(2) {
    max-width: 300px; } }
@media only screen and (min-width: 68.75em) {
  .cart__row td:first-child {
    width: 200px; } }
.responsive-table tr.cart__row {
  font-weight: 100; }
  @media only screen and (max-width: 34.365em) {
    .responsive-table tr.cart__row {
      display: table-row; }
      .responsive-table tr.cart__row td {
        display: table-cell; }
      .responsive-table tr.cart__row .cart__table-cell--image {
        width: 100px; }
      html:not(.rtl) .responsive-table tr.cart__row .cart__table-cell--meta {
        padding-left: 15px; }
      html.rtl .responsive-table tr.cart__row .cart__table-cell--meta {
        padding-right: 15px; }
      .responsive-table tr.cart__row .cart__table-cell--qty {
        display: none; }
      .responsive-table tr.cart__row .js-cart-update {
        margin: 5px 0 0; }
      .responsive-table tr.cart__row .cart__table-cell--delete {
        display: none; } }
  @media only screen and (min-width: 34.375em) {
    .responsive-table tr.cart__row .cart-mobile-qty {
      display: none; } }
  .responsive-table tr.cart__row p {
    margin-bottom: 0.625em; }
  .responsive-table tr.cart__row p.txt--minor {
    margin-bottom: 0; }
  .responsive-table tr.cart__row svg {
    height: 11px;
    width: 11px; }

.cart-mobile-qty {
  position: relative; }

.cart__table-cell--image {
  position: relative; }

.cart__table-cell--qty {
  position: relative; }

.js-cart-update {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px; }

.cart__notes {
  margin-bottom: 45px; }
  @media only screen and (min-width: 34.375em) {
    .cart__notes {
      margin-bottom: 0; } }

.cart__subtotal-container {
  margin-bottom: 15px;
  font-size: 1.5rem; }

.cart__subtotal {
  padding-left: 20px; }

.cart__policies {
  margin-bottom: 50px;
  font-weight: 100;
  color: #767676; }

.cart--no-cookies .cart--continue-browsing {
  display: none; }

.cart--no-cookies .cart--empty-message {
  display: none; }

.cart--cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cart--cookie-message {
    display: block; }

.cart-update-wrapper {
  position: relative; }
  @media only screen and (min-width: 34.375em) {
    .cart-update-wrapper {
      text-align: center; }
      .cart-update-wrapper .js-qty, .cart-update-wrapper .ajaxcart__qty {
        margin-top: 20px; } }

/*================ Newsletter ================*/
.newsletter-signup {
  margin: 0;
  padding: 0; }

.newsletter {
  position: relative;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  margin: 0;
  background-color: #685bc7;
  color: white;
  font-weight: 100; }
  .newsletter .btn, .newsletter .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .newsletter .shopify-payment-button__button--unbranded {
    background-color: white;
    color: #685bc7; }
  .newsletter .btn:hover, .newsletter .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .newsletter .shopify-payment-button__button--unbranded:hover {
    background-color: #ce0f69;
    color: white;
    border: solid 1px white; }
  .newsletter h2, .newsletter .h2 {
    color: white; }
  .newsletter .input-group input {
    border-bottom: solid 1px white;
    color: white; }
  .newsletter ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1;
    /* Firefox */
    font-weight: 100; }
  .newsletter :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: white;
    font-weight: 100; }
  .newsletter ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: white;
    font-weight: 100; }
  .newsletter .form--success {
    margin-top: 40px;
    border: none;
    background: transparent;
    color: white; }

/*================ Page template ================*/
/*================ Page template ================*/
.page-container, .shopify-policy__container {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media only screen and (min-width: 34.375em) {
    .page-container, .shopify-policy__container {
      padding-top: 60px;
      padding-bottom: 80px; } }

/*================ CMS Page and Legal pages ================*/
.cms-page, .shopify-policy__container {
  font-family: "Sectra", serif;
  font-size: 1.125rem;
  line-height: 1.875rem; }
  .cms-page h2, .shopify-policy__container h2, .cms-page .h2, .shopify-policy__container .h2 {
    font-size: 1.5rem;
    line-height: 1.5rem; }
    @media only screen and (min-width: 34.375em) {
      .cms-page h2, .shopify-policy__container h2, .cms-page .h2, .shopify-policy__container .h2 {
        font-size: 2.25rem;
        line-height: 2.25rem; } }
  .cms-page p + h1, .shopify-policy__container p + h1, .cms-page p + .h1, .shopify-policy__container p + .h1,
  .cms-page p + h2,
  .shopify-policy__container p + h2,
  .cms-page p + .h2,
  .shopify-policy__container p + .h2,
  .cms-page p + h3,
  .shopify-policy__container p + h3,
  .cms-page p + .h3,
  .shopify-policy__container p + .h3,
  .cms-page p + h4,
  .shopify-policy__container p + h4,
  .cms-page p + .h4,
  .shopify-policy__container p + .h4,
  .cms-page p + h5,
  .shopify-policy__container p + h5,
  .cms-page p + .h5,
  .shopify-policy__container p + .h5,
  .cms-page p + h6,
  .shopify-policy__container p + h6,
  .cms-page p + .h6,
  .shopify-policy__container p + .h6 {
    margin-top: 30px; }
  .cms-page p, .shopify-policy__container p {
    margin: 1.375rem 0 0; }
  .cms-page b, .shopify-policy__container b, .cms-page strong, .shopify-policy__container strong {
    font-weight: 700; }
  .cms-page ul, .shopify-policy__container ul, .cms-page ol, .shopify-policy__container ol {
    margin: 1.375rem 0; }
    html:not(.rtl) .cms-page ul, html:not(.rtl) .shopify-policy__container ul, html:not(.rtl) .cms-page ol, html:not(.rtl) .shopify-policy__container ol {
      padding-left: 1.2rem; }
    html.rtl .cms-page ul, html.rtl .shopify-policy__container ul, html.rtl .cms-page ol, html.rtl .shopify-policy__container ol {
      padding-right: 1.2rem; }
  .cms-page td, .shopify-policy__container td, .cms-page th, .shopify-policy__container th {
    padding: 10px;
    vertical-align: top; }
    .cms-page td p, .shopify-policy__container td p, .cms-page th p, .shopify-policy__container th p {
      margin-top: 0; }

/*================  Legal pages ================*/
html:not(.rtl) .shopify-policy__title {
  text-align: left; }
html.rtl .shopify-policy__title {
  text-align: right; }

.shopify-policy__body h1 b, .shopify-policy__body .h1 b, .shopify-policy__body h1 strong, .shopify-policy__body .h1 strong, .shopify-policy__body h2 b, .shopify-policy__body .h2 b, .shopify-policy__body h2 strong, .shopify-policy__body .h2 strong, .shopify-policy__body h3 b, .shopify-policy__body .h3 b, .shopify-policy__body h3 strong, .shopify-policy__body .h3 strong, .shopify-policy__body h4 b, .shopify-policy__body .h4 b, .shopify-policy__body h4 strong, .shopify-policy__body .h4 strong, .shopify-policy__body h5 b, .shopify-policy__body .h5 b, .shopify-policy__body h5 strong, .shopify-policy__body .h5 strong, .shopify-policy__body h6 b, .shopify-policy__body .h6 b, .shopify-policy__body h6 strong, .shopify-policy__body .h6 strong {
  font-weight: 400; }

/*================  Contact page ================*/
.contact-form {
  margin-top: 2rem; }
  .contact-form .form-success {
    margin-bottom: 1.375rem; }

.c-paragraph--help {
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-family: "Patron";
  font-weight: 100; }

/*================ Footer ================*/
/*================ Footer ================*/
html {
  background-color: #f9f9f9; }

.footer-section {
  position: relative;
  background-color: #efecf0; }

.site-footer__linklist li.submenu {
  flex: 1 1 0px; }
  .site-footer__linklist li.submenu .h4 {
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1.875rem; }
    .site-footer__linklist li.submenu .h4:hover {
      border-bottom: none; }
  .site-footer__linklist li.submenu a {
    color: #3a2e2c;
    display: inline-flex;
    border-bottom: solid 1px transparent; }
    html:not(.rtl) .site-footer__linklist li.submenu a span {
      margin-right: 10px; }
    html.rtl .site-footer__linklist li.submenu a span {
      margin-left: 10px; }
    .site-footer__linklist li.submenu a:hover {
      border-color: #d8d5d5; }
  .site-footer__linklist li.submenu ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .site-footer__linklist li.submenu ul li {
    font-weight: 100;
    width: 50%;
    margin-bottom: 1.75rem; }
    @media only screen and (min-width: 34.375em) {
      .site-footer__linklist li.submenu ul li {
        width: 100%; } }
    .site-footer__linklist li.submenu ul li.item--is-payment {
      width: 50%; }
      @media only screen and (min-width: 34.375em) and (max-width: 47.49em) {
        .site-footer__linklist li.submenu ul li.item--is-payment {
          width: 47%;
          margin-bottom: 0.7rem; }
          .site-footer__linklist li.submenu ul li.item--is-payment:nth-child(odd) {
            margin-right: 6%; } }
  @media only screen and (max-width: 47.49em) {
    .site-footer__linklist li.submenu {
      display: block;
      border-bottom: 1px solid #efecf0;
      padding: 2.125rem 0.9375rem 0; } }
  @media only screen and (min-width: 34.375em) and (max-width: 68.74em) {
    .site-footer__linklist li.submenu {
      padding-bottom: 2.5rem;
      padding-top: 2.5rem; } }
@media only screen and (min-width: 34.375em) {
  .site-footer__linklist {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; } }
@media only screen and (min-width: 68.75em) {
  .site-footer__linklist {
    margin: 0 6.125rem;
    padding-bottom: 3.75rem;
    padding-top: 3.75rem; } }

.payment-icons__icon {
  width: 38px;
  height: 24px; }

.payment-icons,
.social-icons {
  margin-top: 10px; }
  .payment-icons li,
  .social-icons li {
    margin-bottom: 10px; }
  .payment-icons li + li,
  .social-icons li + li {
    margin-left: 10px; }

@media only screen and (min-width: 68.75em) {
  .payment-icons {
    margin-left: 30px; }

  .social-icons {
    margin-right: 30px; } }
@media only screen and (max-width: 47.49em) {
  .payment-icons--footer,
  .social-icons--footer,
  .site-footer__copyright {
    display: block;
    text-align: center;
    margin-bottom: 20px; } }
.site-footer__legal {
  background-color: #3a2e2c;
  color: white;
  padding-bottom: 1.25rem;
  padding-top: 1.75rem; }
  @media only screen and (min-width: 34.375em) {
    .site-footer__legal {
      padding-bottom: 1.875rem;
      padding-top: 1.875rem; } }

.c-footer-legal__wrapper {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 34.375em) {
    .c-footer-legal__wrapper {
      -ms-flex-align: baseline;
      align-items: baseline;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin: 0 3.6875rem 0 2.8125rem; } }
  @media only screen and (min-width: 34.375em) {
    .c-footer-legal__wrapper {
      padding-top: 1.625rem; } }
  @media only screen and (min-width: 68.75em) {
    .c-footer-legal__wrapper {
      padding-top: initial; } }

@media only screen and (max-width: 34.365em) {
  .c-footer__legal-links {
    order: -1; } }
@media only screen and (min-width: 34.375em) and (max-width: 47.49em) {
  .c-footer__legal-links {
    width: 100%; } }
@media only screen and (min-width: 68.75em) {
  .c-footer__legal-links {
    order: 1; }
    html:not(.rtl) .c-footer__legal-links {
      margin-left: auto; }
    html.rtl .c-footer__legal-links {
      margin-right: auto; } }

.c-footer-legal-links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 0.625rem;
  padding: 0;
  line-height: 1; }
  @media only screen and (min-width: 34.375em) {
    .c-footer-legal-links {
      justify-content: flex-end;
      line-height: 1.5;
      margin-bottom: 0; }
      html:not(.rtl) .c-footer-legal-links {
        padding-right: 40px; }
      html.rtl .c-footer-legal-links {
        padding-left: 40px; } }

.c-footer-legal-links__item {
  margin-bottom: 1.5625rem;
  width: 50%; }
  @media only screen and (min-width: 34.375em) {
    .c-footer-legal-links__item {
      margin-bottom: 0;
      width: auto; }
      html:not(.rtl) .c-footer-legal-links__item {
        padding-left: 20px; }
      html.rtl .c-footer-legal-links__item {
        padding-right: 20px; } }

.c-footer-legal-links__link {
  font-size: 0.75rem;
  line-height: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  outline-color: #fff; }

.c-footer-legal__copyright {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0; }
  @media only screen and (min-width: 34.375em) {
    .c-footer-legal__copyright {
      order: -1;
      width: 100%; } }
  @media only screen and (min-width: 47.5em) {
    .c-footer-legal__copyright {
      text-align: initial;
      width: auto; } }
  @media only screen and (min-width: 68.75em) {
    .c-footer-legal__copyright {
      order: initial; } }

.c-footer-legal__logo {
  height: 1.25rem;
  margin-bottom: 0.9375rem;
  position: relative;
  width: 6.25rem; }
  .c-footer-legal__logo .c-icon {
    fill: #fff; }
  @media only screen and (min-width: 34.375em) {
    .c-footer-legal__logo {
      margin-bottom: 0; }
      html:not(.rtl) .c-footer-legal__logo {
        margin-right: 1.25rem; }
      html.rtl .c-footer-legal__logo {
        margin-left: 1.25rem; } }
  @media only screen and (min-width: 34.375em) and (max-width: 68.74em) {
    .c-footer-legal__logo {
      height: 1rem;
      position: absolute;
      top: 0;
      width: 5rem; }
      html:not(.rtl) .c-footer-legal__logo {
        left: 0; }
      html.rtl .c-footer-legal__logo {
        right: 0; } }
  @media only screen and (min-width: 68.75em) {
    .c-footer-legal__logo {
      -ms-flex-positive: 0;
      flex-grow: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      top: 3px; }
      html:not(.rtl) .c-footer-legal__logo {
        margin-right: 2.375rem; }
      html.rtl .c-footer-legal__logo {
        margin-left: 2.375rem; } }

.item--is-payment {
  height: 3em;
  line-height: 3em; }
  .item--is-payment a:hover {
    border-bottom: none !important; }
  .item--is-payment svg {
    max-width: 100%;
    width: 60px; }
  .item--is-payment .icon-asset {
    position: relative; }
    .item--is-payment .icon-asset img {
      max-width: 110px;
      vertical-align: top;
      margin-top: 7px; }

.icon-payment-image {
  border-radius: 2px; }

.rtl .intercom-lightweight-app-launcher {
  left: 20px;
  right: auto; }

/*================ Placeholder ================*/
.icon--placeholder {
  fill: rgba(102, 102, 102, 0.35);
  background-color: rgba(102, 102, 102, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(102, 102, 102, 0.2); }

.placeholder-noblocks {
  padding: 40px;
  text-align: center; }

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .placeholder-background .icon {
    border: 0; }

.placeholder-background--animation {
  background-color: #666666;
  -webkit-animation: placeholder-background-loading 1.5s infinite linear;
  -moz-animation: placeholder-background-loading 1.5s infinite linear; }
  .no-js .placeholder-background--animation {
    display: none; }

@-webkit-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

.helper-section .icon--placeholder {
  display: block;
  border-width: 0px; }

.fade-in {
  opacity: 0;
  transition: opacity 250ms ease-out; }
  .fade-in.lazyloaded {
    opacity: 1; }

/*================ TEMPLATES ================*/
/*================ MODULES ================*/
/*============================================================================
  #Slick Slider
==============================================================================*/
/*============================================================================
  To update Slick slider to a new version,
  scroll down to #Slick Slider SCSS and follow the instructions

  Default Slick classes all start with '.slick'
  Custom classes all start with '.hero'

  Extra specificity in selectors is used to override default
  styles before including the default Slick CSS
==============================================================================*/
/*================ Prev/next and pagination ================*/
.slick-dots {
  margin: 0; }
  .slick-dots .hero__dots:before {
    text-indent: -9999px;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    opacity: 1;
    transition: all 0.2s; }
  .slick-dots li {
    vertical-align: middle; }

.hero__dots {
  position: relative; }

.hero__dots:active:before {
  opacity: 0.5; }

.hero__content-wrapper-mobile .slick-dots .hero__dots:before {
  background-color: #1a1a1a; }
.hero__content-wrapper-mobile .slick-dots .slick-active-mobile .hero__dots:before {
  background-color: transparent;
  border: 2px solid #1a1a1a; }

/*============================================================================
  Hero logo
==============================================================================*/
.hero--adapt .hero,
.hero--adapt .hero .slick-track,
.hero--adapt .hero .hero__slide:before {
  max-height: 100vh; }
  @media only screen and (min-width: 34.375em) {
    .hero--adapt .hero,
    .hero--adapt .hero .slick-track,
    .hero--adapt .hero .hero__slide:before {
      max-height: 80vh; } }

.hero__slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.hero__content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5; }

.hero__content {
  display: table;
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  font-size: 1.5em; }
  .hero__content:after {
    opacity: 1;
    content: '';
    display: block;
    left: 50%;
    -webkit-animation: spin 0.65s infinite linear;
    -moz-animation: spin 0.65s infinite linear; }
  .hero-initialized .hero__content:after, .no-js .hero__content:after {
    content: "";
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .hero__content .btn, .hero__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .hero__content .shopify-payment-button__button--unbranded {
    margin: 0.625rem; }

.hero__content-centered {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px 50px;
  transition-property: all;
  transition-delay: 0.2s;
  transition-timing-function: ease;
  opacity: 0; }
  .hero--adapt .hero__content-centered {
    padding: 0 20px;
    display: none; }
    @media only screen and (min-width: 34.375em) {
      .hero--adapt .hero__content-centered {
        display: table-cell; } }
  .supports-js .hero-initialized .hero__content-centered {
    opacity: 1;
    -webkit-animation: heroContentIn 1.2s cubic-bezier(0.29, 0.63, 0.44, 1);
    -moz-animation: heroContentIn 1.2s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .hero__content-centered .btn, .hero__content-centered .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .hero__content-centered .shopify-payment-button__button--unbranded {
    white-space: normal; }

.hero__text-title {
  font-size: 1.625em;
  line-height: 1em;
  font-weight: 100;
  padding-bottom: 1.875rem; }
  .hero--adapt .hero__text-title {
    margin-bottom: 0; }
  @media only screen and (min-width: 34.375em) {
    .hero__text-title {
      font-size: 2em; }
      .hero--adapt .hero__text-title {
        margin-bottom: 0.625em; } }

/*============================================================================
  General slide styles
    - Sizes based on height of image when 100% of container width
==============================================================================*/
.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4; }

.hero__image {
  position: relative;
  opacity: 0; }
  .hero__image.image-loaded {
    opacity: 1;
    -webkit-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -moz-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }

.hero__slide--hidden {
  visibility: hidden; }

.supports-touch .hero__slide--hidden {
  visibility: visible; }

/*============================================================================
  Full screen hero styles
    - Uses css background image
==============================================================================*/
.hero {
  height: 100vh;
  min-height: 550px;
  overflow: hidden; }
  .hero--adapt .hero {
    min-height: 150px; }
    @media only screen and (min-width: 34.375em) {
      .hero--adapt .hero {
        min-height: auto; } }
  .hero.is-ios-editor {
    max-height: 0px; }
  .hero .slick-list,
  .hero .slick-track {
    height: 100%; }
  .hero .hero__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    font-family: "object-fit: cover"; }
  .hero .hero__image-no-js {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    opacity: 1;
    -webkit-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -moz-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }

.hero--adapt .slick-list, .hero--adapt
.slick-track, .hero--adapt
.hero__slide {
  min-height: 150px; }
  @media only screen and (min-width: 34.375em) {
    .hero--adapt .slick-list, .hero--adapt
    .slick-track, .hero--adapt
    .hero__slide {
      min-height: auto; } }

.hero[tabindex='-1']:focus .hero__content-wrapper {
  outline: auto 5px -webkit-focus-ring-color;
  outline-offset: -4px; }

/*================ Hero header ================*/
.hero__header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0; }

/*============================================================================
  Hero controls
==============================================================================*/
.hero__controls {
  position: absolute;
  bottom: 98px;
  left: 0;
  right: 0;
  z-index: 10; }
  .hero--adapt .hero__controls {
    display: none; }
    @media only screen and (min-width: 34.375em) {
      .hero--adapt .hero__controls {
        display: block; } }
  .hero__controls li {
    list-style: none; }
  .hero__controls .hero__controls-icon {
    height: 44px;
    width: 44px;
    background: transparent; }
  .hero__controls .hero__button-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1.5rem;
    width: 1.5rem;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    .hero__content-wrapper-mobile .hero__controls .hero__button-circle {
      background: transparent; }
  html:not(.rtl) .hero__controls .slick-prev {
    left: 0.2rem; }
  html.rtl .hero__controls .slick-prev {
    right: 0.2rem; }
  .hero__controls .slick-prev .icon {
    -ms-transform: rotate(180deg) translateZ(0);
    -webkit-transform: rotate(180deg) translateZ(0);
    transform: rotate(180deg) translateZ(0); }
    .rtl .hero__controls .slick-prev .icon {
      -ms-transform: rotate(0);
      -webkit-transform: rotate(0);
      transform: rotate(0); }
    .hero__controls .slick-prev .icon:before {
      left: 0.5px;
      top: 1px; }
  html:not(.rtl) .hero__controls .slick-next {
    right: 0.2rem; }
  html.rtl .hero__controls .slick-next {
    left: 0.2rem; }
  .rtl .hero__controls .slick-next .icon {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  .hero__controls .slick-next .icon:before {
    left: 0.5px; }

.hero__pause {
  position: relative;
  line-height: 0;
  cursor: pointer;
  padding: 0;
  border: none;
  order: 1; }
  .hero__pause .icon:before {
    position: relative;
    font-size: 0.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .hero__content-wrapper-mobile .hero__pause .icon:before {
      color: #1a1a1a; }

.icon-pause {
  display: block; }
  .icon-pause:before {
    left: 0.5px; }
  .is-paused .icon-pause {
    display: none; }

.icon-play {
  display: none; }
  .icon-play:before {
    left: 1px; }
  .is-paused .icon-play {
    display: block; }

.hero__dots-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%; }
  .hero__dots-wrapper .slick-dots {
    top: 10px;
    height: 1.5rem;
    width: auto;
    padding: 0 6px;
    position: relative;
    border-radius: 100px; }

/*============================================================================
  Hero mobile & controls
==============================================================================*/
.hero__content-wrapper-mobile {
  display: block;
  position: relative; }
  .hero__content-wrapper-mobile .hero__controls {
    height: 28px;
    display: block;
    position: relative;
    padding: 0 20px;
    bottom: 0;
    left: unset;
    right: unset; }
  .hero__content-wrapper-mobile .hero__dots-wrapper {
    position: relative;
    top: -1.1rem;
    background-color: white; }
    .hero__content-wrapper-mobile .hero__dots-wrapper .slick-dots {
      background: transparent; }
  .hero__content-wrapper-mobile .slick-prev .icon:before,
  .hero__content-wrapper-mobile .slick-next .icon:before {
    color: #1a1a1a; }
  @media only screen and (min-width: 34.375em) {
    .hero__content-wrapper-mobile {
      display: none; } }

.hero-title-empty {
  margin-top: 20px; }

.hero-title-mobile {
  margin-top: 20px;
  margin-bottom: 25px; }

.hero-btn-mobile {
  margin-top: 20px;
  margin-bottom: 44px;
  white-space: normal; }

.hero-title-mobile + .hero-btn-mobile {
  margin-top: 0; }

.hero__content-mobile {
  display: block;
  padding: 0 20px;
  transition: opacity 0.5s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden; }
  @media only screen and (min-width: 34.375em) {
    .hero__content-mobile {
      display: none; } }
  .hero__content-mobile.is-active {
    opacity: 1;
    height: auto; }

/*============================================================================
  Action bar with Hero Adapt
==============================================================================*/
.hero__header--adapt {
  position: relative; }
  @media only screen and (min-width: 34.375em) {
    .hero__header--adapt {
      position: absolute; } }

/*============================================================================
  #Slick Slider overrides
    - If upgrading Slick's styles, use the following variables/functions
      instead of the slick defaults
    - Only overwrite slick's default styles starting at #Slick Slider SCSS
==============================================================================*/
/*============================================================================
  #Slick Slider SCSS
    - Everything below this line is unchanged from Slick's scss file
    - When updating to a new version, don't include the variables/function
      that were modified above
==============================================================================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-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 {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-loading .slick-list {
    background: white url("//cdn.shopify.com/s/files/1/0506/6352/2500/t/1/assets/ajax-loader.gif?v=41356863302472015721603643643") center center no-repeat; }
  .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; }
  .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; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  width: 0.6rem;
  line-height: 0;
  cursor: pointer;
  padding: 0;
  border: none; }
  .slick-prev .icon:before,
  .slick-next .icon:before {
    bottom: 0; }

.slick-prev .icon:before,
.slick-next .icon:before {
  position: relative;
  transition: top 0.1s linear;
  font-size: 0.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Dots */
.slick-dots {
  position: absolute;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li .hero__dots {
      border: 0;
      background: transparent;
      display: block;
      height: 8px;
      width: 8px;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li .hero__dots:hover, .slick-dots li .hero__dots:focus {
        opacity: 1; }
      .slick-dots li .hero__dots:before {
        position: absolute;
        top: -1px;
        left: 0;
        content: "\2022";
        width: 8px;
        height: 8px;
        font-family: "slick-icons, sans-serif";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        opacity: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }

/*================ Editorial ================*/
.editorial .o-container, .editorial .shopify-policy__container {
  margin-top: 5.1875rem;
  margin-bottom: 7.0625rem; }
  @media only screen and (max-width: 47.49em) {
    .editorial .o-container, .editorial .shopify-policy__container {
      margin-bottom: 0;
      margin-top: 3.9375rem; } }
@media only screen and (min-width: 47.5em) {
  .editorial .grid {
    display: flex;
    justify-content: center;
    align-items: center; } }
@media only screen and (min-width: 47.5em) {
  .editorial .editorial--reverse .grid {
    flex-direction: row-reverse; } }
.editorial h1, .editorial .h1 {
  font-size: 3rem;
  font-weight: 100;
  line-height: 3rem;
  margin: 0;
  padding-bottom: 1.5rem; }
  @media only screen and (max-width: 47.49em) {
    .editorial h1, .editorial .h1 {
      font-size: 2.25rem;
      line-height: 2.25rem; } }
.editorial .editorial__eyeBrow {
  margin-bottom: -1.25rem;
  font-weight: 700;
  color: #3a2e2c;
  font-size: 1rem;
  padding-bottom: 0px;
  word-break: break-all; }
.editorial p {
  margin: 0;
  padding-bottom: 1.875rem;
  font-weight: 100;
  font-size: 1.125rem;
  line-height: 1.5rem; }
  html:not(.rtl) .editorial p {
    padding-right: 8.33%; }
  html.rtl .editorial p {
    padding-left: 8.33%; }
  @media only screen and (max-width: 47.49em) {
    html:not(.rtl) .editorial p {
      padding-right: 0; }
    html.rtl .editorial p {
      padding-left: 0; } }
.editorial a {
  color: #3a2e2c;
  border: solid 1px #7f7776;
  margin: 0;
  padding: 0.9375rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
  width: fit-content;
  text-align: center; }
  @media only screen and (max-width: 47.49em) {
    .editorial a {
      display: block;
      width: 100%;
      text-align: center; } }
  .editorial a:hover {
    background-color: #3a2e2c;
    border-color: #3a2e2c;
    color: white; }

@media only screen and (min-width: 34.375em) {
  .editorial__image {
    padding: 2%; } }

.editorial__content {
  padding: 2.25rem 8.33%; }
  @media only screen and (max-width: 99.99em) {
    .editorial__content {
      padding: 2.25rem 3.33%; } }

/*================ Editorial ================*/
.editorial-video__header-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }
  @media only screen and (max-width: 47.49em) {
    .editorial-video__header-container {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.editorial-video__header {
  width: 100%; }

.editorial-video__header--ctas {
  width: 75%; }
  @media only screen and (max-width: 47.49em) {
    .editorial-video__header--ctas {
      width: 100%; } }

.editorial-video__header-ctas {
  width: 25%;
  padding-top: 1.25rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  html:not(.rtl) .editorial-video__header-ctas {
    margin-left: 1.875rem; }
  html.rtl .editorial-video__header-ctas {
    margin-right: 1.875rem; }
  @media only screen and (max-width: 47.49em) {
    .editorial-video__header-ctas {
      width: 100%;
      padding: 0.625rem 0; }
      html:not(.rtl) .editorial-video__header-ctas {
        margin-left: 0; }
      html.rtl .editorial-video__header-ctas {
        margin-right: 0; } }

.editorial-video__link {
  color: #3a2e2c;
  border: solid 1px #7f7776;
  margin: 0;
  padding: 0.9375rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
  width: fit-content;
  text-align: center;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around; }
  @media only screen and (max-width: 47.49em) {
    .editorial-video__link {
      display: block;
      width: 100%;
      text-align: center; } }
  .editorial-video__link:hover {
    background-color: #3a2e2c;
    border-color: #3a2e2c;
    color: white; }
  .editorial-video__link:nth-child(2n) {
    margin-top: 1.25rem; }

.editorial-video__title {
  font-size: 2.8125rem;
  line-height: 1; }
  @media only screen and (max-width: 47.49em) {
    .editorial-video__title {
      font-size: 2.25rem; } }

.editorial-video__description {
  font-family: "Sectra", serif;
  font-size: 1.125rem;
  line-height: 1.33;
  margin-bottom: 1rem;
  margin-top: 1rem; }

.editorial-video__content {
  margin-top: 0.75rem; }

/*================ Hero Message Bar ================*/
#shopify-section-hero-message-bar {
  position: relative;
  z-index: 10; }

.hero-message-bar {
  display: block;
  text-align: center;
  position: relative;
  padding: 1.5625rem 1rem 1.4375rem; }
  .hero-message-bar a {
    font-size: 0.75rem;
    line-height: 0.75rem;
    margin: 0 0.625rem;
    border-bottom: 1px solid; }
  @media only screen and (max-width: 34.365em) {
    .hero-message-bar {
      padding: 1.375rem 1rem 1.125rem; } }

.hero-message-bar__message {
  display: block;
  font-weight: 100;
  margin-bottom: 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 2.25rem; }
  @media only screen and (max-width: 34.365em) {
    .hero-message-bar__message {
      font-size: 1.125rem;
      line-height: 1.5rem; } }

.hero-message-bar__eyebrow {
  font-size: 0.75rem;
  line-height: 0.8125rem;
  margin-bottom: 0; }

#HeroMessageBarCarousel {
  position: relative; }
  #HeroMessageBarCarousel > .hero-message-bar--has-pagination.hero__slide--hidden {
    padding: 0; }
  #HeroMessageBarCarousel .hero-message-bar--has-pagination {
    padding-bottom: 3.5rem; }
  #HeroMessageBarCarousel .hero-message-bar--has-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center; }
  #HeroMessageBarCarousel .slick-list {
    overflow: visible; }
  #HeroMessageBarCarousel .slick-dots {
    background: none;
    position: absolute;
    bottom: 1rem; }
  #HeroMessageBarCarousel .hero__slide--hidden {
    height: 0 !important; }

.hero-message-bar__links {
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center; }

.hero-message-bar__tooltip-wrapper {
  position: relative;
  top: 0.2rem;
  height: 1.1125rem;
  width: 1.1125rem;
  display: inline-block;
  display: inline-flex; }
  html:not(.rtl) .hero-message-bar__tooltip-wrapper {
    margin-left: 1rem; }
  html.rtl .hero-message-bar__tooltip-wrapper {
    margin-right: 1rem; }
  @media only screen and (min-width: 53.75em) {
    .hero-message-bar__tooltip-wrapper {
      height: 1.3625rem;
      width: 1.3625rem; } }

.c-tooltip__button {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: currentColor;
  height: 1.1125rem;
  width: 1.1125rem; }
  @media only screen and (min-width: 53.75em) {
    .c-tooltip__button {
      height: 1.3625rem;
      width: 1.3625rem; } }

.c-tooltip__content {
  position: absolute;
  z-index: 50;
  white-space: normal;
  visibility: hidden;
  opacity: 0;
  height: 50px;
  max-height: 50px;
  transition: all 0.2s ease; }

.c-tooltip__content--visible {
  visibility: visible;
  opacity: 1;
  height: auto;
  max-height: 0; }

.c-tooltip__inner {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1rem;
  display: block;
  background-color: white;
  border: 1px solid #7f7776;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  color: #3a2e2c;
  margin: 0;
  padding: 1.25rem;
  position: relative;
  text-align: left;
  width: 12rem; }
  .c-tooltip__inner a {
    font-size: 0.875rem;
    line-height: 1rem;
    color: #3a2e2c !important; }
  .c-tooltip__inner:before, .c-tooltip__inner:after {
    content: " ";
    pointer-events: none;
    position: absolute;
    left: 46%;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white; }
  .c-tooltip__inner:before {
    border-bottom-color: #7f7776;
    border-width: 9px;
    margin-top: -2px;
    margin-left: -1px; }

/*================ Promo banner ================*/
.promo-banner-section {
  position: relative;
  top: 2rem;
  margin-bottom: 5rem; }
  @media only screen and (max-width: 47.49em) {
    .promo-banner-section {
      top: 0; } }
  @media only screen and (max-width: 47.49em) {
    .promo-banner-section .o-container, .promo-banner-section .shopify-policy__container {
      margin: 0; } }

.promo-banner {
  padding: 2.5rem; }
  @media only screen and (min-width: 100em) {
    .promo-banner {
      padding: 5.5rem 2.5rem; } }
  @media only screen and (max-width: 47.49em) {
    .promo-banner {
      padding: 1.25rem; } }

.promo-banner__container {
  margin: 2rem 1.5rem; }
  @media only screen and (min-width: 100em) {
    .promo-banner__container {
      margin: 0 3.75rem; } }

.promo-banner__title {
  font-size: 2.5rem;
  line-height: 2.5rem; }
  @media only screen and (min-width: 100em) {
    .promo-banner__title {
      font-size: 4rem;
      line-height: 4rem; } }
  @media only screen and (max-width: 47.49em) {
    .promo-banner__title {
      font-size: 3rem;
      line-height: 3rem; } }
  @media only screen and (max-width: 34.365em) {
    .promo-banner__title {
      font-size: 2.5rem;
      line-height: 2.5rem; } }

.promo-banner__ctas {
  margin-top: 1.25rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .promo-banner__ctas.promo-banner__ctas--mobile {
    display: none;
    margin-top: 2rem; }
    @media only screen and (max-width: 47.49em) {
      .promo-banner__ctas.promo-banner__ctas--mobile {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; } }
  @media only screen and (max-width: 47.49em) {
    .promo-banner__ctas.promo-banner__ctas--desktop {
      display: none; } }

.promo-banner__link {
  border-width: 1px;
  border-style: solid;
  margin: 0;
  padding: 0.9375rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
  width: fit-content; }
  html:not(.rtl) .promo-banner__link {
    margin-right: 1.25rem; }
  html.rtl .promo-banner__link {
    margin-left: 1.25rem; }
  @media only screen and (max-width: 47.49em) {
    .promo-banner__link {
      display: block;
      width: 100%;
      text-align: center;
      margin-bottom: 0.625rem; }
      html:not(.rtl) .promo-banner__link {
        margin-right: 0; }
      html.rtl .promo-banner__link {
        margin-left: 0; } }

.promo-banner__discount-subcopy {
  margin-left: 0;
  font-size: 0.875rem;
  line-height: 1rem; }
  @media only screen and (min-width: 100em) {
    .promo-banner__discount-subcopy {
      font-size: 1rem;
      line-height: 1.0625rem; } }
  @media only screen and (max-width: 47.49em) {
    .promo-banner__discount-subcopy {
      font-size: 0.75rem;
      line-height: 1.125rem;
      margin: 0;
      opacity: .9; } }

.promo-banner__eyebrow {
  margin-bottom: -2rem; }
  @media only screen and (max-width: 47.49em) {
    .promo-banner__eyebrow {
      margin-bottom: -1rem; } }

.promo-banner__discount {
  position: relative;
  display: flex;
  align-items: center; }

.promo-banner__discount-amount {
  font-size: 12.5rem;
  font-weight: 500;
  line-height: 1; }
  @media only screen and (max-width: 47.49em) {
    .promo-banner__discount-amount {
      font-size: 9rem; } }

.promo-banner__discount-sign {
  display: flex;
  flex-wrap: wrap; }
  .promo-banner__discount-sign span {
    flex: 100%; }
  .promo-banner__discount-sign .promo-banner__discount-symbol {
    font-size: 5.625rem;
    line-height: 1; }
    @media only screen and (max-width: 47.49em) {
      .promo-banner__discount-sign .promo-banner__discount-symbol {
        font-size: 4rem; } }
  .promo-banner__discount-sign .promo-banner__discount-text {
    font-size: 2.5rem;
    line-height: 1; }
    @media only screen and (max-width: 47.49em) {
      .promo-banner__discount-sign .promo-banner__discount-text {
        font-size: 2rem; } }

/*================ Site Header ================*/
/*============================================================================
Header
==============================================================================*/
.c-header-container {
  position: fixed;
  top: 0vh;
  background-color: #ffffff;
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 75;
  width: 100%; }
  @media only screen and (max-width: 47.49em) {
    .c-header-container {
      position: sticky; } }
  .js-sticky-header .c-header-container {
    border-bottom: solid 1px #eeeeee; }
    @media only screen and (max-width: 47.49em) {
      .js-sticky-header .c-header-container {
        position: fixed; } }

.c-header {
  height: 50px; }
  @media only screen and (min-width: 47.5em) {
    .c-header {
      border-bottom: 1px solid transparent;
      height: 110px;
      transition: border 380ms cubic-bezier(0.19, 1, 0.22, 1);
      padding-right: 0; } }
  @media only screen and (min-width: 100em) {
    .c-header {
      height: 120px; } }
  .js-sticky-header .c-header {
    height: 50px; }

.c-header__container {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media only screen and (min-width: 47.5em) {
    .c-header__container {
      padding-top: 0.625rem;
      height: 100%; } }
  @media only screen and (max-width: 47.49em) {
    .c-header__container {
      margin: 0 !important; } }

.c-header__contents-top {
  min-height: 1.3125rem;
  position: relative;
  transition: transform 0.54s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1; }
  @media only screen and (max-width: 47.49em) {
    .c-header__contents-top {
      display: none; } }
  .js-sticky-header .c-header__contents-top {
    -ms-transform: translate3d(0, -37px, 0);
    -webkit-transform: translate3d(0, -37px, 0);
    transform: translate3d(0, -37px, 0); }

.c-header__contents-bottom {
  position: relative; }
  @media only screen and (max-width: 47.49em) {
    .c-header__contents-bottom {
      height: 3.125rem; } }
  @media only screen and (min-width: 47.5em) {
    .c-header__contents-bottom {
      transition: transform 0.58s cubic-bezier(0.19, 1, 0.22, 1); }
      .js-sticky-header .c-header__contents-bottom {
        -ms-transform: translate3d(0, -31px, 0);
        -webkit-transform: translate3d(0, -31px, 0);
        transform: translate3d(0, -31px, 0); } }

/*============================================================================
Logo
==============================================================================*/
.l-logo-wrapper {
  left: 50%;
  margin: 0;
  position: absolute;
  transform: translate3d(-50%, 0, 0);
  transform-origin: center center;
  transition: all 0.58s cubic-bezier(0.19, 1, 0.22, 1); }

.c-logo-header {
  position: relative;
  width: 75px;
  margin: 1rem 0; }
  @media only screen and (max-width: 47.49em) {
    .c-logo-header {
      margin: 0.75rem 0; } }
  @media only screen and (min-width: 47.5em) {
    .c-logo-header {
      width: 114px;
      margin: 7px 0; }
      .js-sticky-header .c-logo-header svg {
        height: 1rem;
        margin-top: 0.6rem; } }
  @media only screen and (min-width: 68.75em) {
    .c-logo-header {
      width: 132px; } }
  .c-logo-header .c-icon {
    fill: #3a2e2c;
    height: 14px;
    width: 100%; }
    @media only screen and (min-width: 34.375em) {
      .c-logo-header .c-icon {
        height: 21px; } }
    @media only screen and (min-width: 68.75em) {
      .c-logo-header .c-icon {
        height: 24px; } }

/*============================================================================
My account
==============================================================================*/
.c-navigation--utility {
  position: absolute;
  top: 0; }
  html:not(.rtl) .c-navigation--utility {
    right: 0; }
  html.rtl .c-navigation--utility {
    left: 0; }
  @media only screen and (max-width: 47.49em) {
    .c-navigation--utility {
      display: none; } }

.c-navigation__btn-account {
  color: #3a2e2c;
  font-size: 18px;
  font-weight: bolder;
  line-height: 18px;
  position: relative; }
  html:not(.rtl) .c-navigation__btn-account {
    margin-right: 1.875rem; }
  html.rtl .c-navigation__btn-account {
    margin-left: 1.875rem; }
  .c-navigation__btn-account .c-icon {
    height: 1.25rem;
    width: 1.25rem;
    margin-top: 0;
    vertical-align: middle; }
    html:not(.rtl) .c-navigation__btn-account .c-icon {
      margin-right: 5px; }
    html.rtl .c-navigation__btn-account .c-icon {
      margin-left: 5px; }
  .c-navigation__btn-account .c-navigation__icon-arrow-right {
    height: 10px;
    margin-right: 0;
    margin-top: -5px;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px; }
  @media only screen and (min-width: 47.5em) and (max-width: 53.74em) {
    .c-navigation__btn-account {
      font-size: 12px;
      text-transform: uppercase; }
      .c-navigation__btn-account .c-icon {
        height: 1.25rem;
        width: 1.25rem; } }
  .c-navigation__btn-account .c-navigation__btn__label {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 0.75rem; }
    @media only screen and (max-width: 47.49em) {
      .c-navigation__btn-account .c-navigation__btn__label {
        display: none; } }

/*============================================================================
Cart Navigation (search, favourites and shopping bag icons)
==============================================================================*/
.c-navigation--cart {
  position: absolute;
  top: 0;
  font-size: 0.875rem;
  font-weight: bolder;
  z-index: 0; }
  html:not(.rtl) .c-navigation--cart {
    right: 0; }
  html.rtl .c-navigation--cart {
    left: 0; }
  .c-navigation--cart button {
    font-size: 0.875rem; }
  .c-navigation--cart .c-icon {
    height: 1.25rem;
    width: 1.25rem;
    vertical-align: text-bottom; }
    @media only screen and (max-width: 47.49em) {
      .c-navigation--cart .c-icon {
        top: 20px;
        height: 18px;
        width: 20px; } }
  @media only screen and (min-width: 47.5em) {
    .c-navigation--cart {
      top: 20px; }
      .js-sticky-header .c-navigation--cart {
        top: 10px; } }

.c-navigation__cart-btn .c-icon {
  height: 1.125rem;
  width: 0.875rem;
  vertical-align: text-bottom; }

.c-navigation__icon-btn-separator {
  background-color: #efecf0;
  content: '';
  display: inline-block;
  height: 20px;
  vertical-align: middle;
  width: 1px; }
  @media only screen and (min-width: 47.5em) {
    .c-navigation__icon-btn-separator {
      margin-left: 20px;
      margin-right: 20px; } }

.c-navigation__icon-btn--inline {
  display: inline-block;
  vertical-align: middle;
  line-height: 1; }
  @media only screen and (max-width: 47.49em) {
    .c-navigation__icon-btn--inline {
      padding: 0.9375rem 0.75rem; } }

.c-navigation__heart-btn {
  min-width: 1.75rem; }

.c-navigation__btn-cart {
  color: #3a2e2c;
  line-height: 1; }

@media only screen and (max-width: 47.49em) {
  .c-navigation__search-btn {
    position: fixed; }
    html:not(.rtl) .c-navigation__search-btn {
      left: 40px; }
    html.rtl .c-navigation__search-btn {
      right: 40px; }
    .c-navigation__search-btn + .c-navigation__icon-btn-separator {
      display: none; } }
html:not(.rtl) .c-navigation__search-btn .c-navigation__btn__label {
  padding-left: 7px; }
html.rtl .c-navigation__search-btn .c-navigation__btn__label {
  padding-right: 7px; }
@media only screen and (max-width: 53.74em) {
  .c-navigation__search-btn .c-navigation__btn__label {
    display: none; } }

.c-navigation__btn-cart:matches(:hover, :focus) .c-navigation--cart-icon {
  fill: #3300ad; }
@media only screen and (min-width: 47.5em) and (max-width: 53.74em) {
  .c-navigation__btn-cart:matches(:hover, :focus) .c-shopping-bag-label {
    border-bottom: 0; } }

/*============================================================================
Shopping bag
==============================================================================*/
.c-navigation--cart-icon--solid.c-icon {
  fill: #3300ad;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0; }

.c-navigation__cart-btn--has-items .c-navigation--cart-icon--line {
  opacity: 0; }

.c-navigation__cart-btn--has-items .c-navigation--cart-icon--solid {
  opacity: 100; }

.c-shopping-bag-icon {
  display: inline-block;
  position: relative; }

.c-shopping-bag-label {
  color: #3a2e2c;
  display: inline-block;
  font-size: 14px;
  text-align: right; }
  html:not(.rtl) .c-shopping-bag-label {
    margin-left: 5px; }
  html.rtl .c-shopping-bag-label {
    margin-right: 5px; }
  @media only screen and (min-width: 47.5em) {
    html:not(.rtl) .c-shopping-bag-label {
      margin-left: 10px; }
    html.rtl .c-shopping-bag-label {
      margin-right: 10px; } }
  @media only screen and (max-width: 47.49em) {
    .c-shopping-bag-label .c-shopping-bag-label__text {
      display: none; } }
  @media only screen and (max-width: 47.49em) {
    .c-shopping-bag-label.has-no-items .c-shopping-bag-label__number {
      display: none; } }

/*============================================================================
Header overlay
==============================================================================*/
.header-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10; }

body.is-mega-menu-open .header-overlay {
  display: block; }

/* When Overlay is open
 ========================================================================== */
html.no-document-scroll body {
  overflow: hidden; }

html.no-document-scroll .c-root {
  width: 100vw; }

html.no-document-scroll:not(.is-touch-capable):not(.rtl) body {
  /* avoid the menu/page jumping when the scrollbar disappears. */
  padding-right: 15px; }

html.rtl.no-document-scroll:not(.is-touch-capable) body {
  /* avoid the menu/page jumping when the scrollbar disappears. */
  padding-left: 15px; }

/* avoid the menu/page jumping when the scrollbar disappears. */
@media (-(-at-bp-medium)) {
  html.no-document-scroll:not(.is-touch-capable):not(.rtl) .c-footer-cta,
  html.no-document-scroll:not(.is-touch-capable):not(.rtl) .c-footer-legal {
    margin-right: -15px; } }

/* avoid the menu/page jumping when the scrollbar disappears. */
@media (-(-at-bp-medium)) {
  html.rtl.no-document-scroll:not(.is-touch-capable) .c-footer-cta,
  html.rtl.no-document-scroll:not(.is-touch-capable) .c-footer-legal {
    margin-left: -15px; } }

/* ==========================================================================
   Navigation - Mega menu
   ========================================================================== */
.c-navigation--primary {
  display: block; }
  @media only screen and (max-width: 47.49em) {
    .c-navigation--primary {
      display: none; } }

.c-navigation--primary__list {
  display: block;
  list-style: none; }

.c-navigation--primary__list-item {
  display: inline-block; }

.c-navigation__icon-arrow-down {
  display: inline-block;
  height: 0.625rem;
  width: 0.625rem; }
  @media only screen and (max-width: 47.49em) {
    .rtl .c-navigation__icon-arrow-down {
      transform: rotate(180deg); } }

.c-navigation__icon-search {
  padding: 0 1.0625rem; }
  .sidebar-menu-section--is-submenu-open .c-navigation__icon-search {
    display: none; }

.c-navigation__icon-search .u-btn__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center; }

.c-navigation__icon-search .c-icon {
  height: 1.0625rem;
  width: 1.0625rem;
  color: #3a2e2c; }

.c-navigation__icon-search .u-btn__content .u-btn__content-placeholder {
  font-weight: 100;
  color: #767676; }
  html:not(.rtl) .c-navigation__icon-search .u-btn__content .u-btn__content-placeholder {
    padding-left: 0.4375rem; }
  html.rtl .c-navigation__icon-search .u-btn__content .u-btn__content-placeholder {
    padding-right: 0.4375rem; }

.c-navigation__item--icon {
  height: 1rem;
  width: 1rem;
  color: #878787;
  transition: transform .24s; }
  .drawer-nav--expanded .c-navigation__item--icon {
    transform: rotate(180deg); }

.mobile-menu__open-drawer-right {
  display: none; }
  .sidebar-menu-section--is-submenu-open .mobile-menu__open-drawer-right {
    display: block; }

.c-navigation__control-back {
  background: none;
  border: 0 none;
  height: 2.5rem;
  min-height: inherit;
  right: 0;
  width: 2.5rem; }
  .c-navigation__control-back .c-icon {
    height: 0.625rem;
    width: 0.625rem;
    margin-right: 0.3125rem; }
  .rtl .c-navigation__control-back .c-icon {
    transform: rotate(180deg); }

.drawer__header-text {
  line-height: 2.5rem; }

.c-navigation--primary__list-item .c-navigation--primary__title-button {
  color: #3a2e2c;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
  font-size: 0.6875rem;
  padding-top: 1.25rem;
  padding-bottom: 1.725rem; }
  html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button {
    padding-right: 1.875rem; }
  html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button {
    padding-left: 1.875rem; }
  @media only screen and (min-width: 53.75em) {
    .c-navigation--primary__list-item .c-navigation--primary__title-button {
      font-size: 0.875rem; } }
  .js-sticky-header .c-navigation--primary__list-item .c-navigation--primary__title-button {
    padding-bottom: 0.9375rem; }
  .c-navigation--primary__list-item .c-navigation--primary__title-button:hover {
    color: #3300ad; }
    .c-navigation--primary__list-item .c-navigation--primary__title-button:hover .c-navigation--primary__title-button--text {
      border-bottom: solid 1px #3300ad; }
  .c-navigation--primary__list-item .c-navigation--primary__title-button:focus {
    outline: 0; }
    .c-navigation--primary__list-item .c-navigation--primary__title-button:focus .c-navigation--primary__title-button--text {
      border-bottom: solid 1px #3300ad; }
  html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button {
    padding-right: 0.35rem; }
  html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button {
    padding-left: 0.35rem; }
  @media only screen and (min-width: 53.75em) and (max-width: 68.74em) {
    .c-navigation--primary__list-item .c-navigation--primary__title-button {
      font-size: 0.75rem; }
      html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button {
        padding-right: 1.5rem; }
      html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button {
        padding-left: 1.5rem; } }
  @media only screen and (min-width: 68.75em) and (max-width: 99.99em) {
    .c-navigation--primary__list-item .c-navigation--primary__title-button {
      font-size: 0.8rem; }
      html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button {
        padding-right: 1.625rem; }
      html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button {
        padding-left: 1.625rem; } }
  @media only screen and (min-width: 100em) {
    .c-navigation--primary__list-item .c-navigation--primary__title-button {
      font-size: 0.875rem; }
      html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button {
        padding-right: 1.875rem; }
      html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button {
        padding-left: 1.875rem; } }
  @media only screen and (max-width: 53.74em) {
    html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button.is-large {
      padding-right: 0; }
    html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button.is-large {
      padding-left: 0; } }
  @media only screen and (min-width: 53.75em) and (max-width: 68.74em) {
    .c-navigation--primary__list-item .c-navigation--primary__title-button.is-large {
      font-size: 0.6875rem; }
      html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button.is-large {
        padding-right: 0.5rem; }
      html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button.is-large {
        padding-left: 0.5rem; } }
  @media only screen and (min-width: 68.75em) and (max-width: 99.99em) {
    html:not(.rtl) .c-navigation--primary__list-item .c-navigation--primary__title-button.is-large {
      padding-right: 0.75rem; }
    html.rtl .c-navigation--primary__list-item .c-navigation--primary__title-button.is-large {
      padding-left: 0.75rem; } }

.c-navigation__list-item {
  border-bottom: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  margin: 0 0 1.125rem; }

.c-navigation__link {
  border-bottom: 1px solid transparent; }

.c-navigation__link:hover:not(:focus) {
  border-bottom: 1px solid #d8d5d5; }

.c-navigation__list-item--special {
  border-bottom: 0;
  border-top: 1px solid #d8d5d5;
  display: inline-block;
  vertical-align: top;
  width: 30%; }
  html:not(.rtl) .c-navigation__list-item--special {
    margin-right: calc(3% - 4px); }
  html.rtl .c-navigation__list-item--special {
    margin-left: calc(3% - 4px); }
  .c-navigation__list-item--special .c-navigation--primary__list-heading {
    margin: 1.3125rem 0 1rem; }

.c-navigation__list-item--special-four-cols {
  border-bottom: 0;
  border-top: 1px solid #d8d5d5;
  display: inline-block;
  vertical-align: top;
  width: 30%;
  width: 22%; }
  html:not(.rtl) .c-navigation__list-item--special-four-cols {
    margin-right: calc(3% - 4px); }
  html.rtl .c-navigation__list-item--special-four-cols {
    margin-left: calc(3% - 4px); }
  .c-navigation__list-item--special-four-cols .c-navigation--primary__list-heading {
    margin: 1.3125rem 0 1rem; }

.c-navigation-mega-menu__inner.o-container, .c-navigation-mega-menu__inner.shopify-policy__container {
  padding-bottom: 2.8125rem; }
  @media only screen and (min-width: 68.75em) {
    .c-navigation-mega-menu__inner.o-container, .c-navigation-mega-menu__inner.shopify-policy__container {
      padding-left: 3.75rem;
      padding-right: 3.75rem;
      margin: 0;
      max-width: inherit; } }
  .c-navigation-mega-menu__inner.o-container.c-navigation-mega-menu--no-padding, .c-navigation-mega-menu__inner.c-navigation-mega-menu--no-padding.shopify-policy__container {
    padding: 0;
    margin: 0; }

.c-navigation__link {
  color: #3a2e2c;
  display: inline-block;
  position: relative; }
  .c-navigation__list-item .c-navigation__link {
    font-weight: 100; }

.c-navigation--primary__list-heading {
  color: #3a2e2c;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  margin: 1.3125rem 0;
  font-weight: 400; }
  html:not(.rtl) .c-navigation--primary__list-heading {
    text-align: left; }
  html.rtl .c-navigation--primary__list-heading {
    text-align: right; }

.c-navigation-featured-content--secondary {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center; }

.c-navigation-featured-content__heading {
  font-size: 1.5rem;
  font-weight: 100;
  line-height: 1.875rem;
  margin: 1.25rem 0 0.75rem; }

.c-navigation-mega-menu {
  position: absolute;
  height: 0px;
  left: 0;
  right: 0;
  top: inherit;
  visibility: hidden;
  margin: 0 -2.8125rem;
  width: auto;
  z-index: 114;
  border-top: solid 1px #eeeeee;
  max-height: 100vh;
  overflow-y: auto;
  background-color: #ffffff; }
  @media only screen and (min-width: 68.75em) {
    .c-navigation-mega-menu {
      margin-left: -3.75rem;
      margin-right: -3.75rem; } }

.c-navigation-mega-menu ul {
  list-style: none;
  margin: 0; }
  .c-navigation-mega-menu ul.grid__item {
    padding: 0; }
  .c-navigation-mega-menu ul.grid__item--secondary {
    padding: 0 1.25rem; }

.c-navigation-mega-menu__inner {
  -ms-transform: translate(0, -25px);
  -webkit-transform: translate(0, -25px);
  transform: translate(0, -25px);
  opacity: 1;
  margin-top: 0.625rem; }

.c-navigation-mega-menu--is-open {
  height: auto;
  visibility: visible; }
  .c-navigation-mega-menu--is-open .c-navigation-mega-menu__inner {
    opacity: 1;
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.5s cubic-bezier(0.33, 0.59, 0.14, 1);
    transition-delay: 0.2s; }

.c-navigation__icon-hamburger {
  padding: 0.9375rem 0.75rem;
  position: absolute;
  top: 0; }
  html:not(.rtl) .c-navigation__icon-hamburger {
    left: 0; }
  html.rtl .c-navigation__icon-hamburger {
    right: 0; }
  .c-navigation__icon-hamburger .c-icon {
    height: 1.125rem;
    width: 1.125rem; }
  @media only screen and (min-width: 47.5em) {
    .c-navigation__icon-hamburger {
      display: none; } }

.c-navigation__kids-wrapper {
  position: relative; }
  .c-navigation__kids-wrapper img {
    display: block; }

.c-navigation__kids-liks {
  position: absolute;
  padding: 2rem;
  top: 0; }
  html:not(.rtl) .c-navigation__kids-liks {
    left: 0; }
  html.rtl .c-navigation__kids-liks {
    right: 0; }
  .c-navigation__kids-liks h1, .c-navigation__kids-liks .h1 {
    font-size: 1.625rem;
    font-weight: 100;
    margin: 0;
    padding: 0 0 0.875rem 0; }
  .c-navigation__kids-liks a, .drawer-nav__item .c-navigation__kids-liks a {
    border-bottom: solid 1px #3a2e2c;
    color: #3a2e2c;
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 0;
    display: inline; }
    .c-navigation__kids-liks a:hover, .drawer-nav__item .c-navigation__kids-liks a:hover {
      color: #3300ad;
      border-color: #3300ad; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.c-annoucement-bar-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0; }
  @media only screen and (max-width: 47.49em) {
    .c-annoucement-bar-container {
      position: relative; } }

.c-header-announcement {
  color: #3300ad;
  left: 0;
  position: absolute;
  max-width: 19.375rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  z-index: 76; }
  html:not(.rtl) .c-header-announcement {
    left: 0; }
  html.rtl .c-header-announcement {
    right: 0; }
  .c-header-announcement .c-header-announcement__message {
    color: #3300ad; }
  .c-header-announcement .u-link {
    display: inline-block;
    font-size: 12px;
    font-weight: normal; }
    html:not(.rtl) .c-header-announcement .u-link {
      margin-left: 10px; }
    html.rtl .c-header-announcement .u-link {
      margin-right: 10px; }
    .c-header-announcement .u-link:not(:hover) {
      color: #3a2e2c; }
  @media only screen and (max-width: 47.49em) {
    .c-header-announcement {
      font-size: 0.75rem;
      line-height: 0.8125rem;
      background-color: #e5e5e5;
      padding: 0.625rem 0.9375rem 0.625rem 0.625rem;
      text-align: center;
      z-index: 40;
      position: relative;
      max-width: initial; } }
  @media only screen and (min-width: 53.75em) {
    .c-header-announcement {
      max-width: 35.625rem; } }

/* ==========================================================================
   Language selector
   ========================================================================== */
.ly-custom-760 .ly-custom-dropdown-switcher.ly-bright-theme {
  font-size: 0.79rem;
  line-height: 1.25rem;
  color: #3a2e2c;
  position: relative;
  padding-top: 5px; }
  html:not(.rtl) .ly-custom-760 .ly-custom-dropdown-switcher.ly-bright-theme {
    padding-left: 10px; }
  html.rtl .ly-custom-760 .ly-custom-dropdown-switcher.ly-bright-theme {
    padding-right: 10px; }
  html:not(.rtl) .ly-custom-760 .ly-custom-dropdown-switcher.ly-bright-theme {
    padding-right: 0; }
  html.rtl .ly-custom-760 .ly-custom-dropdown-switcher.ly-bright-theme {
    padding-left: 0; }
.rtl .ly-custom-760 .ly-custom-dropdown-current-inner-text {
  margin-left: 10px;
  margin-right: 0; }
.ly-custom-760 .ly-arrow-black {
  background-size: 10px;
  background-position: center;
  height: 10px;
  width: 10px; }

.ly-is-open .ly-custom-dropdown-list {
  padding: 8px 10px 10px !important;
  border: 1px solid #efecf0;
  top: 30px;
  width: 150%; }
  html:not(.rtl) .ly-is-open .ly-custom-dropdown-list {
    left: -50%; }
  html.rtl .ly-is-open .ly-custom-dropdown-list {
    right: -50%; }
  .ly-is-open .ly-custom-dropdown-list .ly-custom-dropdown-list-element {
    padding: 5px 0 !important; }
    .rtl .ly-is-open .ly-custom-dropdown-list .ly-custom-dropdown-list-element {
      text-align: right; }
    .ly-is-open .ly-custom-dropdown-list .ly-custom-dropdown-list-element .ly-custom-dropdown-list-element-right {
      border-bottom: 1px solid transparent; }
    .ly-is-open .ly-custom-dropdown-list .ly-custom-dropdown-list-element:hover .ly-custom-dropdown-list-element-right {
      border-bottom: 1px solid #d8d5d5; }

html:not(.rtl) .ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 {
  padding-left: 20px; }
html.rtl .ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 {
  padding-right: 20px; }
.ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 li {
  display: inline-block;
  margin: 1rem 0;
  padding: 0 10px; }
  html:not(.rtl) .ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 li {
    border-left: 1px solid #d8d5d5; }
  html.rtl .ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 li {
    border-right: 1px solid #d8d5d5; }
  html:not(.rtl) .ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 li:first-child {
    border-left: none;
    padding-left: 0; }
  .rtl .ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 li:first-child {
    border-right: none;
    padding-right: 0;
    padding-left: 10px; }
.ly-custom-0 .ly-languages-switcher.ly-breakpoint-1 .ly-languages-switcher-link.current_lang {
  font-weight: 500;
  border-bottom: 1px solid #d8d5d5; }

/*================ Action Bar ================*/
/*================ Search Bar ================*/
.search-bar {
  color: #1a1a1a;
  background-color: #f5f3f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 170px;
  padding: 0 10px; }

.search-bar__table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 170px; }

.search-bar__table-cell {
  display: table-cell;
  vertical-align: middle; }

.supports-fontface .search-bar__icon-cell {
  width: 40px; }
  @media only screen and (max-width: 34.365em) {
    .supports-fontface .search-bar__icon-cell {
      width: 20px; } }

.search-bar__form {
  width: 90%; }
  html:not(.rtl) .search-bar__form input {
    padding-left: 40px; }
  html.rtl .search-bar__form input {
    padding-right: 40px; }
  html:not(.rtl) .search-bar__form .input-group label {
    left: 40px; }
  html.rtl .search-bar__form .input-group label {
    right: 40px; }
  .rtl .search-bar__form .input-group label {
    text-align: right; }

.search-bar__input {
  color: #3a2e2c;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.875rem;
  width: 100%;
  padding: 0 10px 0.75rem;
  outline: none;
  border-bottom: 1px solid #bab6b5; }
  .search-bar__input::-webkit-input-placeholder {
    color: #1a1a1a;
    opacity: 0.8; }
  .search-bar__input::-moz-placeholder {
    color: #1a1a1a;
    opacity: 0.8; }
  .search-bar__input:-ms-input-placeholder {
    color: #1a1a1a;
    opacity: 0.8; }
  .search-bar__input:focus {
    border-bottom: 2px solid #3300ad; }

.search-bar__icon-button {
  background: none;
  border: none;
  display: inline-block;
  color: #1a1a1a;
  padding: 0 10px; }

.search-bar__submit {
  margin-top: -20px;
  position: absolute;
  z-index: 10; }
  html:not(.rtl) .search-bar__submit {
    margin-left: 30px; }
  html.rtl .search-bar__submit {
    margin-right: 30px; }
  @media only screen and (max-width: 34.365em) {
    html:not(.rtl) .search-bar__submit {
      margin-left: 10px; }
    html.rtl .search-bar__submit {
      margin-right: 10px; } }
  .search-bar__submit svg {
    width: 1.3125rem; }

.search-bar__close {
  top: 20px;
  position: absolute;
  z-index: 10; }
  html:not(.rtl) .search-bar__close {
    margin-left: -30px; }
  html.rtl .search-bar__close {
    margin-right: -30px; }
  .search-bar__close svg {
    width: 1rem; }

/*================ Product Item ================*/
.product-item__link-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative; }
  .no-js .product-item__link-wrapper {
    text-align: center; }

.product-item__link {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 120px;
  overflow: hidden;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  color: #666666; }
  .product-item__link:hover, .product-item__link:focus {
    opacity: 1; }
  .product-item__link p {
    margin: 0 15px 2px 15px; }
    .product-item__link p:last-child {
      margin-bottom: 0; }
  .product-item__link .product-item__image-wrapper {
    position: relative;
    height: 0;
    display: block;
    width: 100%;
    padding-top: 127% !important; }

.product-item__image-container {
  position: relative;
  margin: 0 auto; }

.product-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto 20px;
  transition: transform .625s; }
  .product-item__link:hover .product-item__image {
    transform: scale(1.05); }
  .product-item__image-container--loading .product-item__image {
    opacity: 0; }

.product-item__image-no-js {
  margin: 0 auto; }

.product-item__image--margins {
  margin: 30px; }
  @media only screen and (max-width: 34.365em) {
    .product-item__image--margins {
      margin-bottom: 0; } }

.product-item__meta {
  position: absolute;
  bottom: 8px;
  font-size: 0.75rem;
  line-height: 0.875rem;
  width: calc(100% - 0.625rem);
  font-weight: 400;
  color: #3a2e2c;
  display: block;
  outline: 0; }
  html:not(.rtl) .product-item__meta {
    left: 10px; }
  html.rtl .product-item__meta {
    right: 10px; }

.product-item__title {
  font-weight: 100;
  font-size: 0.875rem;
  line-height: 1.125rem; }

.product-item__price-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

s.product-item__price--reg {
  position: relative;
  text-decoration: none; }
  s.product-item__price--reg:after {
    border-bottom: 1px solid #767676;
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    transform: skewY(11deg);
    width: 100%; }

.product-item__price--sale {
  color: #c60a00; }
  html:not(.rtl) .product-item__price--sale {
    margin-left: 5px; }
  html.rtl .product-item__price--sale {
    margin-right: 5px; }

.product-item__sold-out {
  color: #c60a00; }

/*================ Availability badges ================*/
.product-item__badge {
  position: absolute;
  top: -26px;
  right: -94px;
  width: 200px;
  padding: 40px 4px 4px;
  text-align: center;
  background-color: #dac08e;
  color: white;
  font-size: 0.8125em;
  font-weight: 700;
  -ms-transform: rotate(45deg) translateZ(0);
  -webkit-transform: rotate(45deg) translateZ(0);
  transform: rotate(45deg) translateZ(0); }

.product-item__badge--large {
  top: -10px;
  right: -75px;
  width: 200px; }

/*================ Articles ================*/
/*================ Articles ================*/
.article-meta {
  margin-bottom: 20px; }
  .article-meta li + li {
    position: relative;
    padding-left: 18px;
    margin-left: 10px; }
    .article-meta li + li:before {
      content: '\2022';
      display: block;
      position: absolute;
      left: 0; }

/*================ Comments ================*/
/*================ Comments ================*/
.comment-list {
  margin: 0 0 20px;
  padding: 0; }

.comment {
  list-style: none;
  padding: 0;
  margin: 0 0 40px; }

.comment__content p:last-child {
  margin-bottom: 10px; }

.comment__textarea {
  min-height: 150px; }

@media only screen and (max-width: 34.365em) {
  .comments-wrapper :target {
    padding-top: 50px; } }
/*================ Rich text section ================*/
/*================ Rich text section ================*/
.rich-text__text--large {
  font-size: 1.125em; }

.rich-text__text--small {
  font-size: 0.875em; }

/*================ Social Sharing ================*/
.social-sharing {
  margin-left: -10px;
  margin-top: 20px;
  margin-bottom: 20px; }

.social-icons--drawer {
  margin-top: 30px; }
  @media only screen and (max-width: 47.49em) {
    .social-icons--drawer {
      margin-left: 10px; } }

.social-sharing a {
  display: inline-block;
  border: 1px solid #eeeeee;
  color: #666666;
  padding: 10px 15px;
  margin-left: 10px;
  margin-bottom: 10px; }
  .social-sharing a .icon {
    margin-right: 5px; }

.share-facebook .icon {
  color: #3b5998; }
.share-facebook .icon {
  color: #3b5998; }
.share-twitter .icon {
  color: #00aced; }
.share-pinterest .icon {
  color: #cb2027; }

/*============================================================================
  Drawers
==============================================================================*/
/*============================================================================
  Drawer skeleton
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.js-drawer-open {
  overflow: hidden; }

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  bottom: 0;
  z-index: 100;
  color: #1a1a1a;
  background-color: white;
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }

.drawer--left,
.drawer--right {
  top: 0;
  max-width: 95%; }

.drawer--left {
  width: 85vw;
  min-width: 300px; }
  html:not(.rtl) .drawer--left {
    left: -300px; }
  html.rtl .drawer--left {
    right: -300px; }
  html:not(.rtl) .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
  .rtl .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
  .drawer--left button {
    outline: 0; }

.drawer--right {
  width: 27.75rem; }
  html:not(.rtl) .drawer--right {
    right: -27.75rem; }
  html.rtl .drawer--right {
    left: -27.75rem; }
  html:not(.rtl) .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-27.75rem);
    -webkit-transform: translateX(-27.75rem);
    transform: translateX(-27.75rem); }
  .rtl .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(27.75rem);
    -webkit-transform: translateX(27.75rem);
    transform: translateX(27.75rem); }
  @media only screen and (max-width: 34.365em) {
    .drawer--right {
      max-width: 100%; } }
  .drawer--right .drawer__close {
    float: right;
    height: 49px; }

.drawer--top {
  width: 100%;
  height: 170px;
  top: -170px;
  padding: 0;
  background-color: #f5f3f5;
  overflow-y: hidden; }
  .js-drawer-open-top .drawer--top {
    display: block;
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }

.drawer__right {
  position: absolute;
  background-color: #ffffff;
  top: 49px;
  bottom: 0;
  overflow: auto;
  padding: 10px;
  right: 0;
  left: 100vw;
  right: -100vw;
  transition: all 0.5s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .sidebar-menu-section--is-submenu-open .drawer__right {
    left: 0;
    right: 0; }

.drawer__left {
  background-color: #efecf0;
  transition: all 0.5s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .sidebar-menu-section--is-submenu-open .drawer__left {
    left: -100vw;
    right: 100vw; }

#PageContainer {
  overflow: hidden; }

.drawer-page-content:after {
  visibility: hidden;
  opacity: 0;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .js-drawer-open .drawer-page-content:after {
    visibility: visible;
    opacity: 1; }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__title {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.0625em;
  width: 100%; }

.drawer__close-button {
  background: none;
  border: 0 none;
  height: 2.5rem;
  min-height: inherit;
  right: 0;
  top: 5px;
  width: 2.5rem; }
  .drawer__close-button svg {
    height: 0.8125rem;
    width: 0.8125rem; }
  .drawer--left .drawer__close-button {
    right: auto;
    left: -15px; }
  .drawer--product .drawer__close-button {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    z-index: 2; }

/*================ Drawer loader ================*/
.supports-csstransforms .drawer--is-loading .drawer__cart {
  min-height: 100px; }
  .supports-csstransforms .drawer--is-loading .drawer__cart:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 40px;
    margin-left: -12px;
    border-radius: 50%;
    border: 3px solid #f2f2f2;
    border-top-color: transparent;
    -webkit-animation: spin 1s infinite linear;
    -moz-animation: spin 1s infinite linear; }

/*============================================================================
  Theme-specific drawer styles
==============================================================================*/
.drawer input[type="text"],
.drawer textarea {
  background-color: white;
  color: #666666; }
.drawer .ajaxcart__note {
  background-color: #f4f4f4; }
.drawer a {
  color: #1a1a1a; }
  .drawer a:hover, .drawer a:focus {
    opacity: 0.7; }

.drawer__header {
  position: absolute;
  background-color: #FFFFFF;
  top: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  height: 49px;
  width: 100%;
  border-bottom: 1px solid #e5e5e5; }
  .sidebar-menu-section--is-submenu-open .drawer__header {
    border-bottom: 1px solid transparent; }

.drawer__inner {
  position: absolute;
  top: 49px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  @media only screen and (min-width: 68.75em) {
    .drawer__inner {
      padding-left: 20px;
      padding-right: 20px; } }
  .drawer--has-fixed-footer .drawer__inner {
    overflow: hidden; }
  .drawer--product .drawer__inner {
    top: 0; }

/*================ Drawer Cart ===============*/
.ajaxcart__header {
  padding: 1.875rem 1.875rem 0.9375rem;
  height: 95px; }
  @media only screen and (max-width: 34.365em) {
    .ajaxcart__header {
      padding: 1.875rem 0.9375rem 0.9375rem; } }
  .ajaxcart__header .o-close-button {
    border: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    justify-content: center;
    position: absolute;
    top: 0; }
    html:not(.rtl) .ajaxcart__header .o-close-button {
      right: 0; }
    html.rtl .ajaxcart__header .o-close-button {
      left: 0; }
  .ajaxcart__header .o-close-button .c-icon {
    fill: #7f7776;
    height: 1.25rem;
    margin: 1.25rem;
    width: 1.25rem; }

.ajaxcart__bottom {
  top: 95px;
  padding-left: 1.875rem;
  padding-right: 1.875rem; }
  @media only screen and (max-width: 34.365em) {
    .ajaxcart__bottom {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }

.ajaxcart__header-title {
  font-size: 1.3125rem;
  font-weight: 100;
  line-height: 1.3125rem;
  padding: 0; }
  .ajaxcart__header-title span {
    display: inline-block; }

.ajaxcart__inner {
  margin-bottom: 20px; }

.ajaxcart__inner--has-fixed-footer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0 10px;
  bottom: 130px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
  @media only screen and (min-width: 68.75em) {
    .ajaxcart__inner--has-fixed-footer {
      padding: 0 20px; } }

.ajaxcart__checkout-wrapper {
  padding-top: 20px;
  padding-bottom: 100px; }

.cart__checkout {
  position: absolute;
  z-index: 100;
  background-color: #3300ad;
  width: calc(100% - (2 * 1.875rem)); }
  @media only screen and (max-width: 34.365em) {
    .cart__checkout {
      width: calc(100% - (2 * 0.9375rem)); } }

/*================ Drawer rows and products ================*/
.ajaxcart__inner {
  color: #3a2e2c; }
  .ajaxcart__inner a {
    color: #3a2e2c; }

.ajaxcart__row {
  position: relative;
  max-height: 500px; }
  .ajaxcart__row.is-removed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visiblity: hidden;
    backface-visiblity: hidden; }

.ajaxcart__product {
  padding-bottom: 20px; }

.ajaxcart__product-image {
  display: block;
  overflow: hidden; }
  .ajaxcart__product-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.ajaxcart__product-name {
  font-size: 1rem;
  font-weight: 100; }

.ajaxcart__product-meta, .ajaxcart__product-meta--warning {
  font-size: 0.75rem;
  font-weight: 100;
  line-height: 1.125rem;
  color: #767676; }

.ajaxcart__product-meta--warning {
  color: #c60a00; }

.ajaxcart__product-name,
.ajaxcart__product-meta {
  display: block; }

.ajaxcart__price {
  font-size: 1rem;
  font-weight: 100;
  color: #767676;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  -o-align-items: baseline;
  align-items: baseline;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end; }
  .ajaxcart__price del {
    position: relative;
    text-decoration: none; }
    .ajaxcart__price del:after {
      border-bottom: 1px solid #767676;
      content: "";
      left: 0;
      position: absolute;
      top: 50%;
      transform: skewY(11deg);
      width: 100%; }
  .ajaxcart__price span, .ajaxcart__price del {
    white-space: nowrap;
    line-height: 1em; }

.ajaxcart__remove {
  margin-top: 0.125rem;
  color: #7f7776;
  order: 1; }
  html:not(.rtl) .ajaxcart__remove {
    margin-left: 0.625rem; }
  html.rtl .ajaxcart__remove {
    margin-right: 0.625rem; }
  .ajaxcart__remove svg {
    width: 12px;
    height: 12px; }

.ajaxcart__price-on-sale {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 0.4rem; }

.price-per-unit {
  font-size: 0.75rem;
  display: block; }

.ajaxcart__discount {
  color: #c60a00; }
  html:not(.rtl) .ajaxcart__discount {
    margin-left: 0.5rem; }
  html.rtl .ajaxcart__discount {
    margin-right: 0.5rem; }

.ajaxcart__product-name-wrapper,
.ajaxcart__product-name {
  margin-bottom: 5px; }

html:not(.rtl) .ajaxcart__product-name-wrapper {
  padding-left: 10px; }
html.rtl .ajaxcart__product-name-wrapper {
  padding-right: 10px; }

.ajaxcart__subtotal {
  margin-bottom: 20px; }

.ajaxcart__discounts {
  margin-bottom: 20px; }

.ajaxcart__subtotal-title {
  margin-bottom: 0;
  color: #1a1a1a;
  font-weight: 100;
  font-size: 1rem; }

.ajaxcart__subtotal-price {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem; }
  .ajaxcart__subtotal-price span {
    white-space: nowrap; }

.ajaxcart__policies {
  margin-bottom: 45px;
  font-size: 0.75rem;
  line-height: 0.8125rem;
  font-weight: 100;
  color: #767676; }

.ajaxcart__product-image-wrapper {
  position: relative;
  display: block;
  overflow: hidden; }
  .ajaxcart__product-image-wrapper:before {
    content: "";
    display: block;
    padding-top: 100%; }

.ajaxcart__product-image-content {
  height: 100%;
  position: absolute;
  top: -26%; }

.ajaxcart__qty-error-wrapper {
  margin-top: 0.5rem; }
  .ajaxcart__qty-error-wrapper .qty-error {
    font-size: 0.8rem; }

/*================ Drawer Nav ================*/
.drawer-nav {
  font-weight: 100;
  padding: 0;
  margin: -10px -10px 0; }
  @media only screen and (min-width: 68.75em) {
    .drawer-nav {
      margin-left: -20px;
      margin-right: -20px; } }
  .drawer-nav li {
    margin-bottom: 0;
    list-style: none; }

.drawer-nav--expanded {
  font-weight: 500; }

.drawer-nav__search {
  padding: 10px; }

.drawer-nav__item {
  display: block;
  background-color: white; }
  .drawer-nav__item--expanded .drawer-nav__item {
    background-color: #efecf0; }
  html:not(.rtl) .drawer__left .drawer-nav__item, html:not(.rtl) .drawer-nav__item .drawer-nav__item {
    padding-left: 20px; }
  .rtl .drawer__left .drawer-nav__item, .rtl .drawer-nav__item .drawer-nav__item {
    padding-right: 20px; }

.drawer-nav__item--expanded {
  background-color: #efecf0; }

.social-icons--drawer a {
  color: #1a1a1a; }
@media only screen and (max-width: 34.365em) {
  .social-icons--drawer {
    margin-left: 10px; } }

.drawer-nav__item a,
.drawer-nav__toggle button {
  color: #1a1a1a;
  padding: 1.3125rem 0;
  text-decoration: none; }
  .drawer-nav__item a:active,
  .drawer-nav__toggle button:active {
    color: black;
    background-color: #f2f2f2; }

.drawer-nav__item a {
  display: block;
  font-size: 1.25em; }

.drawer-nav__triggerL1 a {
  display: inline;
  font-size: 1em; }

.drawer-nav__link {
  margin-bottom: 0; }

.drawer-nav__toggle-button {
  background: none;
  border: none; }
  html:not(.rtl) .drawer-nav__toggle-button {
    margin-right: 15px; }
  html.rtl .drawer-nav__toggle-button {
    margin-left: 15px; }

.drawer-nav__item--border-bottom, .drawer__left .drawer-nav__item {
  border-bottom: 1px solid #efecf0; }

.drawer__left .drawer-nav__item--secondary {
  background-color: #efecf0;
  border-bottom: solid 1px #d8d5d5; }
  .drawer__left .drawer-nav__item--secondary a {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.6;
    padding: 1.3125rem 0; }

.drawer-nav__spacer {
  height: 20px; }

.drawer-nav__has-sublist {
  display: table;
  width: 100%; }
  .drawer-nav__has-sublist .drawer-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.drawer-nav__text {
  display: table-cell;
  vertical-align: middle; }
  .drawer-nav__text a {
    display: none; }
  .drawer-nav--expanded .drawer-nav__text a {
    display: inline; }
  .drawer-nav--expanded .drawer-nav__text span {
    display: none; }

.drawer-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.drawer-nav__sublist {
  font-weight: 100;
  margin: 0;
  padding: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden; }
  .drawer-nav--expanded + .drawer-nav__sublist {
    visibility: visible;
    max-height: 1000px; }
  .drawer-nav__sublist.drawer-nav__sublist--is-visible {
    visibility: visible;
    max-height: 1000px;
    margin-bottom: 20px; }
  .drawer-nav__sublist .drawer-nav__link {
    font-size: 1rem;
    font-weight: 100;
    padding: 1.3125rem 0; }

.drawer-nav__item--expanded .drawer-nav__link {
  border-bottom: 1px solid #e5e5e5;
  color: #3a2e2c;
  font-size: 0.9375rem; }

.drawer-nav__sublist--inner .drawer-nav__link {
  color: rgba(26, 26, 26, 0.65); }

/*============================================================================
  Quantity selectors
==============================================================================*/
/*============================================================================
  Quantity selectors
  - js-qty replaces input[type="number"] where it's used
  - ajaxcart__qty is used solely in the drawer
==============================================================================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 10px;
  width: 50px;
  overflow: visible; }
  .js-qty input[type="text"], .ajaxcart__qty input[type="text"] {
    display: block;
    text-align: center;
    width: 100%;
    padding: 2px 20px;
    color: #1a1a1a;
    border-bottom: solid 1px #bab6b5;
    border-radius: 0;
    font-weight: 100;
    background-color: white; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  background: none;
  text-align: center;
  overflow: hidden;
  line-height: 1;
  transition: all 0.2s ease-out;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-backface-visiblity: hidden;
  backface-visiblity: hidden; }
  .js-qty__adjust .icon, .ajaxcart__qty-adjust .icon {
    font-size: 8px;
    vertical-align: middle; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover {
    background-color: #e2e2e2; }
  .js-qty__adjust:active, .ajaxcart__qty-adjust:active {
    background-color: #dbdbdb; }

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  border-radius: 0 2px 2px 0;
  padding: 0 0 0 8px; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  border-radius: 2px 0 0 2px;
  padding: 0 8px 0 0; }

/*================ Quantity Selectors in Ajax Cart ================*/
html:not(.rtl) .ajaxcart__qty-wrapper {
  margin-left: 10px; }
html.rtl .ajaxcart__qty-wrapper {
  margin-right: 10px; }

.ajaxcart__qty {
  margin: 0;
  width: 60px; }
  .is-loading .ajaxcart__qty {
    opacity: 0.5;
    transition: none; }

.ajaxcart__qty-adjust {
  color: #666666; }
  .ajaxcart__qty-adjust:hover {
    background-color: #d9d9d9; }
  .ajaxcart__qty-adjust:active {
    background-color: #d9d9d9; }

/*============================================================================
  PDP
==============================================================================*/
/*================ Product details wrapper ================*/
.o-container.pdp__container, .pdp__container.shopify-policy__container {
  background-color: white; }
  @media only screen and (max-width: 47.49em) {
    .o-container.pdp__container, .pdp__container.shopify-policy__container {
      padding: 0;
      margin: 0;
      overflow: hidden; } }

.pdp__wrapper {
  position: relative;
  z-index: 10;
  overflow: hidden; }
  @media only screen and (min-width: 47.5em) and (max-width: 53.74em) {
    .pdp__wrapper {
      padding-bottom: 200px; } }

.pdp__wrapper-img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0; }
  @media only screen and (min-width: 47.5em) {
    .pdp__wrapper-img {
      padding: 0 2.8125rem; } }
  @media only screen and (min-width: 53.75em) {
    .pdp__wrapper-img {
      display: none; } }
  .pdp__wrapper-img img {
    max-width: initial;
    width: 1000px; }
    @media only screen and (min-width: 47.5em) {
      .pdp__wrapper-img img {
        max-width: 100%; } }

.pdp__breadcrubms {
  padding: 1rem 0; }
  .pdp__breadcrubms a, .pdp__breadcrubms a:visited, .pdp__breadcrubms span {
    font-size: 0.75rem;
    line-height: 1.125rem;
    font-weight: 100;
    color: #3a2e2c;
    display: inline-block; }
  @media only screen and (max-width: 53.74em) {
    .pdp__breadcrubms {
      background-color: #efecf0;
      position: relative;
      z-index: 10;
      border-bottom: solid 1px #e5e5e5;
      text-align: center; } }

.pdp__breadcrumbs-current a {
  font-weight: normal; }

.pdp__breadcrumbs-separator {
  margin: 0 10px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 100; }

.pdp__carousel {
  width: 100%;
  position: relative;
  background: #efecf0; }
  .pdp__carousel img:not(.noscript-img) {
    position: absolute;
    display: block; }
  .pdp__carousel .slick-prev, .pdp__carousel .slick-next {
    position: absolute;
    bottom: 37px;
    outline: none;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: transparent;
    width: 20px;
    height: 20px;
    line-height: 20px; }
    html:not(.rtl) .pdp__carousel .slick-prev, html:not(.rtl) .pdp__carousel .slick-next {
      left: 40px; }
    html.rtl .pdp__carousel .slick-prev, html.rtl .pdp__carousel .slick-next {
      right: 40px; }
    @media only screen and (max-width: 34.365em) {
      .pdp__carousel .slick-prev, .pdp__carousel .slick-next {
        bottom: 17px; }
        html:not(.rtl) .pdp__carousel .slick-prev, html:not(.rtl) .pdp__carousel .slick-next {
          left: 17px; }
        html.rtl .pdp__carousel .slick-prev, html.rtl .pdp__carousel .slick-next {
          right: 17px; } }
    .pdp__carousel .slick-prev:before, .pdp__carousel .slick-next:before {
      content: '<';
      font-weight: 100;
      color: #aaaaaa;
      font-size: 1.4rem; }
  html:not(.rtl) .pdp__carousel .slick-next {
    left: 70px; }
  html.rtl .pdp__carousel .slick-next {
    right: 70px; }
  @media only screen and (max-width: 34.365em) {
    html:not(.rtl) .pdp__carousel .slick-next {
      left: 55px; }
    html.rtl .pdp__carousel .slick-next {
      right: 55px; } }
  .pdp__carousel .slick-next:before {
    content: '>'; }
  .pdp__carousel .slick-dots {
    position: absolute;
    bottom: 37px; }
    html:not(.rtl) .pdp__carousel .slick-dots {
      left: 100px; }
    html.rtl .pdp__carousel .slick-dots {
      right: 100px; }
    html:not(.rtl) .pdp__carousel .slick-dots {
      text-align: left; }
    html.rtl .pdp__carousel .slick-dots {
      text-align: right; }
    @media only screen and (max-width: 34.365em) {
      .pdp__carousel .slick-dots {
        bottom: 17px; }
        html:not(.rtl) .pdp__carousel .slick-dots {
          left: 90px; }
        html.rtl .pdp__carousel .slick-dots {
          right: 90px; } }
    .pdp__carousel .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0 10px;
      padding: 2px;
      cursor: pointer; }
    .pdp__carousel .slick-dots li button {
      font-size: 0;
      line-height: 0;
      display: block;
      width: 2px;
      height: 2px;
      padding: 2px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background-color: #aaaaaa;
      border: solid 1px #aaaaaa;
      border-radius: 50%; }
    .pdp__carousel .slick-dots li.slick-active {
      padding: 0; }
      .pdp__carousel .slick-dots li.slick-active button {
        width: 3px;
        height: 3px;
        padding: 3px;
        border: solid 2px black;
        background-color: transparent; }

@media only screen and (min-width: 68.75em) {
  .pdp__carousel--has-thumbnails .slick-dots {
    display: none !important; } }
@media only screen and (min-width: 68.75em) {
  .pdp__carousel--has-thumbnails .slick-prev, .pdp__carousel--has-thumbnails .slick-next {
    display: none !important; } }

.pdp___carousel-thumbnails {
  display: none; }
  @media only screen and (min-width: 68.75em) {
    .pdp___carousel-thumbnails {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      z-index: 20; } }

.pdp___carousel-thumbnail {
  margin: 0.5rem 0.5rem 0 1px;
  width: 62px;
  height: 62px; }
  .pdp___carousel-thumbnail.active img {
    border-bottom: 1px solid black; }
  .pdp___carousel-thumbnail:hover {
    cursor: pointer; }

.pdp___carousel-thumbnail-button {
  height: 100%;
  width: 100%; }
  .pdp___carousel-thumbnail-button:focus {
    outline: 1px dotted black;
    outline-offset: 0; }

@media only screen and (min-width: 68.75em) {
  .pdp__main-details-wrapper {
    position: absolute;
    top: 0;
    bottom: 0; }
    html:not(.rtl) .pdp__main-details-wrapper {
      right: 0; }
    html.rtl .pdp__main-details-wrapper {
      left: 0; } }
@media only screen and (max-width: 53.74em) {
  :not(.rtl) .grid.grid--no-gutters > .pdp__main-details-wrapper, .rtl .grid.grid--no-gutters > .pdp__main-details-wrapper {
    padding: 40px; } }
@media only screen and (max-width: 34.365em) {
  :not(.rtl) .grid.grid--no-gutters > .pdp__main-details-wrapper, .rtl .grid.grid--no-gutters > .pdp__main-details-wrapper {
    padding: 20px; } }

.pdp__main-details {
  padding: 30px;
  background: white;
  width: 100%;
  position: relative;
  z-index: 0; }
  .pdp__main-details h1, .pdp__main-details .h1 {
    font-size: 32px;
    font-weight: 100;
    margin: 0;
    padding: 0; }
  @media only screen and (min-width: 68.75em) {
    .pdp__main-details {
      width: 85%;
      position: absolute;
      z-index: 100; } }

@media only screen and (max-width: 47.49em) {
  .pdp__main-details-right {
    display: none; } }
@media only screen and (min-width: 53.75em) {
  .pdp__main-details-right {
    display: none; } }

.pdp__carousel-secondary-details {
  padding: 30px; }
  html:not(.rtl) .pdp__carousel-secondary-details {
    padding-left: 0; }
  html.rtl .pdp__carousel-secondary-details {
    padding-right: 0; }
  @media only screen and (max-width: 68.74em) {
    .pdp__carousel-secondary-details {
      display: none; } }

.pdp__secondary-details-wrapper {
  padding: 40px;
  position: relative;
  overflow: hidden;
  padding-bottom: 300px; }
  @media only screen and (min-width: 68.75em) {
    .pdp__secondary-details-wrapper {
      display: none; } }
  @media only screen and (min-width: 47.5em) and (max-width: 53.74em) {
    .pdp__secondary-details-wrapper {
      display: none; } }
  @media only screen and (max-width: 47.49em) {
    .pdp__secondary-details-wrapper {
      padding: 0;
      margin-top: 200px; } }

.pdp__secondary-details {
  padding: 30px;
  background: white;
  position: relative;
  z-index: 10; }

.pdp__secondary-details-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }
  @media only screen and (max-width: 47.49em) {
    .pdp__secondary-details-img {
      display: none; } }
  .pdp__secondary-details-img img {
    min-width: 100%; }

.pdp__main-details-img {
  top: 200px;
  position: relative;
  display: block;
  width: 100%;
  height: 2000px;
  z-index: 0; }
  .pdp__main-details-img img {
    height: 800px;
    max-width: initial;
    display: block; }
  @media only screen and (max-width: 68.74em) {
    .pdp__main-details-img {
      display: none; } }

@media only screen and (min-width: 47.5em) and (max-width: 53.74em) {
  .grid--no-gutters .pdp__main-details-left {
    padding-top: 15px; }
    html:not(.rtl) .grid--no-gutters .pdp__main-details-left {
      padding-right: 30px; }
    html.rtl .grid--no-gutters .pdp__main-details-left {
      padding-left: 30px; } }

html:not(.rtl) .pdp__main-details-right {
  border-left: solid 1px #e5e5e5; }
html.rtl .pdp__main-details-right {
  border-right: solid 1px #e5e5e5; }

.pdp__carousel-secondary-details,
.pdp__main-details-right,
.pdp__secondary-details {
  font-family: "Sectra", serif;
  font-size: 0.875rem;
  line-height: 1.5rem; }
  .pdp__carousel-secondary-details p,
  .pdp__main-details-right p,
  .pdp__secondary-details p {
    margin-bottom: 1rem; }
  .pdp__carousel-secondary-details p:last-child,
  .pdp__main-details-right p:last-child,
  .pdp__secondary-details p:last-child {
    padding-bottom: 12px; }
  .pdp__carousel-secondary-details h2, .pdp__carousel-secondary-details .h2, .pdp__carousel-secondary-details strong,
  .pdp__main-details-right h2,
  .pdp__main-details-right .h2,
  .pdp__main-details-right strong,
  .pdp__secondary-details h2,
  .pdp__secondary-details .h2,
  .pdp__secondary-details strong {
    font-weight: 100;
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 0.9375rem;
    margin-top: 0; }
  .pdp__carousel-secondary-details strong,
  .pdp__main-details-right strong,
  .pdp__secondary-details strong {
    display: block;
    font-family: "Patron", sans-serif;
    font-weight: 400; }
  .pdp__carousel-secondary-details strong + br,
  .pdp__main-details-right strong + br,
  .pdp__secondary-details strong + br {
    display: none; }
  .pdp__carousel-secondary-details ul,
  .pdp__main-details-right ul,
  .pdp__secondary-details ul {
    list-style: none;
    margin-bottom: 0.9rem; }
  @media only screen and (min-width: 47.5em) and (max-width: 53.74em) {
    .grid--no-gutters .pdp__carousel-secondary-details .grid__item, .grid--no-gutters
    .pdp__main-details-right .grid__item, .grid--no-gutters
    .pdp__secondary-details .grid__item {
      padding-top: 15px;
      padding-bottom: 15px;
      width: 100%; }
      html:not(.rtl) .grid--no-gutters .pdp__carousel-secondary-details .grid__item, html:not(.rtl) .grid--no-gutters
      .pdp__main-details-right .grid__item, html:not(.rtl) .grid--no-gutters
      .pdp__secondary-details .grid__item {
        padding-left: 30px; }
      html.rtl .grid--no-gutters .pdp__carousel-secondary-details .grid__item, html.rtl .grid--no-gutters
      .pdp__main-details-right .grid__item, html.rtl .grid--no-gutters
      .pdp__secondary-details .grid__item {
        padding-right: 30px; }
    .pdp__carousel-secondary-details .grid__item p:last-child,
    .pdp__main-details-right .grid__item p:last-child,
    .pdp__secondary-details .grid__item p:last-child {
      margin: 0;
      padding: 0 0 20px;
      border-bottom: solid 1px #e5e5e5; } }
  @media only screen and (max-width: 34.365em) {
    .pdp__carousel-secondary-details .grid__item:not(.one-whole),
    .pdp__main-details-right .grid__item:not(.one-whole),
    .pdp__secondary-details .grid__item:not(.one-whole) {
      width: 50%; } }
  .pdp__carousel-secondary-details .pdp__secondary-details-additional,
  .pdp__main-details-right .pdp__secondary-details-additional,
  .pdp__secondary-details .pdp__secondary-details-additional {
    margin-top: 1.5rem; }
    .pdp__carousel-secondary-details .pdp__secondary-details-additional p:last-child,
    .pdp__main-details-right .pdp__secondary-details-additional p:last-child,
    .pdp__secondary-details .pdp__secondary-details-additional p:last-child {
      padding-bottom: 0; }

.pdp__label {
  color: #767676;
  font-size: 0.875rem; }

.pdp__current-color {
  color: black; }

.pdp__color-selector-combo {
  padding-bottom: 1em; }
  .pdp__color-selector-combo label {
    display: block;
    color: #767676;
    font-size: 0.875rem; }
  .pdp__color-selector-combo select {
    display: block;
    width: 100%;
    background-color: transparent;
    border: 1px solid #eeeeee;
    font-family: "Sectra", serif;
    font-size: 0.75rem; }

.pdp__color-swatch-dot {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  border: solid 1px #767676;
  margin: 5px 5px 15px 0; }
  .pdp__color-swatch-dot:not(.dot-selected):hover {
    border: solid 3px white;
    box-shadow: 0px 0px 0px 1px #767676; }

.swatch-dot-selected {
  border: solid 1px white;
  box-shadow: 0px 0px 0px 1px black; }

.pdp__main-details .selector-wrapper label {
  font-size: 0.875rem; }

.pdp__footer {
  position: relative;
  background-color: white;
  padding-bottom: 20px;
  border-top: solid 1px #eeeeee; }

/*================ Product policies ================*/
.product__price--has-policies {
  margin-bottom: 5px; }

.product__policies {
  font-size: 0.75rem;
  color: #767676;
  font-weight: 100;
  margin-bottom: 20px; }
  html:not(.rtl) .product__policies {
    text-align: left; }
  html.rtl .product__policies {
    text-align: right; }

/*================ Product images ================*/
.js-pdp___carousel .product__photo--hidden:not(.slick-slide) {
  display: none; }

.product__photo {
  position: relative; }

.product__photo--single {
  position: relative; }
  .product__photo--single.product__photo--has-zoom:hover {
    cursor: pointer; }
  .product__photo--single img {
    aspect-ratio: auto 1 / 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1; }

/*================ Product form ================*/
.product__quantity {
  float: left;
  clear: left; }

.product__quantity-label {
  padding: 2px 0; }

.product__price {
  color: #767676;
  font-size: 1.875rem;
  line-height: 1.875rem;
  font-weight: 100;
  clear: both;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.625rem; }

.product__price--reg.on-sale {
  position: relative; }
  .product__price--reg.on-sale:after {
    border-bottom: 1px solid #767676;
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    transform: skewY(11deg);
    width: 100%; }

.product__price--sale {
  color: #c60a00;
  padding-left: 5px; }
  html:not(.rtl) .product__price--sale {
    margin-left: 0.8rem; }
  html.rtl .product__price--sale {
    margin-right: 0.8rem; }

.product__no-js-cart-form {
  display: none; }
  .no-js .product__no-js-cart-form {
    display: block; }

.product__drawer-toggle {
  font-style: italic;
  margin-bottom: 12px; }

.product__form--add-to-cart {
  margin-bottom: 30px;
  width: 100%;
  max-width: 300px; }
  .product__form--add-to-cart select {
    font-family: "Sectra", serif;
    font-size: 0.75rem; }
  @media only screen and (max-width: 47.49em) {
    .product__form--add-to-cart {
      max-width: initial; } }

.product__form--full-width {
  max-width: none; }

@media only screen and (max-width: 34.365em) {
  .product__form--add-to-cart {
    margin-bottom: 20px; } }
.btn--add-to-cart {
  white-space: normal;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  padding-bottom: 1.125rem;
  padding-top: 1.125rem;
  width: 100%;
  margin-top: 15px;
  background-color: #3300ad; }
  .btn--add-to-cart:hover, .btn--add-to-cart:active, .btn--add-to-cart:focus {
    background-color: #230077; }

.pdp__errors {
  margin-top: 1rem; }

.qty-error {
  color: #c60a00;
  font-size: 0.875rem;
  line-height: 1rem; }

.back-button {
  text-align: center;
  margin: 20px 0;
  padding: 0 20px; }

.back-button__link {
  white-space: normal; }

#ProductSelect {
  display: none; }
  .no-js #ProductSelect {
    display: block; }

.selector-wrapper,
.quantity-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  padding: 6px 3px 6px 12px;
  width: 100%; }
  .selector-wrapper label,
  .quantity-wrapper label {
    color: #1a1a1a;
    padding: 2px 0px; }
    .selector-wrapper label:after,
    .quantity-wrapper label:after {
      content: '-';
      padding-left: 6px; }
  .selector-wrapper select,
  .quantity-wrapper select {
    white-space: normal; }

.single-option-selector,
.quantity-input {
  color: #1a1a1a;
  background-color: transparent;
  border-radius: 0;
  padding-bottom: 2px;
  padding-left: 6px;
  padding-top: 2px;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0; }

.product-recommendations {
  padding-bottom: 2em; }
  .product-recommendations h2, .product-recommendations .h2 {
    font-size: 1.875rem;
    font-weight: 100;
    line-height: 1.875rem; }
    @media only screen and (min-width: 34.375em) {
      .product-recommendations h2, .product-recommendations .h2 {
        font-size: 2.25rem;
        line-height: 2.25rem; } }
    @media only screen and (min-width: 68.75em) {
      .product-recommendations h2, .product-recommendations .h2 {
        font-size: 3rem;
        line-height: 3rem; } }

.dash {
  background: currentColor;
  display: inline-block;
  height: 0.0625rem;
  position: relative;
  vertical-align: middle;
  margin-left: 4px;
  width: 60px; }
  @media only screen and (min-width: 34.375em) {
    .dash {
      margin-left: 6px;
      width: 72px; } }
  @media only screen and (min-width: 68.75em) {
    .dash {
      margin-left: 10px;
      width: 96px; } }

#ssw-avg-rate-profile-html {
  margin: 0 !important; }

/*========================= Collection page ===========================*/
/*========================= Collection page ===========================*/
.collection-template-section .o-container, .collection-template-section .shopify-policy__container {
  margin-top: 1.25rem;
  margin-bottom: 5rem; }

.collection-header {
  margin-top: 1.25rem; }

.collection-header_col2 img {
  aspect-ratio: auto 16 / 9; }

.collection-heading {
  margin: 0;
  font-weight: 100;
  line-height: 1;
  font-size: 48px;
  padding: 0.9375rem 0 0.625rem; }
  @media only screen and (max-width: 34.365em) {
    .collection-heading {
      font-size: 40px;
      padding: 0.625rem 0 0.625rem; } }

.collection-breadcrumbs {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 100; }
  @media only screen and (max-width: 34.365em) {
    .collection-breadcrumbs {
      font-size: 0.875rem; } }

.collection-heading + .rte--description {
  margin-top: 0; }

.collection-heading + .collection-grid {
  margin-top: 0.625em; }

.collection-description {
  font-family: "Sectra", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  padding-bottom: 2.5rem; }
  @media only screen and (max-width: 34.365em) {
    .collection-description {
      line-height: 1.25rem;
      font-size: 0.875rem;
      padding-bottom: 1.875rem; } }

.collection-controls {
  height: 100px;
  width: 100%;
  *zoom: 1; }
  .collection-controls:after {
    content: '';
    display: table;
    clear: both; }

.collection-sort-by {
  float: right; }
  .collection-sort-by .items-count {
    display: inline;
    font-size: 0.875rem;
    line-height: 1.25rem; }
  .collection-sort-by .input-group {
    display: inline;
    padding-bottom: 0;
    padding-left: 0.5rem; }
  .collection-sort-by .input-group select {
    font-size: 0.75rem;
    line-height: 0.875rem;
    padding: 0 30px 0.3125rem 0;
    margin-top: 1.25rem;
    color: #878787;
    border-color: #bab6b5;
    border-radius: 0; }

/*================ Modules | Theme collection grid item ================*/
.collection-grid__item {
  overflow: hidden; }
  @media only screen and (max-width: 34.365em) {
    .collection-grid__item {
      height: 250px; } }
  @media only screen and (min-width: 34.375em) {
    .collection-grid__item {
      height: 400px; } }
  @media only screen and (min-width: 100em) {
    .collection-grid__item {
      height: 600px; } }

.collection-grid__link {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%; }

.collection-grid__title {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.25em;
  color: #1a1a1a; }
  @media only screen and (max-width: 47.49em) {
    .collection-grid__title {
      background-color: #1a1a1a;
      color: white;
      padding: 15px 20px;
      line-height: 1; }
      .supports-csstransforms3d .collection-grid__title {
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate3d(-50%, -50%, 0);
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0); } }

.collection-grid__link-overlay {
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.collection-grid__title-wrapper {
  position: relative;
  top: 0;
  height: 100%;
  width: 100%;
  display: table; }

@media only screen and (min-width: 68.75em) {
  .collection-grid__title {
    opacity: 0;
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto; }

  .collection-grid__link-overlay {
    position: relative; }
    .collection-grid__link-overlay:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 0;
      background-color: white;
      transition: all 0.5s ease; }
    .collection-grid__link-overlay:hover, .collection-grid__link-overlay:focus {
      transition: all 0.8s ease;
      -ms-transform: scale(1.03);
      -webkit-transform: scale(1.03);
      transform: scale(1.03); }
      .collection-grid__link-overlay:hover:before, .collection-grid__link-overlay:focus:before {
        opacity: 0.95; }
      .collection-grid__link-overlay:hover .collection-grid__title, .collection-grid__link-overlay:focus .collection-grid__title {
        opacity: 1; } }
/*================ Modules | Theme collection list grid item ================*/
.collection-list {
  padding: 0 20px; }
  .collection-list .collection-list-grid__item {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 4rem; }
    @media only screen and (max-width: 47.49em) {
      .collection-list .collection-list-grid__item {
        padding-bottom: 3rem; } }
  .collection-list .collection-list-grid__item-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; }
  .collection-list .collection-list-grid__inner {
    height: 100%; }
  .collection-list .collection-grid__link {
    position: absolute; }
  .collection-list .collection-list-grid__image {
    position: absolute;
    display: block;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat; }
  .collection-list .collection-list-grid__image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0; }
  .collection-list .collection-list-grid__title-wrapper {
    position: absolute;
    top: 40px;
    left: 40px;
    display: block; }
    @media only screen and (max-width: 47.49em) {
      .collection-list .collection-list-grid__title-wrapper {
        display: none; } }
  .collection-list .mobile-view {
    display: none; }
    @media only screen and (max-width: 47.49em) {
      .collection-list .mobile-view {
        display: block; } }
  .collection-list .collection-list-grid__title {
    margin-bottom: 0; }
  .collection-list .number-products {
    color: #666666; }
  .collection-list .under-spacing {
    margin-top: 20px; }
  .collection-list .collection-list-grid__placeholder {
    width: 100%;
    height: 100%;
    fill: rgba(102, 102, 102, 0.35); }
  .collection-list .collection-list-grid__heading {
    font-size: 1.5rem;
    font-weight: 100;
    line-height: 1.875rem;
    margin-bottom: 2rem; }
    .collection-list .collection-list-grid__heading.with-subtitle {
      margin-bottom: 1rem; }
    @media only screen and (max-width: 47.49em) {
      .collection-list .collection-list-grid__heading {
        font-size: 1.1rem; } }
  .collection-list .btn-tertiary {
    color: #3a2e2c;
    border: solid 1px #7f7776;
    margin: 0;
    padding: 0.9375rem;
    font-size: 0.75rem;
    line-height: 1.125rem;
    width: fit-content;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0; }
    @media only screen and (max-width: 47.49em) {
      .collection-list .btn-tertiary {
        display: block;
        width: 100%;
        text-align: center; } }
    .collection-list .btn-tertiary:hover {
      background-color: #3a2e2c;
      border-color: #3a2e2c;
      color: white; }
    @media only screen and (max-width: 47.49em) {
      .collection-list .btn-tertiary {
        padding: 0.9375rem 0.5rem;
        font-size: 0.75rem; } }

/*========================= Sub-collection menu ===========================*/
.c-collection-page__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 900px; }

.c-collection-page__link-list-item {
  margin-bottom: 0.9375rem; }
  html:not(.rtl) .c-collection-page__link-list-item {
    margin-right: 0.9375rem; }
  html.rtl .c-collection-page__link-list-item {
    margin-left: 0.9375rem; }
  .c-collection-page__link-list-item a {
    border-bottom: 1px solid #d8d5d5;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.875rem; }
    @media only screen and (max-width: 47.49em) {
      .c-collection-page__link-list-item a {
        font-size: 0.875rem;
        line-height: 1.25rem; } }

#slider-image {
  aspect-ratio: auto 1 / 1; }

.snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image {
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  border-radius: 100%;
  text-align: center;
  transition: border-color .32s ease-out,background-color .32s ease-out; }
  @media only screen and (min-width: 53.75em) {
    .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image {
      width: 2.3rem;
      height: 2.3rem; } }
  .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
    bottom: 8px; }
    html:not(.rtl) .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
      right: 8px; }
    html.rtl .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
      left: 8px; }
    html:not(.rtl) .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
      left: auto; }
    html.rtl .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
      right: auto; }
  .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image img {
    width: 100%;
    aspect-ratio: auto 1 / 1; }
.snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label {
  background-color: transparent;
  font-size: 0.7rem;
  line-height: 0.875rem;
  color: #3a2e2c; }
  @media only screen and (min-width: 53.75em) {
    .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label {
      font-size: 0.75rem;
      line-height: 1.15rem; } }
  .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
    top: 10px;
    padding: 0; }
    html:not(.rtl) .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
      left: 10px; }
    html.rtl .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
      right: 10px; }
    html:not(.rtl) .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
      right: auto; }
    html.rtl .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
      left: auto; }
    html:not(.rtl) .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
      padding-right: 2.5rem; }
    html.rtl .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
      padding-left: 2.5rem; }
    @media only screen and (min-width: 53.75em) {
      .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
        top: 12px; }
        html:not(.rtl) .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
          left: 12px; }
        html.rtl .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label.top-left {
          right: 12px; } }
  .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label .snize-right-arrow {
    display: none; }

.snize-mobile-design .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
  bottom: -2.8rem; }
  html:not(.rtl) .snize-mobile-design .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
    right: 0; }
  html.rtl .snize-mobile-design .snize-search-results-main-content #snize-search-results-grid-mode .snize-product-label-image.down-right {
    left: 0; }

/*================ Module | Pagination ================*/
/*================ Module | Pagination ================*/
.pagination {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 0.875em;
  margin: 0;
  padding: 40px 0;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1;
    padding: 8px 0 8px 16px; }
  .pagination a {
    display: block;
    color: #3a2e2c;
    font-weight: 100;
    border-bottom: solid 1px white; }
    .pagination a:hover {
      border-bottom: solid 1px #3a2e2c; }
  .pagination .current {
    font-weight: 400; }

.pagination--infinite {
  margin: 60px 0;
  text-align: center; }

/*============= Templates | Password page =============*/
/*============= Templates | Password page =============*/
.template-password {
  height: 100vh; }

.password-page {
  display: table;
  height: 100%;
  width: 100%;
  color: #666666;
  background-color: white; }

.password-page-section {
  display: table-row;
  width: 100%; }

.password-header {
  height: 49px;
  background: white;
  display: table-cell;
  vertical-align: middle; }

.password-logo .logo {
  color: #1a1a1a;
  width: initial;
  max-width: 100%; }

.password-content-section {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-main {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 20px; }

.password-hero {
  margin-top: 80px; }

.password-login-form,
.password-signup-form,
.password-message {
  max-width: 500px;
  margin: 0 auto; }

.password-message {
  font-size: 1em;
  margin-top: 30px; }

.password-login-form {
  text-align: center;
  padding: 20px; }

.password-signup-form__heading,
.password-social-sharing__heading {
  margin-top: 40px;
  margin-bottom: 20px; }

.password-social-sharing {
  margin-top: 20px; }

.password-login,
.admin-login {
  margin-top: 10px; }

.password-login {
  font-family: "Patron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin: 60px 0; }

.password-footer {
  background-color: #f9f9f9;
  display: table-cell;
  vertical-align: bottom;
  padding: 20px;
  color: #5c5b5c; }

.shopify-logo-svg {
  width: 82.28571px;
  height: 24px;
  display: inline-block;
  line-height: 0;
  vertical-align: top; }
  .shopify-logo-svg path {
    fill: #5c5b5c; }

/* =========
   Hiding the word 'Shopify' but not from screen readers.
   IE8 does not support SVG, so in it we hide the logo and show the word.
   To target all browsers except IE8, we use the class 'modern',
   which needs to be added to the html element.
   ========= */
/*================ Modals ================*/
/*================ Modals ================*/
.modal {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  color: #666666;
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  transition: all ease-in-out 0.2s;
  overflow: hidden; }

.modal--is-active {
  display: block;
  opacity: 1;
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  overflow: hidden; }

.modal__inner {
  height: 100%;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.modal__centered {
  position: relative;
  top: 50%;
  transform: translateY(-50%); }
  .modal__centered .supports-no-csstransforms {
    top: 20%; }

.modal__close {
  position: fixed;
  top: 20px;
  right: 0;
  padding: 20px;
  border: 0; }
  .modal__close .icon {
    font-size: 1.25em; }

/*================ Maps ================*/
/*================ Maps ================*/
.map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media only screen and (min-width: 34.375em) {
    .map-section {
      min-height: 500px; } }
  .map-section .section-header {
    margin-bottom: 20px; }
  .map-section .btn, .map-section .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .map-section .shopify-payment-button__button--unbranded {
    margin-top: 10px;
    white-space: normal; }
  .map-section .icon-pin {
    font-size: 12.8px; }

.map-section__full-width {
  margin: -50px 0; }

.map-section__wrapper {
  height: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.map-section__content-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 34.375em) {
    .map-section__content-wrapper {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%;
      flex-grow: 0; } }

.map-section__image {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 34.375em) {
    .map-section__image {
      position: absolute; } }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section__image .placeholder-svg {
    height: 100%;
    margin: 0 auto;
    width: 100%; }
  .map-section--load-error .map-section__image {
    display: block !important; }

.map-section__overlay {
  width: 100%;
  min-height: auto;
  position: relative;
  display: block;
  background-color: white;
  margin: 60px 0;
  padding: 40px;
  text-align: center;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 34.365em) {
    .map-section__overlay {
      margin: 0;
      padding: 20px 40px;
      background-color: #f9f9f9; } }
  .map-section__overlay > * {
    width: 100%; }
  @media only screen and (min-width: 34.375em) {
    .map-section__overlay {
      min-height: 320px;
      min-width: 270px; } }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

@media only screen and (min-width: 34.375em) {
  .map-section__text {
    background-color: rgba(102, 102, 102, 0.1);
    padding: 20px; } }
@media only screen and (max-width: 34.365em) {
  .map-section__text {
    order: 0;
    padding: 0 20px 20px; } }

@media only screen and (min-width: 34.375em) {
  .map-section__text-second-item {
    border-left: 1px solid rgba(102, 102, 102, 0.2); } }
@media only screen and (max-width: 34.365em) {
  .map-section__text-second-item {
    padding-top: 20px;
    border-top: 1px solid rgba(102, 102, 102, 0.2); } }

.map-section__background-wrapper {
  overflow: hidden;
  position: relative;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 34.375em) {
    .map-section__background-wrapper {
      position: static;
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%;
      flex-grow: 0; } }

.map-section__container {
  width: 100%;
  height: 55vh; }
  @media only screen and (min-width: 34.375em) {
    .map-section__container {
      position: absolute !important;
      top: 0;
      left: 0;
      width: 130%;
      height: 100%;
      margin: 0 -30% 0 0; } }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

/*================ PARTIALS ================*/
/*
* Styles for sections
*/
/* Feature row */
/* Feature row */
.feature-row .feature-row__image-wrapper {
  position: relative; }
.feature-row .feature-row__item img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0; }
.feature-row .feature-row__content {
  max-width: 780px;
  padding: 0px 35px; }
  @media only screen and (max-width: 47.49em) {
    .feature-row .feature-row__content {
      padding: 0px 20px; } }
.feature-row .feature-row__text--left .feature-row__content {
  margin-right: auto;
  margin-left: 0px; }
.feature-row .feature-row__text--right .feature-row__content {
  margin-left: auto;
  margin-right: 0px; }
.feature-row .feature-row__text--left {
  margin-top: 20px; }

/* Feature blog */
/* Feature blog */
@media only screen and (max-width: 47.49em) {
  .featured-blog .grid--uniform {
    padding: 0 20px; } }

.article__featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block; }

.article__featured-image-wrapper {
  position: relative;
  margin-bottom: 30px; }
  @media only screen and (max-width: 47.49em) {
    .article__featured-image-wrapper {
      margin-bottom: 20px; } }

.featured-blog__post,
.title--one-post,
.section-title {
  margin-bottom: 35px; }
  @media only screen and (max-width: 47.49em) {
    .featured-blog__post,
    .title--one-post,
    .section-title {
      margin-bottom: 20px; } }

.featured-blog__post-inner {
  padding-bottom: 30px;
  margin: 0 30px 2px 30px; }
  @media only screen and (max-width: 47.49em) {
    .featured-blog__post-inner {
      margin: 0 0 2px 0;
      padding-bottom: 15px; } }

.featured-blog__title {
  margin-bottom: 0; }

.featured-blog__rte {
  margin-top: 20px; }

.featured-blog__post .placeholder-svg {
  fill: rgba(102, 102, 102, 0.35);
  background-color: rgba(102, 102, 102, 0.1); }

.featured-blog__meta {
  padding-bottom: 20px; }
  @media only screen and (max-width: 47.49em) {
    .featured-blog__meta {
      padding-bottom: 15px; } }

.featured-blog__meta-list,
.featured-blog__meta-dot {
  display: inline-block; }

.featured-blog__meta-dot:after {
  content: '\2022';
  margin: 0 5px; }

.helper .featured-blog__title {
  margin-top: 30px; }
  @media only screen and (max-width: 47.49em) {
    .helper .featured-blog__title {
      margin-top: 20px; } }

/* Feature collection */
/* Feature collection */
.featured-collection .placeholder-svg {
  fill: rgba(102, 102, 102, 0.35); }
  @media only screen and (max-width: 47.49em) {
    .featured-collection .placeholder-svg {
      background-color: rgba(102, 102, 102, 0.1); } }
.featured-collection.helper-section .product-item__link {
  background-color: rgba(102, 102, 102, 0.1); }
  @media only screen and (max-width: 47.49em) {
    .featured-collection.helper-section .product-item__link {
      background-color: transparent; } }

/* Product Recomendations */
/* Product Recomendations */
.product-recommendations {
  padding-top: 60px; }

/* Product Reassurance Links */
.c-reassurance-links {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 1.875rem 0 0;
  max-width: 300px; }
  @media only screen and (max-width: 47.49em) {
    .c-reassurance-links {
      max-width: initial; } }
  .c-reassurance-links a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #878787; }

.c-reassurance-links__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.625rem;
  color: #878787; }

.c-reassurance-links__icon-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center; }
  html:not(.rtl) .c-reassurance-links__icon-wrapper {
    margin-right: 0.625rem; }
  html.rtl .c-reassurance-links__icon-wrapper {
    margin-left: 0.625rem; }
  .c-reassurance-links__icon-wrapper .c-icon {
    max-width: 14px;
    height: auto;
    vertical-align: middle; }

.c-reassurance-links__text-wrapper {
  font-family: "Sectra", serif;
  font-size: 0.8125rem;
  line-height: 1rem; }

/* Product Zoom */
.c-pdp-zoom-modal {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #efecf0; }
  .c-pdp-zoom-modal.open {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    justify-content: center; }
  .c-pdp-zoom-modal.loaded {
    display: block; }
    .c-pdp-zoom-modal.loaded .c-pdp-zoom-modal__img {
      visibility: visible; }
    .c-pdp-zoom-modal.loaded .c-pdp-zoom-modal__spinner {
      display: none; }

.c-pdp-zoom-modal__img {
  margin: auto;
  display: block;
  width: auto;
  max-width: 1600px;
  max-height: 100vh;
  visibility: hidden; }
  .c-pdp-zoom-modal__img:hover {
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in; }
  .c-pdp-zoom-modal__img.c-pdp-zoom-modal__img--zoom {
    visibility: visible;
    max-width: 1600px;
    max-height: 1600px; }
    .c-pdp-zoom-modal__img.c-pdp-zoom-modal__img--zoom:hover {
      cursor: -moz-zoom-out;
      cursor: -webkit-zoom-out;
      cursor: zoom-out; }

.c-pdp-zoom-modal__close {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 20px;
  z-index: 1; }
  .c-pdp-zoom-modal__close:hover {
    cursor: pointer; }
  .c-pdp-zoom-modal__close .c-icon {
    fill: #7f7776;
    height: 16px;
    width: 16px; }

.pdp__carousel__zoom {
  height: 1.25rem;
  width: 1.25rem;
  position: absolute;
  bottom: 40px;
  z-index: 1; }
  html:not(.rtl) .pdp__carousel__zoom {
    right: 45px; }
  html.rtl .pdp__carousel__zoom {
    left: 45px; }
  @media only screen and (max-width: 34.365em) {
    .pdp__carousel__zoom {
      bottom: 17px; } }

/* Product Size picker */
.c-product-option__list {
  border: none;
  padding: 0;
  margin: 0;
  max-width: 15.5rem; }
  .c-product-option__list .pdp__label {
    margin-bottom: 0.4375rem; }

input.c-product-option-list__list-item {
  position: absolute;
  z-index: -1;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid #bab6b5;
  background-color: transparent; }
  input.c-product-option-list__list-item:hover {
    border-color: #7f7776;
    cursor: pointer; }
  input.c-product-option-list__list-item:focus {
    outline: 1px dotted #3300ad;
    outline-offset: 2px; }
  input.c-product-option-list__list-item:checked {
    border: 1px solid #3a2e2c; }

input[disabled].c-product-option-list__list-item {
  background-color: transparent;
  border: 1px solid #bab6b5; }

.c-product-option-list__label {
  font-size: 0.75rem;
  line-height: 0.75rem;
  overflow: hidden;
  color: #3a2e2c;
  height: 2.5rem;
  width: 2.5rem;
  display: inline-flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 0.125rem 0.5625rem;
  padding: 0.8125rem 0;
  position: relative; }
  .c-product-option-list__label.selected {
    font-weight: 700;
    color: #3a2e2c; }
  .c-product-option-list__label:hover {
    cursor: pointer; }
  .c-product-option-list__label.disabled {
    color: #bab6b5; }
    .c-product-option-list__label.disabled:before {
      content: "";
      border-top: 1px solid #bab6b5;
      position: absolute;
      top: 0;
      right: 0;
      left: -50%;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transform-origin: 100% 0;
      transform-origin: 100% 0; }
    .c-product-option-list__label.disabled:hover {
      cursor: not-allowed; }

.c-product-option__selected-value {
  font-size: 0.875rem;
  color: #3a2e2c; }

/*================ Size chart ================*/
@media only screen and (min-width: 34.375em) {
  .custom-kiwi-size-chart .kiwi-sizing-modal .kiwi-sizing-modal-inner {
    width: 66.66% !important;
    margin-left: -33% !important; } }
.custom-kiwi-size-chart .kiwi-sizing-modal .kiwi-sizing-modal-inner .ks-modal-header {
  padding: 1.5rem 1.25rem !important; }
  @media only screen and (min-width: 34.375em) {
    .custom-kiwi-size-chart .kiwi-sizing-modal .kiwi-sizing-modal-inner .ks-modal-header {
      padding: 1.5rem 3.5rem !important; } }
.custom-kiwi-size-chart .kiwi-sizing-modal .kiwi-sizing-modal-inner .modal-title-header {
  font-weight: 100;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-align: left; }
  @media only screen and (min-width: 34.375em) {
    .custom-kiwi-size-chart .kiwi-sizing-modal .kiwi-sizing-modal-inner .modal-title-header {
      padding: 1rem 0;
      font-size: 1.875rem;
      line-height: 1.875rem; } }
.custom-kiwi-size-chart .kiwi-sizing-modal .kiwi-sizing-modal-inner .modal-title-sub-header {
  text-align: left; }
.custom-kiwi-size-chart .kiwi-sizing-modal .kiwi-sizing-modal-inner .ks-modal-close {
  color: #7f7776; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-modal-content {
  padding: 2.5rem 1.25rem 1.5625rem;
  border-radius: 0 !important; }
  @media only screen and (min-width: 34.375em) {
    .custom-kiwi-size-chart .kiwi-sizing-modal .ks-modal-content {
      padding: 2rem 3.5rem !important; } }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-modal-content-wrapper {
  font-family: "Sectra", serif; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-modal-header {
  font-family: "Patron", sans-serif;
  font-weight: 100;
  font-size: 1.875rem;
  background-color: #efecf0;
  border-bottom-color: #efecf0 !important;
  border-radius: 0 !important; }
  @media only screen and (min-width: 34.375em) {
    .custom-kiwi-size-chart .kiwi-sizing-modal .ks-modal-header {
      padding: 2rem 3.5rem; } }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper .ks-table-header {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 0.875rem;
  font-family: "Patron", sans-serif;
  border-bottom: 1px solid #3a2e2c;
  font-family: "Patron", sans-serif !important;
  text-align: left; }
  @media only screen and (min-width: 34.375em) {
    .custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper .ks-table-header {
      font-weight: 400;
      line-height: 1;
      font-size: 1.4rem;
      padding-bottom: 0.5rem; } }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper .ks-table-footer {
  color: #3a2e2c;
  font-size: 1rem; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper table.ks-table {
  font-size: 0.75rem;
  line-height: 0.8125rem;
  margin-bottom: 1.875rem;
  margin-top: 2rem;
  border: none; }
  .custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper table.ks-table .ks-table-col-hover {
    background-color: inherit !important;
    cursor: default; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper table tr:nth-child(odd) {
  background-color: white; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper table tr:nth-child(even) {
  background-color: #f5f3f5; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper table .ks-table-row:hover td {
  background-color: inherit !important;
  cursor: default; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-table-content-wrapper table .ks-table-row td.ks-table-cell {
  border: none;
  text-align: left;
  padding: 0.9rem !important; }
.custom-kiwi-size-chart .kiwi-sizing-modal .ks-divider {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }
  .custom-kiwi-size-chart .kiwi-sizing-modal .ks-divider:before {
    background-color: #bab6b5; }
.custom-kiwi-size-chart .ks-chart-individual p {
  color: #3a2e2c !important;
  font-size: 1rem !important;
  line-height: 1.675rem !important; }

.ks-chart {
  min-height: 2.3125rem; }

.ks-chart-container .btn.ks-chart-modal-button > span, .ks-chart-container .shopify-payment-button .ks-chart-modal-button.shopify-payment-button__button--unbranded > span, .shopify-payment-button .ks-chart-container .ks-chart-modal-button.shopify-payment-button__button--unbranded > span, .ks-chart-container span.ks-chart-modal-link {
  border-bottom: 1px solid #d8d5d5;
  color: #3a2e2c;
  font-size: 0.75rem;
  text-decoration: none;
  line-height: 1.15; }
  .ks-chart-container .btn.ks-chart-modal-button > span:hover, .ks-chart-container .shopify-payment-button .ks-chart-modal-button.shopify-payment-button__button--unbranded > span:hover, .shopify-payment-button .ks-chart-container .ks-chart-modal-button.shopify-payment-button__button--unbranded > span:hover, .ks-chart-container span.ks-chart-modal-link:hover {
    border-bottom: 1px solid #3300ad;
    color: #3300ad; }

/*================ Spinner ================*/
.spinner {
  width: 70px;
  text-align: center; }

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #7f7776;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }

  40% {
    -webkit-transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.c-pdp-zoom-modal__spinner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
  .c-pdp-zoom-modal__spinner .spinner {
    margin-top: -20px; }

/*================ GIFT CARD ================*/
/*================ GIFT CARD ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Base styles ================*/
.template-giftcard {
  background: white; }

.template-giftcard .wrapper {
  max-width: 588px; }
  .template-giftcard .wrapper img, .template-giftcard .wrapper object, .template-giftcard .wrapper iframe {
    max-width: 100%; }

.shop-url {
  display: none; }

.giftcard-wrapper {
  max-width: 488px;
  margin: 0 auto; }

.giftcard {
  padding-top: 100px; }

.giftcard__header {
  margin-bottom: 40px; }

.giftcard__tag--active {
  opacity: 0.6; }

/*================ Gift Card image ================*/
.giftcard__wrap {
  position: relative;
  margin: 10px 10px 20px; }
  .giftcard__wrap img {
    position: relative;
    display: block;
    border-radius: 10px;
    z-index: 2; }
  .giftcard__wrap:before, .giftcard__wrap:after {
    content: "";
    position: absolute;
    width: 47px;
    height: 47px;
    z-index: 3; }
  .giftcard__wrap:before {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNDdweCIgaGVpZ2h0PSI0N3B4IiB2aWV3Qm94PSIwIDAgNDcgNDciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDQ3IDQ3IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBvcGFjaXR5PSIwLjEiPgoJCTxwYXRoIGQ9Ik00NC41ODYsMUwxLDQ0LjU4NlYxMGMwLTQuOTYzLDQuMDM3LTksOS05SDQ0LjU4NiBNNDcsMEgxMEM0LjQ3NywwLDAsNC40NzcsMCwxMHYzN0w0NywwTDQ3LDB6Ii8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNDQuNTg2LDFMMSw0NC41ODZWMTBjMC00Ljk2Myw0LjAzNy05LDktOUg0NC41ODYiLz4KCTwvZz4KPC9nPgo8L3N2Zz4K") 0 0 no-repeat;
    top: -1px;
    left: -1px; }
  .giftcard__wrap:after {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNDdweCIgaGVpZ2h0PSI0N3B4IiB2aWV3Qm94PSIwIDAgNDcgNDciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDQ3IDQ3IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBvcGFjaXR5PSIwLjEiPgoJCTxwYXRoIGQ9Ik0yLjQxNCw0Nkw0NiwyLjQxNFYzN2MwLDQuOTYzLTQuMDM3LDktOSw5SDIuNDE0IE0wLDQ3aDM3YzUuNTIzLDAsMTAtNC40NzcsMTAtMTBWMEwwLDQ3TDAsNDd6Ii8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMi40MTQsNDZMNDYsMi40MTRWMzdjMCw0Ljk2My00LjAzNyw5LTksOUgyLjQxNCIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=") 0 0 no-repeat;
    bottom: -1px;
    right: -1px; }

/*================ Gift card code ================*/
.giftcard__code {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  z-index: 5; }

.giftcard__code--medium {
  font-size: 0.875em; }

.giftcard__code--small {
  font-size: 0.75em; }

.giftcard__code__inner {
  display: inline-block;
  vertical-align: baseline;
  background-color: #fff;
  padding: 0.5em;
  border-radius: 4px;
  max-width: 450px;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); }

.giftcard__code__text {
  font-size: 1.875em;
  text-transform: uppercase;
  border: 1px dashed #eeeeee;
  padding: 0.4em 0.5em;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1; }
  .giftcard__code__text.disabled {
    color: #999;
    text-decoration: line-through; }

/*================ Gift card amount ================*/
.giftcard__amount {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 2.75em;
  line-height: 1.2;
  padding: 20px;
  z-index: 5; }
  .giftcard__amount strong {
    display: block;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1); }

.giftcard__amount--medium {
  font-size: 2em; }

/*================ Tooltip ================*/
.giftcard__tooltip {
  display: block;
  position: absolute;
  top: -50%;
  right: 50%;
  margin-top: 16px;
  z-index: 4;
  color: #fff;
  text-align: center;
  white-space: nowrap; }
  .giftcard__tooltip:before {
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    bottom: 0;
    width: 0;
    height: 0;
    margin-left: -5px;
    margin-bottom: -5px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 5px solid #333333;
    border-top: 5px solid rgba(0, 0, 0, 0.9); }

.giftcard__tooltip-label {
  display: block;
  position: relative;
  right: -50%;
  border: none;
  border-radius: 4px;
  background-color: #333333;
  background-color: rgba(0, 0, 0, 0.9);
  min-height: 14px;
  font-size: 12px;
  text-decoration: none;
  line-height: 16px;
  text-shadow: none;
  padding: 0.5em 0.75em;
  margin-left: 0.25em; }
  .giftcard__tooltip-label small {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b3b3b3;
    font-size: 0.875em; }

/*================ QR code (print only) ================*/
.giftcard__qr-code img {
  padding: 0px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  margin: 0 auto 20px; }

/*================ Medium-down width ================*/
@media screen and (max-width: 580px) {
  .giftcard {
    padding-top: 40px; }

  .print-link {
    display: none; } }
/*================ Small width ================*/
@media screen and (max-width: 400px) {
  .giftcard__wrap:before,
  .giftcard__wrap:after {
    display: none; }

  .giftcard__code {
    font-size: 0.75em; }

  .giftcard__code--medium {
    font-size: 0.65em; }

  .giftcard__code--small {
    font-size: 0.55em; } }
/*================ STORE LOCATOR ================*/
.main-content #col-main {
  padding: 4.0625rem 0; }
.main-content #submitBtn {
  background: #3300ad;
  border-color: #3300ad;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  padding: 1.125rem 1.5625rem;
  border-radius: 0;
  box-shadow: none;
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  width: 140px; }
  @media only screen and (max-width: 47.49em) {
    .main-content #submitBtn {
      margin: 0;
      width: 100%;
      height: auto;
      margin-top: 1.5em; } }
.main-content #store-locator-title, .main-content .search_within_distance, .main-content .search_limit {
  display: none; }
.main-content #store_map {
  float: left;
  border: none; }
  @media only screen and (min-width: 34.375em) {
    .main-content #store_map {
      width: 60%; } }
  @media only screen and (max-width: 47.49em) {
    .main-content #store_map {
      width: 100%; } }
  .main-content #store_map .name {
    font-weight: 100; }
.main-content .search_bar {
  background-color: transparent;
  border: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  margin-top: 1.875rem;
  margin-bottom: 5rem; }
  @media only screen and (max-width: 47.49em) {
    .main-content .search_bar {
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .main-content .search_bar .main_search_bar {
    flex-shrink: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: auto;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 0; }
.main-content .main_search_label {
  color: #3a2e2c;
  font-size: 0.875rem;
  font-weight: 100; }
.main-content #address_search {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #bab6b5;
  padding: 0 2.8125rem 0.8125rem 0;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.875rem; }
.main-content .addresses {
  padding-right: 0.8rem;
  width: 33%;
  overflow-y: scroll; }
  .main-content .addresses::-webkit-scrollbar {
    width: 6px; }
  .main-content .addresses::-webkit-scrollbar-thumb {
    background: #bab6b5;
    border-radius: 3px; }
  .main-content .addresses::-webkit-scrollbar-track {
    background: #efecf0;
    border-radius: 3px; }
  @media only screen and (min-width: 34.375em) {
    .main-content .addresses {
      width: 40%; } }
  @media only screen and (max-width: 47.49em) {
    .main-content .addresses {
      width: 100%;
      padding-right: 0; } }
  .main-content .addresses ul {
    counter-reset: section; }
  .main-content .addresses li {
    padding: 2.1875rem 1.25rem;
    background-position: 1.25rem 2.1875rem;
    border-top: 2px solid #efecf0;
    position: relative; }
    .main-content .addresses li:last-child {
      border-bottom: 2px solid #efecf0; }
    .main-content .addresses li:before {
      counter-increment: section;
      content: counter(section) " ";
      position: absolute;
      left: 1.6rem;
      top: 2.5rem;
      color: white;
      font-family: "Sectra", serif;
      width: 19px;
      text-align: center; }
    .main-content .addresses li:hover {
      background-color: #efecf0; }
      .main-content .addresses li:hover > * {
        background-color: #efecf0; }
    .main-content .addresses li a {
      font-size: 0.875rem;
      line-height: 1.25rem;
      font-weight: 100;
      width: 80%; }
      .main-content .addresses li a .name {
        font-weight: 100; }
      .main-content .addresses li a .address {
        font-size: 1em;
        line-height: 1.25rem; }
    .main-content .addresses li .directions a {
      font-weight: 400;
      font-size: 0.8rem;
      line-height: 0.8rem;
      border-bottom: 1px solid #d8d5d5;
      display: inline; }
.main-content .distance {
  width: 20%;
  max-width: 52px; }
.main-content .gm-style .gm-style-iw, .main-content .address {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 100;
  color: #3a2e2c; }
.main-content .gm-ui-hover-effect {
  right: 0 !important;
  top: 0 !important; }
.main-content .no_stores_found {
  margin: 0;
  font-size: 1.5em;
  font-weight: 100;
  background: white;
  line-height: 2.5rem;
  position: relative; }
.main-content #direction_destination, .main-content .addresses li, .main-content #directions_text #direction_destination {
  background-image: url("https://cdn.shopify.com/s/files/1/0259/4344/1457/files/pin_black.svg?v=1591625400"); }
.main-content #directions_text #direction_destination {
  background-position: 0px 13px; }
.main-content #directions_text {
  padding: 0 1.25rem; }
.main-content #directions_text #direction_destination {
  font-size: 0.8em;
  line-height: 1.25rem;
  font-weight: 100; }
.main-content #directions_text .directions_step {
  font-size: 0.8rem; }
.main-content #directions_text a.return_to_results {
  font-weight: 100;
  display: inline-block;
  font-size: 0.9rem;
  color: #7f7776; }

/*================ Help center ================*/
.cms-page--help-center {
  font-size: 1rem; }
  .cms-page--help-center p {
    line-height: 1.75rem;
    margin: 0 0 1.375rem 0; }
  .cms-page--help-center .c-heading-breadcrumb {
    font-family: "Patron", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 100; }
    .cms-page--help-center .c-heading-breadcrumb span:hover {
      border-bottom: 1px solid #d8d5d5; }
  .cms-page--help-center .c-heading {
    padding-left: 0.625rem;
    padding-top: 1rem;
    margin-bottom: 0;
    font-size: 2.25rem;
    line-height: 2.25rem; }
    @media only screen and (min-width: 53.75em) {
      .cms-page--help-center .c-heading {
        font-size: 3.25rem;
        line-height: 3.25rem; } }
  .cms-page--help-center .grid--has-sidebar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-top: 1.375rem; }
    @media only screen and (min-width: 53.75em) {
      .cms-page--help-center .grid--has-sidebar {
        flex-direction: row-reverse; } }

/*================  Sidebar ================*/
.c-sidebar {
  margin: 2.1875rem -2.8125rem 0; }
  @media only screen and (min-width: 53.75em) {
    .c-sidebar {
      margin: 0; } }

.cms-page .c-sidebar-link-list, .shopify-policy__container .c-sidebar-link-list {
  list-style: none;
  margin: 0;
  position: relative; }
  html:not(.rtl) .cms-page .c-sidebar-link-list, html:not(.rtl) .shopify-policy__container .c-sidebar-link-list {
    padding-left: 0; }
  html.rtl .cms-page .c-sidebar-link-list, html.rtl .shopify-policy__container .c-sidebar-link-list {
    padding-right: 0; }

.c-sidebar-link-list-item {
  border-top: 1px solid #e5e5e5;
  padding: 0.1875rem; }
  @media only screen and (min-width: 53.75em) {
    .c-sidebar-link-list-item {
      border-top: none;
      padding: 0.1875rem;
      margin-bottom: 1rem;
      line-height: 1; } }

.c-sidebar-link-list-item__link {
  padding: 1.6875rem 2.625rem;
  display: block;
  font-family: "Patron", sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 100; }
  @media only screen and (min-width: 53.75em) {
    .c-sidebar-link-list-item__link {
      padding: 0;
      display: inline; } }
  @media only screen and (min-width: 53.75em) {
    .c-sidebar-link-list-item__link:hover {
      border-bottom: 1px solid #d8d5d5; } }

.c-sidebar-link-list-item__link--is-selected {
  color: #3300ad; }

@media only screen and (min-width: 53.75em) {
  .c-sidebar-link-list--secondary:before {
    background-color: #e5e5e5;
    content: "";
    display: block;
    height: 0.0625rem;
    margin-bottom: 2.1875rem;
    margin-top: 2rem;
    max-width: 11.25rem;
    width: 100%; } }
.c-sidebar-link-list--secondary .c-sidebar-link-list-item {
  background-color: #efecf0; }
  @media only screen and (min-width: 53.75em) {
    .c-sidebar-link-list--secondary .c-sidebar-link-list-item {
      background-color: transparent;
      padding: 0.1875rem;
      margin-bottom: 0.375rem; } }
@media only screen and (min-width: 53.75em) {
  .c-sidebar-link-list--secondary .c-sidebar-link-list-item__link {
    font-size: 0.85rem;
    line-height: 0.85rem; } }

/*============================================================================
  #Print Styles
==============================================================================*/
/*============================================================================
  #Print Styles
==============================================================================*/
@media print {
  @page {
    margin: 0.5cm; }

  p {
    orphans: 3;
    widows: 3; }

  html, body {
    background-color: #fff; }

  .giftcard__actions,
  .giftcard__wrap:before,
  .giftcard__wrap:after,
  .giftcard__tooltip {
    display: none; }

  .shop-url {
    display: block;
    text-align: center; }

  .qr-code {
    display: block; }

  .print-link {
    display: none; } }
/*============================================================================
  #Whislist
==============================================================================*/
/*================ WISHLIST HEADER ================*/
.c-navigation .ssw-icon-heart::before {
  content: '\e819';
  font-size: 1.25rem; }
  @media only screen and (max-width: 47.49em) {
    .c-navigation .ssw-icon-heart::before {
      content: '\e812';
      color: #ff525f; } }
html:not(.rtl) .c-navigation .ssw-counter-fave-menu {
  margin-left: 10px; }
html.rtl .c-navigation .ssw-counter-fave-menu {
  margin-right: 10px; }
@media only screen and (max-width: 47.49em) {
  .c-navigation .ssw-counter-fave-menu {
    display: none !important; } }

.ssw-link-fave-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between; }
  .ssw-link-fave-menu:focus {
    outline: 1px dotted #3300ad; }
  .ssw-link-fave-menu .ssw-icon-heart, .ssw-link-fave-menu .ssw-icon-heart-o {
    vertical-align: middle;
    font-size: 1.25rem; }
  .ssw-link-fave-menu .ssw-counter-fave-menu {
    font-weight: 400; }

/*================ PRODUCT WISHLIST ================*/
.ssw-faveiticon {
  padding: 0.9375rem 1.125rem;
  margin: 1.25rem; }
  html:not(.rtl) .ssw-faveiticon {
    right: 0; }
  html.rtl .ssw-faveiticon {
    left: 0; }
  .ssw-faveiticon .faves-count {
    display: none; }

.product-item__link-wrapper .ssw-faveiticon {
  padding: 0.9375rem 1.125rem;
  margin: 0;
  font-size: 1.15rem !important; }
  html:not(.rtl) .product-item__link-wrapper .ssw-faveiticon {
    right: 0; }
  html.rtl .product-item__link-wrapper .ssw-faveiticon {
    left: 0; }

.snize-view-link .ssw-faveiticon {
  font-size: 1rem !important; }

.ssw-faveit > i, .ssw-faveiticon > i {
  color: #ff525f !important; }

/*================ PDP WISHLIST ================*/
.pdp__carousel {
  position: relative; }
  .pdp__carousel #widget-fave-html {
    position: absolute;
    top: 1rem;
    z-index: 1;
    height: 50px;
    width: 50px; }
    html:not(.rtl) .pdp__carousel #widget-fave-html {
      right: 2rem; }
    html.rtl .pdp__carousel #widget-fave-html {
      left: 2rem; }
    .pdp__carousel #widget-fave-html .ssw-fave-btn-default .ssw-fave-btn-content {
      border: none;
      width: auto;
      color: transparent;
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0; }
      .pdp__carousel #widget-fave-html .ssw-fave-btn-default .ssw-fave-btn-content:focus, .pdp__carousel #widget-fave-html .ssw-fave-btn-default .ssw-fave-btn-content:active {
        outline: 1px dotted #3300ad;
        box-shadow: none; }
      .pdp__carousel #widget-fave-html .ssw-fave-btn-default .ssw-fave-btn-content .ssw-icon-heart, .pdp__carousel #widget-fave-html .ssw-fave-btn-default .ssw-fave-btn-content .ssw-icon-heart-o {
        position: absolute;
        margin: 0; }
    .pdp__carousel #widget-fave-html .ssw-fave-btn-default .ssw-fave-btn-counter {
      display: none; }

/*================ WISHLIST PAGE ================*/
#my-wishlist .account-icons {
  margin-bottom: 0; }
#my-wishlist .main-content #ssw-page {
  margin: 0 0.9375rem;
  max-width: 98.125rem;
  min-width: 18.125rem;
  padding: 0; }
  @media only screen and (min-width: 34.375em) {
    #my-wishlist .main-content #ssw-page {
      margin: 0 2.8125rem;
      min-width: 14.375rem; } }
  @media only screen and (min-width: 68.75em) {
    #my-wishlist .main-content #ssw-page {
      margin: 0 6.125rem;
      min-width: 7.75rem; } }
  @media only screen and (min-width: 100em) {
    #my-wishlist .main-content #ssw-page {
      margin: 0 auto;
      min-width: 20rem; } }
  @media only screen and (max-width: 68.74em) {
    #my-wishlist .main-content #ssw-page {
      margin: 0px auto !important;
      padding: 0 30px; } }
#my-wishlist.customer-logged-in #ssw-page {
  max-width: 780px;
  min-width: 0;
  margin: 0px auto !important; }
#my-wishlist.customer-logged-in #ssw-fave-page-side-bar {
  width: 100%;
  float: none; }
#my-wishlist #ssw-fave-page-side-bar {
  width: 75%;
  margin: 0; }
  html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar {
    float: right; }
  html.rtl #my-wishlist #ssw-fave-page-side-bar {
    float: left; }
  @media only screen and (max-width: 68.74em) {
    #my-wishlist #ssw-fave-page-side-bar {
      width: 100%;
      float: none !important; } }
  #my-wishlist #ssw-fave-page-side-bar #ssw-fave-page-side-bar-header, #my-wishlist #ssw-fave-page-side-bar .ssw-fave-list-header, #my-wishlist #ssw-fave-page-side-bar #ssw-fave-list-15 {
    display: none; }
  #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    width: 100% !important;
    border-width: 1px;
    border-left: none;
    border-right: none;
    padding: 2rem 0px;
    border-bottom: none;
    margin-bottom: 0; }
    @media only screen and (max-width: 47.49em) {
      #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item {
        flex-wrap: wrap;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        -ms-align-items: flex-start;
        -o-align-items: flex-start;
        align-items: flex-start; } }
    #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item a:hover {
      cursor: pointer; }
    #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      position: relative;
      top: 1rem;
      color: #000;
      font-size: 0.75rem; }
      html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave {
        right: 0; }
      html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave {
        left: 0; }
      html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave {
        left: auto; }
      html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave {
        right: auto; }
      @media only screen and (max-width: 47.49em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave {
          position: absolute;
          top: -35px; } }
      #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave.ssw-icon-heart {
        display: none; }
      #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .fave-page-unfave:hover {
        cursor: pointer; }
    #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-avatar {
      padding-top: 20%;
      width: 20%; }
      @media only screen and (max-width: 47.49em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-avatar {
          width: 150px;
          height: 150px; } }
      @media only screen and (max-width: 34.365em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-avatar {
          width: 120px;
          height: 120px; } }
    #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
      width: 80%; }
      html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
        text-align: left; }
      html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
        text-align: right; }
      html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
        padding-left: 2.5rem; }
      html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
        padding-right: 2.5rem; }
      @media only screen and (max-width: 47.49em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
          width: calc(100% - 150px); }
          html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
            padding-left: 0px !important; }
          html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
            padding-right: 0px !important; } }
      @media only screen and (max-width: 34.365em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info {
          width: calc(100% - 120px); } }
      #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        font-size: 1rem; }
        @media only screen and (max-width: 47.49em) {
          #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price {
            -webkit-justify-content: flex-start;
            -moz-justify-content: flex-start;
            -ms-justify-content: flex-start;
            -o-justify-content: flex-start;
            justify-content: flex-start; } }
        @media only screen and (max-width: 34.365em) {
          #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price {
            font-size: 0.85rem; } }
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price .money {
          font-weight: 500;
          color: #3a2e2c; }
      #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale .money {
        color: #c60a00; }
      #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale del {
        order: -1;
        text-decoration: none;
        position: relative; }
        html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale del {
          margin-left: 0; }
        html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale del {
          margin-right: 0; }
        html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale del {
          margin-right: 0.5em; }
        html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale del {
          margin-left: 0.5em; }
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale del .money {
          color: #3a2e2c; }
          #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-info .ssw-fave-product-price--on-sale del .money::after {
            border-bottom: 1px solid #767676;
            content: "";
            left: 0;
            position: absolute;
            top: 50%;
            transform: skewY(11deg);
            width: 100%; }
    #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-title {
      font-size: 1.875rem;
      font-weight: 100;
      line-height: 1.875rem;
      height: auto;
      margin-bottom: 0.5rem; }
      @media only screen and (max-width: 47.49em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-title {
          font-size: 1.5rem;
          line-height: 1.5rem; } }
      @media only screen and (max-width: 34.365em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-title {
          font-size: 1.1rem;
          line-height: 1.1rem; } }
    #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions {
      overflow: visible;
      width: 30%;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-direction: column;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      -ms-justify-content: flex-end;
      -o-justify-content: flex-end;
      justify-content: flex-end;
      -webkit-align-items: flex-end;
      -moz-align-items: flex-end;
      -ms-align-items: flex-end;
      -o-align-items: flex-end;
      align-items: flex-end; }
      @media only screen and (max-width: 47.49em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions {
          position: relative;
          width: calc(100% - 150px);
          margin: -2rem 0 0; }
          html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions {
            left: 150px; }
          html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions {
            right: 150px; } }
      @media only screen and (max-width: 34.365em) {
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions {
          width: calc(100% - 120px); }
          html:not(.rtl) #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions {
            left: 120px; }
          html.rtl #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions {
            right: 120px; } }
      #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions a {
        opacity: 1;
        border-radius: 0;
        font-size: 0.875rem;
        font-weight: normal;
        text-transform: none;
        line-height: 1.3125rem;
        padding: 1.85rem 0.15rem;
        width: 100%;
        max-width: 190px;
        margin: 0;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
        background-color: #3300ad; }
        #my-wishlist #ssw-fave-page-side-bar .ssw-fave-item .ssw-fave-product-actions a:hover {
          background-color: #230077; }
#my-wishlist .ssw-fave-list-container {
  padding: 0px; }

.c-favourites-list-item__remove-button .c-icon {
  height: 1rem;
  width: 1.0625rem;
  fill: #767676; }
  html:not(.rtl) .c-favourites-list-item__remove-button .c-icon {
    margin-right: 0.5rem; }
  html.rtl .c-favourites-list-item__remove-button .c-icon {
    margin-left: 0.5rem; }

/*================ WISHLIST GUEST ================*/
.ssw-page-header {
  margin: 0 0.9375rem;
  max-width: 98.125rem;
  min-width: 18.125rem;
  padding: 1.9rem 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-start; }
  @media only screen and (min-width: 34.375em) {
    .ssw-page-header {
      margin: 0 2.8125rem;
      min-width: 14.375rem; } }
  @media only screen and (min-width: 68.75em) {
    .ssw-page-header {
      margin: 0 6.125rem;
      min-width: 7.75rem; } }
  @media only screen and (min-width: 100em) {
    .ssw-page-header {
      margin: 0 auto;
      min-width: 20rem; } }
  .ssw-page-header svg {
    width: 3.4375rem;
    height: 3.4375rem;
    color: #bab6b5; }
    html:not(.rtl) .ssw-page-header svg {
      margin-right: 0.8rem; }
    html.rtl .ssw-page-header svg {
      margin-left: 0.8rem; }
    @media only screen and (max-width: 68.74em) {
      .ssw-page-header svg {
        width: 2.1875rem;
        height: 2.1875rem; } }
  .ssw-page-header .wishlist__title {
    font-size: 4.5rem;
    font-weight: 100;
    line-height: 4.5rem;
    margin: 0; }
    @media only screen and (max-width: 68.74em) {
      .ssw-page-header .wishlist__title {
        font-size: 2.5rem;
        line-height: 2.5rem; } }

/*================ WISHLIST EMPTY ================*/
.ssw-fave-empty-list .ssw-fave-list-container:before {
  content: none !important; }

.c-favourites-empty__title {
  margin: 1rem 0 3rem;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem; }
  html:not(.rtl) .c-favourites-empty__title {
    text-align: left; }
  html.rtl .c-favourites-empty__title {
    text-align: right; }
  .c-favourites-empty__title span {
    margin-bottom: 1.25rem;
    display: inline-block; }

/*================ WISHLIST VARIANTS MODAL ================*/
#fave-variants-modal.ssw-add-to-cart-dialog .ssw-close {
  position: absolute; }
html:not(.rtl) #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-col {
  float: left; }
html.rtl #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-col {
  float: right; }
#fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variants-title {
  font-size: 32px;
  float: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0; }
  html:not(.rtl) #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variants-title {
    padding-right: 1em; }
  html.rtl #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variants-title {
    padding-left: 1em; }
  html:not(.rtl) #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variants-title {
    text-align: left; }
  html.rtl #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variants-title {
    text-align: right; }
#fave-variants-modal.ssw-add-to-cart-dialog .ssw-variant-option {
  margin: 1em; }
  html:not(.rtl) #fave-variants-modal.ssw-add-to-cart-dialog .ssw-variant-option {
    text-align: left; }
  html.rtl #fave-variants-modal.ssw-add-to-cart-dialog .ssw-variant-option {
    text-align: right; }
#fave-variants-modal.ssw-add-to-cart-dialog .ssw-variant-option-title {
  color: #767676;
  padding: 0 5px;
  opacity: 1;
  text-transform: none; }
#fave-variants-modal.ssw-add-to-cart-dialog .ssw-variant-option-value {
  display: inline-block;
  padding: 0 5px;
  margin: 5px 0;
  height: 2.5rem;
  text-align: center; }
  #fave-variants-modal.ssw-add-to-cart-dialog .ssw-variant-option-value input[type=radio]:checked + label {
    border: 1px solid #3a2e2c; }
  #fave-variants-modal.ssw-add-to-cart-dialog .ssw-variant-option-value label {
    border: 1px solid #bab6b5;
    padding: 8px 8px;
    height: 2.5rem;
    width: 2.5rem;
    display: inline-block; }
html:not(.rtl) #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-cart-wrapper {
  float: right; }
html.rtl #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-cart-wrapper {
  float: left; }
#fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end; }
  #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price del {
    order: -1;
    text-decoration: none;
    position: relative; }
    html:not(.rtl) #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price del {
      margin-left: 0; }
    html.rtl #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price del {
      margin-right: 0; }
    html:not(.rtl) #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price del {
      margin-right: 0.5em; }
    html.rtl #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price del {
      margin-left: 0.5em; }
    #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price del .money {
      color: #3a2e2c; }
      #fave-variants-modal.ssw-add-to-cart-dialog .ssw-product-variant-price del .money::after {
        border-bottom: 1px solid #767676;
        content: "";
        left: 0;
        position: absolute;
        top: 50%;
        transform: skewY(11deg);
        width: 100%; }

.ssw-product-variant-add-to-cart {
  white-space: normal;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  padding-bottom: 1.125rem;
  padding-top: 1.125rem;
  width: 100%;
  margin-top: 15px;
  background-color: #3300ad; }
  .ssw-product-variant-add-to-cart:hover, .ssw-product-variant-add-to-cart:active, .ssw-product-variant-add-to-cart:focus {
    background-color: #230077; }
  .ssw-product-variant-add-to-cart .ssw-icon-cart {
    display: none; }

#ssw-variant-option2 {
  display: none; }

/*============================================================================
  #Custom Modal
==============================================================================*/
/* The Modal (background) */
.custom-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 999;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* Modal Content/Box */
  /* The Close Button */ }
  .custom-modal .modal-content {
    background-color: white;
    margin: 8% auto;
    /* 8% from the top and centered */
    padding: 0;
    border: 1px solid #eeeeee;
    width: 80%;
    /* Could be more or less, depending on screen size */ }
    @media only screen and (max-width: 47.49em) {
      .custom-modal .modal-content {
        margin: 15% auto;
        /* 15% from the top and centered */ } }
  .custom-modal .close {
    color: #767676;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 20px; }
  .custom-modal .close:hover,
  .custom-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer; }

body.no-scroll {
  overflow: hidden; }
