/** Shopify CDN: Minification failed

Line 454:3 Unexpected "zoom"
Line 2483:3 Unexpected "zoom"
Line 2570:3 Unexpected "zoom"

**/
@charset "UTF-8";
/*============================================================================
  Debut | Built with Shopify Slate

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  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
==============================================================================*/
/*============================================================================
  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
==============================================================================*/
/*============================================================================
  Return a color based on the brightness of an existing color.
  Need to pass in brightness because it is calculated with Liquid.
  @param {Number} $brightness
  @param {String} $color
  @example scss - Usage
    $focusColor: adaptiveColor(#000, 0);
  @example css - CSS Output
    $focusColor: #404040;
  @return {String}
==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ VARIABLES ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
    - Breakpoint pixel values are used in the window.theme.breakpoints object
==============================================================================*/
/*============================================================================
  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 ================*/
/*================ Sizing Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero Slider ================*/
/*================ Typography ================*/
@font-face {
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/cdn/fonts/poppins/poppins_n6.e2fdd168541a5add2d1a8d6f2b89b09c9c9e690d.woff2?h1=bWFtYXNhbmRwYXBhcy5jb20&hmac=a0297ac80be498563345bd95ccc3f58718e4ea70a15580e84bf8df83580c7f41") format("woff2"), url("/cdn/fonts/poppins/poppins_n6.6d62d2d0f11a9ff578d200ad2154f9860db165c1.woff?h1=bWFtYXNhbmRwYXBhcy5jb20&hmac=ccf82f8bcc8817bb9becdbf13abf1ef90ec1ec19e86995baf296cf97f780307e") format("woff"); }

@font-face {
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/cdn/fonts/poppins/poppins_n4.934accbf9f5987aa89334210e6c1e9151f37d3b6.woff2?h1=bWFtYXNhbmRwYXBhcy5jb20&hmac=b0b3df3b880900d99156e7475812e5a75f9ee945c27ac79286b0aef01b7375d1") format("woff2"), url("/cdn/fonts/poppins/poppins_n4.ee28d4489eaf5de9cf6e17e696991b5e9148c716.woff?h1=bWFtYXNhbmRwYXBhcy5jb20&hmac=42aa77d078b00ac6f6b8d7d7e936553fa63dab7bdb31f8c6d5518606ccb81e08") format("woff"); }

@font-face {
  font-family: Poppins;
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("/cdn/fonts/poppins/poppins_n2.75bde81cae8b400289bf110d899423e08f7a57ed.woff2?h1=bWFtYXNhbmRwYXBhcy5jb20&hmac=0cd5e2e64f97a2c54b6cb694b5d0bc477a8d1e83d36236a910129c3d7025d5c0") format("woff2"), url("/cdn/fonts/poppins/poppins_n2.1e4622748ede27e2c6427a690a2bb238d3adb1c7.woff?h1=bWFtYXNhbmRwYXBhcy5jb20&hmac=4b987f3c78d6832d486c9f415127641db310b5e03a130753d08f1335692a2c2a") format("woff"); }

@font-face {
  font-family: "VivaBeautifulPro-Regular";
  src: url("/cdn/shop/t/1/assets/VivaBeautifulPro.woff2?v=125175245082256170181680689087") format("woff2"), url("/cdn/shop/t/1/assets/VivaBeautifulPro.woff?v=99096766994708235691680688992") format("woff");
  font-display: swap;
  font-weight: normal;
  font-style: normal; }

/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ VENDOR ================*/
/*============================================================================
  Slick Slider 1.6.0

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually.
  - Remove `outline: none` from `.slick-dots li button`
==============================================================================*/
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

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

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

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

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

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

.slick-loading {
  visibility: hidden; }

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(/cdn/shop/t/1/assets/ajax-loader.gif?v=162193615998026132361689089035) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick-icons, sans-serif";
    font-size: 20px;
    line-height: 1;
    color: black;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button, .slick-dots li a {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover:before, .slick-dots li button:focus:before, .slick-dots li a:hover:before, .slick-dots li a:focus:before {
        opacity: 1; }
      .slick-dots li button:before, .slick-dots li a:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick-icons, sans-serif";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: white;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: white;
      opacity: 0.75; }

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

body {
  margin: 0;
  max-width: 2500px;
  margin: 0 auto; }

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: 600; }

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,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

input[type="search"], input[type="number"], input[type="email"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none; }

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

td,
th {
  padding: 0; }

textarea {
  overflow: auto;
  -webkit-appearance: none;
  -moz-appearance: none; }

/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
a,
button,
[role="button"],
input,
label,
select,
textarea {
  touch-action: manipulation; }

/*============================================================================
  #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;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -16px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 767px) {
    .grid {
      margin-left: -16px; } }

.grid__item {
  float: left;
  padding-left: 16px;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .grid__item {
      padding-left: 16px; } }
  .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; }

/*============================================================================
  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%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 767px) {
  /* 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%; }

  .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--one-eighth:nth-child(8n+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; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 768px) {
  /* 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 {
    width: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 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--one-eighth:nth-child(8n+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; }

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

  .medium-up--text-center {
    text-align: center !important; } }
@media only screen and (max-width: 1279px) {
  /* Whole */
  .large-down--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-down--eight-twelfths {
    width: 66.66667%; }

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

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

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

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

  .large-down--show {
    display: block !important; }

  .large-down--hide {
    display: none !important; }

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

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

  .large-down--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 1024px) {
  /* 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 {
    width: 66.66667%; }

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

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

  .large-up--eleven-twelfths {
    width: 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--one-eighth:nth-child(8n+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; }

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

  .large-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 1280px) {
  /* 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%; }

  .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--one-eighth:nth-child(8n+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; }

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

  .widescreen--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 767px) {
  /* Halves */
  .small--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (max-width: 1023px) {
  /* Halves */
  .medium-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 768px) {
  /* 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 (max-width: 1279px) {
  /* Halves */
  .large-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 1024px) {
  /* 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%; } }
@media only screen and (min-width: 1280px) {
  /* Halves */
  .widescreen--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .widescreen--push-eleven-twelfths {
    left: 91.66667%; } }
/*================ #Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

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

.visibility-hidden {
  visibility: hidden; }

.visually-hidden--inline {
  margin: 0;
  height: 1em; }

.visually-hidden--static {
  position: static !important; }

.js-focus-hidden:focus {
  outline: none; }

.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

.no-js .js {
  display: none; }

.hide {
  display: none !important; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #323232;
  background-color: white;
  padding: 10px;
  opacity: 1;
  z-index: 10000;
  transition: none; }

/*=============== Lazy loading ===================*/
.box {
  background: no-repeat;
  background-color: #f7f7f7;
  background-size: contain; }

.ratio-container {
  position: relative; }

.ratio-container:after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
  padding-bottom: 50%;
  content: ""; }

.ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*================ #Basic Styles ================*/
body,
html {
  background-color: white; }

.page-width {
  *zoom: 1;
  max-width: 1650px;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block;
  padding-top: 16px; }
  @media only screen and (min-width: 768px) {
    .main-content {
      padding-top: 32px; } }

.section-header {
  margin-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .section-header {
      margin-bottom: 32px; } }

/* Typography helper classes - Main global styling, please follow */
/* Title with narrow line height */
/* The set up */
/* The classes */
.font-title-s {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-s {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.25); } }

.font-title-m {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-m {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.25); } }

.font-title-l {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(18px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-l {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: calc(16px * 1.25); } }

.font-title-xl {
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: calc(23px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xl {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: calc(18px * 1.25); } }

.font-title-xxl {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: calc(26px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxl {
      font-family: Poppins, sans-serif;
      font-size: 23px;
      font-weight: 400;
      line-height: calc(23px * 1.25); } }

.font-title-xxxl {
  font-family: Poppins, sans-serif;
  font-size: 29px;
  font-weight: 400;
  line-height: calc(29px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxxl {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 400;
      line-height: calc(26px * 1.25); } }

.font-title-xxxxl {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: calc(46px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxxxl {
      word-break: break-word; } }

.font-title-s-bold {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(14px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-s-bold {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: calc(14px * 1.25); } }

.font-title-m-bold {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(16px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-m-bold {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: calc(14px * 1.25); } }

.font-title-l-bold {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(18px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-l-bold {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.25); } }

.font-title-xl-bold {
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: calc(23px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xl-bold {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: calc(18px * 1.25); } }

.font-title-xxl-bold {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: calc(26px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxl-bold {
      font-family: Poppins, sans-serif;
      font-size: 23px;
      font-weight: 600;
      line-height: calc(23px * 1.25); } }

.font-title-xxxl-bold {
  font-family: Poppins, sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: calc(29px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxxl-bold {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 600;
      line-height: calc(26px * 1.25); } }

.font-title-xxxxl-bold {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: calc(46px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxxxl-bold {
      word-break: break-word; } }

.font-title-s-light {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: calc(14px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-s-light {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 200;
      line-height: calc(14px * 1.25); } }

.font-title-m-light {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: calc(16px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-m-light {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 200;
      line-height: calc(14px * 1.25); } }

.font-title-l-light {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: calc(18px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-l-light {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 200;
      line-height: calc(16px * 1.25); } }

.font-title-xl-light {
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 200;
  line-height: calc(23px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xl-light {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 200;
      line-height: calc(18px * 1.25); } }

.font-title-xxl-light {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 200;
  line-height: calc(26px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxl-light {
      font-family: Poppins, sans-serif;
      font-size: 23px;
      font-weight: 200;
      line-height: calc(23px * 1.25); } }

.font-title-xxxl-light {
  font-family: Poppins, sans-serif;
  font-size: 29px;
  font-weight: 200;
  line-height: calc(29px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxxl-light {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 200;
      line-height: calc(26px * 1.25); } }

.font-title-xxxxl-light {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 200;
  line-height: calc(46px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-title-xxxxl-light {
      word-break: break-word; } }

/* Html H tag with normal line height */
/* The set up */
/* The classes */
.font-h1-bold {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: calc(32px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h1-bold {
      font-family: Poppins, sans-serif;
      font-size: 29px;
      font-weight: 600;
      line-height: calc(29px * 1.5); } }

.font-h1 {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: calc(32px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h1 {
      font-family: Poppins, sans-serif;
      font-size: 29px;
      font-weight: 400;
      line-height: calc(29px * 1.5); } }

.font-h2-bold {
  font-family: Poppins, sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: calc(29px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h2-bold {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 600;
      line-height: calc(26px * 1.5); } }

.font-h2 {
  font-family: Poppins, sans-serif;
  font-size: 29px;
  font-weight: 400;
  line-height: calc(29px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h2 {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 400;
      line-height: calc(26px * 1.5); } }

.font-h3-bold {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: calc(26px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h3-bold {
      font-family: Poppins, sans-serif;
      font-size: 23px;
      font-weight: 600;
      line-height: calc(23px * 1.5); } }

.font-h3 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: calc(26px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h3 {
      font-family: Poppins, sans-serif;
      font-size: 23px;
      font-weight: 400;
      line-height: calc(23px * 1.5); } }

.font-h4-bold {
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: calc(23px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h4-bold {
      font-family: Poppins, sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: calc(20px * 1.5); } }

.font-h4 {
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: calc(23px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h4 {
      font-family: Poppins, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: calc(20px * 1.5); } }

.font-h5-bold {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: calc(20px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h5-bold {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: calc(18px * 1.5); } }

.font-h5 {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: calc(20px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h5 {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: calc(18px * 1.5); } }

.font-h6-bold {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(18px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h6-bold {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: calc(18px * 1.5); } }

.font-h6 {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(18px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .font-h6 {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: calc(18px * 1.5); } }

/* Body text with normal line height */
/* The set up */
/* The classes */
.font-text-l-bold {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(18px * 1.5); }

.font-text-l {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(18px * 1.5); }

.font-text-m-bold {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(16px * 1.5); }

.font-text-m {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16px * 1.5); }

.font-text-s-bold {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(14px * 1.5); }

.font-text-s {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.5); }

.font-text-xs-bold {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: calc(13px * 1.5); }

.font-text-xs {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(13px * 1.5); }

.font-text-xxs-bold {
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: calc(11px * 1.5); }

.font-text-xxs {
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: calc(11px * 1.5); }

/* Display text with narrow line height */
/* The set up */
/* The classes */
.font-display-s-bold {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: calc(36px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-display-s-bold {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 600;
      line-height: calc(26px * 1); } }

.font-display-m-bold {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: calc(46px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-display-m-bold {
      font-family: Poppins, sans-serif;
      font-size: 29px;
      font-weight: 600;
      line-height: calc(29px * 1); } }

.font-display-l-bold {
  font-family: Poppins, sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: calc(58px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-display-l-bold {
      font-family: Poppins, sans-serif;
      font-size: 36px;
      font-weight: 600;
      line-height: calc(36px * 1); } }

.font-display-s-light {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 200;
  line-height: calc(36px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-display-s-light {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 200;
      line-height: calc(26px * 1); } }

.font-display-m-light {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 200;
  line-height: calc(46px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-display-m-light {
      font-family: Poppins, sans-serif;
      font-size: 29px;
      font-weight: 200;
      line-height: calc(29px * 1); } }

.font-display-l-light {
  font-family: Poppins, sans-serif;
  font-size: 58px;
  font-weight: 200;
  line-height: calc(58px * 1); }
  @media only screen and (max-width: 1023px) {
    .font-display-l-light {
      font-family: Poppins, sans-serif;
      font-size: 36px;
      font-weight: 200;
      line-height: calc(36px * 1); } }

/* Section header font setting */
.font-section-kicker {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(18px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-section-kicker {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: calc(16px * 1.25); } }

.font-section-headline {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 200;
  line-height: calc(46px * 1);
  margin-top: 4px; }
  @media only screen and (max-width: 1023px) {
    .font-section-headline {
      font-family: Poppins, sans-serif;
      font-size: 29px;
      font-weight: 200;
      line-height: calc(29px * 1); } }

.font-section-subtitle {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(18px * 1.25); }
  @media only screen and (max-width: 1023px) {
    .font-section-subtitle {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: calc(16px * 1.25); } }

.font-section-text {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.5);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; }

/* Script font with narrow line height */
/* The set up */
.font-accent-xxl,
.font-accent-xl,
.font-accent-l {
  font-family: VivaBeautifulPro-Regular, Serif;
  font-size: 150px;
  line-height: 150px; }
  @media only screen and (max-width: 1023px) {
    .font-accent-xxl,
    .font-accent-xl,
    .font-accent-l {
      font-size: 52px;
      line-height: 52px; } }

/* The classes */
.font-accent-m {
  font-family: VivaBeautifulPro-Regular, Serif;
  font-size: 94px;
  line-height: 94px; }
  @media only screen and (max-width: 1023px) {
    .font-accent-m {
      font-size: 52px;
      line-height: 52px; } }

.font-accent-s {
  font-family: VivaBeautifulPro-Regular, Serif;
  font-size: 52px;
  line-height: 52px; }
  @media only screen and (max-width: 1023px) {
    .font-accent-s {
      font-size: 52px;
      line-height: 52px; } }

/*================ Typography ================*/
blockquote {
  font-size: 1.28571em;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    border-color: #ececec;
    border-width: 1px 0;
    border-style: solid;
    padding: 30px 0;
    margin-bottom: 16px; }
    .rte blockquote p {
      font-size: inherit; }
  blockquote p + cite {
    margin-top: 16px; }
  blockquote cite {
    display: block;
    font-size: 0.85em;
    font-weight: 400; }
    blockquote cite::before {
      content: '\2014 \0020'; }

code,
pre {
  font-family: Consolas, monospace;
  font-size: 1em; }

pre {
  overflow: auto; }

body,
input,
textarea,
button,
select {
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #323232;
  line-height: 24px; }

body {
  line-height: 21px; }

@media only screen and (max-width: 1023px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px; } }
/*================ Headings ================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 8px;
  overflow-wrap: break-word;
  word-wrap: break-word; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: calc(32px * 1.5); }
  @media only screen and (max-width: 1023px) {
    h1, .h1 {
      font-family: Poppins, sans-serif;
      font-size: 29px;
      font-weight: 600;
      line-height: calc(29px * 1.5); } }

h2, .h2 {
  font-family: Poppins, sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: calc(29px * 1.5); }
  @media only screen and (max-width: 1023px) {
    h2, .h2 {
      font-family: Poppins, sans-serif;
      font-size: 26px;
      font-weight: 600;
      line-height: calc(26px * 1.5); } }

h3, .h3 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: calc(26px * 1.5); }
  @media only screen and (max-width: 1023px) {
    h3, .h3 {
      font-family: Poppins, sans-serif;
      font-size: 23px;
      font-weight: 600;
      line-height: calc(23px * 1.5); } }

h4, .h4 {
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: calc(23px * 1.5); }
  @media only screen and (max-width: 1023px) {
    h4, .h4 {
      font-family: Poppins, sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: calc(20px * 1.5); } }

h5, .h5 {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: calc(20px * 1.5); }
  @media only screen and (max-width: 1023px) {
    h5, .h5 {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: calc(18px * 1.5); } }

h6, .h6 {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(18px * 1.5); }
  @media only screen and (max-width: 1023px) {
    h6, .h6 {
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: calc(18px * 1.5); } }

/*================ RTE headings ================*/
.rte {
  color: #323232;
  margin-bottom: 16px; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1,
  .rte h2,
  .rte h3,
  .rte h4,
  .rte h5,
  .rte h6 {
    margin-top: 32px;
    margin-bottom: 16px; }
    .rte h1:first-child,
    .rte h2:first-child,
    .rte h3:first-child,
    .rte h4:first-child,
    .rte h5:first-child,
    .rte h6:first-child {
      margin-top: 0; }
  .rte li {
    margin-bottom: 4px;
    list-style: inherit; }
    .rte li:last-child {
      margin-bottom: 0; }

.rte-setting {
  margin-bottom: 8px; }
  .rte-setting:last-child {
    margin-bottom: 0; }

/*================ Paragraph styles ================*/
p {
  color: #323232;
  margin: 0 0 8px; }
  p:last-child {
    margin-bottom: 0; }

/*================ Lists ================*/
li {
  list-style: none; }

/*================ Misc styles ================*/
.fine-print {
  font-size: 1em;
  font-style: italic; }

.txt--minor {
  font-size: 80%; }

.txt--emphasis {
  font-style: italic; }

.address {
  margin-bottom: 32px; }

/*================ Hero and slideshow headers ================*/
.mega-title,
.mega-subtitle {
  color: white; }
  .hero .mega-title, .hero
  .mega-subtitle {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); }
  @media only screen and (min-width: 768px) {
    .mega-title,
    .mega-subtitle {
      text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); } }

.mega-title {
  margin-bottom: 8px; }

.mega-title--large {
  font-size: 3.14286em; }
  @media only screen and (min-width: 768px) {
    .mega-title--large {
      font-size: 6.42857em; } }

@media only screen and (min-width: 768px) {
  .mega-subtitle {
    font-size: 1.28571em;
    margin: 0 auto; }
    .text-center .mega-subtitle {
      max-width: 75%; } }
.mega-subtitle p {
  color: white; }
.mega-subtitle a {
  color: white;
  border-bottom: 1px solid currentColor; }
  .mega-subtitle a:hover, .mega-subtitle a:focus {
    color: #e6e6e6; }

.mega-subtitle--large {
  font-size: 1.14286em;
  font-weight: 600; }
  @media only screen and (min-width: 768px) {
    .mega-subtitle--large {
      font-size: 1.57143em; } }

/*============================================================================
  Animation Classes and Keyframes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

/*================ #Icons ================*/
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor; }
  .no-svg .icon {
    display: none; }

svg.icon:not(.icon--full-color) circle,
svg.icon:not(.icon--full-color) ellipse,
svg.icon:not(.icon--full-color) g,
svg.icon:not(.icon--full-color) line,
svg.icon:not(.icon--full-color) path,
svg.icon:not(.icon--full-color) polygon,
svg.icon:not(.icon--full-color) polyline,
svg.icon:not(.icon--full-color) rect,
symbol.icon:not(.icon--full-color) circle,
symbol.icon:not(.icon--full-color) ellipse,
symbol.icon:not(.icon--full-color) g,
symbol.icon:not(.icon--full-color) line,
symbol.icon:not(.icon--full-color) path,
symbol.icon:not(.icon--full-color) polygon,
symbol.icon:not(.icon--full-color) polyline,
symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit; }
svg.icon:not(.icon--full-color) .icon-error__symbol,
symbol.icon:not(.icon--full-color) .icon-error__symbol {
  fill: #ffffff; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  @media only screen and (max-width: 1023px) {
    .payment-icons {
      line-height: 40px; } }
  .payment-icons .icon {
    width: 38px;
    height: 24px;
    fill: inherit; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 23px;
  height: 23px; }
  @media only screen and (min-width: 768px) {
    .social-icons .icon {
      width: 25px;
      height: 25px; } }
  .social-icons .icon.icon--wide {
    width: 40px; }

/*================ Loading Icons ================*/
.icon-spinner {
  -moz-animation: spin 500ms infinite linear;
  -o-animation: spin 500ms infinite linear;
  -webkit-animation: spin 500ms infinite linear;
  animation: spin 500ms infinite linear; }

/*================ Error Icons ================*/
.icon-error {
  fill: #d20000;
  width: 0.85714em;
  height: 0.85714em;
  margin-top: 0;
  flex-shrink: 0; }

/*================ #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;
    vertical-align: middle; }

/*================ #Rich Text Editor ================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 8px 16px; }
  .rte ul.list--inline,
  .rte ol.list--inline {
    margin-left: 0; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

.scrollable-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*================ #Links and Buttons ================*/
a {
  color: #323232;
  text-decoration: none; }
  a:not([disabled]):hover, a:focus {
    color: #323232; }
  a.classic-link {
    text-decoration: underline; }

a[href^="tel"] {
  color: inherit; }

/*================ Buttons ================*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 0px;
  padding: 8px 16px;
  background-color: #323232;
  color: white;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
  font-size: 14px;
  transition: all 0.3s ease-out; }
  @media only screen and (min-width: 768px) {
    .btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
      padding: 10px 32px; } }
  .btn:not([disabled]):hover, .shopify-payment-button .shopify-payment-button__button--unbranded:not([disabled]):hover, .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
    color: white;
    background-color: #0b7276;
    text-decoration: underline;
    transition: all 0.15s ease-in; }
  .btn .icon-arrow-right, .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-right,
  .btn .icon-arrow-left,
  .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-left {
    height: 9px; }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, .btn[aria-disabled], .shopify-payment-button [aria-disabled].shopify-payment-button__button--unbranded {
    cursor: default;
    opacity: 0.25; }

.btn--secondary {
  background-color: transparent;
  color: #323232;
  border-color: #323232;
  font-weight: 400; }
  .btn--secondary:not([disabled]):hover, .btn--secondary:focus {
    background-color: transparent;
    color: #0b7276;
    border-color: #0b7276; }

.btn--secondary-accent {
  background-color: white;
  color: #323232;
  border-color: #323232;
  font-weight: 400; }
  .btn--secondary-accent:not([disabled]):hover, .btn--secondary-accent:focus {
    background-color: white;
    color: #0b7276;
    border-color: #0b7276; }

.btn--secondary-white {
  background-color: transparent;
  color: white;
  border-color: white;
  font-weight: 400; }
  .btn--secondary-white:not([disabled]):hover, .btn--secondary-white:focus {
    background-color: transparent;
    color: white;
    border-color: white; }

.btn--solid-color {
  background-color: #47bb9c; }
  .btn--solid-color:not([disabled]):hover, .btn--solid-color:focus {
    background-color: #2aa786; }

.btn--solid-light {
  background-color: #f8f8f8;
  color: #323232; }
  .btn--solid-light:not([disabled]):hover, .btn--solid-light:focus {
    background-color: #DEE1E3;
    color: #323232; }

.btn--solid-white {
  background-color: white;
  color: #323232; }
  .btn--solid-white:not([disabled]):hover, .btn--solid-white:focus {
    background-color: white;
    color: #323232; }

.btn--small {
  padding: 8px 10px;
  font-size: 0.85714em;
  line-height: 1; }

.btn--tertiary {
  background-color: transparent;
  color: #323232;
  border-color: #323232;
  font-weight: 400; }
  .btn--tertiary:not([disabled]):hover, .btn--tertiary:focus {
    background-color: transparent;
    color: #0b7276;
    border-color: #0b7276; }

/*================ Button variations ================*/
@media only screen and (max-width: 767px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px; } }
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  color: #323232;
  text-align: left;
  font-size: 14px; }
  .btn--link:not([disabled]):hover, .btn--link:focus {
    color: #323232;
    background-color: transparent;
    outline: none; }
  .btn--link .icon {
    vertical-align: middle; }

.btn--narrow {
  padding-left: 15px;
  padding-right: 15px; }

.btn--has-icon-after .icon {
  margin-left: 10px; }

.btn--has-icon-before .icon {
  margin-right: 10px; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

.text-link--accent {
  color: #323232;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px; }
  .text-link--accent:not([disabled]):hover, .text-link--accent:focus {
    color: #0b7276; }

/*================ Return to collection/blog links ================*/
.return-link-wrapper {
  margin-top: 48px;
  margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .return-link-wrapper {
      margin-top: 32px; } }

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2; }

/*================ #Tables ================*/
table {
  margin-bottom: 16px; }
  table a {
    border-bottom: 1px solid currentColor; }

th {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600; }

th,
td {
  text-align: left;
  border: 1px solid #ececec;
  padding: 10px 14px; }

tbody th,
tfoot th {
  font-weight: 600; }

/*============================================================================
  Custom tables, defined with .table on table element.
==============================================================================*/
.overflow-table {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; }
  .overflow-table caption {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: calc(18px * 1.5);
    margin: 16px 0; }
  @media only screen and (max-width: 767px) {
    .overflow-table caption {
      margin: 8px 0; } }

.rte .overflow-table {
  white-space: normal; }
  .rte .overflow-table .scrollable-wrapper {
    max-width: none; }
  .rte .overflow-table tr {
    vertical-align: top; }
  .rte .overflow-table th, .rte .overflow-table td {
    min-width: 160px; }
  .rte .overflow-table td {
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: calc(13px * 1.5); }
  .rte .overflow-table table {
    table-layout: fixed;
    word-break: break-word; }
    .rte .overflow-table table tr th:last-child, .rte .overflow-table table tr td:last-child {
      min-width: 320px;
      width: 35%; }
    @media only screen and (max-width: 767px) {
      .rte .overflow-table table {
        table-layout: auto;
        word-break: normal; } }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
.responsive-table caption {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(18px * 1.5);
  margin: 16px 0; }
@media only screen and (max-width: 767px) {
  .responsive-table {
    display: block; }
    .responsive-table caption {
      display: block;
      margin: 8px 0; }
    .responsive-table thead {
      display: none; }
    .responsive-table tbody, .responsive-table tr, .responsive-table td {
      display: block; }
    .responsive-table tr {
      padding-top: 16px;
      margin-top: 16px;
      border-top: 1px solid #f2f2f2; }
    .responsive-table th,
    .responsive-table td {
      width: 100%;
      text-align: right;
      padding: 0 16px;
      border: 0;
      margin: 0;
      display: flex;
      justify-content: space-between; }
    .responsive-table th::before,
    .responsive-table td::before {
      content: attr(data-label) ": ";
      padding-right: 8px;
      font-weight: 600; } }
.responsive-table .responsive-table__row + .responsive-table__row,
.responsive-table tfoot > .responsive-table__row:first-child {
  position: relative;
  margin-top: 10px;
  padding-top: 32px; }
  .responsive-table .responsive-table__row + .responsive-table__row::after,
  .responsive-table tfoot > .responsive-table__row:first-child::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    border-bottom: 1px solid #ececec; }

/*================ #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 ================*/
form {
  margin: 0; }

fieldset {
  border: 1px solid #323232;
  margin: 0 0 32px;
  padding: 16px; }

legend {
  border: 0;
  padding: 0; }

button {
  cursor: pointer; }

input[type="submit"] {
  cursor: pointer; }

label {
  display: block;
  margin-bottom: 5px; }
  @media only screen and (max-width: 767px) {
    label {
      font-size: 0.85714em; } }
  [type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0; }
  label[for] {
    cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #323232;
  background-color: white;
  color: #323232;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 0px; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #323232;
    outline: none; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #f4f4f4;
    border-color: #f4f4f4; }
  input.input--error::-webkit-input-placeholder,
  textarea.input--error::-webkit-input-placeholder,
  select.input--error::-webkit-input-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error::-moz-placeholder,
  textarea.input--error::-moz-placeholder,
  select.input--error::-moz-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error:-ms-input-placeholder,
  textarea.input--error:-ms-input-placeholder,
  select.input--error:-ms-input-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error::-ms-input-placeholder,
  textarea.input--error::-ms-input-placeholder,
  select.input--error::-ms-input-placeholder {
    color: #d20000;
    opacity: 1; }
  input.hidden-placeholder::-webkit-input-placeholder,
  textarea.hidden-placeholder::-webkit-input-placeholder,
  select.hidden-placeholder::-webkit-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-moz-placeholder,
  textarea.hidden-placeholder::-moz-placeholder,
  select.hidden-placeholder::-moz-placeholder {
    color: transparent; }
  input.hidden-placeholder:-ms-input-placeholder,
  textarea.hidden-placeholder:-ms-input-placeholder,
  select.hidden-placeholder:-ms-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-ms-input-placeholder,
  textarea.hidden-placeholder::-ms-input-placeholder,
  select.hidden-placeholder::-ms-input-placeholder {
    opacity: 1; }
  .product-form input, .product-form
  textarea, .product-form
  select {
    min-height: 44px; }

textarea {
  min-height: 100px; }

/*================ Error styles ================*/
input.input--error,
select.input--error,
textarea.input--error {
  border-color: #d20000;
  background-color: #fff8f8;
  color: #d20000;
  margin-bottom: 5.33333px; }

.input-error-message {
  display: flex;
  line-height: 1.3;
  color: #323232;
  font-size: 0.85714em;
  margin-bottom: 5.33333px; }
  @media only screen and (max-width: 767px) {
    .input-error-message {
      margin-bottom: 8px; } }
  .input-error-message .icon {
    width: 1em;
    height: 1em;
    margin-right: 0.71429em; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(/cdn/shop/t/1/assets/ico-select.svg?v=50175755186257503121597240126);
  background-repeat: no-repeat;
  background-position: right 10px center;
  line-height: 1.2;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  padding-top: 8px;
  padding-left: 16px;
  padding-bottom: 8px; }
  @media only screen and (min-width: 768px) {
    select {
      padding-top: 10px;
      padding-left: 32px;
      padding-bottom: 10px; } }

.select-group {
  position: relative;
  z-index: 2; }
  .select-group select {
    background-image: none;
    background-color: transparent; }
  .select-group .icon {
    height: calc(8em / 16);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(8em / 16);
    z-index: -1; }

.select-label {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(13px * 1.5);
  text-transform: uppercase; }

optgroup {
  font-weight: 600; }

option {
  color: #323232;
  background-color: white; }

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); }

::-webkit-input-placeholder {
  color: #b2b2b1;
  opacity: 1; }

::-moz-placeholder {
  color: #b2b2b1;
  opacity: 1; }

:-ms-input-placeholder {
  color: #b2b2b1;
  opacity: 1; }

::-ms-input-placeholder {
  color: #b2b2b1;
  opacity: 1; }

/*================ Labels ================*/
.label--error {
  color: #d20000; }

input,
textarea {
  padding: 8px 16px; }
  @media only screen and (min-width: 768px) {
    input,
    textarea {
      padding: 10px 32px; } }

/*================ Vertical forms ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 8px; }
  .form-vertical input.input--error,
  .form-vertical select.input--error,
  .form-vertical textarea.input--error {
    margin-bottom: 5.33333px; }
.form-vertical [type="radio"],
.form-vertical [type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }
.form-vertical [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;
  width: auto; }

/*================ Single field forms ================*/
.form-single-field {
  margin: 0 auto 32px;
  max-width: 35rem; }
  .form-single-field .input--error {
    margin-bottom: 0; }

/*================ Form feedback messages ================*/
.note,
.form-message {
  padding: 8px;
  margin: 0 0 16px; }
  @media only screen and (min-width: 768px) {
    .note,
    .form-message {
      padding: 10px; } }

.note {
  border: 1px solid #323232; }

.form-message--success {
  border: 1px solid #1f873d;
  background-color: #f8fff9;
  color: #1f873d;
  display: block;
  width: 100%; }
  .form-message--success:focus {
    outline: none; }

.form-message--error {
  color: #651818;
  border: 1px solid #d20000;
  background-color: #fff8f8;
  padding: 1rem 1.3rem;
  text-align: left;
  width: 100%; }
  .form-message--error li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 16px; }
  .form-message--error .form-message__title {
    font-size: 1.2em; }
  .form-message--error .form-message__link, .form-message--error a {
    display: inline-block;
    text-decoration: underline;
    text-decoration-skip-ink: auto;
    color: #651818; }
    .form-message--error .form-message__link:hover, .form-message--error .form-message__link:focus, .form-message--error a:hover, .form-message--error a:focus {
      text-decoration: none;
      color: #651818; }

/*================ Input Groups ================*/
.input-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }
  .form-vertical .input-group {
    margin-bottom: 32px; }

.input-group--error {
  margin-bottom: 5.33333px; }

.input-group__field,
.input-group__field input,
.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 {
  min-height: 47px; }
  @media only screen and (min-width: 768px) {
    .input-group__field,
    .input-group__field input,
    .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 {
      min-height: 47px; } }

.input-group__field {
  -ms-flex-preferred-size: 15rem;
  -webkit-flex-basis: 15rem;
  -moz-flex-basis: 15rem;
  flex-basis: 15rem;
  flex-grow: 9999;
  margin-bottom: 1rem;
  border-radius: 0px 0 0 0px;
  text-align: left; }
  .input-group__field input {
    width: 100%; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__btn {
  flex-grow: 1; }
  .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 {
    width: 100%;
    border-radius: 0 0px 0px 0; }

/*================ #Site Nav and Dropdowns ================*/
.site-header__logo img {
  display: block; }

#AccessibleNav, #MasterNav {
  min-height: 36px;
  background-color: #f8f8f8; }
  #AccessibleNav .list--inline, #MasterNav .list--inline {
    padding: 0;
    margin: 0; }
    #AccessibleNav .list--inline > li, #MasterNav .list--inline > li {
      display: inline-block;
      vertical-align: middle; }
    #AccessibleNav .list--inline .site-nav__level-0:last-child .site-nav__link--button, #MasterNav .list--inline .site-nav__level-0:last-child .site-nav__link--button {
      border-right: none; }
    #AccessibleNav .list--inline .site-nav__level-0:hover .site-nav__link--button, #AccessibleNav .list--inline .site-nav__level-0:focus-within .site-nav__link--button, #MasterNav .list--inline .site-nav__level-0:hover .site-nav__link--button, #MasterNav .list--inline .site-nav__level-0:focus-within .site-nav__link--button {
      outline: none;
      color: #0b7276 !important; }
      #AccessibleNav .list--inline .site-nav__level-0:hover .site-nav__link--button .site-nav__label, #AccessibleNav .list--inline .site-nav__level-0:focus-within .site-nav__link--button .site-nav__label, #MasterNav .list--inline .site-nav__level-0:hover .site-nav__link--button .site-nav__label, #MasterNav .list--inline .site-nav__level-0:focus-within .site-nav__link--button .site-nav__label {
        border-bottom-color: #323232;
        transition: all 0.4s ease-in; }
  #AccessibleNav .site-nav, #MasterNav .site-nav {
    position: relative;
    padding: 0;
    text-align: center;
    font-size: 0;
    padding: 6px 0; }
    #AccessibleNav .site-nav a, #MasterNav .site-nav a {
      padding: 3px 8px; }

/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap; }

.site-nav__child-link:focus .site-nav__label, .site-nav__child-link:not([disabled]):hover .site-nav__label {
  color: #0b7276; }

.site-nav__link--button {
  border: none;
  background-color: transparent;
  padding: 0px 5px !important;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(16px * 1.5);
  border-right: 1px solid #b2b2b2; }

.site-nav__level-0.site-nav--active-dropdown .site-nav__link--button {
  color: #0b7276; }
  .site-nav__level-0.site-nav--active-dropdown .site-nav__link--button:focus {
    outline: none; }
    .site-nav__level-0.site-nav--active-dropdown .site-nav__link--button:focus .site-nav__label {
      border-bottom-color: #323232; }

.site-nav__link--main .site-nav__label {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(13px * 1.5);
  border-bottom: 3px solid transparent;
  padding: 0 14px 5px;
  transition: all 0.4s ease-out; }
  @media only screen and (max-width: 1439px) {
    .site-nav__link--main .site-nav__label {
      padding: 0 4px 5px; } }
  @media only screen and (max-width: 1259px) {
    .site-nav__link--main .site-nav__label {
      font-family: Poppins, sans-serif;
      font-size: 11px;
      font-weight: 400;
      line-height: calc(11px * 1.5); } }

/*================ Dropdowns ================*/
.site-nav--has-dropdown {
  position: static; }
  .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown:focus-within .site-nav__dropdown {
    display: block;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.14);
    height: auto;
    transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.4s;
    max-height: calc(100vh - 194px); }

.site-nav__dropdown {
  font-size: 14px;
  display: block;
  position: absolute;
  padding: 11px 30px 11px 0;
  margin: 0;
  z-index: 7;
  text-align: left;
  background: white;
  left: 0;
  top: 36px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 0;
  transition: all 0s cubic-bezier(0.45, 0.05, 0.55, 0.95); }
  .site-nav__dropdown.hover {
    display: block;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.14);
    height: auto;
    transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.4s;
    max-height: calc(100vh - 194px); }
  .site-nav__dropdown .site-nav__link {
    display: inline-block; }
  .site-nav--active-dropdown .site-nav__dropdown {
    display: block;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.14);
    height: auto;
    transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    max-height: calc(100vh - 194px); }
  .site-nav__dropdown li {
    display: block; }

.site-nav__dropdown--centered {
  width: 100%;
  padding: 0;
  text-align: center; }
  @media only screen and (min-width: 1440px) {
    .site-nav__dropdown--centered {
      max-width: 1440px;
      left: calc(50% - 720px); } }

/*================ Child list ================*/
.site-nav__childlist {
  display: inline-block;
  background: white;
  padding: 32px 24px;
  text-align: left;
  width: 100%; }

.site-nav__childlist-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-bottom: 16px; }

.site-nav__childlist-item {
  -webkit-flex: 1 1 0%;
  -moz-flex: 1 1 0%;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  margin-bottom: 16px; }

.site-nav__child-link:hover .site-nav__label {
  text-decoration: underline; }

.site-nav__child-link--parent {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(16px * 1.5);
  margin: 4px 0; }
  .site-nav__child-link--parent:hover .site-nav__label {
    text-decoration: none; }

.site-nav__child-link--view-all {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(14px * 1.5); }

.site-nav__promo-banners {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .site-nav__promo-banners .site-nav__promo-banner {
    -webkit-flex: 1 1 0%;
    -moz-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin: 0 8px;
    max-width: 50%; }
    @media only screen and (max-width: 1023px) {
      .site-nav__promo-banners .site-nav__promo-banner {
        max-width: 100%; } }
    .site-nav__promo-banners .site-nav__promo-banner a {
      padding: 0 !important; }

.site-nav__brands .site-nav__brands-col {
  width: 25%; }
  .site-nav__brands .site-nav__brands-col .site-nav__childlist-item {
    flex: none;
    margin: 0; }
    .site-nav__brands .site-nav__brands-col .site-nav__childlist-item:hover .site-nav__label {
      text-decoration: none; }
    .site-nav__brands .site-nav__brands-col .site-nav__childlist-item .site-nav__child-link--parent {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: calc(16px * 1.5);
      margin: 0; }

/*================ Layout ================*/
.page-width {
  padding-left: 32px;
  padding-right: 32px; }
  @media only screen and (max-width: 767px) {
    .page-width {
      padding-left: 16px;
      padding-right: 16px; } }

.page-container {
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  position: relative;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .page-container {
      -ms-transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); } }

hr {
  margin: 32px 0;
  border: 0;
  border-bottom: 1px solid #ececec; }

.hr--small {
  padding: 10px 0;
  margin: 0; }

.hr--invisible {
  border-bottom: 0; }

.border-bottom {
  border-bottom: 1px solid #ececec; }

.border-top {
  border-top: 1px solid #ececec; }

.empty-page-content {
  padding: 35px 32px;
  padding-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .empty-page-content {
      padding-left: 16px;
      padding-right: 16px; } }

.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }

.grid--no-gutters {
  margin-left: 0; }
  .grid--no-gutters .grid__item {
    padding-left: 0; }

.grid--half-gutters {
  margin-left: -8px; }
  .grid--half-gutters > .grid__item {
    padding-left: 8px; }

.grid--double-gutters {
  margin-left: -32px; }
  .grid--double-gutters > .grid__item {
    padding-left: 32px; }

.grid--flush-bottom {
  margin-bottom: -32px;
  overflow: auto; }
  .grid--flush-bottom > .grid__item {
    margin-bottom: 32px; }

@-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); } }

@-moz-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); } }

@-ms-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); } }

@-webkit-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@-moz-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@-ms-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; } }

.drawer {
  display: none;
  position: absolute;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 9;
  background-color: white;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .drawer input[type="text"],
  .drawer textarea {
    background-color: white;
    color: #323232; }

.js-drawer-open {
  overflow: hidden; }

.drawer--top {
  width: 100%; }
  .js-drawer-open-top .drawer--top {
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    display: block; }

.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: 8;
  transition: all 0.45s 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__close-button {
  background: none;
  border: 0 none;
  position: relative;
  right: -15px;
  height: 100%;
  width: 60px;
  padding: 0 20px;
  color: inherit;
  font-size: 1.28571em; }
  .drawer__close-button:active, .drawer__close-button:focus {
    background-color: rgba(0, 0, 0, 0.6); }

.grid--view-items {
  overflow: auto;
  margin-bottom: -16px; }

.grid-view-item {
  margin: 0 auto 16px; }
  .custom__item .grid-view-item {
    margin-bottom: 0; }

.grid-view-item__title {
  margin-bottom: 0;
  color: #323232;
  font-weight: 600; }

.grid-view-item__meta {
  margin-top: 8px; }

@media only screen and (max-width: 767px) {
  .grid-view-item__title,
  .grid-view-item__meta {
    font-size: 0.92857em; } }
.grid-view-item__link {
  display: block; }

.grid-view-item__vendor {
  margin-top: 4px;
  color: #323232;
  font-size: 0.85714em;
  text-transform: uppercase; }
  @media only screen and (max-width: 767px) {
    .grid-view-item__vendor {
      font-size: 0.78571em; } }

.grid-view-item__image-wrapper {
  margin: 0 auto 8px;
  position: relative;
  width: 100%; }

.grid-view-item__image {
  display: block;
  margin: 0 auto;
  width: 100%; }
  .grid-view-item__image-wrapper .grid-view-item__image {
    position: absolute;
    top: 0; }
  .grid-view-item--sold-out .grid-view-item__image {
    opacity: 1; }
  .grid-view-item__image.lazyload {
    opacity: 0; }

.list-view-item {
  margin-bottom: 16px; }
  .list-view-item:last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    .list-view-item {
      border-bottom: 1px solid #ececec;
      padding-bottom: 16px; }
      .list-view-item:last-child {
        padding-bottom: 0;
        border-bottom: 0; } }

.list-view-item__link {
  display: table;
  table-layout: fixed;
  width: 100%; }

.list-view-item__image {
  max-height: 95px; }

.list-view-item__image-column {
  display: table-cell;
  vertical-align: middle;
  width: 130px; }
  @media only screen and (max-width: 767px) {
    .list-view-item__image-column {
      width: 85px; } }

.list-view-item__image-wrapper {
  position: relative;
  margin-right: 16px; }
  @media only screen and (max-width: 767px) {
    .list-view-item__image-wrapper {
      margin-right: 8px; } }

.list-view-item__title-column {
  display: table-cell;
  vertical-align: middle; }

.list-view-item__title {
  color: #323232;
  font-size: 1.14286em;
  min-width: 100px;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .list-view-item__title {
      font-size: 0.92857em; } }

.list-view-item__sold-out {
  font-size: 0.92857em; }

.list-view-item__on-sale {
  color: #a42337;
  font-size: 0.92857em; }
  @media only screen and (max-width: 767px) {
    .list-view-item__on-sale {
      display: none; } }

.list-view-item__vendor-column {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 20%; }

.list-view-item__vendor {
  font-size: 0.92857em;
  font-style: italic; }
  @media only screen and (max-width: 767px) {
    .list-view-item__vendor {
      font-size: 0.85714em; } }

.list-view-item__price-column {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 20%;
  font-size: 1.07143em; }
  @media only screen and (max-width: 767px) {
    .list-view-item__price-column {
      font-size: 0.92857em; } }
  .list-view-item__price-column .price__vendor,
  .list-view-item__price-column .price-item__label {
    display: none; }
  .list-view-item__price-column .price__regular,
  .list-view-item__price-column .price__sale {
    flex-basis: 100%; }

.list-view-item__price {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.list-view-item__price--reg {
  color: #a42337; }
  @media only screen and (max-width: 767px) {
    .list-view-item__price--reg {
      display: block; } }

@media only screen and (max-width: 767px) {
  .list-view-item__price--sale {
    display: block; } }

/*================ Tabs to Accordion ================*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0; }
  @media only screen and (max-width: 1023px) {
    .tabs {
      margin: 32px 16px; } }
  .tabs label {
    order: 1;
    display: block;
    padding: 16px 16px 14px 16px;
    margin: 0 16px;
    cursor: pointer;
    background: #fff;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: calc(16px * 1.5);
    transition: all 0.3s ease-out;
    border-bottom: 2px solid #fff;
    max-width: 180px;
    width: 100%;
    text-align: center; }
    @media only screen and (max-width: 1279px) {
      .tabs label {
        margin: 0;
        max-width: 160px; } }
    @media only screen and (max-width: 1023px) {
      .tabs label {
        position: relative;
        order: initial;
        max-width: none;
        margin: 0;
        text-align: left;
        padding: 16px 0 14px;
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: calc(14px * 1.5);
        border-bottom: 1px solid #b2b2b2; }
        .tabs label:after {
          content: '';
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' role='presentation' class='icon icon-chevron-down icon--full-color' width='13.414px' height='8.121px' viewBox='0 0 13.414 8.121'%3E%3Cg transform='translate(0.707 0.707)'%3E%3Cpath d='M7125.171,582.97l6,6,6-6' transform='translate(-7125.171 -582.97)' fill='none' stroke='%23323232' stroke-width='2'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
          width: 13px;
          height: 8px;
          margin-top: 0px;
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
          position: absolute;
          right: 0;
          top: calc(50% - 2px);
          transform: rotate(0deg);
          transition: all 0.2s ease; }
        .tabs label:first-of-type {
          border-top: 1px solid #b2b2b2; } }
    .tabs label span {
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      background-color: transparent; }
      @media only screen and (max-width: 1023px) {
        .tabs label span {
          width: 100%;
          height: 100%;
          z-index: 1; } }
    .tabs label:focus {
      outline: none; }
    .tabs label:hover {
      color: #0b7276;
      border-bottom: 2px solid #323232;
      transition: all 0.15s ease-in; }
      @media only screen and (max-width: 1023px) {
        .tabs label:hover {
          color: currentColor;
          border-bottom: 1px solid #b2b2b2; } }
    @media only screen and (max-width: 1023px) {
      .tabs label.active {
        color: #0b7276;
        border-bottom: 1px solid transparent; }
        .tabs label.active:after {
          transition: all 0.2s ease;
          transform: rotate(-180deg);
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' role='presentation' class='icon icon-chevron-down icon--full-color' width='13.414px' height='8.121px' viewBox='0 0 13.414 8.121'%3E%3Cg transform='translate(0.707 0.707)'%3E%3Cpath d='M7125.171,582.97l6,6,6-6' transform='translate(-7125.171 -582.97)' fill='none' stroke='%230B7276' stroke-width='2'%3E%3C/path%3E%3C/g%3E%3C/svg%3E"); } }
  .tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    background: #fff;
    border-top: 1px solid #b2b2b2; }
    @media only screen and (max-width: 1023px) {
      .tabs .tab {
        order: initial;
        border-top: none;
        display: block;
        overflow: hidden;
        transition: max-height 0.2s ease-in-out;
        max-height: 0; } }
    .tabs .tab:focus {
      outline: none; }
    @media only screen and (max-width: 1023px) {
      .tabs .tab.active {
        border-bottom: 1px solid #b2b2b2;
        padding-bottom: 32px;
        max-height: 9999px;
        transition: max-height 0.3s cubic-bezier(0.44, 0.13, 0.48, 0.87); } }
    .tabs .tab .tab__wrapper {
      margin: 24px auto 0;
      max-width: 944px;
      padding: 0 16px 16px; }
      @media only screen and (max-width: 1023px) {
        .tabs .tab .tab__wrapper {
          margin: 0 auto;
          padding: 0; } }
      .tabs .tab .tab__wrapper.rte {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5); }
        @media only screen and (max-width: 1023px) {
          .tabs .tab .tab__wrapper.rte {
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: calc(14px * 1.5); } }
        .tabs .tab .tab__wrapper.rte h1, .tabs .tab .tab__wrapper.rte h2, .tabs .tab .tab__wrapper.rte h3, .tabs .tab .tab__wrapper.rte h4, .tabs .tab .tab__wrapper.rte h5, .tabs .tab .tab__wrapper.rte h6 {
          font-family: Poppins, sans-serif;
          font-size: 16px;
          font-weight: 600;
          line-height: calc(16px * 1.5);
          margin-top: 24px;
          margin-bottom: 12px; }
          @media only screen and (max-width: 1023px) {
            .tabs .tab .tab__wrapper.rte h1, .tabs .tab .tab__wrapper.rte h2, .tabs .tab .tab__wrapper.rte h3, .tabs .tab .tab__wrapper.rte h4, .tabs .tab .tab__wrapper.rte h5, .tabs .tab .tab__wrapper.rte h6 {
              font-family: Poppins, sans-serif;
              font-size: 14px;
              font-weight: 600;
              line-height: calc(14px * 1.5); } }
        .tabs .tab .tab__wrapper.rte p, .tabs .tab .tab__wrapper.rte ul li {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: calc(14px * 1.5); }
          @media only screen and (max-width: 1023px) {
            .tabs .tab .tab__wrapper.rte p, .tabs .tab .tab__wrapper.rte ul li {
              font-family: Poppins, sans-serif;
              font-size: 14px;
              font-weight: 400;
              line-height: calc(14px * 1.5); } }
  .tabs input[type="radio"] {
    display: none; }
  .tabs input[type="radio"]:checked + label {
    /*
    @include media-query($medium-down) {
      border-bottom: 1px solid transparent;

      &:after {
        transition: all 0.2s ease;
        transform: rotate(-180deg);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' role='presentation' class='icon icon-chevron-down icon--full-color' width='13.414px' height='8.121px' viewBox='0 0 13.414 8.121'%3E%3Cg transform='translate(0.707 0.707)'%3E%3Cpath d='M7125.171,582.97l6,6,6-6' transform='translate(-7125.171 -582.97)' fill='none' stroke='%230B7276' stroke-width='2'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");  
      }
    }*/ }
    @media only screen and (min-width: 1024px) {
      .tabs input[type="radio"]:checked + label {
        color: #0b7276;
        border-bottom: 2px solid #323232; } }
  .tabs input[type="radio"]:checked + label + .tab {
    /*
    @include media-query($medium-down) {
      border-bottom: 1px solid $color-neutrals-1;
      padding-bottom: 32px;
    }*/ }
    @media only screen and (min-width: 1024px) {
      .tabs input[type="radio"]:checked + label + .tab {
        display: block; } }

/*============================================================================
  Slick slider overrides
==============================================================================*/
.slick-dotted.slick-slider {
  margin-bottom: 0; }

/*================ Slick dots and prev/next pagination ================*/
.slideshow__arrows .slick-dots {
  margin: 0 0.75rem; }
  .slideshow__arrows .slick-dots li {
    margin: 0;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-left: 6px; }
    .slideshow__arrows .slick-dots li:first-of-type {
      margin-left: 0; }
    @media only screen and (min-width: 768px) {
      .slideshow__arrows .slick-dots li {
        width: 12px;
        height: 12px;
        margin-left: 8px; } }
    .slideshow__arrows .slick-dots li button, .slideshow__arrows .slick-dots li a {
      position: relative;
      padding: 0;
      width: 10px;
      height: 10px; }
      @media only screen and (min-width: 768px) {
        .slideshow__arrows .slick-dots li button, .slideshow__arrows .slick-dots li a {
          width: 12px;
          height: 12px; } }
    .slideshow__arrows .slick-dots li button::before,
    .slideshow__arrows .slick-dots li a::before {
      text-indent: -9999px;
      background-color: transparent;
      border-radius: 100%;
      background-color: currentColor;
      width: 10px;
      height: 10px;
      opacity: 0.4;
      transition: all 0.2s; }
      @media only screen and (min-width: 768px) {
        .slideshow__arrows .slick-dots li button::before,
        .slideshow__arrows .slick-dots li a::before {
          width: 12px;
          height: 12px; } }
    .slideshow__arrows .slick-dots li.slick-active button::before, .slideshow__arrows .slick-dots li.slick-active a::before, .slideshow__arrows .slick-dots li.slick-active-mobile button::before, .slideshow__arrows .slick-dots li.slick-active-mobile a::before {
      opacity: 1; }
    .slideshow__arrows .slick-dots li button:active::before, .slideshow__arrows .slick-dots li .slick-active a::before, .slideshow__arrows .slick-dots li .slick-active-mobile a::before {
      opacity: 0.7; }

/*================ Index sections ================*/
.index-section {
  padding-top: 16px;
  padding-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .index-section {
      padding-top: 32px;
      padding-bottom: 32px; } }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0; }

.index-section--flush + .index-section--flush {
  margin-top: -32px; }

@media only screen and (min-width: 768px) {
  [class*="index-section--flush"] + [class*="index-section--flush"] {
    margin-top: -64px; } }

.index-section--flush:first-child {
  margin-top: -16px; }

@media only screen and (min-width: 768px) {
  [class*="index-section--flush"]:first-child {
    margin-top: -32px; } }

.index-section--flush:last-child {
  margin-bottom: -16px; }

@media only screen and (min-width: 768px) {
  [class*="index-section--flush"]:last-child {
    margin-bottom: -32px; } }

@media only screen and (max-width: 767px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }

@media only screen and (max-width: 767px) {
  .index-section--slideshow + .index-section--flush {
    margin-top: 0.4rem; } }

.placeholder-svg {
  display: block;
  fill: rgba(50, 50, 50, 0.35);
  background-color: rgba(50, 50, 50, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(50, 50, 50, 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: #323232;
  -moz-animation: placeholder-background-loading 1.5s infinite linear;
  -o-animation: placeholder-background-loading 1.5s infinite linear;
  -webkit-animation: placeholder-background-loading 1.5s infinite linear;
  animation: placeholder-background-loading 1.5s infinite linear; }
  .no-js .placeholder-background--animation {
    display: none; }

.image-bar__content .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0; }

/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.password-page {
  display: table;
  height: 100%;
  width: 100%;
  color: #323232;
  background-color: white;
  background-size: cover; }

.password-form-message {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto; }

.password-header {
  height: 85px;
  display: table-row; }

.password-header__inner {
  display: table-cell;
  vertical-align: middle; }

.password-login {
  padding: 0 30px;
  text-align: right; }

.password-logo .logo {
  color: #323232;
  font-weight: 600;
  max-width: 100%; }

.password-content {
  text-align: center; }

.password-content--rte {
  margin-bottom: 16px; }

.password-content__title {
  display: block;
  margin-bottom: 48px; }

.password-main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 16px 32px; }

.password-message {
  max-width: 500px;
  margin: 48px auto 16px; }

.password__form-heading {
  margin-bottom: 32px; }

.password-powered-by {
  margin-top: 48px; }

.password-social-sharing {
  margin-top: 48px; }

.product-single {
  overflow-anchor: none; }

.product-single__title {
  margin-bottom: 0.5rem; }

.product__price,
.featured-product__price {
  font-size: 1.25em; }

.product__policies {
  margin: 0.4rem 0 1rem 0;
  font-size: 0.92857em; }

/*================ Add to cart form ================*/
.product-form {
  width: auto;
  padding-top: 2rem; }

.product-form__controls-group {
  display: flex;
  flex-wrap: wrap; }

.product-form__controls-group--submit {
  margin-top: 0px; }

.product-form__controls-group ~ .product-form__controls-group--submit {
  margin-top: 15px; }

.product-form__item {
  flex-grow: 0;
  flex-basis: 100%;
  margin-bottom: 10px;
  padding: 0; }
  @media only screen and (min-width: 1024px) {
    .product-form__item {
      flex-basis: 50%;
      padding: 0 5px; }
      .product-single--large-image .product-form__item {
        flex-basis: 100%; } }
  .product-form__item label {
    display: block; }
    .product-form--hide-variant-labels .product-form__item label {
      position: absolute !important;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; }

.product-form__item--submit {
  -webkit-flex: 1 1 300px;
  -moz-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px; }

.product-form__item--no-variants {
  max-width: 400px; }

.product-form__item--payment-button {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 1024px) {
    .product-single--small-image .product-form__item--payment-button, .product-single--full-image .product-form__item--payment-button {
      display: inline-flex;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start; } }
  .product-form__item--payment-button.product-form__item--no-variants {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; }

.product-form--payment-button-no-variants {
  max-width: 25rem; }

.product-form__variants {
  display: none; }
  .no-js .product-form__variants {
    display: block; }

.product-form__input {
  display: block;
  width: 100%; }
  .product-form__input.input--error {
    margin-bottom: 0; }

.product-form__input--quantity {
  max-width: 5rem; }

.product-form__error-message-wrapper {
  display: flex;
  flex-basis: 100%;
  padding: 0.5rem 0;
  margin: 0 0.35714em 20px; }

.product-form__controls-group ~ .product-form__error-message-wrapper {
  margin-bottom: 0; }

.product-form__error-message-wrapper--has-payment-button {
  padding: 0.5rem 0; }

.product-form__error-message-wrapper--hidden {
  display: none; }

.product-form__error-message {
  margin-left: 8px;
  font-size: 13px;
  line-height: 14px;
  color: #d20000; }

.product-form__cart-submit, .shopify-payment-button .shopify-payment-button__button--unbranded {
  display: block;
  width: 100%;
  line-height: 1.4;
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 10px;
  min-height: 44px; }
  .product-single--small-image .product-form__cart-submit, .product-single--small-image .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-single--small-image .shopify-payment-button__button--unbranded, .product-single--full-image .product-form__cart-submit, .product-single--full-image .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-single--full-image .shopify-payment-button__button--unbranded {
    -webkit-flex: 50%;
    -moz-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    margin-right: 10px; }

.product-single--small-image .shopify-payment-button, .product-single--full-image .shopify-payment-button {
  -webkit-flex: 50%;
  -moz-flex: 50%;
  -ms-flex: 50%;
  flex: 50%; }
.shopify-payment-button .shopify-payment-button__button--unbranded:hover {
  background-color: #0b7276 !important; }
.shopify-payment-button .shopify-payment-button__button--branded {
  border-radius: 0px;
  overflow: hidden; }
.shopify-payment-button .shopify-payment-button__more-options {
  margin: 16px 0 10px;
  font-size: 0.85714em;
  text-decoration: underline; }
  .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
    opacity: 0.6; }

@media only screen and (min-width: 768px) {
  .product-form__cart-submit--small {
    max-width: 300px; } }
.product__quantity-error .icon {
  margin-right: 1rem; }

/*================ Product Images ================*/
.product-single__thumbnail {
  display: block;
  margin: -2px 0 8px;
  min-height: 44px;
  position: relative; }
  .product-single__thumbnail:not([disabled]):not(.active-thumb):hover {
    opacity: 0.8; }

.product-single__thumbnails-item {
  display: inline-block;
  padding-bottom: 10px;
  width: 72px;
  float: none;
  vertical-align: middle; }
  .slick-slider .product-single__thumbnails-item {
    float: left; }
  .thumbnails-slider--active .product-single__thumbnails-item {
    padding: 5px 0; }

.product-single__thumbnail-image {
  max-width: 100%;
  display: block;
  border: 2px solid transparent;
  padding: 2px; }
  .active-thumb .product-single__thumbnail-image {
    border-color: #323232; }

.product-featured-img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px); }
  .no-js .product-featured-img {
    position: relative; }

.zoomImg {
  background-color: white; }

@media only screen and (min-width: 768px) {
  .product-single__thumbnails {
    margin-top: 16px; } }
@media only screen and (max-width: 767px) {
  .product-single__photos {
    margin-bottom: 16px; }

  .product-single__photo--has-thumbnails {
    margin-bottom: 16px; } }
.product-single__photos--full {
  margin-bottom: 16px; }

.product-single__photo-wrapper {
  margin: 0 auto;
  width: 100%; }

.product-single__photo {
  margin: 0 auto;
  min-height: 1px;
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 4px; }

@media only screen and (max-width: 767px) {
  .template-product .main-content {
    padding-top: 16px; }

  .thumbnails-slider--active .product-single__thumbnails {
    display: none; }
    .thumbnails-slider--active .product-single__thumbnails.slick-initialized {
      display: block;
      margin: 0 auto;
      max-width: 75%; }

  .product-single__photos {
    position: relative; }

  .thumbnails-wrapper {
    position: relative;
    top: 30px;
    text-align: center;
    margin: 0 2px 30px 2px; }

  .thumbnails-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }

  .thumbnails-slider__prev {
    left: -20px; }

  .thumbnails-slider__next {
    right: -20px; }

  .product-single__thumbnail {
    margin: 0 auto;
    width: 50px; } }
/*================ Template | Collections ================*/
.collection-hero {
  position: relative;
  overflow: hidden;
  margin-top: -32px;
  margin-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .collection-hero {
      margin-bottom: 16px; } }

.collection-description {
  margin-bottom: 16px;
  margin-top: 16px; }
  @media only screen and (min-width: 768px) {
    .collection-description {
      margin-bottom: 16px;
      margin-top: 16px; } }

.collection-hero__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  opacity: 1; }
  @media only screen and (max-width: 767px) {
    .collection-hero__image {
      height: 180px; } }

.collection-hero__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #323232;
  opacity: 0.4; }

.collection-hero__title {
  position: absolute;
  color: white;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media only screen and (min-width: 768px) {
    .collection-hero__title {
      font-size: 3em; } }

.template-blog .social-sharing {
  margin-bottom: 8px; }

.blog-list-view .pagination {
  padding-top: 0; }

.blog-filter {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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; }
  .blog-filter .icon-chevron-down {
    fill: #323232;
    width: calc(10em / 16);
    height: calc(10em / 16);
    right: 1rem; }
  .blog-filter .select-group #BlogTagFilter {
    width: 100%; }

.blog-filter__label {
  margin: 0 1rem 0 0;
  white-space: nowrap;
  text-transform: none; }

.cart-header {
  margin-bottom: 0.7rem;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .cart-header {
      margin-bottom: 1.7rem; } }

.cart-header__title {
  margin-bottom: 0.5rem; }
  @media only screen and (min-width: 768px) {
    .cart-header__title {
      margin-bottom: 1rem; } }

/*================ Cart page ================*/
.cart {
  color: #323232; }
  .cart th,
  .cart td {
    border: 0; }
  .cart td {
    padding-top: 16px;
    padding-bottom: 16px; }
    @media only screen and (min-width: 768px) {
      .cart td {
        padding-left: 16px;
        padding-right: 16px; } }
  .cart th {
    font-weight: 400;
    padding: 16px 16px 8px; }
  @media only screen and (max-width: 767px) {
    .cart td:nth-child(3),
    .cart th:nth-child(2) {
      padding-left: 0;
      padding-right: 0; } }
  .cart td:first-child,
  .cart th:first-child {
    padding-left: 0; }
    .cart td:first-child.cart__removed-product,
    .cart th:first-child.cart__removed-product {
      padding: 1rem 0 1.2rem 0.5rem; }
  .cart td:last-child,
  .cart th:last-child {
    padding-right: 0; }
  .cart dd {
    margin-left: 0; }

.cart__meta {
  width: 50%; }
  @media only screen and (min-width: 768px) {
    .cart__meta {
      width: 40%; } }
  @media only screen and (min-width: 1024px) {
    .cart__meta {
      width: 45%; } }

.cart__product-information {
  display: flex; }

.cart__image-wrapper {
  padding-right: 1.5rem;
  flex: 5rem 0 0; }
  @media only screen and (min-width: 768px) {
    .cart__image-wrapper {
      padding-right: 2.5rem;
      flex: 8rem 0 0; } }
  @media only screen and (min-width: 1024px) {
    .cart__image-wrapper {
      padding-right: 3rem;
      flex: 9rem 0 0; } }

.product-details {
  padding: 0.35714em 0 0;
  font-size: 0.85714em; }
  .product-details.hide + .cart__remove {
    margin-top: 0em; }

.product-details__item {
  margin-bottom: 0.15em; }

.product-details__item--variant-option:not(.hide) + .product-details__item--property {
  margin-top: 0.8rem; }

.product-details__item-label {
  font-weight: 600; }

.cart__qty {
  margin-top: 1.07143em; }
  @media only screen and (min-width: 768px) {
    .cart__qty {
      margin-top: 0; } }

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

.cart__qty-input {
  text-align: center;
  width: 60px;
  padding-left: 0.35714em;
  padding-right: 0.35714em; }

.cart__qty-error-message-wrapper,
.cart__error-message-wrapper {
  line-height: 1.2; }
  .cart__qty-error-message-wrapper .icon-error,
  .cart__error-message-wrapper .icon-error {
    margin-top: 0; }

.cart__qty-error-message-wrapper--desktop {
  display: none; }
  @media only screen and (min-width: 768px) {
    .cart__qty-error-message-wrapper--desktop {
      display: block; } }

.cart__qty-error-message-wrapper--mobile {
  display: block; }
  @media only screen and (min-width: 768px) {
    .cart__qty-error-message-wrapper--mobile {
      display: none; } }

.cart__qty-error-message,
.cart__error-message {
  font-size: 0.85714em;
  color: #323232;
  vertical-align: middle; }

.cart__error-message-wrapper {
  margin-top: 1rem; }
  @media only screen and (min-width: 768px) {
    .cart__error-message-wrapper {
      margin-top: 0.8rem; } }

.cart__row {
  border-bottom: 1px solid #ececec; }
  .cart__row p {
    margin-bottom: 0; }
    .cart__row p + p {
      margin-top: 10px; }
  .cart__row td {
    vertical-align: top; }
    @media only screen and (min-width: 768px) {
      .cart__row td {
        vertical-align: middle; } }

.cart__row--heading {
  color: #323232; }

.cart__removed-product-details {
  font-weight: 600; }

.cart-subtotal__title {
  font-size: 1.14286em; }

.cart-subtotal__price {
  padding-left: 16px; }
  @media only screen and (min-width: 768px) {
    .cart-subtotal__price {
      padding-left: 32px;
      min-width: 150px;
      display: inline-block; } }

.cart__footer {
  padding-top: 8px; }

.cart__buttons-container {
  display: flex;
  flex-direction: column;
  max-width: 20rem;
  margin: 0 auto; }
  @media only screen and (min-width: 768px) {
    .cart__buttons-container {
      display: block;
      max-width: none; } }

.cart__submit-controls {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 768px) {
    .cart__submit-controls {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end; } }

.cart__submit {
  margin-bottom: 0;
  min-height: 54px;
  width: 100%; }
  .cart__submit + .cart__submit {
    margin-top: 10px;
    margin-left: 0; }
  @media only screen and (min-width: 768px) {
    .cart__submit {
      min-height: auto;
      width: auto; }
      .cart__submit + .cart__submit {
        margin-top: 0;
        margin-left: 10px; } }

.cart__shipping {
  font-size: 0.85714em;
  padding: 8px 0;
  margin-bottom: 0; }

.cart-note__label,
.cart-note__input {
  display: block; }
  @media only screen and (max-width: 1023px) {
    .cart-note__label,
    .cart-note__input {
      margin: 0 auto; } }

.cart-note__label {
  margin-bottom: 15px; }

.cart-note__input {
  min-height: 50px;
  width: 100%; }
  @media only screen and (max-width: 1023px) {
    .cart-note__input {
      margin-bottom: 40px; } }

.cart__product-title {
  border-bottom: none;
  color: #323232; }
  .cart__product-title:not([disabled]):hover, .cart__product-title:focus {
    color: #323232;
    border-bottom: 1px solid currentColor; }

.cart__image {
  max-height: 95px;
  display: block;
  margin: 0 auto; }

.cart__remove {
  margin-top: 0.57143em; }

.cart__price {
  text-align: right;
  padding-right: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16px * 1.5);
  width: 50%; }
  .cart__price dl {
    margin: 0; }
  @media only screen and (min-width: 768px) {
    .cart__price {
      width: 25%; } }

.cart__quantity-td {
  width: 20%; }

.cart__final-price {
  width: 15%; }

@media only screen and (max-width: 1023px) {
  .cart-message {
    padding-top: 20px; }

  .cart__qty-label {
    position: inherit !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.92857em;
    margin-right: 5px; } }
.cart--no-cookies .cart__continue-btn {
  display: none; }

.cart--no-cookies .cart--empty-message {
  display: none; }

.cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cookie-message {
    display: block; }

.additional-checkout-buttons {
  margin-top: 0; }
  @media only screen and (max-width: 767px) {
    .additional-checkout-buttons {
      max-width: 230px;
      margin: 0 auto; } }
  .additional-checkout-buttons input[type="image"] {
    padding: 0;
    border: 0;
    background: transparent; }

[data-shopify-buttoncontainer] {
  justify-content: flex-end; }

.myaccount {
  display: flex;
  flex-wrap: wrap; }

@media only screen and (min-width: 1024px) {
  .myaccount__order-history {
    -webkit-flex: 1 0 66.66667%;
    -moz-flex: 1 0 66.66667%;
    -ms-flex: 1 0 66.66667%;
    flex: 1 0 66.66667%; } }

@media only screen and (min-width: 1024px) {
  .myaccount__account-details {
    -webkit-flex: 1 0 33.33333%;
    -moz-flex: 1 0 33.33333%;
    -ms-flex: 1 0 33.33333%;
    flex: 1 0 33.33333%; } }

.order-table {
  border: 1px solid #ececec; }
  .order-table a {
    border-bottom: 1px solid currentColor; }
  .order-table th, .order-table td {
    border: 0; }
  .order-table tbody th,
  .order-table tfoot th {
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0; }
  .order-table tbody tr + tr {
    border-top: 1px solid #ececec; }
  .order-table thead {
    border-bottom: 1px solid #323232; }
  .order-table tfoot {
    border-top: 1px solid #323232; }
    .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 #323232;
      font-weight: 600;
      padding-top: 1.25em;
      padding-bottom: 1.25em;
      text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    .order-table thead th {
      text-transform: uppercase;
      padding-top: 1.25em;
      padding-bottom: 1.25em; }
    .order-table tbody tr th, .order-table tbody tr td {
      padding-top: 1.25em;
      padding-bottom: 1.25em; }
    .order-table tfoot tr td, .order-table tfoot tr th {
      vertical-align: bottom; } }
  @media only screen and (max-width: 767px) {
    .order-table {
      border: 0; }
      .order-table thead {
        display: none; }
      .order-table th,
      .order-table td {
        float: left;
        clear: left;
        width: 100%;
        text-align: right;
        padding: 0.5rem 0;
        border: 0;
        margin: 0; }
      .order-table th::before,
      .order-table td::before {
        content: attr(data-label);
        float: left;
        text-align: left;
        padding-right: 2em;
        max-width: 80%; }
      .order-table tbody tr th:first-child {
        padding-top: 1.25em; }
      .order-table tbody tr td:last-child {
        padding-bottom: 1.25em; }
      .order-table tbody th::before,
      .order-table tbody td::before {
        font-weight: 600; } }

@media only screen and (max-width: 767px) {
  .order-table__product {
    display: flex;
    justify-content: space-between; } }

.order-discount {
  color: #a42337;
  display: block;
  line-height: 1.2em; }
  .order-discount .icon-saletag {
    fill: currentColor;
    width: 1em;
    height: 1em;
    margin-right: 0.4em; }

.order-discount--title {
  text-transform: uppercase;
  word-break: break-word;
  padding-right: 1em;
  color: #0b7276; }

.order-discount--list {
  margin: 8px 0 0 1.3em;
  list-style: none;
  padding: 0; }

.order-discount__item {
  text-indent: -1.3em; }
  .order-discount__item + .order-discount__item {
    margin-top: 0.6em; }

@media only screen and (max-width: 767px) {
  .order-discount-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%; } }

.order-discount-card-wrapper {
  display: flex;
  justify-content: center; }
  @media only screen and (min-width: 768px) {
    .order-discount-card-wrapper {
      justify-content: flex-end; } }

.order-discount--cart {
  font-size: 13px;
  padding-right: 0; }

.order-discount--cart-total {
  padding-left: 16px; }
  @media only screen and (min-width: 768px) {
    .order-discount--cart-total {
      padding-left: 32px;
      min-width: 150px; } }

@media only screen and (max-width: 767px) {
  .shopify-cleanslate button[type=submit] {
    height: 54px !important; } }

[data-cart-item-discount-title] {
  text-transform: none; }

/*================ MODULES ================*/
#shopify-section-header,
#shopify-section-header-international {
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 998;
  transition: top 0.4s ease-in; }
  #shopify-section-header.sticky-down,
  #shopify-section-header-international.sticky-down {
    transition: top 0.4s ease-out; }

.site-header__wrapper {
  transform: translate3d(0, 0, 0); }

.site-header {
  background-color: white;
  position: relative;
  padding: 0 16px; }
  @media only screen and (max-width: 1023px) {
    .site-header {
      padding: 0;
      border-bottom: 1px solid #f2f2f2; } }
  @media only screen and (min-width: 1024px) {
    .site-header.logo--center {
      padding-top: 16px; } }

.announcement-bar {
  text-align: center;
  position: relative;
  z-index: 10; }
  @media only screen and (max-width: 1023px) {
    .announcement-bar {
      width: 100%;
      min-height: 36px; } }

.announcement-bar--link {
  display: inline-block; }

@media only screen and (max-width: 767px) {
  .announcement-bar--link {
    display: flex;
    align-items: center;
    justify-content: center; } }
.announcement-bar--link:hover {
  text-decoration: underline; }

.announcement-bar p {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 36px; }
  @media only screen and (max-width: 1023px) {
    .announcement-bar p {
      font-size: 11px; } }
  @media only screen and (max-width: 370px) {
    .announcement-bar p {
      line-height: 17px; } }
  .announcement-bar p:hover .announcement-bar__message {
    text-decoration: underline; }

.site-header__logo {
  margin: 10px; }
  @media only screen and (max-width: 1023px) {
    .site-header__logo {
      margin: 10px;
      padding: 0px 10px 0 0; }
      .site-header__logo svg {
        display: inline-block;
        vertical-align: middle; } }
  .site-header__logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; }
    .site-header__logo a svg {
      max-height: 45px; }
      @media only screen and (max-width: 1023px) {
        .site-header__logo a svg {
          max-height: 36px; } }

.site-top__wrapper {
  position: relative;
  text-align: center;
  background: #f8f8f8;
  min-height: 36px; }

.site-header--top {
  position: absolute;
  top: 6px;
  z-index: 10;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: calc(13px * 1.5);
  height: 26px; }
  @media only screen and (max-width: 1023px) {
    .site-header--top {
      display: none; } }
  .site-header--top.site-header--top-left {
    left: 32px; }
  .site-header--top.site-header--top-right {
    right: 32px; }
  .site-header--top .site-header--top-icon {
    margin-left: 28px;
    display: inline-block;
    vertical-align: middle; }
    .site-header--top .site-header--top-icon span {
      display: inline-block;
      vertical-align: middle;
      max-height: 16px;
      margin-top: -4px;
      margin-left: 8px;
      width: 16px; }
      .site-header--top .site-header--top-icon span svg {
        height: 16px; }
  .site-header--top #header-store-selector {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    border: none;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: calc(13px * 1.5);
    text-transform: uppercase;
    background-color: transparent;
    background-position: right 0 center;
    padding-right: 22px;
    display: inline-block;
    vertical-align: middle; }

.site-header__logo-link {
  display: inline-block;
  word-break: break-word; }

.site-header__logo-image {
  display: block; }
  @media only screen and (max-width: 1023px) {
    .site-header__logo-image {
      max-width: 100px !important;
      margin: 0 auto; } }

.site-header__logo-image img {
  width: 100%;
  height: auto; }

.site-header__icons {
  position: relative;
  white-space: nowrap; }

.site-header__icons-wrapper {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  margin: 20px 0; }
  @media only screen and (max-width: 1023px) {
    .site-header__icons-wrapper {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      margin: 10px 0; } }

.site-header__cart,
.site-header__search,
.site-header__account,
.site-header__wishlist {
  position: relative; }

.site-header__cart,
.site-header__account,
.site-header__wishlist {
  font-size: 0; }

.site-header__wishlist .topbadge {
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  right: 8px !important;
  top: 8px !important;
  font-family: Poppins, sans-serif !important;
  font-weight: 600 !important;
  background-color: #47bb9c !important;
  color: white !important;
  border-radius: 50% !important;
  min-width: 12px !important;
  height: 12px !important;
  font-size: 8px !important;
  line-height: 12px !important;
  padding: 0 !important;
  margin: 0 !important; }

.site-header__search.site-header__icon {
  display: none; }
  @media only screen and (min-width: 1024px) {
    .site-header__search.site-header__icon {
      display: block;
      margin-right: 24px; } }

.site-header__search-toggle {
  display: block;
  font-size: 0; }
  @media only screen and (min-width: 1024px) {
    .site-header__search-toggle {
      display: none; } }
  .site-header__search-toggle.site-header__icon svg {
    height: 22px; }

@media only screen and (min-width: 1024px) {
  .site-header__account,
  .site-header__cart,
  .site-header__wishlist,
  .site-header__stores {
    padding: 10px 12px; } }
.site-header__cart-title,
.site-header__search-title {
  display: block;
  vertical-align: middle;
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.site-header__cart-title {
  margin-right: 3px; }

.site-header__cart-count {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  font-weight: 600;
  background-color: #47bb9c;
  color: white;
  border-radius: 50%;
  min-width: 1em;
  height: 1em;
  font-size: 12px; }
  @media only screen and (max-width: 1023px) {
    .site-header__cart-count {
      top: 2px; } }
  .site-header__cart-count span {
    font-size: 8px;
    line-height: 12px; }
  .site-header__cart-count.totalled {
    display: flex; }

.site-header__menu {
  display: none; }

.site-header__icon svg {
  height: 18px; }

@media only screen and (max-width: 1023px) {
  .site-header__icons {
    padding-right: 13px; }

  .site-header__icon {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 11px;
    margin: 0; } }
.site-header__search-bar {
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
  padding: 0 16px 8px; }
  .site-header__search-bar .site-header__search-toggle {
    width: 100%;
    font-size: 13px;
    background: #f8f8f8;
    padding: 10px 16px;
    color: #b2b2b2;
    position: relative;
    border-radius: 2px;
    line-height: 14px; }
    .site-header__search-bar .site-header__search-toggle .icon {
      position: absolute;
      right: 16px;
      opacity: 0.25;
      height: 18px;
      top: calc(50% - 9px); }

.article-listing {
  padding-top: 32px;
  margin-bottom: 32px; }

.article__title {
  margin-bottom: 8px; }

@media only screen and (max-width: 767px) {
  .article__title--has-image {
    padding-left: 16px; } }

.article__author {
  margin-right: 10px; }

.article__author,
.article__date {
  display: inline-block;
  margin-bottom: 16px; }
  .template-article .article__author, .template-article
  .article__date {
    margin-bottom: 0; }

.article__tags {
  margin-bottom: 16px; }

.article__tags--list {
  font-style: italic; }

.article__link {
  display: block; }
  @media only screen and (max-width: 767px) {
    .article__link {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .article__link:not([disabled]):hover .article__grid-image-wrapper::before, .article__link:focus .article__grid-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #323232;
    opacity: 0.4;
    z-index: 1; }

.article__meta-buttons li + li {
  margin-left: 1.5rem; }

.article__comment-count {
  border-color: transparent;
  border-bottom-color: currentColor;
  padding: 0 0 3px 0; }
  .article__comment-count:not([disabled]):hover, .article__comment-count:focus {
    border-color: transparent;
    border-bottom-color: currentColor; }

/*============================================================================
  Blog article grid
==============================================================================*/
.grid--blog {
  margin-bottom: -32px;
  overflow: auto; }

.article__grid-tag {
  margin-right: 10px; }

.article__grid-meta {
  margin-bottom: 32px; }

@media only screen and (max-width: 767px) {
  .article__grid-meta--has-image {
    float: left;
    padding-left: 16px; } }
.article__grid-excerpt {
  margin-bottom: 8px; }

.article__grid-image-wrapper {
  margin: 0 auto;
  position: relative;
  width: 100%; }

.article__grid-image-container {
  display: block;
  clear: both;
  position: relative;
  margin: 0 auto 16px 0;
  min-height: 1px;
  width: 100%;
  height: 100%; }
  @media only screen and (max-width: 767px) {
    .article__grid-image-container {
      float: left;
      margin: 0 0 32px 0; } }
  .article__grid-image-container img {
    display: block; }

.article__grid-image {
  margin: 0 auto;
  width: 100%; }
  .js .article__grid-image {
    position: absolute;
    top: 0; }

.article__list-image-container {
  display: block;
  clear: both;
  position: relative;
  min-height: 1px;
  width: 100%;
  height: 100%; }

.article__list-image-wrapper {
  width: 100%;
  margin-bottom: 20px; }

.article__list-image-container {
  display: block;
  clear: both;
  position: relative;
  min-height: 1px;
  width: 100%;
  height: 100%; }

.article__list-image-wrapper {
  width: 100%;
  margin-bottom: 20px; }

.article__list-image {
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 0; }

.cart-popup-wrapper {
  display: block;
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 9999;
  border: 1px solid #ececec;
  transform: translateY(0%);
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  @media only screen and (min-width: 768px) {
    .cart-popup-wrapper {
      width: 23rem;
      right: 0; } }

.cart-popup-wrapper--hidden {
  display: none;
  transform: translateY(-100%); }

.cart-popup {
  padding: 1rem 1.5rem; }

.cart-popup__heading {
  border-bottom: 1px solid #ececec;
  padding: 0rem 2.5rem 1rem 0.5rem;
  margin: 0;
  font-size: 1.14286em;
  line-height: 1.2rem;
  letter-spacing: 0;
  text-transform: inherit; }

.cart-popup__close {
  position: absolute;
  top: 0.2rem;
  right: 0.6rem;
  padding: 0.9rem;
  background-color: transparent;
  border: none;
  line-height: 0; }
  .cart-popup__close .icon-close {
    width: 1rem;
    height: 1rem;
    fill: currentColor; }
  .cart-popup__close:hover, .cart-popup__close:focus {
    color: #323232; }

.cart-popup-item {
  display: flex;
  margin: 1rem 0; }

.cart-popup-item__image-wrapper {
  position: relative;
  flex-basis: 18%;
  flex-shrink: 0;
  margin-right: 1rem;
  text-align: center; }

.cart-popup-item__image {
  display: block;
  margin: 0 auto;
  max-height: 95px; }

.cart-popup-item__image--placeholder {
  position: relative;
  width: 100%; }

.cart-popup-item__description {
  display: flex;
  color: #323232;
  flex-basis: 100%;
  justify-content: space-between;
  line-height: 1.2rem; }

.cart-popup-item__title {
  font-size: 1.14286em; }

.product-details {
  margin-top: 0.25rem;
  font-size: 0.85714em; }

.product-details__item {
  margin-bottom: 0.2rem;
  line-height: 1.5; }
  .product-details__item:last-child {
    margin-bottom: 0; }

.product-details__item--variant-option + .product-details__item--property {
  margin-top: 0.8rem; }

.product-details__property-label {
  font-weight: 600; }

.cart-popup-item__quantity {
  flex-basis: 30%;
  flex-shrink: 0;
  margin-left: 1rem;
  text-align: right;
  font-size: 0.85714em; }

.cart-popup__cta-link {
  width: 100%; }

.cart-popup__dismiss {
  margin-top: 0.5rem;
  text-align: center; }

.cart-popup__dismiss-button {
  font-size: 0.85714em; }

.sidebar {
  margin-top: 40px; }

.sidebar__list {
  list-style: none;
  margin-bottom: 32px; }
  .sidebar__list li {
    margin-bottom: 10px; }

.pagination {
  text-align: center;
  list-style: none;
  font-size: 1.07143em;
  padding-top: 32px; }
  .pagination li {
    display: inline-block; }
  .pagination .icon {
    display: block;
    height: 20px;
    vertical-align: middle; }

.pagination__text {
  padding: 0 16px; }

.comment {
  margin-bottom: 16px; }
  .comment:last-child {
    margin-bottom: 0; }

.comment__content {
  margin-bottom: 5px; }

.comment__meta-item {
  margin-right: 10px;
  font-size: 1em; }
  .comment__meta-item:first-child::before {
    content: '\2014 \0020'; }

.social-sharing {
  display: flex; }
  .template-password .social-sharing {
    justify-content: center; }

.btn--share {
  background-color: transparent;
  border-color: #ececec;
  color: #323232;
  margin-right: 5px;
  margin-bottom: 10px; }
  .btn--share:not([disabled]):hover, .btn--share:focus {
    background-color: transparent;
    border-color: lightgrey;
    color: #323232; }
  .btn--share .icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px; }
  .btn--share .icon-facebook {
    fill: #3b5998; }
  .btn--share .icon-tiktok {
    fill: #ffffff; }
  .btn--share .icon-twitter {
    fill: #1da1f2; }
  .btn--share .icon-pinterest {
    fill: #cc2127; }

.share-title {
  display: inline-block;
  vertical-align: middle; }

.search-bar__form {
  display: table;
  width: 100%;
  position: relative;
  height: calc(46em / 16);
  border: 1px solid transparent; }

@media only screen and (max-width: 767px) {
  .search-bar__form {
    width: 100%; } }
.search-bar__submit .icon {
  position: relative;
  top: -1px;
  width: 1.2rem;
  height: auto; }

.search-bar__submit,
.search-header__submit {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 16px;
  height: 100%;
  z-index: 1; }

.search-header__input,
.search-bar__input {
  background-color: transparent;
  border-radius: 0px;
  color: #323232;
  border-color: transparent;
  padding-right: calc(35em / 8);
  width: 100%;
  min-height: 47px;
  padding-left: 16px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.5); }
  .search-header__input::-webkit-input-placeholder,
  .search-bar__input::-webkit-input-placeholder {
    color: #b2b2b2;
    opacity: 1; }
  .search-header__input::-moz-placeholder,
  .search-bar__input::-moz-placeholder {
    color: #b2b2b2;
    opacity: 1; }
  .search-header__input:-ms-input-placeholder,
  .search-bar__input:-ms-input-placeholder {
    color: #b2b2b2;
    opacity: 1; }
  .search-header__input::-ms-input-placeholder,
  .search-bar__input::-ms-input-placeholder {
    color: #b2b2b2;
    opacity: 1; }

.search-bar__input {
  border: 1px solid transparent; }
  .search-bar__input:focus {
    border-color: transparent; }

.search-bar__close {
  padding: calc(10em / 16) 0.75em; }
  .search-bar__close .icon {
    vertical-align: top;
    width: 1.2rem;
    height: auto; }

/*============================================================================
  The search submit button has pointer-events: none which also
  effects the :hover style. This forces the style to be applied.
==============================================================================*/
.search-header__input:hover + .btn--link {
  color: #323232; }

/*================ Mobile Search Bar ================*/
.search-bar {
  border-bottom: 1px solid #ececec;
  padding: 0 16px;
  z-index: 1000; }

.search-bar__table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%; }

.search-bar__table-cell {
  display: table-cell;
  vertical-align: middle; }

.search-bar__form-wrapper {
  width: 90%; }

/*================ Header Search ================*/
.search-header {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: calc(30em / 16);
  vertical-align: middle; }
  .search-header.search--focus {
    max-width: 296px;
    width: 296px; }

.search-header__input {
  cursor: pointer; }

.search--focus .search-header__input {
  outline: none;
  border-color: #b2b2b2;
  cursor: auto; }
.search--focus .search-header__submit {
  pointer-events: auto;
  font-size: 0; }
  .search--focus .search-header__submit svg {
    height: 20px; }

.search-header__submit {
  pointer-events: none; }

.search-header,
.search-header__submit {
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }

.no-svg .site-header__search {
  display: inline-block; }
.no-svg .search-header {
  max-width: none; }
.no-svg .search__input {
  width: auto;
  padding-left: 60px; }

/*================ Mobile Site Nav ================*/
#MobileNav.is-open__level1 .mobile-nav__item-level-1 {
  display: none; }
  #MobileNav.is-open__level1 .mobile-nav__item-level-1.is-active {
    display: block; }
#MobileNav.is-open__level1 .btn-short-level-2 .mobile-nav__link {
  padding: 0;
  margin: 0 16px;
  width: calc(100% - 32px); }
  #MobileNav.is-open__level1 .btn-short-level-2 .mobile-nav__link.border-bottom {
    border-color: #f8f8f8; }
  #MobileNav.is-open__level1 .btn-short-level-2 .mobile-nav__link .mobile-nav__icon .icon {
    right: 3px;
    left: auto; }
#MobileNav.is-open__level2 .mobile-nav__item-level-2 {
  display: none; }
  #MobileNav.is-open__level2 .mobile-nav__item-level-2.is-active {
    display: block;
    border-bottom: none; }
#MobileNav.is-open__level2 .mobile-nav__item-level-1-view-all {
  display: none; }
#MobileNav.is-open__level2 .btn-short-level-2 .mobile-nav__link {
  padding: 0 16px;
  margin: 0;
  width: 100%; }
  #MobileNav.is-open__level2 .btn-short-level-2 .mobile-nav__link .mobile-nav__icon .icon {
    right: auto;
    left: 50%; }
#MobileNav.is-open__level2 .btn-short-level-3 .mobile-nav__link {
  padding: 0;
  margin: 0 16px;
  width: calc(100% - 32px); }
  #MobileNav.is-open__level2 .btn-short-level-3 .mobile-nav__link.border-bottom {
    border-color: #f8f8f8; }
#MobileNav .site-nav__promo-banners {
  display: block;
  padding: 32px 16px 16px; }
  #MobileNav .site-nav__promo-banners .site-nav__promo-banner {
    margin: 0 0 16px; }
    #MobileNav .site-nav__promo-banners .site-nav__promo-banner a {
      display: block;
      max-width: 400px; }
      #MobileNav .site-nav__promo-banners .site-nav__promo-banner a svg {
        background-color: #f8f8f8; }
      #MobileNav .site-nav__promo-banners .site-nav__promo-banner a img {
        display: inline-block;
        vertical-align: middle; }
#MobileNav .mobile-nav__links-panel {
  background-color: #f8f8f8;
  padding: 12px 0; }
  #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-item a {
    display: block;
    padding: 8px 16px;
    position: relative; }
    #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-item a .title {
      display: flex; }
      #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-item a .title span {
        display: inline-flex;
        align-items: center;
        vertical-align: top;
        font-size: 0;
        margin-right: 8px; }
        #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-item a .title span svg {
          display: inline-block;
          vertical-align: middle;
          width: 20px;
          height: auto; }
    #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-item a.wishlist .topbadge {
      align-items: center !important;
      justify-content: center !important;
      position: absolute !important;
      right: 16px !important;
      top: 12px !important;
      font-family: Poppins, sans-serif !important;
      font-weight: 600 !important;
      background-color: #47bb9c !important;
      color: white !important;
      border-radius: 50% !important;
      min-width: 20px !important;
      height: 20px !important;
      font-size: 12px !important;
      line-height: 20px !important;
      padding: 0 !important;
      margin: 0 !important; }
  #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-social-icons {
    text-align: center; }
    #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-social-icons ul {
      font-size: 0;
      padding: 24px 0 16px; }
      #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-social-icons ul li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 8px 16px; }
        #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-social-icons ul li a {
          display: block; }
          #MobileNav .mobile-nav__links-panel .mobile-nav__links-panel-social-icons ul li a .icon {
            width: 34px;
            height: 34px; }

.mobile-nav {
  display: block;
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  width: calc(100% - 40px);
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100% - 57px);
  height: 100%; }

.mobile-nav__link,
.mobile-nav__sublist-link {
  display: block;
  width: 100%;
  line-height: 56px;
  padding: 0 16px; }

.mobile-nav__link {
  position: relative;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.5);
  line-height: 56px;
  padding: 0 16px; }
  .mobile-nav__link.is-active {
    display: none; }

.mobile-nav__item {
  display: block;
  width: 100%; }
  .mobile-nav__item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: auto;
    margin: -3px 0 0 -16px; }
  .mobile-nav__item .mobile-nav__label {
    display: block;
    opacity: 0;
    transform: translateX(16px);
    transition: all 0.2s ease; }
  .mobile-nav__item .mobile-nav__icon {
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.2s ease; }

.mobile-nav__icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  pointer-events: none;
  overflow: hidden; }

.mobile-nav__toggle-button {
  padding: 20px 15px; }

.mobile-nav__dropdown {
  position: relative;
  background-color: white;
  z-index: 8;
  width: 100%;
  top: 0;
  right: 0;
  display: none; }
  .is-active + .mobile-nav__dropdown {
    display: block;
    opacity: 1; }
  .mobile-nav__dropdown.is-closing {
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    opacity: 0.99; }
  .mobile-nav__dropdown .mobile-nav__link {
    font-weight: 400; }
    .mobile-nav__dropdown .mobile-nav__link.mobile-nav__return-btn {
      font-weight: 400; }
    .mobile-nav__dropdown .mobile-nav__link.mobile-nav__view-all {
      font-weight: 400; }
      .mobile-nav__dropdown .mobile-nav__link.mobile-nav__view-all .mobile-nav__label {
        text-decoration: underline;
        font-size: 14px; }
  .mobile-nav__dropdown .mobile-nav__sublist-header {
    font-family: Poppins, sans-serif;
    font-style: normal;
    font-weight: 600;
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px; }
  .mobile-nav__dropdown .mobile-nav__sublist-header--main-nav-parent {
    color: #323232; }

.mobile-nav__all-categories-label {
  background-color: #f8f8f8; }

.sub-nav--is-open .mobile-nav__item-level-1 .mobile-nav__return-btn {
  background-color: #f8f8f8;
  font-weight: 600;
  text-decoration: none;
  padding: 0 16px !important; }
.sub-nav--is-open .mobile-nav__item-level-1 .mobile-nav__all-categories-btn .mobile-nav__return-btn {
  background-color: #fff;
  font-weight: 400;
  text-decoration: underline;
  padding: 0 16px 0 36px !important;
  font-size: 14px; }
  .sub-nav--is-open .mobile-nav__item-level-1 .mobile-nav__all-categories-btn .mobile-nav__return-btn .mobile-nav__icon {
    right: auto;
    left: 0; }
    .sub-nav--is-open .mobile-nav__item-level-1 .mobile-nav__all-categories-btn .mobile-nav__return-btn .mobile-nav__icon .icon {
      right: 50%;
      left: auto;
      margin: -6px -8px 0 0; }

.third-nav--is-open .mobile-nav__item-level-1 .mobile-nav__return-btn {
  background-color: #fff;
  font-weight: 400;
  text-decoration: underline;
  padding: 0 16px 0 36px !important;
  font-size: 14px; }
  .third-nav--is-open .mobile-nav__item-level-1 .mobile-nav__return-btn .mobile-nav__icon {
    right: auto;
    left: 0; }
    .third-nav--is-open .mobile-nav__item-level-1 .mobile-nav__return-btn .mobile-nav__icon .icon {
      right: 50%;
      left: auto;
      margin: -6px -8px 0 0; }
.third-nav--is-open .mobile-nav__item-level-2 .mobile-nav__return-btn {
  background-color: #f8f8f8;
  font-weight: 600;
  text-decoration: none;
  padding: 0 16px !important; }
.third-nav--is-open .mobile-nav__item-level-2 .mobile-nav__return-btn-level-1 {
  background-color: #fff;
  font-weight: 400;
  text-decoration: underline;
  padding: 0 16px 0 36px !important;
  font-size: 14px; }
  .third-nav--is-open .mobile-nav__item-level-2 .mobile-nav__return-btn-level-1 .mobile-nav__icon {
    right: auto;
    left: 0; }
    .third-nav--is-open .mobile-nav__item-level-2 .mobile-nav__return-btn-level-1 .mobile-nav__icon .icon {
      right: 50%;
      left: auto;
      margin: -6px -8px 0 0; }

/*================ Mobile nav wrapper ================*/
body.mobile-nav__open {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden; }

.mobile-nav-wrapper {
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.15s ease, transform 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0.15s;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 999; }
  .mobile-nav-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
  .mobile-nav-wrapper.js-menu--is-open {
    display: block;
    background-color: rgba(0, 0, 0, 0.75);
    transition: transform 0.45s cubic-bezier(0.29, 0.63, 0.44, 1), background-color 0.15s ease 0.45s; }
    .mobile-nav-wrapper.js-menu--is-open .mobile-nav__label {
      opacity: 1;
      transform: translateX(0px);
      transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0.45s; }
    .mobile-nav-wrapper.js-menu--is-open .mobile-nav__icon {
      opacity: 1;
      transform: translateX(0px);
      transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0.35s; }
  .mobile-nav-wrapper .site-header__icons-wrapper {
    display: block;
    background-color: #fff;
    margin: 0;
    padding: 10px 8px;
    width: calc(100% - 40px);
    position: relative; }
    .mobile-nav-wrapper .site-header__icons-wrapper .mobile-nav-wrapper__logo {
      width: 28px;
      position: absolute;
      top: calc(50% - 16px);
      left: calc(50% - 14px); }
      .mobile-nav-wrapper .site-header__icons-wrapper .mobile-nav-wrapper__logo svg {
        display: inline-block;
        vertical-align: middle; }
  .mobile-nav-wrapper .mobile-nav-wrapper__layer {
    position: fixed;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%; }

.mobile-nav--open .icon-close {
  display: inline-block; }

.mobile-nav--close .icon-hamburger {
  display: inline-block; }

.site-header__mobile-nav {
  z-index: 999;
  position: relative;
  background-color: white; }
  @media only screen and (max-width: 1023px) {
    .site-header__mobile-nav {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; } }
  .site-header__mobile-nav .grid__item.text-left {
    padding: 0 0 0 8px; }
    .site-header__mobile-nav .grid__item.text-left .site-header__icons-wrapper {
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start; }
      .site-header__mobile-nav .grid__item.text-left .site-header__icons-wrapper .site-header__stores .icon-header-stores {
        height: 22px;
        display: inline-block;
        vertical-align: middle; }
  .site-header__mobile-nav .grid__item.text-right {
    padding: 0 8px 0 0; }

/*================ Modals ================*/
.modal {
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  background-color: white;
  bottom: 0;
  color: #323232;
  display: none;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0; }

.modal--is-active {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  display: block;
  opacity: 1;
  overflow: hidden; }

.modal__inner {
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  height: 100%; }

.modal__centered {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%; }
  .no-csstransforms .modal__centered {
    top: 20%; }

.modal__close {
  border: 0;
  padding: 32px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2; }
  .modal__close .icon {
    font-size: 1.42857em; }

/*============================================================================
  Hero slider

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
.slideshow-wrapper {
  position: relative; }

.slideshow {
  position: unset;
  overflow: hidden;
  margin-bottom: 0;
  max-height: 80vh;
  transition: height 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  @media only screen and (min-width: 768px) {
    .slideshow {
      position: relative;
      max-height: 100vh; } }
  .slideshow .slideshow__slide,
  .slideshow .slick-list,
  .slideshow .slick-track {
    height: 100%; }
  .slideshow .slick-prev,
  .slideshow .slick-next {
    top: 0;
    height: 100%;
    margin-top: 0;
    width: 40px; }
  .slideshow .slick-prev {
    left: 0; }
  .slideshow .slick-next {
    right: 0; }

@media only screen and (min-width: 768px) {
  .slideshow--display-controls .slick-dots {
    left: calc(50% - 22px); } }

.slideshow--small {
  height: 175px; }
  @media only screen and (min-width: 768px) {
    .slideshow--small {
      height: 475px; } }

.slideshow--medium {
  height: 270px; }
  @media only screen and (min-width: 768px) {
    .slideshow--medium {
      height: 650px; } }

.slideshow--large {
  height: 375px; }
  @media only screen and (min-width: 768px) {
    .slideshow--large {
      height: 775px; } }

/*================ General slide styles ================*/
.slideshow__slide {
  position: relative;
  overflow: hidden; }

.slideshow__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  .slideshow__link:active, .slideshow__link:focus {
    opacity: 1; }

@media only screen and (min-width: 768px) {
  .slideshow__overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #323232;
    opacity: 0.4;
    z-index: 2; } }

/*================ Slide images ================*/
.slideshow__image {
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: transparent;
  z-index: 1; }
  .slick-initialized .slideshow__image, .no-js .slideshow__image {
    opacity: 1; }

/*================ Slide text ================*/
.slideshow__text-wrap {
  height: 100%;
  position: relative; }
  .slideshow__link .slideshow__text-wrap {
    cursor: inherit; }

.slideshow__text-wrap--mobile {
  display: none; }
  @media only screen and (max-width: 767px) {
    .slideshow__text-wrap--mobile {
      display: block;
      position: relative;
      top: -1.1rem;
      background-color: white;
      width: 85%;
      margin: 0 0 -1.1rem 7.5%; } }

@media only screen and (min-width: 768px) {
  .slideshow__text-content {
    transition: 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    transition-delay: 0.3s; } }
.slideshow__text-wrap--desktop .slideshow__text-content {
  position: absolute;
  width: 100%;
  top: 50%;
  opacity: 0;
  z-index: 2; }
@media only screen and (min-width: 768px) {
  .slideshow__text-content.slideshow__text-content--vertical-top {
    top: 120px; }
  .slideshow__text-content.slideshow__text-content--vertical-bottom {
    top: auto;
    bottom: 40px; } }
.slick-initialized .slick-active .slideshow__text-content, .no-js .slideshow__text-content {
  -ms-transform: translateY(-40px);
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  opacity: 1; }
.slick-initialized .slick-active .slideshow__text-content.slideshow__text-content--vertical-center, .no-js .slideshow__text-content.slideshow__text-content--vertical-center {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
.slideshow__text-content::after {
  content: '';
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 3px solid white;
  border-top-color: transparent;
  -moz-animation: spin 0.65s infinite linear;
  -o-animation: spin 0.65s infinite linear;
  -webkit-animation: spin 0.65s infinite linear;
  animation: spin 0.65s infinite linear;
  opacity: 1;
  transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
  bottom: -32px;
  left: 50%; }
  @media only screen and (max-width: 767px) {
    .slideshow__text-content::after {
      content: none; } }
.slick-initialized .slideshow__text-content::after, .no-js .slideshow__text-content::after {
  opacity: 0;
  visibility: hidden;
  content: none; }

.slideshow__text-content--mobile {
  display: none;
  padding-top: 2.6rem; }
  .slideshow__arrows--mobile ~ .slideshow__text-content--mobile {
    padding-top: 1.7rem; }
    @media only screen and (min-width: 768px) {
      .slideshow__arrows--mobile ~ .slideshow__text-content--mobile {
        padding-top: 0; } }
  @media only screen and (min-width: 768px) {
    .slideshow__text-content--mobile {
      padding-top: 0; }
      .slideshow__text-content--mobile::after {
        display: none; } }

.slideshow__title,
.slideshow__subtitle {
  color: white; }
  @media only screen and (max-width: 767px) {
    .slideshow__title,
    .slideshow__subtitle {
      display: none; } }

.slideshow__title--mobile {
  margin-bottom: 0; }
  .slideshow__title--mobile ~ .slideshow__subtitle--mobile {
    margin-top: 0.5rem; }

.slideshow__subtitle--mobile,
.slideshow__title--mobile {
  display: none;
  color: #323232; }
  @media only screen and (max-width: 767px) {
    .slideshow__subtitle--mobile,
    .slideshow__title--mobile {
      display: block; } }

.slideshow__btn-wrapper {
  border: none;
  background-color: transparent; }

@media only screen and (min-width: 768px) {
  .slideshow__btn-wrapper--push {
    margin-top: 16px; } }

.slideshow__btn {
  max-width: 100%;
  display: inline-block;
  word-wrap: break-word;
  background-color: #323232;
  color: white;
  min-height: 3.125rem;
  line-height: 2.2; }
  @media only screen and (max-width: 767px) {
    .slideshow__btn {
      display: none; } }

.slideshow__btn--mobile {
  display: none;
  margin: 1.3rem auto 0; }
  @media only screen and (max-width: 767px) {
    .slideshow__btn--mobile {
      display: inline-block;
      margin: 2rem auto 0.3rem; } }

/*================ Slideshow control styles ================*/
.slideshow__controls {
  display: none;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
  margin-bottom: 5px; }
  @media only screen and (min-width: 768px) {
    .slideshow__controls {
      top: auto;
      bottom: 0;
      left: 0; } }
  .slick-initialized + .slideshow__controls {
    display: flex; }

.slideshow__arrows {
  height: 44px;
  padding: 5px;
  background-clip: content-box;
  background-color: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  display: none; }
  @media only screen and (min-width: 768px) {
    .slideshow__arrows {
      display: flex; } }
  @media only screen and (min-width: 768px) {
    .slideshow__controls:hover .slideshow__arrows, .slideshow__controls:focus .slideshow__arrows, .slideshow__controls--hover .slideshow__arrows {
      background-color: rgba(0, 0, 0, 0.75); } }
  .slideshow__arrows .slideshow__arrow {
    height: 44px;
    width: 44px;
    position: relative;
    top: -5px;
    padding: 0 0.9rem;
    line-height: 0;
    cursor: pointer;
    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none; }
    .slideshow__arrows .slideshow__arrow .icon {
      width: 0.7rem;
      height: 0.7rem;
      transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
      .slideshow__arrows .slideshow__arrow .icon:hover {
        color: white; }
  .slideshow__arrows .slideshow__arrow-left {
    float: left; }
    @media only screen and (min-width: 768px) {
      .slideshow__arrows .slideshow__arrow-left {
        order: -1; } }
  .slideshow__arrows .slideshow__arrow-right {
    float: right; }
    @media only screen and (min-width: 768px) {
      .slideshow__arrows .slideshow__arrow-right {
        order: 1; } }
  .slideshow__arrows .slick-dots {
    line-height: 32px; }
    .slideshow__arrows .slick-dots li {
      width: 9px;
      height: 9px;
      margin-left: 9px; }
    .slideshow__arrows .slick-dots li button::before,
    .slideshow__arrows .slick-dots li a::before {
      width: 9px;
      height: 9px;
      color: rgba(0, 0, 0, 0.2);
      border: none;
      opacity: 1; }
      @media only screen and (min-width: 768px) {
        .slideshow__arrows .slick-dots li button::before,
        .slideshow__arrows .slick-dots li a::before {
          color: rgba(255, 255, 255, 0.5); } }
    .slideshow__arrows .slick-dots li.slick-active-mobile button::before,
    .slideshow__arrows .slick-dots li.slick-active-mobile a::before {
      color: black; }
    .slideshow__arrows .slick-dots li.slick-active button::before,
    .slideshow__arrows .slick-dots li.slick-active a::before {
      color: white; }

.slideshow__arrows--mobile {
  display: block;
  width: 100%;
  height: 44px;
  background-color: transparent; }
  .slideshow__arrows--mobile .icon {
    fill: rgba(0, 0, 0, 0.5); }
  .slideshow__arrows--mobile .slideshow__arrow:focus .icon {
    fill: black; }
  @media only screen and (min-width: 768px) {
    .slideshow__arrows--mobile {
      display: none; } }

.slideshow__pause {
  clip: auto;
  width: 44px;
  height: 44px;
  margin-left: 1px;
  padding: 5px;
  background-clip: content-box;
  z-index: 10000;
  border: none;
  background-color: rgba(0, 0, 0, 0.4);
  transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  line-height: 0; }
  @media only screen and (min-width: 768px) {
    .slideshow__controls:hover .slideshow__pause, .slideshow__controls:focus .slideshow__pause, .slideshow__controls--hover .slideshow__pause {
      background-color: rgba(0, 0, 0, 0.75); } }
  .slideshow__pause .icon {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
    .slideshow__pause .icon:hover {
      color: white; }
  .slideshow__pause .icon {
    width: 0.65rem;
    height: 0.65rem; }

.slideshow__pause-stop {
  display: block; }
  .is-paused .slideshow__pause-stop {
    display: none; }

.slideshow__pause-rotate {
  display: none; }
  .is-paused .slideshow__pause-rotate {
    display: block; }

.price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .price {
      font-size: 0.92857em; } }
  .price dl {
    margin-top: 0; }
  .price dd {
    margin: 0 0.5em 0 0; }

.price--unavailable {
  visibility: hidden; }

.price__regular {
  color: #323232; }

.price__sale {
  color: #a42337;
  display: none; }
  .price--on-sale .price__sale {
    display: block; }

.price__vendor {
  color: #323232;
  font-size: 0.9em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0 10px;
  width: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }

.price__unit {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  display: none; }
  .price--unit-available .price__unit {
    display: block; }

.price-item {
  font-weight: 600; }

.price--on-sale .price-item--regular {
  text-decoration: line-through; }

.price-unit-price {
  color: #323232;
  font-size: 0.8em; }

.price-item__label {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600; }

/*================ Module | Filters and Sort toolbar and selection ================*/
.filters-toolbar-wrapper {
  border-bottom: 1px solid #ececec;
  border-top: 1px solid #ececec;
  margin-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .filters-toolbar-wrapper {
      margin-bottom: 32px; } }

.filters-toolbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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; }
  .filters-toolbar .icon-chevron-down {
    fill: #323232;
    width: calc(10em / 16);
    height: calc(10em / 16);
    right: 8px; }

.filters-toolbar--has-filter {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar--has-filter {
      border-bottom: none; }
      .filters-toolbar--has-filter .filters-toolbar__item-child {
        flex-basis: 50%; }
      .filters-toolbar--has-filter .filters-toolbar__item-wrapper {
        -ms-flex-preferred-size: 100%;
        -webkit-flex-basis: 100%;
        -moz-flex-basis: 100%;
        flex-basis: 100%; }
      .filters-toolbar--has-filter .filters-toolbar__item--count {
        -ms-flex-preferred-size: 100%;
        -webkit-flex-basis: 100%;
        -moz-flex-basis: 100%;
        flex-basis: 100%;
        text-align: left; }
        .filters-toolbar--has-filter .filters-toolbar__item--count:before {
          background-color: #ececec;
          content: "";
          height: 1px;
          left: 0;
          position: absolute;
          top: auto;
          width: 100%; } }

.filters-toolbar__item {
  min-width: 33%;
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  .no-flexbox .filters-toolbar__item {
    text-align: left !important; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar__item:first-child .filters-toolbar__input {
      padding-left: 0; } }

@media only screen and (max-width: 767px) {
  .filters-toolbar__item-child {
    flex-grow: 0; } }
@media only screen and (max-width: 767px) {
  .filters-toolbar__item-child:first-child {
    margin-right: 2.5rem; } }
@media only screen and (max-width: 767px) {
  .filters-toolbar__item-child .filters-toolbar__input {
    padding-left: 0;
    padding-right: 25px;
    width: 100%; } }

.filters-toolbar__item-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar__item-wrapper {
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between; } }

.filters-toolbar__item--count {
  min-width: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar__item--count {
      -webkit-flex: 0 1 50%;
      -moz-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
      text-align: right; } }

.no-flexbox .filters-toolbar select {
  width: 100% !important; }

.filters-toolbar__label {
  display: inline-block; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar__label {
      display: block;
      margin-bottom: 0;
      margin-top: 8px; } }

.filters-toolbar__input-wrapper {
  display: inline-block; }

.filters-toolbar__input {
  border: 0 solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  height: 55px;
  opacity: 1;
  position: relative; }
  .filters-toolbar__item:first-child .filters-toolbar__input {
    padding-left: 0; }
  .no-flexbox .filters-toolbar__input {
    margin: 0; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar__input {
      height: 46px; } }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

.filters-toolbar__product-count {
  font-size: 0.92857em;
  font-style: italic;
  line-height: 55px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar__product-count {
      font-size: 0.85714em;
      line-height: 46px; } }

/*================ Footer ================*/
#shopify-section-footer {
  padding-top: 50px;
  border-top: 1px solid #f2f2f2; }

ul.site-footer__icon-list {
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 1023px) {
    ul.site-footer__icon-list {
      flex-wrap: wrap;
      justify-content: center; } }

.site-footer {
  margin-top: 50px; }
  @media only screen and (max-width: 1023px) {
    .site-footer {
      margin-top: 15px; } }
  .site-footer h4 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: calc(14px * 1.5);
    margin-bottom: 18px; }
    @media only screen and (max-width: 1023px) {
      .site-footer h4 {
        margin-bottom: 0;
        padding: 16px 0;
        font-weight: 400;
        position: relative; } }
    .site-footer h4 span {
      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;
      padding-right: 8px; }
    .site-footer h4 .icon-chevron-down {
      position: absolute;
      right: 0;
      top: calc(50% - 4px);
      width: auto;
      height: auto;
      display: none;
      transition: all 0.2s ease;
      transform: rotate(0deg); }
      @media only screen and (max-width: 1023px) {
        .site-footer h4 .icon-chevron-down {
          display: block; } }

.site-footer__top {
  padding: 16px 0; }
  @media only screen and (max-width: 1023px) {
    .site-footer__top {
      padding: 32px 0; } }
  @media only screen and (max-width: 767px) {
    .site-footer__top .grid__item.one-half.medium-down--one-whole {
      text-align: center; }
    .site-footer__top .site-footer__social-icons {
      display: flex;
      justify-content: flex-end; }
    .site-footer__top .site-footer__social-icons .site-footer__icon-list li:last-of-type {
      border-left: none;
      padding-left: unset;
      padding: 10px; } }
  .site-footer__top .grid {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -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: 1023px) {
      .site-footer__top .grid {
        display: block; } }

.site-footer__content {
  background-color: #f8f8f8; }

.site-footer__newsletter .grid__item.small--one-whole {
  padding-left: 0px; }

.site-footer__newsletter {
  background-color: #545F81;
  color: #F9F6F1;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  width: 40%;
  max-width: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px; }
  @media only screen and (max-width: 1023px) {
    .site-footer__newsletter {
      width: 100%;
      max-width: unset;
      padding: 0 50px; } }
  @media only screen and (max-width: 767px) {
    .site-footer__newsletter {
      padding: 25px; } }
  .site-footer__newsletter .site-footer__newsletter-wrapper {
    padding: 25px;
    max-width: 976px;
    margin: 0 auto;
    align-items: center; }
    @media only screen and (max-width: 1023px) {
      .site-footer__newsletter .site-footer__newsletter-wrapper {
        text-align: center; }
        .site-footer__newsletter .site-footer__newsletter-wrapper .footer-title {
          justify-content: center; } }
    .site-footer__newsletter .site-footer__newsletter-wrapper button {
      margin: 10px 0px;
      color: #545F81;
      background-color: #F9F6F1;
      font-size: 16px;
      padding: 6px 30px;
      font-weight: 600;
      border: 2px solid #F9F6F1; }
    .site-footer__newsletter .site-footer__newsletter-wrapper button:hover {
      color: #F9F6F1;
      background-color: #545F81;
      border: 2px solid #F9F6F1; }
    .site-footer__newsletter .site-footer__newsletter-wrapper .footer-title {
      display: flex;
      align-items: center;
      flex-wrap: wrap; }
    .site-footer__newsletter .site-footer__newsletter-wrapper .footer-title img {
      width: 50px;
      margin-right: 22px; }
    @media only screen and (max-width: 767px) {
      .site-footer__newsletter .site-footer__newsletter-wrapper {
        padding: 16px;
        flex-direction: column; }
        .site-footer__newsletter .site-footer__newsletter-wrapper .grid__item.one-half.small--one-whole {
          padding-left: 0px; }
        .site-footer__newsletter .site-footer__newsletter-wrapper .footer-title {
          justify-content: center;
          padding: 0px; }
        .site-footer__newsletter .site-footer__newsletter-wrapper .footer-title img {
          width: 50px;
          margin-right: 22px; }
        .site-footer__newsletter .site-footer__newsletter-wrapper .subtitle {
          margin: 0px auto 10px;
          max-width: 480px; } }
  .site-footer__newsletter .title {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: calc(18px * 1.5);
    font-size: 28px;
    margin: 0 8px 8px 0; }
    @media only screen and (max-width: 767px) {
      .site-footer__newsletter .title {
        max-width: 100%;
        justify-content: center; } }
  .site-footer__newsletter .subtitle {
    margin: 10px 0px;
    line-height: 24px; }
    .site-footer__newsletter .subtitle .csc-font-accent-m {
      font-weight: 300;
      font-size: 30px;
      line-height: unset;
      position: relative;
      top: 5px; }
    .site-footer__newsletter .subtitle p {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: calc(16px * 1.5);
      color: #F9F6F1;
      margin: 0; }
      @media only screen and (max-width: 767px) {
        .site-footer__newsletter .subtitle p {
          margin: 0;
          font-size: 14px;
          line-height: 150%; } }
      .site-footer__newsletter .subtitle p a {
        color: #F9F6F1;
        text-decoration: underline; }
  .site-footer__newsletter .info p {
    color: #fff;
    margin: 0 0 0 8px; }
    @media only screen and (max-width: 767px) {
      .site-footer__newsletter .info p {
        margin: 0; } }
    .site-footer__newsletter .info p a {
      color: #fff;
      text-decoration: underline; }
  .site-footer__newsletter .contact-form {
    padding: 0 0 16px 8px; }
    @media only screen and (max-width: 767px) {
      .site-footer__newsletter .contact-form {
        padding: 16px 0; } }
    .site-footer__newsletter .contact-form .input-group {
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
      .site-footer__newsletter .contact-form .input-group .newsletter__input {
        border: 1px solid #fff;
        padding: 0;
        border-radius: 0;
        margin-bottom: 0;
        text-indent: 16px;
        -ms-flex-preferred-size: 0;
        -webkit-flex-basis: 0;
        -moz-flex-basis: 0;
        flex-basis: 0;
        flex-grow: 10;
        font-size: 14px; }
      .site-footer__newsletter .contact-form .input-group .newsletter__submit {
        background-color: #F4F4F4;
        color: #323232;
        border-radius: 0;
        transition: background-color 0.4s ease-out; }
        .site-footer__newsletter .contact-form .input-group .newsletter__submit:hover {
          background-color: #DEE1E3;
          transition: background-color 0.1s ease-in; }
    .site-footer__newsletter .contact-form .input-error-message {
      color: #fff; }
  @media only screen and (max-width: 767px) {
    .site-footer__newsletter {
      height: unset; }
      .site-footer__newsletter .site-footer__newsletter-wrapper button {
        margin: 0px auto 10px;
        width: 100%; } }

.site-footer__menus {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(13px * 1.5);
  padding: 0 24px 0 0; }
  @media only screen and (max-width: 1023px) {
    .site-footer__menus {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 0; } }
  @media only screen and (min-width: 1024px) {
    .site-footer__menus .site-footer__login {
      display: none; } }
  .site-footer__menus .site-footer__login a {
    margin: 0 16px;
    display: block; }
  @media only screen and (max-width: 767px) {
    .site-footer__menus .site-footer__item.active > div > h4 {
      color: #0b7276;
      font-weight: bold; }
    .site-footer__menus .site-footer__item.active > div > h4 > svg {
      filter: invert(35%) sepia(16%) saturate(4971%) hue-rotate(149deg) brightness(83%) contrast(91%); } }

.site-footer__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex: 1 1 100%;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  justify-content: center; }
  .site-footer__item .site-footer__item-inner {
    padding: 63px 0 47px 8px; }
    @media only screen and (max-width: 1023px) {
      .site-footer__item .site-footer__item-inner {
        padding: 0;
        width: 100%;
        margin: 0 16px;
        border-top: 1px solid #ECECEC;
        position: relative; } }
    .site-footer__item .site-footer__item-inner .site-footer__accordion-button {
      display: none; }
      @media only screen and (max-width: 1023px) {
        .site-footer__item .site-footer__item-inner .site-footer__accordion-button {
          display: block;
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          cursor: pointer; } }
    @media only screen and (max-width: 1023px) {
      .site-footer__item .site-footer__item-inner .site-footer__linklist {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-in-out; } }
    @media only screen and (max-width: 1023px) {
      .site-footer__item .site-footer__item-inner .site-footer__linklist.list--inline > li {
        display: block; } }
    .site-footer__item .site-footer__item-inner .site-footer__linklist-item {
      padding: 0 0 8px; }
      @media only screen and (max-width: 1023px) {
        .site-footer__item .site-footer__item-inner .site-footer__linklist-item {
          display: block;
          padding: 0 0 16px 28px;
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: calc(14px * 1.5); } }
      .site-footer__item .site-footer__item-inner .site-footer__linklist-item:last-of-type {
        padding-bottom: 0; }
        @media only screen and (max-width: 1023px) {
          .site-footer__item .site-footer__item-inner .site-footer__linklist-item:last-of-type {
            padding-bottom: 24px; } }
      .site-footer__item .site-footer__item-inner .site-footer__linklist-item a:hover {
        color: currentColor;
        text-decoration: underline; }
  .site-footer__item.active h4 .icon-chevron-down {
    transition: all 0.2s ease;
    transform: rotate(-180deg); }
  .site-footer__item.active .site-footer__linklist {
    max-height: 999px;
    transition: max-height 0.3s cubic-bezier(0.44, 0.13, 0.48, 0.87); }

@media only screen and (min-width: 768px) {
  .site-footer__item--full-width {
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }

  .site-footer__item--one-half {
    -webkit-flex: 1 1 50%;
    -moz-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%; }

  .site-footer__item--one-third {
    -webkit-flex: 1 1 33%;
    -moz-flex: 1 1 33%;
    -ms-flex: 1 1 33%;
    flex: 1 1 33%; }

  .site-footer__item--one-quarter {
    -webkit-flex: 1 1 25%;
    -moz-flex: 1 1 25%;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%; }

  .site-footer__item--one-fifth {
    -webkit-flex: 1 1 20%;
    -moz-flex: 1 1 20%;
    -ms-flex: 1 1 20%;
    flex: 1 1 20%; }

  .site-footer-newsletter__one-half {
    -webkit-flex: 1 1 50%;
    -moz-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%; } }
@media only screen and (min-width: 768px) {
  .site-footer__item--center {
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center; }
    .site-footer__item--center > * {
      text-align: center; } }

@media only screen and (min-width: 768px) {
  .site-footer__centered--single-block {
    width: 75%;
    margin: 0 auto; } }

.site-footer__payment-icons {
  padding: 32px 16px;
  border-right: 1px solid #f2f2f2;
  color: #323232; }
  @media only screen and (max-width: 1023px) {
    .site-footer__payment-icons {
      padding: 0 16px;
      border-right: 0;
      text-align: center; } }
  .site-footer__payment-icons .payment-icon {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: calc(14px * 1.5);
    margin: 0 4px; }
    @media only screen and (max-width: 1023px) {
      .site-footer__payment-icons .payment-icon {
        margin: 0 4px; } }
    @media only screen and (max-width: 375px) {
      .site-footer__payment-icons .payment-icon {
        margin: 0 2px; } }
    .site-footer__payment-icons .payment-icon:first-of-type {
      margin: 0 8px 0 0; }
      @media only screen and (max-width: 1023px) {
        .site-footer__payment-icons .payment-icon:first-of-type {
          font-family: Poppins, sans-serif;
          font-size: 13px;
          font-weight: 600;
          line-height: calc(13px * 1.5);
          margin: 0;
          display: block;
          width: 100%;
          margin-bottom: 8px; } }

.site-footer__social-icons {
  padding: 32px 16px;
  float: right; }
  @media only screen and (max-width: 1023px) {
    .site-footer__social-icons {
      padding: 32px 8px 0;
      text-align: center;
      float: unset; } }
  @media only screen and (max-width: 767px) {
    .site-footer__social-icons {
      flex-direction: column; } }
  .site-footer__social-icons span {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: calc(14px * 1.5);
    margin-left: 6px;
    margin-right: 10px; }
    @media only screen and (max-width: 767px) {
      .site-footer__social-icons span {
        font-family: Poppins, sans-serif;
        font-size: 13px;
        font-weight: 600;
        line-height: calc(13px * 1.5);
        width: 100%;
        margin: 0 auto 8px; } }
  .site-footer__social-icons .site-footer__icon-list li {
    margin: 0 6px; }
    @media only screen and (max-width: 1279px) {
      .site-footer__social-icons .site-footer__icon-list li {
        margin: 0 16px 8px; } }
    @media only screen and (max-width: 1023px) {
      .site-footer__social-icons .site-footer__icon-list li {
        margin: 0 8px 8px; } }
    @media only screen and (max-width: 375px) {
      .site-footer__social-icons .site-footer__icon-list li {
        margin: 0 4px 8px; } }
    .site-footer__social-icons .site-footer__icon-list li .social-icons__link {
      display: block;
      transition: color 0.4s ease-out; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link .icon {
        width: 37px;
        height: 37px; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link:hover {
        transition: color 0.1s ease-in; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link.social_facebook:hover {
        color: #3b5998; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link.social_twitter:hover {
        color: #1da1f2; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link.social_pinterest:hover {
        color: #cc2127; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link.social_youtube:hover {
        color: #cd201f; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link.social_instagram:hover {
        color: #e12f67; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link.social_tiktok:hover {
        color: #25f4ee; }
      .site-footer__social-icons .site-footer__icon-list li .social-icons__link .icon__fallback-text {
        position: fixed !important; }
    .site-footer__social-icons .site-footer__icon-list li #footer-store-selector {
      border-radius: 0;
      border: 1px solid #323232;
      padding: 8px 42px 8px 8px;
      background-position: right 8px center;
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: calc(14px * 1.5); }
      .site-footer__social-icons .site-footer__icon-list li #footer-store-selector:focus {
        outline: none; }
    .site-footer__social-icons .site-footer__icon-list li:last-of-type {
      border-left: 1px solid #f2f2f2;
      padding-left: 16px; }
      @media only screen and (min-width: 1024px) {
        .site-footer__social-icons .site-footer__icon-list li:last-of-type {
          display: none; } }

pre-footer {
  display: flex;
  max-width: 1650px;
  align-items: center;
  margin: 0 auto 50px; }

pre-footer div:first-of-type:nth-child(1) {
  padding: 0 20px 0 120px; }

pre-footer div:first-of-type > span b {
  color: #47bb9c;
  text-decoration: underline; }

@media only screen and (max-width: 1023px) {
  pre-footer {
    max-width: unset; }

  pre-footer div:first-of-type:nth-child(1) {
    padding: 20px; }

  pre-footer div:last-of-type div iframe {
    height: 45px !important;
    margin-left: -40px; }

  .tp-widget-wrapper {
    text-align: left; } }
@media only screen and (max-width: 767px) {
  pre-footer {
    flex-direction: column;
    align-items: start;
    margin-bottom: 0px; }

  pre-footer div:first-of-type {
    padding: 20px; }

  .tp-widget-wrapper {
    text-align: left; } }
.site-footer__feefo {
  background-color: #fff;
  text-align: center;
  padding: 16px; }
  .site-footer__feefo a {
    display: inline-block; }
    .site-footer__feefo a img {
      height: 40px;
      width: 100%;
      max-width: 158px;
      display: inline-block;
      vertical-align: middle; }

@media screen and (min-width: 1250px) {
  .site-footer__top,
  .site-footer__bottom {
    width: calc(100% - 200px);
    margin: 0 auto; } }
.site-footer__bottom {
  border-top: 1px solid #f2f2f2;
  background-color: #fff;
  text-align: center;
  padding: 16px;
  color: #323232; }
  .site-footer__bottom .copyright-content {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: calc(14px * 1.5);
    float: left; }
    @media only screen and (max-width: 1023px) {
      .site-footer__bottom .copyright-content {
        float: unset; } }

.site-footer__bottom .site-footer__linklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  align-items: center; }
  .site-footer__bottom .site-footer__linklist li:first-of-type {
    width: 25%; }
  @media only screen and (max-width: 1023px) {
    .site-footer__bottom .site-footer__linklist {
      max-width: 70%;
      margin: 0 auto; }
      .site-footer__bottom .site-footer__linklist li:first-of-type {
        width: 100%;
        order: 2;
        margin-top: 20px; } }
  @media only screen and (max-width: 767px) {
    .site-footer__bottom .site-footer__linklist {
      max-width: unset;
      margin: 0 auto;
      justify-content: center; } }

@media only screen and (max-width: 767px) {
  .site-footer__bottom .site-footer__linklist > .site-footer__linklist-item {
    flex-basis: 50%; }

  .site-footer__bottom .site-footer__linklist > .site-footer__linklist-item:nth-child(odd) {
    text-align: right; }

  .site-footer__bottom .site-footer__linklist > .site-footer__linklist-item:nth-child(even) {
    text-align: left; }

  .site-footer__bottom .site-footer__linklist > .site-footer__linklist-item:not(:nth-child(odd)):last-of-type {
    text-align: center; } }
/*================ END Footer ================*/
.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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: 767px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%; }
  @media only screen and (max-width: 767px) {
    .feature-row__item {
      -webkit-flex: 1 1 auto;
      -moz-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      width: 100%;
      max-width: 100%; } }

.feature-row__image-wrapper {
  margin: 0 auto 8px;
  position: relative;
  width: 100%; }

.feature-row__image {
  display: block;
  margin: 0 auto; }
  .feature-row__image-wrapper .feature-row__image {
    width: 100%;
    position: absolute;
    top: 0; }
  @media only screen and (max-width: 767px) {
    .feature-row__image {
      order: 1; } }

.feature-row__text {
  padding-top: 16px;
  padding-bottom: 16px; }
  @media only screen and (max-width: 767px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media only screen and (min-width: 768px) {
  .feature-row__text--left {
    padding-left: 16px; }

  .feature-row__text--right {
    padding-right: 16px; } }
@media only screen and (min-width: 768px) {
  .featured-row__subtext {
    font-size: 1.14286em; } }
.hero {
  position: relative;
  height: 475px;
  display: table;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

.hero--adapt,
.hero-fixed-width__image {
  max-height: 100vh; }
  @media only screen and (min-width: 768px) {
    .hero--adapt,
    .hero-fixed-width__image {
      max-height: 80vh; } }

.hero--x-small {
  height: 94px; }

.hero--small {
  height: 225px; }

.hero--medium {
  height: 357px; }

.hero--large {
  height: 488px; }

.hero--x-large {
  height: 582px; }

@media only screen and (min-width: 768px) {
  .hero--x-small {
    height: 125px; }

  .hero--small {
    height: 300px; }

  .hero--medium {
    height: 475px; }

  .hero--large {
    height: 650px; }

  .hero--x-large {
    height: 775px; } }
.hero__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #323232;
  opacity: 0.4;
  z-index: 1; }

.hero__inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 32px 0;
  z-index: 2; }

.hero__btn {
  margin-top: 16px; }

/*================ Fixed width ================*/
.hero-fixed-width {
  position: relative; }
  .hero-fixed-width::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #323232;
    opacity: 0.4;
    z-index: 1; }

.hero-fixed-width__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.hero-fixed-width__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  font-family: "object-fit: cover";
  overflow: hidden; }

/*================ Quote slider ================*/
.quote-icon {
  display: block;
  margin: 0 auto 20px; }

.quotes-slider__text {
  font-size: 1.125em;
  font-weight: 400;
  font-style: normal;
  padding: 0 8px; }
  .quotes-slider__text cite {
    font-size: 0.77778em;
    font-style: normal; }
  .quotes-slider__text p {
    margin-bottom: 16px; }
    .quotes-slider__text p + cite {
      margin-top: 0; }

.slick-dotted.quotes-slider.slick-initialized {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab; }

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 32px; }
  .quotes-wrapper .slick-dots li {
    margin: 0; }
  .quotes-wrapper .slick-dots li button::before {
    font-size: 34px;
    color: #323232;
    opacity: 0.2; }
  .quotes-wrapper .slick-dots li.slick-active button::before {
    opacity: 1; }

.quotes-wrapper .slick-slide[tabindex="0"] {
  outline: none; }

.logo-bar {
  list-style: none;
  text-align: center;
  margin-bottom: -16px; }

@media only screen and (min-width: 768px) {
  .logo-bar--large {
    margin-bottom: -32px; } }
.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  margin: 0 16px 16px; }

@media only screen and (min-width: 768px) {
  .logo-bar__item--large {
    margin-bottom: 32px; } }
.logo-bar__image {
  display: block;
  margin: 0 auto; }

.logo-bar__link {
  display: block; }

.map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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: 768px) {
    .map-section {
      min-height: 500px; } }

.map-section--load-error {
  height: auto; }

.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;
  width: 100%;
  -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__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2; }

.map-section__error {
  position: relative;
  z-index: 3; }
  @media only screen and (min-width: 768px) {
    .map-section__error {
      position: absolute;
      margin: 0 2rem;
      top: 50%;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }

.map-section__content-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  flex-grow: 0; }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    .map-section__content-wrapper {
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%; } }
  @media only screen and (min-width: 1024px) {
    .map-section__content-wrapper {
      -ms-flex-preferred-size: 33%;
      -webkit-flex-basis: 33%;
      -moz-flex-basis: 33%;
      flex-basis: 33%; } }

.map-section__content {
  position: relative;
  display: inline-block;
  background-color: rgba(50, 50, 50, 0.05);
  padding: 16px;
  width: 100%;
  text-align: center;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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-align-content: center;
  -ms-align-content: center;
  align-content: center; }
  .map-section__content > * {
    width: 100%; }
  @media only screen and (min-width: 768px) {
    .map-section__content {
      background-color: white;
      margin: 32px 0;
      min-height: 300px; } }
  .map-section--load-error .map-section__content {
    position: static;
    transform: translateY(0); }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.map-section__container {
  max-width: none;
  width: 100%;
  height: 55vh;
  left: 0; }
  @media only screen and (min-width: 768px) {
    .map-section__container {
      position: absolute;
      height: 100%;
      top: 0;
      width: 130%; } }

.map_section__directions-btn [class^="icon"] {
  height: 1em; }
.map_section__directions-btn * {
  vertical-align: middle; }

.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: 768px) {
    .map-section__background-wrapper {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; } }
  .map-section--onboarding .map-section__background-wrapper {
    min-height: 55vh; }

.map-section__image {
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 768px) {
    .map-section__image {
      position: absolute; } }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section--load-error .map-section__image {
    display: block !important; }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

.image-bar {
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .image-bar {
      max-width: 400px;
      margin: 0 auto; } }

.image-bar__item {
  display: block;
  color: white;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover; }

.image-bar__link:hover .image-bar__overlay::before, .image-bar__link:focus .image-bar__overlay::before {
  opacity: 0.8; }
.image-bar__link:focus {
  position: relative;
  z-index: 2; }
  .image-bar__link:focus .image-bar__content {
    outline: 1px dotted #212121;
    outline: 5px auto -webkit-focus-ring-color; }

.image-bar__content, .image-bar__item {
  position: relative;
  width: 100%; }
  .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
    height: 94px; }
  .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
    height: 225px; }
  .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
    height: 357px; }
  .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
    height: 488px; }
  .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
    height: 582px; }
  @media only screen and (min-width: 768px) {
    .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
      height: 125px; }
    .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
      height: 300px; }
    .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
      height: 475px; }
    .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
      height: 650px; }
    .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
      height: 775px; } }

.image-bar__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #323232;
  opacity: 0.4; }

.image-bar__caption {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  width: 100%;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); }

.collection-grid {
  margin-bottom: -16px;
  overflow: auto; }

.collection-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .collection-grid-item {
      margin-bottom: 16px; } }

.collection-grid-item__title {
  color: white;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  padding: 0 5px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  hyphens: auto;
  font-weight: 600; }
  @media only screen and (min-width: 768px) {
    .collection-grid-item__title {
      padding: 0 15px; } }

.collection-grid-item__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
  .collection-grid-item__link:hover .collection-grid-item__title-wrapper::before, .collection-grid-item__link:focus .collection-grid-item__title-wrapper::before {
    opacity: 0.8; }
  .collection-grid-item__link:focus {
    opacity: 1; }

.collection-grid-item__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; }

.collection-grid-item__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #323232;
  opacity: 0.4; }

.custom-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-bottom: -16px;
  margin-left: -16px; }
  @media only screen and (max-width: 767px) {
    .custom-content {
      margin-bottom: -16px;
      margin-left: -16px; } }

.custom__item {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 16px;
  padding-left: 16px;
  max-width: 100%; }
  @media only screen and (max-width: 767px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 16px;
      margin-bottom: 16px; }
      .custom__item.small--one-half {
        -webkit-flex: 1 0 50%;
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }
  .custom__item .collection-grid-item {
    margin-bottom: 0; }

.custom__item--image {
  margin: 0 auto;
  padding-left: 0; }

.custom__item-inner {
  position: relative;
  display: block;
  text-align: left;
  max-width: 100%; }

.custom__item-inner--video,
.custom__item-inner--collection,
.custom__item-inner--html {
  display: block; }

.custom__item-inner--image {
  position: relative;
  margin: 0 auto; }

.custom__image {
  width: 100%;
  display: block;
  position: absolute;
  top: 0; }

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center; }

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

.align--middle-left {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.align--center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center; }

.align--middle-right {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: right; }

.align--bottom-left {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end; }

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center; }

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right; }

.newsletter-section {
  padding-top: 32px; }

.index-section--newsletter-background {
  background-color: rgba(50, 50, 50, 0.05); }

.rich-text__heading--large {
  font-size: 1.4em; }

.rich-text__heading--small {
  font-size: 0.88em; }

.rich-text__text--large {
  font-size: 1.14286em; }

.rich-text__text--small {
  font-size: 0.85714em; }

.advert-image {
  min-height: 400px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top; }
  @media only screen and (min-width: 1280px) {
    .advert-image {
      min-height: 500px;
      height: 500px; } }

.product-card {
  position: relative; }
  .product-card:hover .product-card__image-wrapper, .product-card:focus-within .product-card__image-wrapper {
    opacity: 0.8; }
  .product-card:hover .product-card__title, .product-card:focus-within .product-card__title {
    border-bottom-color: #323232; }

.product-card__image-with-placeholder-wrapper {
  position: relative; }

.product-card__title {
  border-bottom: 1px solid transparent;
  display: inline; }

/*================ Collection templates ================*/
.template-collection .breadcrumbs {
  background-color: #fff; }
.template-collection .collection-header .custom_collection-header {
  font-family: VivaBeautifulPro-Regular, Serif;
  font-size: 70px;
  color: #fff;
  margin: 14px 0 7px;
  letter-spacing: 0px !important;
  font-weight: 400;
  font-feature-settings: "salt" 2;
  line-height: 1em !important; }
  @media only screen and (max-width: 767px) {
    .template-collection .collection-header .custom_collection-header {
      font-size: 66px;
      margin-top: 20px; } }
.template-collection .collection-header .custom_collection-text {
  color: #fff;
  margin: 14px 0 0 0; }
.template-collection .collection-header .custom_collection-toggle {
  color: #fff; }
.template-collection .collection-header .section-header_customseo {
  padding: 32px 0 20px !important;
  background-position: center left; }
  @media only screen and (max-width: 767px) {
    .template-collection .collection-header .section-header_customseo {
      background-position: 29% 67%;
      background-size: 181%; } }
.template-collection .collection-header .section-header {
  background-color: #f2f2f2;
  margin: 0;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media only screen and (max-width: 1023px) {
    .template-collection .collection-header .section-header {
      display: block;
      min-height: unset; } }
  @media only screen and (max-width: 767px) {
    .template-collection .collection-header .section-header {
      padding: 16px 0; } }
  .template-collection .collection-header .section-header .page-width {
    max-width: calc(700px + 32px * 2); }
  .template-collection .collection-header .section-header h1 {
    margin-bottom: 8px; }
    @media only screen and (max-width: 1023px) {
      .template-collection .collection-header .section-header h1 {
        font-size: 29px;
        line-height: 36px; } }
  .template-collection .collection-header .section-header .description {
    display: none; }
    @media only screen and (max-width: 767px) {
      .template-collection .collection-header .section-header .description {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5); } }
    .template-collection .collection-header .section-header .description.loaded {
      display: block; }
    .template-collection .collection-header .section-header .description.csc-max-height {
      height: 58px !important;
      overflow: hidden !important;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical; }
  .template-collection .collection-header .section-header .csc-reveal-more {
    display: block !important;
    font-size: 14px;
    padding: 8px 0; }
    @media only screen and (max-width: 767px) {
      .template-collection .collection-header .section-header .csc-reveal-more {
        padding: 15px 0; } }
  .template-collection .collection-header .section-header .sub-category {
    padding: 24px 0 8px;
    overflow: auto;
    white-space: nowrap;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 912px;
    margin: 0 auto;
    display: flex; }
    @media only screen and (max-width: 1023px) {
      .template-collection .collection-header .section-header .sub-category {
        padding: 24px 8px 8px 16px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        display: block; } }
    .template-collection .collection-header .section-header .sub-category .btn, .template-collection .collection-header .section-header .sub-category .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-collection .collection-header .section-header .sub-category .shopify-payment-button__button--unbranded {
      margin: 0 4px 10px;
      white-space: nowrap;
      padding: 12px 14px;
      font-size: 13px; }
      @media only screen and (max-width: 1023px) {
        .template-collection .collection-header .section-header .sub-category .btn, .template-collection .collection-header .section-header .sub-category .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-collection .collection-header .section-header .sub-category .shopify-payment-button__button--unbranded {
          margin: 0 8px 0 0; } }
    .template-collection .collection-header .section-header .sub-category .custom_rm_text #bc-sf-filter-collection-description {
      margin-bottom: 0; }
  .template-collection .collection-header .section-header .sub-category_custom {
    padding: 16px 0 8px;
    overflow: auto;
    white-space: nowrap;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 912px;
    margin: 0 auto;
    display: flex; }
    @media only screen and (max-width: 1023px) {
      .template-collection .collection-header .section-header .sub-category_custom {
        padding: 24px 8px 8px 16px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        display: block; } }
    .template-collection .collection-header .section-header .sub-category_custom .btn, .template-collection .collection-header .section-header .sub-category_custom .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-collection .collection-header .section-header .sub-category_custom .shopify-payment-button__button--unbranded, .template-collection .collection-header .section-header .sub-category_custom a {
      margin: 0 4px 10px;
      white-space: nowrap;
      padding: 12px 14px;
      font-size: 13px;
      background: #3b3b3b;
      border: 2px solid #ffffff;
      color: #ffffff; }
      @media only screen and (max-width: 1023px) {
        .template-collection .collection-header .section-header .sub-category_custom .btn, .template-collection .collection-header .section-header .sub-category_custom .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-collection .collection-header .section-header .sub-category_custom .shopify-payment-button__button--unbranded, .template-collection .collection-header .section-header .sub-category_custom a {
          margin: 0 8px 0 0; } }
.template-collection .collection-header .section-header_blackfriday {
  /*background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.15));*/
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  background-color: #1d3138; }

.template-collection .main-content,
.template-search .main-content {
  padding-top: 0; }
.template-collection .filters-toolbar-wrapper,
.template-search .filters-toolbar-wrapper {
  margin-bottom: 20px;
  border-bottom: none;
  border-top: none;
  padding: 14px 0; }
  @media only screen and (max-width: 767px) {
    .template-collection .filters-toolbar-wrapper,
    .template-search .filters-toolbar-wrapper {
      margin-bottom: 0;
      padding: 0 0 16px 0; }
      .template-collection .filters-toolbar-wrapper.MAM-502-filters-wrapper .page-width,
      .template-search .filters-toolbar-wrapper.MAM-502-filters-wrapper .page-width {
        padding-left: 0;
        padding-right: 0; } }
  .template-collection .filters-toolbar-wrapper .filters-toolbar,
  .template-search .filters-toolbar-wrapper .filters-toolbar {
    text-align: right;
    display: block;
    font-size: 0; }
    @media only screen and (max-width: 767px) {
      .template-collection .filters-toolbar-wrapper .filters-toolbar,
      .template-search .filters-toolbar-wrapper .filters-toolbar {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        font-size: 16px; } }
    .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper,
    .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper {
      display: inline-block;
      -webkit-flex: none;
      -moz-flex: none;
      -ms-flex: none;
      flex: none; }
      @media only screen and (max-width: 767px) {
        .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper,
        .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper {
          -webkit-flex: auto;
          -moz-flex: auto;
          -ms-flex: auto;
          flex: auto; } }
      .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting,
      .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting {
        margin-right: 0; }
        .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__label.select-label,
        .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__label.select-label {
          display: none;
          font-family: Poppins, sans-serif;
          font-size: 16px;
          font-weight: 600;
          line-height: calc(16px * 1.5);
          text-transform: none; }
        .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__input-wrapper,
        .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__input-wrapper {
          color: #323232; }
          .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__input-wrapper .filters-toolbar__input,
          .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__input-wrapper .filters-toolbar__input {
            height: 47px;
            border: 1px solid #323232;
            padding: 8px 37px 8px 16px;
            font-size: 13px;
            min-width: 180px; }
          .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__input-wrapper .icon-chevron-down,
          .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting .filters-toolbar__input-wrapper .icon-chevron-down {
            right: 16px;
            width: 13px;
            height: 8px; }
        .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting button.bc-sf-filter-skeleton-button,
        .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item-wrapper #bc-sf-filter-top-sorting button.bc-sf-filter-skeleton-button {
          width: 100%;
          padding: 10px 0; }
    .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item--count,
    .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item--count {
      display: inline-block;
      -webkit-flex: none;
      -moz-flex: none;
      -ms-flex: none;
      flex: none;
      margin-right: 20px; }
      @media only screen and (max-width: 767px) {
        .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item--count,
        .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item--count {
          -webkit-flex: 0 1 35%;
          -moz-flex: 0 1 35%;
          -ms-flex: 0 1 35%;
          flex: 0 1 35%;
          margin-right: 0;
          text-align: left;
          min-height: 26px; } }
      .template-collection .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item--count .filters-toolbar__product-count,
      .template-search .filters-toolbar-wrapper .filters-toolbar .filters-toolbar__item--count .filters-toolbar__product-count {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: calc(14px * 1.5);
        font-style: normal;
        color: #323232; }
    .template-collection .filters-toolbar-wrapper .filters-toolbar #bc-sf-filter-tree-mobile button.bc-sf-filter-skeleton-button,
    .template-search .filters-toolbar-wrapper .filters-toolbar #bc-sf-filter-tree-mobile button.bc-sf-filter-skeleton-button {
      margin: 0 !important;
      background-color: rgba(0, 0, 0, 0.07) !important; }

#Collection,
#search-result {
  padding-left: 24px;
  padding-right: 24px; }
  @media only screen and (max-width: 1023px) {
    #Collection,
    #search-result {
      padding-left: 16px;
      padding-right: 16px; } }
  #Collection #bc-sf-filter-tree-mobile button,
  #search-result #bc-sf-filter-tree-mobile button {
    margin: 0 0 53px;
    background: transparent !important;
    border: 2px solid #323232;
    line-height: 43px;
    color: #323232; }
    #Collection #bc-sf-filter-tree-mobile button:focus,
    #search-result #bc-sf-filter-tree-mobile button:focus {
      outline: none; }
  #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner,
  #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner {
    width: calc(100% / 5);
    float: left; }
    @media only screen and (max-width: 1279px) {
      #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner,
      #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner {
        width: calc(100% / 4); } }
    @media only screen and (max-width: 1023px) {
      #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner,
      #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner {
        width: calc(100% / 4); } }
    #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree,
    #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree {
      width: 100%;
      float: none; }
      #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper,
      #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper {
        margin-left: 8px;
        margin-right: 8px;
        margin-bottom: 0;
        padding-bottom: 8px;
        border-bottom: none; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-block-title h3,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-block-title h3 {
          display: none; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-clear-all,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-clear-all {
          line-height: 28px;
          text-decoration: underline;
          font-size: 16px; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items {
          border-top: 1px solid #f2f2f2;
          margin: 0;
          padding-top: 16px; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item {
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: calc(14px * 1.5);
            text-transform: none;
            margin-bottom: 8px;
            position: relative; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a {
              display: inline-block;
              background-color: #f2f2f2;
              padding: 8px 8px 8px 28px;
              vertical-align: middle;
              transition: all 0.3s ease-in; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a:hover,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a:hover {
                background-color: #323232;
                color: #fff;
                transition: all 0.15s ease-out; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a:hover .bc-sf-filter-clear:before, #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a:hover .bc-sf-filter-clear:after,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a:hover .bc-sf-filter-clear:before,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item > a:hover .bc-sf-filter-clear:after {
                  background-color: #fff;
                  transition: all 0.15s ease-out; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item .bc-sf-filter-clear,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item .bc-sf-filter-clear {
              width: 14px;
              height: 14px;
              float: none;
              margin-top: 0px;
              position: absolute;
              left: 8px;
              top: calc(50% - 7px); }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item .bc-sf-filter-clear:before, #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item .bc-sf-filter-clear:after,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item .bc-sf-filter-clear:before,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items .selected-item .bc-sf-filter-clear:after {
                width: 16px;
                height: 2px;
                top: 7px;
                background-color: #323232;
                transition: all 0.3s ease-in; }
      #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper,
      #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper {
        padding: 0 8px; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-clear,
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-clear-all,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-clear,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-clear-all {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: calc(14px * 1.5);
          line-height: 26px; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block {
          padding: 0;
          border-bottom: none;
          border-top: 1px solid #f2f2f2; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block:not(.bc-sf-filter-option-hidden) ~ .bc-sf-filter-option-block,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block:not(.bc-sf-filter-option-hidden) ~ .bc-sf-filter-option-block {
            padding-top: 0; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title {
            background-color: #f8f8f8;
            padding: 0;
            transition: all 0.3s ease-in; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title.up,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title.up {
              background-color: transparent; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title:hover,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title:hover {
              background-color: #f8f8f8;
              transition: all 0.15s ease-out; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3 {
              font-family: Poppins, sans-serif;
              font-size: 16px;
              font-weight: 600;
              line-height: calc(16px * 1.5);
              text-transform: none;
              display: block;
              padding: 16px 32px 16px 16px; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3:hover,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3:hover {
                cursor: pointer; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3:focus,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3:focus {
                outline: none; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3 > span:before,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3 > span:before {
                content: none; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3 > span:after,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3 > span:after {
                content: '';
                width: 13px;
                height: 8px;
                position: absolute;
                right: 19px;
                top: calc(50% - 4px);
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' role='presentation' class='icon icon-chevron-up icon--full-color' width='13.414px' height='8.121px' viewBox='0 0 13.414 8.121'%3E%3Cg transform='translate(0.707 1.414)'%3E%3Cpath d='M7137.172,588.97l-6-6-6,6' transform='translate(-7125.172 -582.97)' fill='none' stroke='%23323232' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                transition: all 0.2s ease;
                transform: rotate(0deg); }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3 > span.up:after,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title h3 > span.up:after {
                transition: all 0.2s ease;
                transform: rotate(180deg); }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title .bc-sf-filter-clear,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title .bc-sf-filter-clear {
              display: none;
              float: none;
              position: absolute;
              right: 0;
              top: 0; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content {
            margin-top: 16px;
            margin-bottom: 16px; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspPane,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspPane {
              width: auto !important; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspPane ul,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspPane ul {
                padding-right: 12px; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspVerticalBar,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspVerticalBar {
              width: 4px; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspVerticalBar .jspTrack,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspVerticalBar .jspTrack {
                background: #f2f2f2; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspVerticalBar .jspTrack .jspDrag,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .jspVerticalBar .jspTrack .jspDrag {
                  background: #0b7276; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-single-list li a .bc-sf-filter-option-amount,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-single-list li a .bc-sf-filter-option-amount {
              font-size: 13px;
              vertical-align: top;
              color: #0b7276; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a {
              padding-left: 34px;
              line-height: 26px;
              margin-bottom: 16px; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a .bc-sf-filter-option-amount,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a .bc-sf-filter-option-amount {
                font-size: 13px;
                vertical-align: top;
                color: #0b7276; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a > span:first-child,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a > span:first-child {
              -webkit-box-shadow: 0 0 0 1px #323232;
              box-shadow: 0 0 0 1px #323232;
              width: 24px;
              height: 24px;
              left: 1px;
              top: 1px; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a > span:first-child:before,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a > span:first-child:before {
                width: 14px;
                height: 6px;
                top: 8px;
                left: 5px;
                border: 2px solid #0b7276;
                border-top: none;
                border-right: none; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li {
              min-width: 32px;
              width: auto !important;
              margin: 0 8px 8px 0;
              line-height: 20px;
              border: none; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a {
                padding: 7px;
                border-radius: 2px;
                border: 1px solid #b2b2b2; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a:hover, #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a.selected,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a:hover,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a.selected {
                  background-color: #e6f6f3;
                  border-color: #47bb9c;
                  font-weight: 400;
                  color: #323232 !important; }
                  #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a:hover span, #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a.selected span,
                  #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a:hover span,
                  #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a.selected span {
                    color: #323232 !important; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box {
              position: relative;
              display: inline-flex;
              width: 40%; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box:before,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box:before {
                position: absolute;
                left: 15px;
                top: 11px;
                font-size: 13px; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box.GBP:before,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box.GBP:before {
                content: "£"; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box.USD:before,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box.USD:before {
                content: "$"; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box.EUR:before,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .filter-currency-box.EUR:before {
                content: "€"; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-range-amount,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-range-amount {
              text-align: center; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-range-amount-split,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-range-amount-split {
              display: inline-flex;
              float: none;
              justify-content: space-evenly;
              width: 17%; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-range-amount input,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-range-amount input {
              height: 47px;
              margin: 0 0 8px;
              padding: 16px 16px 16px 21px;
              border: 1px solid #323232;
              font-size: 13px;
              line-height: 18px;
              width: 100%; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li {
              margin-bottom: 8px; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a {
                border: 1px solid #b2b2b2;
                padding: 7px;
                margin: 0 8px 0 0; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a:hover, #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a.selected,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a:hover,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a.selected {
                  border-radius: 0;
                  border: 1px solid #323232; }
                  #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a:hover .bc-sf-filter-option-swatch-image, #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a.selected .bc-sf-filter-option-swatch-image,
                  #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a:hover .bc-sf-filter-option-swatch-image,
                  #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a.selected .bc-sf-filter-option-swatch-image {
                    border: 1px solid #323232 !important; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a .bc-sf-filter-option-swatch-image,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a .bc-sf-filter-option-swatch-image {
                  width: 31px;
                  height: 31px;
                  margin-right: 8px;
                  border-radius: 0;
                  padding: 0; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a .bc-sf-filter-option-value,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a .bc-sf-filter-option-value {
                  display: inline-block; }
    #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header,
    #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header {
      padding: 0 0 11px;
      margin: 0 8px; }
      #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header h3,
      #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header h3 {
        font-family: Poppins, sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: calc(18px * 1.5);
        margin: 0; }
      #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header .btn-close,
      #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header .btn-close {
        display: none; }
    #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-footer,
    #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-footer {
      display: none; }
    #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-background,
    #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-background {
      width: 0;
      height: 0; }
    @media only screen and (max-width: 767px) {
      #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner,
      #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner {
        position: fixed;
        z-index: 998;
        width: calc(100% - 40px);
        height: 100%;
        right: 0;
        top: 0;
        background: #fff;
        -ms-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.29, 0.63, 0.44, 1) 0.15s; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header,
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-footer,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-header,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-footer {
          position: fixed;
          z-index: 999;
          right: 0;
          width: 100%;
          background-color: #fff;
          display: none; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-background,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner .bc-sf-filter-mobile-background {
          position: fixed;
          right: 100%;
          top: 0;
          width: 0;
          height: 100%;
          background-color: rgba(0, 0, 0, 0);
          transition: background-color 0.15s ease, width 0.1s ease 0.15s; }
        #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active,
        #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active {
          -ms-transform: translateX(0);
          -webkit-transform: translateX(0);
          transform: translateX(0);
          transition: transform 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-background,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-background {
            width: 40px;
            background-color: rgba(0, 0, 0, 0.75);
            transition: background-color 0.15s ease 0.45s; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header,
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-footer,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-footer {
            display: block; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header {
            top: 0;
            height: 52px;
            border-bottom: 1px solid #f2f2f2;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
            padding: 0 0 0 16px;
            margin: 0; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header h3,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header h3 {
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              width: 100%;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              -ms-align-items: center;
              -o-align-items: center;
              align-items: center; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header .btn-close,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-header .btn-close {
              display: inline-block;
              position: absolute;
              right: 1px;
              top: 0;
              width: 51px;
              height: 51px;
              border: none;
              background: transparent; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-footer,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-footer {
            bottom: 0;
            height: 95px; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-footer .btn-close,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active .bc-sf-filter-mobile-footer .btn-close {
              width: calc(100% - 32px);
              margin: 16px 16px 32px; }
          #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree,
          #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree {
            display: block;
            padding: 52px 0 95px;
            height: 100%;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree .bc-sf-filter-selection-wrapper,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree .bc-sf-filter-selection-wrapper {
              margin-left: 16px;
              margin-right: 16px;
              margin-top: 16px; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items {
                border-top: none;
                padding-top: 0; }
            #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper,
            #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper {
              padding: 0; }
              #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block,
              #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block {
                padding: 0 16px; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block:first-child,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block:first-child {
                  border-top: none; }
                #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title,
                #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title {
                  margin: 0 -16px; }
                  #Collection #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title.up:hover,
                  #search-result #bc-sf-filter-wrapper .bc-sf-filter-wrapper__inner.overlay-active #bc-sf-filter-tree #bc-sf-filter-options-wrapper .bc-sf-filter-option-block .bc-sf-filter-block-title.up:hover {
                    background-color: transparent; } }
  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right,
  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right {
    float: right;
    width: calc(100% / 5 * 4); }
    @media only screen and (max-width: 1279px) {
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right {
        width: calc(100% / 4 * 3); } }
    @media only screen and (max-width: 1023px) {
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right {
        width: calc(100% / 4 * 3); } }
    @media only screen and (max-width: 767px) {
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right {
        width: 100%; } }
    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products,
    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products {
      float: none;
      margin: 0;
      font-size: 0; }
      @media only screen and (max-width: 767px) {
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products {
          margin-left: -8px;
          margin-right: -8px; } }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: calc(16px * 1.5);
        margin-bottom: 8px; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price dd,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price dd {
          margin: 0 8px 0 0; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__regular,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__regular {
          color: #323232; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__regular .price-item__label,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__regular .price-item__label {
            font-weight: 600;
            margin-right: 4px; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__regular .price-item--regular,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__regular .price-item--regular {
            font-weight: 600; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__sale,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__sale {
          display: block;
          color: #323232; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__sale .price-item__label,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__sale .price-item__label {
            margin-right: 4px; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__save,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__save {
          display: block;
          width: 100%;
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: calc(14px * 1.5);
          color: #a42337; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__save .price-item--save,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price .price__save .price-item--save {
            font-weight: 400; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-sale .price__regular .price-item--regular,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-sale .price__regular .price-item--regular {
          font-weight: 400;
          text-decoration: line-through; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth .price__sale,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth .price__sale {
          color: #323232; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth.price--on-sale .price__sale,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth.price--on-sale .price__sale {
          color: #323232; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth .price__regular .price-item__label,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth .price__regular .price-item__label {
          font-weight: 400; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth .price__regular .price-item--regular,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .price.price--on-worth .price__regular .price-item--regular {
          font-weight: 400; }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .feefo-product-stars-widget,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .feefo-product-stars-widget {
        font-size: 13px; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .feefo-product-stars-widget .feefowidget-product-stars__reviews-count,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .feefo-product-stars-widget .feefowidget-product-stars__reviews-count {
          color: #323232 !important; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .feefo-product-stars-widget .feefowidget-star,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .feefo-product-stars-widget .feefowidget-star {
          color: #FFCE00 !important; }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .full-width-link,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .full-width-link {
        z-index: 4; }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist {
        position: absolute;
        z-index: 5 !important;
        bottom: 16px;
        right: 16px;
        margin-left: 0 !important; }
        @media only screen and (max-width: 767px) {
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist {
            bottom: 8px;
            right: 8px; } }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist .fa,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist .fa {
          width: 32px;
          height: 32px;
          background-color: #fff;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 100%;
          transition: all 0.3s ease-in; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist .fa:before,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist .fa:before {
            content: '';
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' role='presentation' class='icon icon-header-heart icon--full-color' viewBox='0 0 20 18'%3E%3Cpath class='st0' d='M10,18c-5.3-3.5-8.1-6.6-9.3-9.3C-2.3,1.6,4.9-2.8,10,2.2c5.2-5.1,12.3-0.6,9.3,6.5C18.1,11.4,15.3,14.5,10,18z ' fill='none'%3E%3C/path%3E%3Cpath class='st1' d='M10,15.6c4.8-3.3,6.7-6,7.4-7.7c1-2.4,0.5-3.9,0-4.5C16.9,2.5,15.9,2,14.8,2c-1.2,0-2.4,0.6-3.4,1.6L10,5 L8.6,3.6C7.6,2.6,6.4,2,5.2,2C4.1,2,3.1,2.5,2.6,3.4c-0.7,1.1-0.7,2.7,0,4.5C3.3,9.6,5.2,12.3,10,15.6 M10,18 c-5.3-3.5-8.1-6.6-9.3-9.3C-1.4,3.7,1.5,0,5.2,0C6.8,0,8.5,0.7,10,2.2C11.5,0.7,13.3,0,14.8,0c3.7,0,6.6,3.7,4.4,8.7 C18.1,11.4,15.3,14.5,10,18z' fill='%23323232'%3E%3C/path%3E%3C/svg%3E");
            width: 20px;
            height: 18px;
            margin-top: 3px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            transform: scale(1);
            transition: transform 0.15s ease-out 0.1s; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist:hover .fa,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist:hover .fa {
          background-color: #f2f2f2;
          transition: all 0.15s ease-out; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist:hover .fa:before,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist:hover .fa:before {
            transform: scale(1.05);
            transition: transform 0.15s ease-in; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist.bookmarked .fa:before,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .smartwishlist.bookmarked .fa:before {
          background-image: url('data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" focusable="false" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 20 18" style="enable-background:new 0 0 20 18;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:%23DA6782;%7D%0A%3C/style%3E%3Cpath class="st0" d="M10,18c-5.3-3.5-8.1-6.6-9.3-9.3c-3-7.1,4.2-11.5,9.3-6.5c5.2-5.1,12.3-0.6,9.3,6.5C18.1,11.4,15.3,14.5,10,18z "/%3E%3Cpath class="st0" d="M19.2,8.7c-1.1,2.7-3.9,5.8-9.2,9.3c-5.3-3.5-8.1-6.6-9.3-9.3C-1.4,3.7,1.5,0,5.2,0C6.8,0,8.5,0.7,10,2.2 C11.5,0.7,13.3,0,14.8,0C18.5,0,21.4,3.7,19.2,8.7z"/%3E%3C/svg%3E'); }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .ribbon,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .ribbon {
        position: absolute;
        left: 0;
        top: 16px;
        font-size: 11px;
        line-height: 12px;
        font-weight: 600;
        color: #323232;
        padding: 8px 12px 8px 8px;
        background-color: #ECAB2D;
        border-top-right-radius: 28px;
        border-bottom-right-radius: 28px; }
        @media only screen and (max-width: 767px) {
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .ribbon,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .ribbon {
            top: 8px; } }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .ribbon.price--on-sale,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .ribbon.price--on-sale {
          color: #fff;
          background-color: #a42337; }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .award-logo,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .award-logo {
        position: absolute;
        top: 8px;
        right: 8px;
        max-width: 60px; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .award-logo img,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .award-logo img {
          height: 100%;
          width: 60px; }
        @media only screen and (max-width: 767px) {
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .award-logo,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .award-logo {
            max-width: 40px;
            width: 40px; } }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item {
        padding: 0;
        width: calc(100% / 4);
        display: inline-block;
        vertical-align: top;
        float: none; }
        @media only screen and (max-width: 1279px) {
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item {
            width: calc(100% / 3); } }
        @media only screen and (max-width: 1023px) {
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item {
            width: calc(100% / 3); } }
        @media only screen and (max-width: 767px) {
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item {
            width: calc(100% / 2); } }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item {
          margin: 0 8px 32px; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__image-wrapper,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__image-wrapper {
            overflow: hidden;
            margin: 0 auto 16px;
            max-width: none !important;
            max-height: none !important; }
            #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__image-wrapper .grid-view-item__image,
            #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__image-wrapper .grid-view-item__image {
              transition: transform 0.4s ease-in;
              will-change: transform;
              transform: scale(1);
              max-width: none !important;
              max-height: none !important; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item:hover .grid-view-item__image,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item:hover .grid-view-item__image {
            transition: transform 0.4s ease-out;
            will-change: transform;
            transform: scale(1.06); }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item:hover .grid-view-item__title,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item:hover .grid-view-item__title {
            color: #0b7276;
            transition: transform 0.4s ease-out; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__vendor,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__vendor {
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: calc(14px * 1.5);
            margin: 0 0 8px;
            text-transform: none; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__title,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__title {
            transition: transform 0.4s ease-in;
            font-family: Poppins, sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: calc(16px * 1.5);
            line-height: 20px;
            margin: 0 0 8px; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__msg,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .grid__item .grid-view-item .grid-view-item__msg {
            border-top: 1px solid #f2f2f2;
            padding: 8px 0;
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: calc(14px * 1.5); }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items {
        margin-left: 8px; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item {
          margin-right: 10%;
          border-bottom: 1px solid #f2f2f2;
          padding-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item,
            #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item {
              margin-right: 0; } }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item:last-child,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item:last-child {
            border-bottom: none; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link {
            font-size: 0;
            display: block;
            table-layout: unset; }
            #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column,
            #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column {
              display: inline-block;
              vertical-align: top;
              width: calc((100% * 2 / 10) + 24px); }
              #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper,
              #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper {
                margin-right: 16px; }
                @media only screen and (max-width: 1023px) {
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper {
                    text-align: center; }
                    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .smartwishlist,
                    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .smartwishlist {
                      position: relative;
                      bottom: auto;
                      right: auto;
                      margin-top: 8px; }
                      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .smartwishlist .fa,
                      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .smartwishlist .fa {
                        border: 1px solid #f8f8f8; }
                    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .award-logo,
                    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .award-logo {
                      display: none; } }
                @media only screen and (max-width: 767px) {
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper {
                    margin-right: 8px; }
                    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .ribbon,
                    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .ribbon {
                      top: 0;
                      left: calc((100vw * 2 / 10) + 20px);
                      white-space: nowrap; } }
                #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .list-view-item__image,
                #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__image-column .list-view-item__image-wrapper .list-view-item__image {
                  max-height: none;
                  width: 100%;
                  height: auto;
                  display: block; }
            #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column,
            #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column {
              font-size: 16px;
              display: inline-block;
              vertical-align: top;
              width: calc((100% * 8 / 10) - 24px); }
              @media only screen and (max-width: 767px) {
                #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column,
                #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column {
                  padding-top: 43px; } }
              #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__vendor,
              #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__vendor {
                font-family: Poppins, sans-serif;
                font-size: 16px;
                font-weight: 400;
                line-height: calc(16px * 1.5);
                margin: 0 0 8px;
                text-transform: none;
                font-style: normal; }
                @media only screen and (max-width: 767px) {
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__vendor,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__vendor {
                    font-family: Poppins, sans-serif;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: calc(14px * 1.5); } }
              #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title,
              #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title {
                font-family: Poppins, sans-serif;
                font-size: 16px;
                font-weight: 600;
                line-height: calc(16px * 1.25);
                margin: 0 0 16px; }
                @media only screen and (max-width: 1023px) {
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title {
                    font-family: Poppins, sans-serif;
                    font-size: 14px;
                    font-weight: 600;
                    line-height: calc(14px * 1.25); } }
                @media only screen and (max-width: 767px) {
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title {
                    font-family: Poppins, sans-serif;
                    font-size: 14px;
                    font-weight: 600;
                    line-height: calc(14px * 1.25);
                    margin: 0 0 8px; } }
                  @media only screen and (max-width: 767px) and (max-width: 1023px) {
                    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title,
                    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__title {
                      font-family: Poppins, sans-serif;
                      font-size: 14px;
                      font-weight: 600;
                      line-height: calc(14px * 1.25); } }
              #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column,
              #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column {
                display: block;
                width: 100%;
                text-align: left;
                vertical-align: unset; }
                #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price,
                #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price {
                  margin-bottom: 16px;
                  font-family: Poppins, sans-serif;
                  font-size: 18px;
                  font-weight: 600;
                  line-height: calc(18px * 1.5); }
                  @media only screen and (max-width: 767px) {
                    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price,
                    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price {
                      margin-bottom: 8px;
                      font-family: Poppins, sans-serif;
                      font-size: 16px;
                      font-weight: 600;
                      line-height: calc(16px * 1.5); } }
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__regular,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__regular {
                    flex-basis: auto; }
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__sale,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__sale {
                    flex-basis: auto; }
                    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__sale .price-item__label,
                    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__sale .price-item__label {
                      display: inline-block; }
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__save,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__save {
                    width: auto;
                    font-family: Poppins, sans-serif;
                    font-size: 18px;
                    font-weight: 400;
                    line-height: calc(18px * 1.5); }
                    @media only screen and (max-width: 767px) {
                      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__save,
                      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price .price__save {
                        font-family: Poppins, sans-serif;
                        font-size: 16px;
                        font-weight: 400;
                        line-height: calc(16px * 1.5); } }
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price.price--on-worth .price__sale,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price.price--on-worth .price__sale {
                    color: #323232; }
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price.price--on-worth.price--on-sale .price__sale,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price.price--on-worth.price--on-sale .price__sale {
                    color: #323232; }
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price.price--on-worth .price__regular .price-item__label,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__price-column .price.price--on-worth .price__regular .price-item__label {
                    display: inline-block; }
              #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__info-column .list-view-item__msg,
              #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__info-column .list-view-item__msg {
                border-top: 1px solid #f2f2f2;
                padding: 8px 0; }
                @media only screen and (max-width: 767px) {
                  #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__info-column .list-view-item__msg,
                  #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-products .list-view-items .list-view-item .product-card--list .list-view-item__link .list-view-item__title-column .list-view-item__info-column .list-view-item__msg {
                    padding: 8px 0;
                    font-family: Poppins, sans-serif;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: calc(14px * 1.5); } }
    #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination,
    #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination {
      text-align: center;
      font-size: 0; }
      @media only screen and (max-width: 1023px) {
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination {
          text-align: center; } }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .icon,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .icon {
        display: inline-block;
        height: auto; }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .pagination__text,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .pagination__text {
        display: none; }
      #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn, #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button__button--unbranded,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn,
      #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .shopify-payment-button__button--unbranded,
      .shopify-payment-button #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button__button--unbranded {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: calc(14px * 1.5);
        line-height: 45px;
        padding: 0 8px;
        border-width: 1px;
        width: 47px;
        height: 47px;
        border-color: #f2f2f2;
        border-right: none; }
        @media only screen and (max-width: 767px) {
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn, #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button__button--unbranded,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .shopify-payment-button__button--unbranded,
          .shopify-payment-button #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button__button--unbranded {
            width: 45px;
            height: 45px; } }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.btn--disabled, #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .btn--disabled.shopify-payment-button__button--unbranded, .shopify-payment-button #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn--disabled.shopify-payment-button__button--unbranded,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.btn--disabled,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .btn--disabled.shopify-payment-button__button--unbranded,
        .shopify-payment-button #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn--disabled.shopify-payment-button__button--unbranded {
          display: none; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.active, #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .active.shopify-payment-button__button--unbranded, .shopify-payment-button #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .active.shopify-payment-button__button--unbranded,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.active,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .active.shopify-payment-button__button--unbranded,
        .shopify-payment-button #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .active.shopify-payment-button__button--unbranded {
          background-color: #f2f2f2; }
          #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.active:hover, #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .active.shopify-payment-button__button--unbranded:hover, .shopify-payment-button #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .active.shopify-payment-button__button--unbranded:hover,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.active:hover,
          #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .active.shopify-payment-button__button--unbranded:hover,
          .shopify-payment-button #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .active.shopify-payment-button__button--unbranded:hover {
            text-decoration: none;
            cursor: default; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.next, #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .next.shopify-payment-button__button--unbranded, .shopify-payment-button #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .next.shopify-payment-button__button--unbranded,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.next,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .next.shopify-payment-button__button--unbranded,
        .shopify-payment-button #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .next.shopify-payment-button__button--unbranded {
          border-right: 1px solid #f2f2f2; }
        #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.remain, #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .remain.shopify-payment-button__button--unbranded, .shopify-payment-button #Collection #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .remain.shopify-payment-button__button--unbranded,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .btn.remain,
        #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .shopify-payment-button .remain.shopify-payment-button__button--unbranded,
        .shopify-payment-button #search-result #bc-sf-filter-wrapper #bc-sf-filter-right #bc-sf-filter-bottom-pagination .pagination .remain.shopify-payment-button__button--unbranded {
          display: none; }

@media only screen and (max-width: 767px) {
  body.bc-sf-filter__open {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: hidden; } }

#Collection.no-filters .grid--view-items {
  margin-left: 0;
  margin-right: 0; }
  @media only screen and (max-width: 767px) {
    #Collection.no-filters .grid--view-items {
      margin-left: -8px;
      margin-right: -8px; } }
  #Collection.no-filters .grid--view-items .price {
    margin-bottom: 8px; }
    #Collection.no-filters .grid--view-items .price dd {
      margin: 0 8px 0 0; }
    #Collection.no-filters .grid--view-items .price .price__regular {
      color: #323232; }
      #Collection.no-filters .grid--view-items .price .price__regular .price-item__label {
        font-weight: 600;
        margin-right: 4px; }
      #Collection.no-filters .grid--view-items .price .price__regular .price-item--regular {
        font-weight: 600; }
  #Collection.no-filters .grid--view-items .grid__item {
    padding: 0;
    width: calc(100% / 5);
    display: inline-block;
    vertical-align: top;
    float: none; }
    @media only screen and (max-width: 1279px) {
      #Collection.no-filters .grid--view-items .grid__item {
        width: calc(100% / 4); } }
    @media only screen and (max-width: 1023px) {
      #Collection.no-filters .grid--view-items .grid__item {
        width: calc(100% / 4); } }
    @media only screen and (max-width: 767px) {
      #Collection.no-filters .grid--view-items .grid__item {
        width: calc(100% / 2); } }
    #Collection.no-filters .grid--view-items .grid__item .grid-view-item {
      margin: 0 8px 32px; }
      #Collection.no-filters .grid--view-items .grid__item .grid-view-item .grid-view-item__image-wrapper {
        overflow: hidden;
        margin: 0 auto 16px;
        max-width: none !important;
        max-height: none !important; }
        #Collection.no-filters .grid--view-items .grid__item .grid-view-item .grid-view-item__image-wrapper .grid-view-item__image {
          transition: transform 0.4s ease-in;
          will-change: transform;
          transform: scale(1);
          max-width: none !important;
          max-height: none !important; }
      #Collection.no-filters .grid--view-items .grid__item .grid-view-item:hover .grid-view-item__image {
        transition: transform 0.4s ease-out;
        will-change: transform;
        transform: scale(1.06); }
      #Collection.no-filters .grid--view-items .grid__item .grid-view-item:hover .grid-view-item__title {
        color: #0b7276;
        transition: transform 0.4s ease-out; }
      #Collection.no-filters .grid--view-items .grid__item .grid-view-item .grid-view-item__title {
        transition: transform 0.4s ease-in;
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: calc(16px * 1.5);
        line-height: 20px;
        margin: 0 0 8px; }

/*================ Site pagination ================*/
#mp-pagination.pagination {
  text-align: center;
  font-size: 0; }
  @media only screen and (max-width: 1023px) {
    #mp-pagination.pagination {
      text-align: center; } }
  #mp-pagination.pagination .icon {
    display: inline-block;
    width: 10px;
    height: auto; }
  #mp-pagination.pagination .pagination__text {
    display: none; }
  #mp-pagination.pagination .btn, #mp-pagination.pagination .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #mp-pagination.pagination .shopify-payment-button__button--unbranded {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: calc(14px * 1.5);
    line-height: 45px;
    padding: 0 8px;
    border-width: 1px;
    width: 47px;
    height: 47px;
    border-color: #f2f2f2;
    border-right: none; }
    @media only screen and (max-width: 767px) {
      #mp-pagination.pagination .btn, #mp-pagination.pagination .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #mp-pagination.pagination .shopify-payment-button__button--unbranded {
        width: 45px;
        height: 45px; } }
    #mp-pagination.pagination .btn.btn--disabled, #mp-pagination.pagination .shopify-payment-button .btn--disabled.shopify-payment-button__button--unbranded, .shopify-payment-button #mp-pagination.pagination .btn--disabled.shopify-payment-button__button--unbranded {
      display: none; }
    #mp-pagination.pagination .btn.active, #mp-pagination.pagination .shopify-payment-button .active.shopify-payment-button__button--unbranded, .shopify-payment-button #mp-pagination.pagination .active.shopify-payment-button__button--unbranded {
      background-color: #f2f2f2; }
      #mp-pagination.pagination .btn.active:hover, #mp-pagination.pagination .shopify-payment-button .active.shopify-payment-button__button--unbranded:hover, .shopify-payment-button #mp-pagination.pagination .active.shopify-payment-button__button--unbranded:hover {
        text-decoration: none;
        cursor: default; }
    #mp-pagination.pagination .btn.next, #mp-pagination.pagination .shopify-payment-button .next.shopify-payment-button__button--unbranded, .shopify-payment-button #mp-pagination.pagination .next.shopify-payment-button__button--unbranded {
      border-right: 1px solid #f2f2f2; }
    #mp-pagination.pagination .btn.remain, #mp-pagination.pagination .shopify-payment-button .remain.shopify-payment-button__button--unbranded, .shopify-payment-button #mp-pagination.pagination .remain.shopify-payment-button__button--unbranded {
      display: none; }

/*================ Product templates ================*/
.template-product .main-content {
  padding-top: 0; }
@media only screen and (max-width: 1023px) {
  .template-product .product-single {
    padding-top: 24px; } }
.template-product .product-single .grid__item {
  padding: 0;
  position: relative; }
  .template-product .product-single .grid__item.product-single__photos:focus {
    outline: none; }
  .template-product .product-single .grid__item.product-single__photos .product-single__wrapper {
    margin-right: 24px; }
    .template-product .product-single .grid__item.product-single__photos .product-single__wrapper:focus {
      outline: none; }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper {
        margin-right: 0; } }
    .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .slider,
    .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .slider {
      text-align: center;
      margin: 0 auto; }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .slider .slick-list,
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .slider .slick-list {
        box-sizing: border-box; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .slider .slick-list .slick-track,
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .slider .slick-list .slick-track {
          margin: 0 auto; }
    .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery {
      position: relative; }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper {
        opacity: 0;
        border: 1px solid #f2f2f2; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-track {
          display: flex !important; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-slide {
          height: inherit !important;
          display: flex;
          align-items: center; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow {
          width: 50px;
          height: 50px;
          border-radius: 100%;
          overflow: hidden;
          background-color: #f8f8f8;
          z-index: 2; }
          @media only screen and (max-width: 767px) {
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow {
              width: 32px;
              height: 32px; } }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow:focus {
            outline: none; }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-prev {
            left: 8px; }
            @media only screen and (max-width: 767px) {
              .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-prev {
                left: 8px; } }
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-prev:before {
              content: '';
              font-size: 0;
              background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.121' height='13.414' viewBox='0 0 8.121 13.414'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;stroke:%23323232;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(1.414 0.707)'%3E%3Cpath class='a' d='M7134,580.141l-6,6,6,6' transform='translate(-7128 -580.141)'/%3E%3C/g%3E%3C/svg%3E");
              background-repeat: no-repeat;
              background-position: center;
              background-size: 10px;
              width: 50px;
              height: 50px;
              position: absolute;
              left: 0;
              top: 0; }
              @media only screen and (max-width: 767px) {
                .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-prev:before {
                  background-size: 16px;
                  width: 32px;
                  height: 32px; } }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-next {
            right: 8px; }
            @media only screen and (max-width: 767px) {
              .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-next {
                right: 8px; } }
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-next:before {
              content: '';
              font-size: 0;
              background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.121' height='13.414' viewBox='0 0 8.121 13.414'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;stroke:%23323232;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(0.707 0.707)'%3E%3Cpath class='a' d='M7128,592.141l6-6-6-6' transform='translate(-7128 -580.141)'/%3E%3C/g%3E%3C/svg%3E");
              background-repeat: no-repeat;
              background-position: center;
              background-size: 10px;
              width: 50px;
              height: 50px;
              position: absolute;
              left: 0;
              top: 0; }
              @media only screen and (max-width: 767px) {
                .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .slick-arrow.slick-next:before {
                  background-size: 16px;
                  width: 32px;
                  height: 32px; } }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .image-placeholder {
          background-color: #f8f8f8; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .media-gallery__media .product-single__media {
          position: relative;
          width: 100%;
          height: auto;
          padding-top: calc(100% / 16 * 9); }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .media-gallery__media .product-single__media iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .media-gallery__media.media__video .product-single__media {
          height: auto; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .media-gallery__media video,
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .media-gallery__media model-viewer {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .media-gallery__media model-viewer {
          height: 100%;
          min-height: 662px; }
          @media only screen and (max-width: 767px) {
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .media-gallery-wrapper .media-gallery__media model-viewer {
              min-height: 341px; } }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .award {
        position: absolute;
        top: 8px;
        right: 8px; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .award img {
          max-width: 120px;
          width: 100%;
          height: auto; }
          @media only screen and (max-width: 767px) {
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .award img {
              max-width: 80px; } }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .zoom-badge {
        display: none;
        position: absolute;
        bottom: 8px;
        right: 8px;
        font-family: Poppins, sans-serif;
        font-size: 11px;
        font-weight: 600;
        line-height: calc(11px * 1.5);
        line-height: 32px;
        background-color: #fff;
        padding: 0 4px;
        border-radius: 2px; }
        @media only screen and (max-width: 1023px) {
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery .zoom-badge {
            display: block; } }
    .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav {
      padding: 16px 32px; }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper {
        opacity: 0; }
        @media only screen and (max-width: 1023px) {
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper {
            display: none; } }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper.center-track .slick-track {
          transform: translate3d(0px, 0px, 0px) !important; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .slick-track {
          display: flex;
          align-items: center; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .media-gallery-nav__thumbnails {
          cursor: pointer; }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .media-gallery-nav__thumbnails .media-gallery-nav__thumbnail-wrapper {
            margin: 0 2px;
            border: 3px solid #fff; }
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .media-gallery-nav__thumbnails .media-gallery-nav__thumbnail-wrapper .media-gallery-nav__thumbnail-image {
              width: 100%;
              height: auto;
              border: 1px solid #f2f2f2; }
              .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .media-gallery-nav__thumbnails .media-gallery-nav__thumbnail-wrapper .media-gallery-nav__thumbnail-image:hover {
                border: 1px solid #80cfc2; }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .media-gallery-nav__thumbnails.slick-current .media-gallery-nav__thumbnail-wrapper {
            border: 2px solid #80cfc2; }
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .media-gallery-nav__thumbnails.slick-current .media-gallery-nav__thumbnail-wrapper .media-gallery-nav__thumbnail-image {
              border: 2px solid #fff; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .slick-arrow:focus {
          outline: none; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .slick-arrow.slick-prev {
          left: -30px; }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .slick-arrow.slick-prev:before {
            content: '';
            font-size: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.121' height='13.414' viewBox='0 0 8.121 13.414'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;stroke:%23323232;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(1.414 0.707)'%3E%3Cpath class='a' d='M7134,580.141l-6,6,6,6' transform='translate(-7128 -580.141)'/%3E%3C/g%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 'contain';
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 0; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .slick-arrow.slick-next {
          right: -30px; }
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .media-gallery-nav-wrapper .slick-arrow.slick-next:before {
            content: '';
            font-size: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.121' height='13.414' viewBox='0 0 8.121 13.414'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;stroke:%23323232;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(0.707 0.707)'%3E%3Cpath class='a' d='M7128,592.141l6-6-6-6' transform='translate(-7128 -580.141)'/%3E%3C/g%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 'contain';
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 0; }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .paging-info {
        text-align: center;
        font-family: Poppins, sans-serif;
        font-size: 13px;
        font-weight: 600;
        line-height: calc(13px * 1.5);
        margin: 16px 0; }
        @media only screen and (max-width: 1023px) {
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .media-gallery-nav .paging-info {
            margin: 0; } }
    .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo {
      padding-bottom: 0;
      height: auto; }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo:focus {
        outline: none; }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .product-featured-img {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        font-size: 0; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .product-featured-img:focus {
          outline: none; }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .caption {
        position: absolute;
        bottom: 16px;
        left: 16px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 32px;
        line-height: 32px;
        z-index: 2;
        font-size: 0;
        width: 32px;
        height: 32px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' role='presentation' class='icon-footer-info' width='18' height='18' viewBox='0 0 18 18'%3E%3Cg transform='translate(1 1)'%3E%3Cline id='Line_17' data-name='Line 17' y2='7' transform='translate(8 6)' fill='none' stroke='%23323232' stroke-width='2'%3E%3C/line%3E%3Cline id='Line_18' data-name='Line 18' x1='4' transform='translate(6 12)' fill='none' stroke='%23323232' stroke-width='2'%3E%3C/line%3E%3Cline id='Line_21' data-name='Line 21' x1='2' transform='translate(6 7)' fill='none' stroke='%23323232' stroke-width='2'%3E%3C/line%3E%3Cline id='Line_20' data-name='Line 20' y2='2' transform='translate(8 3)' fill='none' stroke='%23323232' stroke-width='2'%3E%3C/line%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 24px;
        border: 1px solid #b2b2b2;
        cursor: pointer;
        transition: border-color 0.3s ease-in;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .caption {
            bottom: 8px;
            left: 8px; } }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .caption:hover {
          width: auto;
          background-image: none;
          background-color: #f8f8f8;
          padding: 0 16px;
          font-size: 13px;
          border-color: #f2f2f2;
          transition: border-color 0.15s ease-out;
          max-width: calc(100% - 32px);
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
          @media only screen and (max-width: 767px) {
            .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .caption:hover {
              max-width: calc(100% - 16px); } }
        @media only screen and (max-width: 1023px) {
          .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .caption:focus {
            outline: none;
            width: auto;
            background-image: none;
            background-color: #f8f8f8;
            padding: 0 16px;
            font-size: 13px;
            border-color: #f2f2f2;
            transition: border-color 0.15s ease-out; } }
      .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .zoomImg {
        cursor: zoom-in; }
        .template-product .product-single .grid__item.product-single__photos .product-single__wrapper .product-single__photo .zoomImg.active {
          cursor: move; }
  .template-product .product-single .grid__item.product-single__details .product-single__wrapper {
    padding-left: 8px; }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .grid__item.product-single__details .product-single__wrapper {
        padding-left: 0; } }
.template-product .product-single .product-single__meta {
  text-align: center; }
  .template-product .product-single .product-single__meta .product__vendor {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(14px * 1.5);
    margin: 0 0 8px; }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .product-single__meta .product__vendor {
        margin: 0; } }
  .template-product .product-single .product-single__meta .product-single__title {
    font-family: Poppins, sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: calc(26px * 1.25);
    max-width: 400px;
    margin: 0 auto 8px;
    overflow-wrap: break-word;
    word-wrap: break-word; }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .product-single__meta .product-single__title {
        font-family: Poppins, sans-serif;
        font-size: 23px;
        font-weight: 600;
        line-height: calc(23px * 1.25); } }
  .template-product .product-single .product-single__meta .product-single__sku {
    color: #b2b2b2;
    margin-bottom: 16px; }
  .template-product .product-single .product-single__meta .select-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px; }
    .template-product .product-single .product-single__meta .select-heading span {
      font-weight: 400; }
  .template-product .product-single .product-single__meta .product__swatch {
    margin-bottom: 16px; }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .product-single__meta .product__swatch {
        margin-bottom: 0; } }
    .template-product .product-single .product-single__meta .product__swatch ul {
      font-size: 0; }
      .template-product .product-single .product-single__meta .product__swatch ul li {
        display: inline-block;
        vertical-align: top;
        margin: 0 8px 16px; }
        .template-product .product-single .product-single__meta .product__swatch ul li:hover .swatch-wrapper, .template-product .product-single .product-single__meta .product__swatch ul li.selected .swatch-wrapper {
          padding: 4px;
          box-shadow: inset 0 0 0 2px #47bb9c;
          border-radius: 50%; }
        .template-product .product-single .product-single__meta .product__swatch ul li .swatch-wrapper {
          display: block;
          line-height: 0;
          width: 50px;
          height: 50px; }
          .template-product .product-single .product-single__meta .product__swatch ul li .swatch-wrapper img {
            border-radius: 50%;
            overflow: hidden; }
  .template-product .product-single .product-single__meta .product__bundleset {
    margin-bottom: 16px; }
    .template-product .product-single .product-single__meta .product__bundleset ul {
      font-size: 0; }
      .template-product .product-single .product-single__meta .product__bundleset ul li {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5);
        width: 50%;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          .template-product .product-single .product-single__meta .product__bundleset ul li {
            width: 100%;
            margin-bottom: 8px; } }
        .template-product .product-single .product-single__meta .product__bundleset ul li.selected .product__bundleset-wrapper {
          box-shadow: inset 0 0 0 2px #47bb9c;
          background-color: #e6f6f3; }
          .template-product .product-single .product-single__meta .product__bundleset ul li.selected .product__bundleset-wrapper .product__bundleset-info .checkbox {
            background-color: #0b7276;
            border: 1px solid #0b7276; }
            .template-product .product-single .product-single__meta .product__bundleset ul li.selected .product__bundleset-wrapper .product__bundleset-info .checkbox:after {
              content: '';
              background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 13.4 10.1' style='enable-background:new 0 0 13.4 10.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none;stroke:%23FFFFFF;stroke-width:2;%7D%3C/style%3E%3Cpath id='Path_278' class='st0' d='M0.7,4.5l4.1,4.2l7.9-8'/%3E%3C/svg%3E");
              width: 13px;
              height: 10px;
              margin-top: 0px;
              background-repeat: no-repeat;
              background-position: center;
              background-size: contain;
              position: absolute;
              left: 4px;
              top: 6px; }
        .template-product .product-single .product-single__meta .product__bundleset ul li:nth-child(odd) .product__bundleset-wrapper {
          margin-right: 8px; }
          @media only screen and (max-width: 767px) {
            .template-product .product-single .product-single__meta .product__bundleset ul li:nth-child(odd) .product__bundleset-wrapper {
              margin-right: 0; } }
        .template-product .product-single .product-single__meta .product__bundleset ul li:nth-child(even) .product__bundleset-wrapper {
          margin-left: 8px; }
          @media only screen and (max-width: 767px) {
            .template-product .product-single .product-single__meta .product__bundleset ul li:nth-child(even) .product__bundleset-wrapper {
              margin-left: 0; } }
        .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper {
          padding: 8px;
          display: block;
          box-shadow: inset 0 0 0 1px #b2b2b2;
          background-color: #fff;
          transition: all 0.3s ease-in;
          font-size: 0;
          border-radius: 2px;
          min-height: 104px; }
          .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper:hover {
            box-shadow: inset 0 0 0 2px #47bb9c;
            background-color: #e6f6f3;
            transition: all 0.15s ease-out; }
            .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper:hover .product__bundleset-info .checkbox {
              background-color: #0b7276;
              border: 1px solid #0b7276; }
              .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper:hover .product__bundleset-info .checkbox:after {
                content: '';
                background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 13.4 10.1' style='enable-background:new 0 0 13.4 10.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none;stroke:%23FFFFFF;stroke-width:2;%7D%3C/style%3E%3Cpath id='Path_278' class='st0' d='M0.7,4.5l4.1,4.2l7.9-8'/%3E%3C/svg%3E");
                width: 13px;
                height: 10px;
                margin-top: 0px;
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                position: absolute;
                left: 4px;
                top: 6px; }
          .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-image {
            display: inline-block;
            vertical-align: middle;
            width: 25%; }
            .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-image img {
              display: block; }
          .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-info {
            position: relative;
            display: inline-block;
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: calc(14px * 1.5);
            vertical-align: middle;
            width: 75%;
            text-align: left;
            padding-left: 16px;
            padding-right: 48px; }
            .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-info.on-sale .product__bundleset-price-regular {
              color: #323232; }
            .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-info.on-sale .product__bundleset-price-save {
              color: #a42337; }
            .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-info .product__bundleset-title {
              font-family: Poppins, sans-serif;
              font-size: 14px;
              font-weight: 400;
              line-height: calc(14px * 1.5);
              line-height: 18px;
              margin-bottom: 8px; }
            .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-info .product__bundleset-price-regular {
              font-family: Poppins, sans-serif;
              font-size: 16px;
              font-weight: 600;
              line-height: calc(16px * 1.5); }
            .template-product .product-single .product-single__meta .product__bundleset ul li .product__bundleset-wrapper .product__bundleset-info .checkbox {
              position: absolute;
              right: 16px;
              top: calc(50% - 12px);
              width: 24px;
              height: 24px;
              background-color: #f8f8f8;
              border: 1px solid #b2b2b2;
              border-radius: 50%; }
  .template-product .product-single .product-single__meta .product__price {
    font-family: Poppins, sans-serif;
    font-size: 29px;
    font-weight: 600;
    line-height: calc(29px * 1.25);
    margin: 32px 0; }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .product-single__meta .product__price {
        font-family: Poppins, sans-serif;
        font-size: 26px;
        font-weight: 600;
        line-height: calc(26px * 1.25); } }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .product-single__meta .product__price {
        margin: 16px 0;
        text-align: left;
        position: relative; }
        .template-product .product-single .product-single__meta .product__price.price-display-in-form {
          text-align: center; } }
        @media only screen and (max-width: 1023px) and (max-width: 1023px) {
          .template-product .product-single .product-single__meta .product__price.price-display-in-form .price {
            -webkit-justify-content: center;
            -ms-justify-content: center;
            justify-content: center; } }
    .template-product .product-single .product-single__meta .product__price .price {
      -webkit-justify-content: center;
      -ms-justify-content: center;
      justify-content: center; }
      @media only screen and (max-width: 1023px) {
        .template-product .product-single .product-single__meta .product__price .price {
          -webkit-justify-content: left;
          -ms-justify-content: left;
          justify-content: left;
          min-height: 30px; } }
      .template-product .product-single .product-single__meta .product__price .price dd {
        margin: 0 4px; }
        @media only screen and (max-width: 1023px) {
          .template-product .product-single .product-single__meta .product__price .price dd {
            margin: 0 8px 0 0; } }
      .template-product .product-single .product-single__meta .product__price .price .price__regular {
        color: #323232; }
        .template-product .product-single .product-single__meta .product__price .price .price__regular .price-item__label {
          font-weight: 400;
          margin-right: 0; }
        .template-product .product-single .product-single__meta .product__price .price .price__regular .price-item--regular {
          font-weight: 600; }
      .template-product .product-single .product-single__meta .product__price .price .price__sale {
        display: block;
        color: #323232;
        width: 100%; }
        .template-product .product-single .product-single__meta .product__price .price .price__sale .price-item__label {
          margin-right: 4px; }
      .template-product .product-single .product-single__meta .product__price .price .price__save {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: calc(16px * 1.5);
        color: #a42337; }
        .template-product .product-single .product-single__meta .product__price .price .price__save .price-item--save {
          font-weight: 600; }
      .template-product .product-single .product-single__meta .product__price .price.price--on-sale .price__regular {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: calc(16px * 1.5); }
        .template-product .product-single .product-single__meta .product__price .price.price--on-sale .price__regular .price-item--regular {
          font-weight: 400;
          text-decoration: line-through; }
      .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__sale {
        color: #323232; }
      .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__regular {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: calc(16px * 1.5); }
        .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__regular .price-item--regular {
          font-weight: 400; }
      .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__save {
        position: relative; }
        .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__save .price-item--save {
          color: #DCAA3D;
          font-weight: 600; }
          .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__save .price-item--save svg {
            display: inline-block;
            vertical-align: middle;
            margin-bottom: 6px;
            margin-left: 4px; }
          .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__save .price-item--save .worth-price-icon {
            display: inline-block;
            vertical-align: middle;
            position: relative; }
            .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__save .price-item--save .worth-price-icon .worth-price-info {
              position: absolute;
              bottom: 32px;
              left: -60px;
              width: 150px;
              background: #DCAA3D;
              z-index: 9;
              font-size: 13px;
              line-height: 16px;
              border-radius: 4px; }
              .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__save .price-item--save .worth-price-icon .worth-price-info:after {
                content: '';
                display: block;
                position: absolute;
                left: 63px;
                top: 100%;
                width: 0;
                height: 0;
                border: 9px solid transparent;
                border-top-color: #DCAA3D; }
              .template-product .product-single .product-single__meta .product__price .price.price--on-worth .price__save .price-item--save .worth-price-icon .worth-price-info .worth-price-info-wrapper {
                padding: 8px;
                font-weight: 400;
                color: #fff;
                font-size: 13px; }
      .template-product .product-single .product-single__meta .product__price .price.price--on-worth.price--on-sale .price__sale {
        color: #323232; }
      .template-product .product-single .product-single__meta .product__price .price.price--on-worth.price--on-sale .price__save .price-item--save {
        color: #a42337;
        font-weight: 400; }
    .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery {
      font-family: Poppins, sans-serif;
      font-size: 13px;
      font-weight: 400;
      line-height: calc(13px * 1.5);
      margin-top: 8px; }
      @media only screen and (max-width: 767px) {
        .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery {
          font-family: Poppins, sans-serif;
          font-size: 11px;
          font-weight: 400;
          line-height: calc(11px * 1.5); } }
      .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery .product__stock {
        color: #323232; }
        .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery .product__stock:before {
          content: '';
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 13.4 10.1' style='enable-background:new 0 0 13.4 10.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none;stroke:%23FFFFFF;stroke-width:2;%7D%3C/style%3E%3Cpath id='Path_278' class='st0' d='M0.7,4.5l4.1,4.2l7.9-8'/%3E%3C/svg%3E");
          width: 18px;
          height: 18px;
          margin-top: -2px;
          margin-right: 4px;
          background-repeat: no-repeat;
          background-position: center;
          background-size: 10px 8px;
          background-color: #0b7276;
          display: inline-block;
          vertical-align: middle;
          border-radius: 50%;
          overflow: hidden; }
        .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery .product__stock.low-in-stock:before, .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery .product__stock.out-of-stock:before {
          content: none; }
      .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery .product__delivery.click-and-collect {
        color: #0b7276; }
      .template-product .product-single .product-single__meta .product__price .product__stock-and-delivery .seperator {
        margin: 0 4px; }
    .template-product .product-single .product-single__meta .product__price .product__reviews {
      font-size: 0; }
      @media only screen and (max-width: 1023px) {
        .template-product .product-single .product-single__meta .product__price .product__reviews {
          position: absolute;
          right: 0;
          top: 0;
          min-height: 30px;
          min-width: 160px;
          text-align: right; } }
      .template-product .product-single .product-single__meta .product__price .product__reviews .product__reviews-stars {
        display: inline-block;
        vertical-align: middle;
        font-size: 16px;
        color: #FFCE00;
        margin: 0 8px 0 0;
        line-height: 18px; }
        @media only screen and (max-width: 1023px) {
          .template-product .product-single .product-single__meta .product__price .product__reviews .product__reviews-stars {
            margin-left: 0; } }
        .template-product .product-single .product-single__meta .product__price .product__reviews .product__reviews-stars .fa-star.checked {
          color: #FFCE00; }
      .template-product .product-single .product-single__meta .product__price .product__reviews .product__reviews-link {
        display: inline-block;
        vertical-align: middle;
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5);
        margin: 0 4px;
        text-decoration: underline; }
        @media only screen and (max-width: 1023px) {
          .template-product .product-single .product-single__meta .product__price .product__reviews .product__reviews-link {
            margin-right: 0; } }
  .template-product .product-single .product-single__meta .product-form {
    padding: 0; }
    .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation {
      margin-bottom: 32px; }
    .template-product .product-single .product-single__meta .product-form .special-message {
      max-width: 260px;
      margin: 0 auto; }
      .template-product .product-single .product-single__meta .product-form .special-message .message {
        margin-top: 16px;
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5);
        text-transform: none; }
        .template-product .product-single .product-single__meta .product-form .special-message .message.message1 {
          color: #0b7276; }
        .template-product .product-single .product-single__meta .product-form .special-message .message.message2 {
          color: #a42337; }
    .template-product .product-single .product-single__meta .product-form .product-form__controls-group {
      display: block; }
      .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item {
        padding: 0;
        margin-bottom: 0; }
        .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item h4 {
          position: relative;
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: calc(14px * 1.5); }
          .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item h4 span {
            font-family: Poppins, sans-serif;
            font-size: 13px;
            font-weight: 400;
            line-height: calc(13px * 1.5); }
        .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .size-guide {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: calc(14px * 1.5);
          text-decoration: underline;
          margin-bottom: 16px;
          display: block; }
        .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector {
          font-size: 0; }
          @media only screen and (max-width: 1023px) {
            .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector {
              white-space: nowrap;
              margin: 0 -16px;
              overflow-x: auto;
              -webkit-overflow-scrolling: touch;
              padding: 0 8px; } }
          .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .single-option-selector-product-template {
            display: none; }
          .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .btn, .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button__button--unbranded {
            display: inline-block;
            vertical-align: top;
            margin: 0 8px 16px;
            box-shadow: inset 0 0 0 1px #b2b2b2;
            border: none;
            padding: 12px 16px;
            border-radius: 2px;
            transition: all 0.3s ease-in;
            min-width: 50px; }
            @media only screen and (max-width: 1023px) {
              .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .btn, .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button__button--unbranded {
                margin: 0 8px 8px; } }
            .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .btn:hover, .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button__button--unbranded:hover {
              box-shadow: inset 0 0 0 1px #47bb9c;
              transition: all 0.15s ease-out;
              color: #323232; }
            .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .btn.disabled, .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button .disabled.shopify-payment-button__button--unbranded, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .disabled.shopify-payment-button__button--unbranded {
              opacity: 0.25;
              box-shadow: inset 0 0 0 1px #b2b2b2 !important;
              background-color: transparent !important;
              background: linear-gradient(to bottom right, white calc(50% - 1px), #323232, white calc(50% + 1px)); }
              .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .btn.disabled:hover, .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .shopify-payment-button .disabled.shopify-payment-button__button--unbranded:hover, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector .disabled.shopify-payment-button__button--unbranded:hover {
                cursor: not-allowed;
                box-shadow: inset 0 0 0 1px #b2b2b2;
                text-decoration: none; }
          .template-product .product-single .product-single__meta .product-form .product-form__controls-group .product-form__item .selector input[type="radio"]:checked + label {
            box-shadow: inset 0 0 0 2px #47bb9c;
            background-color: #e6f6f3; }
    .template-product .product-single .product-single__meta .product-form .product-form__error-message-wrapper {
      display: inline-flex;
      padding: 8px 0;
      margin: 16px 8px 0; }
      .template-product .product-single .product-single__meta .product-form .product-form__error-message-wrapper.product-form__error-message-wrapper--hidden {
        display: none; }
    .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation {
      background-color: #f2f2f2;
      padding: 16px 32px;
      max-width: 376px;
      margin: 0 auto; }
      @media only screen and (max-width: 1023px) {
        .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation {
          padding: 16px; } }
      .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation label {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: calc(16px * 1.5);
        margin-bottom: 8px; }
      .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation #enter-your-text {
        margin-bottom: 8px;
        width: 100%;
        border-color: #b2b2b2;
        text-align: center; }
        .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation #enter-your-text:invalid {
          border-color: #e32c2b;
          border-width: 2px; }
      .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation .enter-your-text__limit {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5); }
        .template-product .product-single .product-single__meta .product-form .line-item-property__personalisation .enter-your-text__limit span {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: calc(14px * 1.5); }
    .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit {
      margin-top: 16px;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-justify-content: center;
      -ms-justify-content: center;
      justify-content: center; }
      .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit {
        width: 100%;
        max-width: 376px;
        padding: 0;
        margin: 0; }
        .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit .product-form__cart-submit, .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit .shopify-payment-button__button--unbranded {
          padding-left: 8px;
          padding-right: 8px;
          margin-bottom: 16px;
          outline: none; }
          .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit .product-form__cart-submit[disabled], .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit [disabled].shopify-payment-button__button--unbranded, .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit .product-form__cart-submit[aria-disabled], .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit .shopify-payment-button [aria-disabled].shopify-payment-button__button--unbranded, .shopify-payment-button .template-product .product-single .product-single__meta .product-form .product-form__controls-group--submit .product-form__item--submit [aria-disabled].shopify-payment-button__button--unbranded {
            cursor: default;
            opacity: 0.25;
            background-color: transparent;
            border: 2px solid #0b7276;
            color: #0b7276; }
  .template-product .product-single .product-single__meta .klarna {
    width: 100%;
    max-width: 376px;
    margin: 0 auto 16px; }
  .template-product .product-single .product-single__meta .btns-wrapper {
    font-size: 0;
    max-width: 376px;
    margin: 0 auto 32px; }
    .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist {
      margin: 0;
      display: inline-block;
      vertical-align: top;
      margin-right: 0;
      max-width: 100%;
      width: 100%; }
      .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist.has-margin {
        margin-right: 8px;
        max-width: 180px;
        width: calc(50% - 8px); }
      .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist #bookmarkit {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        white-space: normal;
        transition: all 0.3s ease-out;
        padding: 10px 8px;
        background-color: transparent;
        height: 47px;
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: calc(16px * 1.5);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
        .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist #bookmarkit #sw_wishlist_label {
          font-size: 16px !important;
          text-decoration: underline;
          color: #323232 !important; }
        .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist #bookmarkit:hover #sw_wishlist_label {
          text-decoration: underline;
          color: #0b7276 !important; }
        .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist #bookmarkit .fa {
          width: 20px;
          height: 18px;
          position: relative; }
          .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist #bookmarkit .fa:before {
            content: '';
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' role='presentation' class='icon icon-header-heart icon--full-color' viewBox='0 0 20 18'%3E%3Cpath class='st0' d='M10,18c-5.3-3.5-8.1-6.6-9.3-9.3C-2.3,1.6,4.9-2.8,10,2.2c5.2-5.1,12.3-0.6,9.3,6.5C18.1,11.4,15.3,14.5,10,18z ' fill='none'%3E%3C/path%3E%3Cpath class='st1' d='M10,15.6c4.8-3.3,6.7-6,7.4-7.7c1-2.4,0.5-3.9,0-4.5C16.9,2.5,15.9,2,14.8,2c-1.2,0-2.4,0.6-3.4,1.6L10,5 L8.6,3.6C7.6,2.6,6.4,2,5.2,2C4.1,2,3.1,2.5,2.6,3.4c-0.7,1.1-0.7,2.7,0,4.5C3.3,9.6,5.2,12.3,10,15.6 M10,18 c-5.3-3.5-8.1-6.6-9.3-9.3C-1.4,3.7,1.5,0,5.2,0C6.8,0,8.5,0.7,10,2.2C11.5,0.7,13.3,0,14.8,0c3.7,0,6.6,3.7,4.4,8.7 C18.1,11.4,15.3,14.5,10,18z' fill='%23323232'%3E%3C/path%3E%3C/svg%3E");
            width: 20px;
            height: 18px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            position: absolute;
            left: 0;
            top: calc(100% - 14px); }
        .template-product .product-single .product-single__meta .btns-wrapper #smartwishlist #bookmarkit.bookmarked .fa:before {
          background-image: url('data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" focusable="false" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 20 18" style="enable-background:new 0 0 20 18;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:%23DA6782;%7D%0A%3C/style%3E%3Cpath class="st0" d="M10,18c-5.3-3.5-8.1-6.6-9.3-9.3c-3-7.1,4.2-11.5,9.3-6.5c5.2-5.1,12.3-0.6,9.3,6.5C18.1,11.4,15.3,14.5,10,18z "/%3E%3Cpath class="st0" d="M19.2,8.7c-1.1,2.7-3.9,5.8-9.2,9.3c-5.3-3.5-8.1-6.6-9.3-9.3C-1.4,3.7,1.5,0,5.2,0C6.8,0,8.5,0.7,10,2.2 C11.5,0.7,13.3,0,14.8,0C18.5,0,21.4,3.7,19.2,8.7z"/%3E%3C/svg%3E'); }
    .template-product .product-single .product-single__meta .btns-wrapper .stores {
      border: none;
      text-decoration: underline;
      font-weight: 600; }
      .template-product .product-single .product-single__meta .btns-wrapper .stores svg {
        display: inline-block;
        width: 16px;
        vertical-align: middle;
        height: 20px;
        margin-right: 10px;
        margin-bottom: 3px; }
      .template-product .product-single .product-single__meta .btns-wrapper .stores[disabled] {
        display: none; }
    .template-product .product-single .product-single__meta .btns-wrapper.sold-out {
      display: none; }
.template-product .product-single .why-buy-me {
  position: relative;
      /*
      &:after {
        position: absolute;
        left: 16px;
        top: 16px;
        content: '';
        width: 100%;
        height: 100%;
        background-color: $color-accents-light-4;
        z-index: -1;

        @include media-query($medium-down) {
          left: 8px;
          top: 8px;
        }
      }
      */ }
  .template-product .product-single .why-buy-me h2 {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: calc(16px * 1.5);
    text-align: left;
    margin-bottom: 16px; }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .why-buy-me h2 {
        margin-bottom: 8px; } }
  .template-product .product-single .why-buy-me.rte ul li {
    list-style: none;
    margin-bottom: 8px; }
    .template-product .product-single .why-buy-me.rte ul li:before {
      content: "\2022";
      color: #323232;
      width: 16px;
      margin-left: -16px;
      display: inline-block;
      font-weight: 600;
      font-size: 26px;
      vertical-align: middle; }
  .template-product .product-single .why-buy-me .why-buy-me__wrapper {
    background-color: #f8f8f8;
    padding: 32px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(14px * 1.5); }
    @media only screen and (max-width: 1023px) {
      .template-product .product-single .why-buy-me .why-buy-me__wrapper {
        padding: 16px; } }
.template-product .product-single .message-bar {
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: underline;
  margin-top: -16px; }
.template-product .product-single.no-purchase .product-single__title {
  margin-bottom: 40px; }
  @media only screen and (max-width: 1023px) {
    .template-product .product-single.no-purchase .product-single__title {
      margin-bottom: 24px; } }
.template-product .product-single.no-purchase .find-stocklist {
  width: 100%;
  margin-bottom: 60px;
  max-width: 376px; }
  @media only screen and (max-width: 1023px) {
    .template-product .product-single.no-purchase .find-stocklist {
      margin-bottom: 32px; } }
.template-product .parent-reviews {
  padding: 80px 16px;
  background-color: #323232; }
  .template-product .parent-reviews .csc-pull-quote {
    color: #fff; }
.template-product .bundle-components {
  padding: 80px 0 32px;
  margin-bottom: 0; }
  @media only screen and (max-width: 1023px) {
    .template-product .bundle-components {
      padding: 32px 0; } }
  .template-product .bundle-components .csc-product-carousel {
    opacity: 0; }
.template-product .slick-slider {
  opacity: 0; }
  .template-product .slick-slider.slick-initialized {
    opacity: 1 !important;
    transition: opacity 0.3s ease-in; }
    .template-product .slick-slider.slick-initialized .slick-slide:focus {
      outline: none; }
.template-product #size-guide tr {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.5); }

/*================ Currency selector ================*/
@media only screen and (max-width: 767px) {
  .currency-selector {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    background-color: rgba(50, 50, 50, 0.1);
    padding: 12px 17px 12px 30px; } }

.currency-selector__label {
  font-size: 0.85714em;
  margin-bottom: 0;
  text-transform: uppercase; }

.currency-selector__input-wrapper {
  margin-top: 4px; }
  @media only screen and (max-width: 767px) {
    .currency-selector__input-wrapper {
      margin-top: 0;
      width: 100%; } }
  .currency-selector__input-wrapper .icon {
    left: auto;
    height: 10px;
    margin: 0;
    width: 12px; }
    @media only screen and (min-width: 768px) {
      .currency-selector__input-wrapper .icon {
        height: calc(8em / 16);
        right: 5px;
        width: calc(8em / 16); } }

.currency-selector__dropdown {
  border: none;
  color: #323232;
  padding-left: 8px;
  padding-right: 17px; }
  @media only screen and (max-width: 767px) {
    .currency-selector__dropdown {
      font-size: 0.85714em;
      font-weight: 600;
      width: 100%; } }

[data-section-type="video-section"] {
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    [data-section-type="video-section"] {
      transition: width 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87), height 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87), padding 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87); } }

.video-section-wrapper {
  position: relative;
  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-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%; }
  @media only screen and (min-width: 768px) {
    .video-section-wrapper {
      overflow: hidden; } }
  @media only screen and (max-width: 767px) {
    .video-section-wrapper {
      overflow: visible !important; }
      .video-section-wrapper.video-is-playing {
        margin: 0; }
      .video-section-wrapper.video-is-loaded {
        transition: margin 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87); } }

.video-section-wrapper--small.video-section-wrapper--min-height {
  min-height: 175px; }
  @media only screen and (min-width: 768px) {
    .video-section-wrapper--small.video-section-wrapper--min-height {
      min-height: 475px; } }

.video-section-wrapper--medium.video-section-wrapper--min-height {
  min-height: 270px; }
  @media only screen and (min-width: 768px) {
    .video-section-wrapper--medium.video-section-wrapper--min-height {
      min-height: 650px; } }

.video-section-wrapper--large.video-section-wrapper--min-height {
  min-height: 375px; }
  @media only screen and (min-width: 768px) {
    .video-section-wrapper--large.video-section-wrapper--min-height {
      min-height: 775px; } }

.video-background-wrapper--no-overlay {
  background-color: rgba(50, 50, 50, 0.2); }

/*================ Video text ================*/
.video__text-content {
  text-align: center;
  position: relative;
  width: 100%;
  top: 20px;
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition-delay: 0.3s;
  z-index: 3;
  padding: 40px 0; }
  .video-is-playing .video__text-content {
    display: none; }
  .video-is-loaded .video__text-content, .no-js .video__text-content {
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  .video-is-loaded .video__text-content::after, .no-js .video__text-content::after {
    opacity: 0;
    visibility: hidden;
    content: none; }

.video__title {
  color: white; }
  .video-is-paused .video__title {
    display: none; }

/*================ Video styles ================*/
.video {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2; }

.video--background {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in; }

.autoplay .video-is-loaded .video--background {
  display: block;
  visibility: visible;
  opacity: 1; }

.video--image_with_play {
  display: none;
  opacity: 0;
  visibility: none;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in; }
  .video-is-playing .video--image_with_play, .video-is-paused .video--image_with_play {
    display: block;
    visibility: visible;
    opacity: 1; }

/*================ Video control buttons ================*/
.video-control {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 4;
  transition: all 0.1s ease-out; }

.video-control__play-wrapper {
  display: none;
  height: 50px; }
  @media only screen and (min-width: 768px) {
    .video-control__play-wrapper {
      display: block; } }

.video-control__play-wrapper-mobile {
  display: block;
  height: 50px;
  position: absolute;
  top: calc(100% - 50px / 2);
  left: calc(50% - 50px / 2); }
  @media only screen and (min-width: 768px) {
    .video-control__play-wrapper-mobile {
      display: none; } }

.video-control__play-wrapper--with-text {
  margin-top: 16px; }

.video-control__play {
  display: flex;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: relative;
  margin: 0 auto;
  padding: 5px;
  pointer-events: none; }
  .video-background-wrapper .video-control__play {
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .video-control__play .icon {
    opacity: 0.5; }
  .video-is-loaded .video-control__play {
    pointer-events: auto; }
    .video-is-loaded .video-control__play .icon {
      opacity: 1; }
  .video-is-playing .video-control__play {
    display: none;
    visibility: hidden;
    opacity: 0; }

.video-control__play::before {
  content: '';
  display: block;
  width: 2.875rem;
  height: 2.875rem;
  position: absolute;
  margin-left: -1.4375rem;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: transparent;
  -moz-animation: spin 0.65s infinite linear;
  -o-animation: spin 0.65s infinite linear;
  -webkit-animation: spin 0.65s infinite linear;
  animation: spin 0.65s infinite linear;
  transition: all 0.1s ease-out 0.5s;
  z-index: 5;
  top: 1px;
  left: 50%;
  opacity: 0.5; }
  .video-is-loaded .video-control__play::before, .video-is-playing .video-control__play::before, .video-is-paused .video-control__play::before {
    content: none;
    display: none; }

.video-control__close-wrapper {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
  z-index: 3; }
  .video-is-playing .video-control__close-wrapper, .video-is-paused .video-control__close-wrapper {
    display: block; }

.video-control__close {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 27px;
  border-radius: 15px;
  background-color: white;
  color: black; }
  .video-control__close-wrapper:hover .video-control__close, .video-control__close-wrapper:focus .video-control__close {
    outline: auto 5px -webkit-focus-ring-color;
    opacity: 0.7; }
  .video-is-playing .video-control__close, .video-is-paused .video-control__close {
    display: inline-block;
    visibility: visible;
    opacity: 1; }
  .video-control__close .icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 auto; }

.video__pause {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background-color: transparent;
  transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  @media only screen and (max-width: 767px) {
    .video__pause {
      display: none; } }
  .video-is-playing .video__pause {
    display: none; }
  .video__pause .icon {
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87), background-color 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  .video__pause:hover, .video__pause:focus {
    outline: none; }
    .video__pause:hover .icon, .video__pause:focus .icon {
      color: white; }
  .video__pause .icon-pause {
    width: 12px;
    height: 12px;
    top: 11px; }
  .video__pause .icon-play {
    width: 16px;
    height: 16px;
    top: 9px; }

.video__pause-resume,
.video__pause-stop {
  height: 34px;
  width: 34px;
  margin: 0 auto;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4); }
  .video__pause:hover .video__pause-resume, .video__pause:focus .video__pause-resume, .video__pause:hover
  .video__pause-stop, .video__pause:focus
  .video__pause-stop {
    background-color: rgba(0, 0, 0, 0.75); }
  .video__pause:focus .video__pause-resume, .video__pause:focus
  .video__pause-stop {
    outline: auto 5px -webkit-focus-ring-color; }

.video__pause-stop {
  display: flex; }
  .is-paused .video__pause-stop {
    display: none; }

.video__pause-resume {
  display: none; }
  .is-paused .video__pause-resume {
    display: flex; }

/*================ Overlay ================*/
.video__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #323232;
  opacity: 0.4;
  z-index: 3; }

.video-is-playing .video__overlay {
  opacity: 0; }
  .video-is-playing .video__overlay:before {
    content: none; }

/*================ Fallback images ================*/
.video__image {
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 1; }
  @media only screen and (min-width: 768px) {
    .video-background-wrapper .video__image {
      opacity: 0; } }
  .no-autoplay .video__image {
    opacity: 1; }

.product-recommendations__inner {
  padding: 16px 0; }
  @media only screen and (min-width: 768px) {
    .product-recommendations__inner {
      padding: 32px 0; } }

.delivery-method {
  display: block;
  border: 1px solid black;
  float: left;
  padding: 5px;
  margin: 0 5px 5px 0; }

.delivery-method button {
  display: block;
  padding: 3px;
  background: teal;
  color: white;
  float: right;
  margin: 0 0 0 5px; }

.delivery-options h2 {
  clear: left;
  font-weight: 600;
  margin: 5px 0 5px 0; }

.breadcrumbs {
  position: relative; }
  .breadcrumbs ol {
    list-style: none;
    font-size: 0;
    max-width: 1440px;
    padding: 16px 32px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    @media only screen and (max-width: 1023px) {
      .breadcrumbs ol {
        padding: 8px 16px; }
        .breadcrumbs ol:before {
          content: '';
          width: 24px;
          height: 42px;
          position: absolute;
          right: 0;
          top: 0;
          background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, white 100%); } }
    .breadcrumbs ol li {
      display: inline-block;
      vertical-align: middle;
      font-family: Poppins, sans-serif;
      font-size: 11px;
      font-weight: 400;
      line-height: calc(11px * 1.5);
      margin-right: 6px; }
      .breadcrumbs ol li a {
        text-decoration: underline; }
        .breadcrumbs ol li a span {
          font-weight: normal; }
      .breadcrumbs ol li span {
        font-weight: 600; }
      .breadcrumbs ol li .icon-chevron-right {
        width: 6px;
        height: 10px; }

/*================ Shogun Custom ================*/
.full-template-collection-custom-banner .shogun-root .font-title-l-bold h1 {
  font-family: Poppins, sans-serif !important;
  font-size: 41px !important;
  line-height: 52px !important;
  font-weight: 600 !important;
  margin-bottom: 32px !important;
  color: #323232 !important; }
  @media only screen and (max-width: 1023px) {
    .full-template-collection-custom-banner .shogun-root .font-title-l-bold h1 {
      font-size: 32px !important;
      line-height: 41px !important;
      margin-bottom: 16px !important; } }
@media only screen and (max-width: 1023px) {
  .full-template-collection-custom-banner .shogun-root .shg-theme-text-content {
    font-size: 13px !important;
    line-height: 18px !important; } }
.full-template-collection-custom-banner .shogun-root .sub-category {
  padding: 24px 0 8px;
  overflow: auto;
  white-space: nowrap;
  text-align: center; }
  @media only screen and (max-width: 1023px) {
    .full-template-collection-custom-banner .shogun-root .sub-category {
      text-align: left; } }
  .full-template-collection-custom-banner .shogun-root .sub-category .btn, .full-template-collection-custom-banner .shogun-root .sub-category .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .full-template-collection-custom-banner .shogun-root .sub-category .shopify-payment-button__button--unbranded {
    margin: 0 8px; }
    @media only screen and (max-width: 1023px) {
      .full-template-collection-custom-banner .shogun-root .sub-category .btn, .full-template-collection-custom-banner .shogun-root .sub-category .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .full-template-collection-custom-banner .shogun-root .sub-category .shopify-payment-button__button--unbranded {
        margin: 0 0 0 16px; } }

/*============================================================================
  Global Drawer
==============================================================================*/
body.no-scroll {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden; }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9998;
  visibility: hidden;
  opacity: 0;
  background: #000;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; }
  .modal-overlay.is-visible {
    opacity: 0.75;
    visibility: visible; }

.mp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  width: 400px;
  height: 100%;
  max-height: none;
  z-index: 9999;
  background: #fff;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); }
  @media only screen and (max-width: 767px) {
    .mp-drawer {
      width: calc(100vw - 40px); } }
  .mp-drawer:focus {
    outline: none; }
  .mp-drawer:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: 2px 0 10px rgba(54, 54, 54, 0.2), -2px 0 10px rgba(54, 54, 54, 0.2);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .mp-drawer.drawer-from-right {
    left: auto;
    right: 0;
    transform: translateX(100%); }
  .mp-drawer.drawer-from-left {
    left: 0;
    right: auto;
    transform: translateX(-100%); }
  .mp-drawer[aria-hidden="false"] {
    visibility: visible;
    transform: translateX(0); }
    .mp-drawer[aria-hidden="false"]:before {
      opacity: 1; }
    .mp-drawer[aria-hidden="false"] .drawer__main {
      opacity: 1;
      transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.5s; }
    .mp-drawer[aria-hidden="false"] .drawer__footer {
      opacity: 1;
      transform: translateY(0);
      transition: transform 0.05s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s, opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s; }
  .mp-drawer .drawer__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    position: relative;
    height: 60px;
    max-height: 60px;
    z-index: 1;
    border-bottom: 1px solid #f2f2f2;
    -webkit-justify-content: left;
    -ms-justify-content: left;
    justify-content: left; }
    .mp-drawer .drawer__header .title {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.5);
      padding: 0 16px; }
    .mp-drawer .drawer__header .btn--close {
      position: absolute;
      right: 16px;
      top: 14px;
      background: none;
      border: none; }
  .mp-drawer .drawer__content {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    height: calc(100% - 60px);
    max-height: calc(100% - 60px); }
  .mp-drawer .drawer__main {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    box-shadow: inset 0px 0px 8px 2px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .mp-drawer .drawer__container {
    padding: 16px; }
  .mp-drawer .drawer__footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    box-shadow: 0 -1px #f2f2f2;
    padding: 10px 0 0;
    text-align: left;
    background-color: #fff;
    opacity: 0;
    transform: translateY(20%);
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/*============================================================================
  Custom Cart Drawer
==============================================================================*/
#sidebar-cart .drawer__content .cart-message {
  display: none;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16px * 1.5);
  color: #323232;
  padding: 12px;
  background: #e6f6f3;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0; }
  @media only screen and (max-width: 1023px) {
    #sidebar-cart .drawer__content .cart-message {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5);
      padding: 4px; } }
#sidebar-cart .cart-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f2f2f2; }
  #sidebar-cart .cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }
  #sidebar-cart .cart-item .cart-item__wrapper {
    font-size: 0; }
    #sidebar-cart .cart-item .cart-item__wrapper .cart-item__image-wrapper {
      display: inline-block;
      vertical-align: top;
      width: 30%; }
      #sidebar-cart .cart-item .cart-item__wrapper .cart-item__image-wrapper .cart-item__image {
        padding-right: 16px;
        display: block; }
    #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: calc(16px * 1.5);
      display: inline-block;
      vertical-align: top;
      width: 70%; }
      #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__title {
        line-height: 18px; }
      #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta {
        margin-bottom: 8px; }
        #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__variant-list {
          margin-bottom: 8px; }
          #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__variant-list .cart-item__variant span {
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 600;
            line-height: calc(14px * 1.5); }
        #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__property-list {
          margin-bottom: 8px; }
          #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__property-list .cart-item__property span {
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 600;
            line-height: calc(14px * 1.5); }
        #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__priceList .cart-item__final_line_price {
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          width: 100%;
          -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; }
          #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__priceList .cart-item__final_line_price .cart-item__price {
            font-family: Poppins, sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: calc(16px * 1.5);
            line-height: 20px; }
          #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__priceList .cart-item__final_line_price .cart-item__quantity {
            font-family: Poppins, sans-serif;
            font-size: 13px;
            font-weight: 400;
            line-height: calc(13px * 1.5); }
        #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__priceList .cart-item__price.price--save {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: calc(14px * 1.5);
          text-decoration: line-through; }
        #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__priceList .cart-item__price.price--worth {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: calc(14px * 1.5); }
      #sidebar-cart .cart-item .cart-item__wrapper .cart-item__info .cart-item__remove {
        font-family: Poppins, sans-serif;
        font-size: 13px;
        font-weight: 400;
        line-height: calc(13px * 1.5); }
  #sidebar-cart .cart-item.personalise-main {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0; }
    #sidebar-cart .cart-item.personalise-main .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__property-list {
      display: none; }
  #sidebar-cart .cart-item.personalise-sub {
    padding-top: 8px; }
    #sidebar-cart .cart-item.personalise-sub .cart-item__image-wrapper .cart-item__image {
      display: none; }
    #sidebar-cart .cart-item.personalise-sub .cart-item__title {
      display: none; }
    #sidebar-cart .cart-item.personalise-sub .cart-item__wrapper .cart-item__info {
      background-color: #f2f2f2;
      padding: 12px 16px 8px;
      border-radius: 2px; }
      #sidebar-cart .cart-item.personalise-sub .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__property-list .cart-item__property span {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: calc(14px * 1.5);
        display: block;
        margin-bottom: 4px; }
      #sidebar-cart .cart-item.personalise-sub .cart-item__wrapper .cart-item__info .cart-item__meta .cart-item__priceList .cart-item__price {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: calc(16px * 1.5); }
#sidebar-cart .cart__checkout-info {
  padding: 0 16px 16px; }
  #sidebar-cart .cart__checkout-info .cart__level_discount_applications li {
    color: #0b7276;
    border-bottom: 1px solid #f2f2f2;
    text-align: left;
    margin-bottom: 16px;
    padding-bottom: 8px;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center; }
    #sidebar-cart .cart__checkout-info .cart__level_discount_applications li svg {
      height: 12px; }
  #sidebar-cart .cart__checkout-info .cart__summary-sub-total,
  #sidebar-cart .cart__checkout-info .cart__summary-saving,
  #sidebar-cart .cart__checkout-info .cart__delivery-charge,
  #sidebar-cart .cart__checkout-info .cart__summary-total {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(14px * 1.5); }
    #sidebar-cart .cart__checkout-info .cart__summary-sub-total span,
    #sidebar-cart .cart__checkout-info .cart__summary-saving span,
    #sidebar-cart .cart__checkout-info .cart__delivery-charge span,
    #sidebar-cart .cart__checkout-info .cart__summary-total span {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5); }
  #sidebar-cart .cart__checkout-info .cart__summary-saving span {
    color: #a42337; }
  #sidebar-cart .cart__checkout-info .cart__summary-total {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: calc(16px * 1.5); }
    #sidebar-cart .cart__checkout-info .cart__summary-total span {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.5); }
#sidebar-cart .cart__checkout {
  width: 100%; }
#sidebar-cart .cart__empty {
  margin: 40px 0; }
  #sidebar-cart .cart__empty .info-image {
    text-align: center; }
    #sidebar-cart .cart__empty .info-image svg {
      width: 50px;
      height: 50px; }
  #sidebar-cart .cart__empty .info-text {
    text-align: center;
    margin: 16px 0;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(16px * 1.5); }

/*============================================================================
  Custom Cart Page
==============================================================================*/
.site-header__wrapper .cart-message {
  display: none;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16px * 1.5);
  color: #323232;
  padding: 12px;
  background: #e6f6f3;
  text-align: center; }
  @media only screen and (max-width: 1023px) {
    .site-header__wrapper .cart-message {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5);
      padding: 4px; } }

.template-cart .cart-header {
  margin-bottom: 40px;
  display: none; }
  @media only screen and (max-width: 1023px) {
    .template-cart .cart-header {
      margin-bottom: 16px;
      display: block; } }
  .template-cart .cart-header .cart-header__title {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: calc(18px * 1.25); }
    @media only screen and (max-width: 1023px) {
      .template-cart .cart-header .cart-header__title {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: calc(16px * 1.25); } }
.template-cart .main-content .payment-icons {
  margin-top: 8px; }
  .template-cart .main-content .payment-icons .payment-icon {
    margin: 0 2px;
    line-height: 20px; }
    .template-cart .main-content .payment-icons .payment-icon .icon {
      width: 30px;
      height: 20px; }
.template-cart .mp-gateway {
  margin: 0 auto 40px; }
.template-cart .cart__buttons-container {
  max-width: 320px;
  float: right;
  width: 100%; }
  @media only screen and (max-width: 1023px) {
    .template-cart .cart__buttons-container {
      float: none; } }
  @media only screen and (max-width: 767px) {
    .template-cart .cart__buttons-container {
      max-width: 400px; } }
  .template-cart .cart__buttons-container .cart__submit {
    width: 100%;
    max-width: 320px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      .template-cart .cart__buttons-container .cart__submit {
        max-width: 400px; } }
    .template-cart .cart__buttons-container .cart__submit:hover, .template-cart .cart__buttons-container .cart__submit:focus {
      background-color: #2aa786;
      border: 2px solid transparent; }
  .template-cart .cart__buttons-container [data-shopify-buttoncontainer] {
    justify-content: center; }
  .template-cart .cart__buttons-container .seperator {
    font-size: 13px;
    align-items: center;
    display: flex;
    width: 100%;
    margin: 8px auto 4px;
    max-width: 320px; }
    @media only screen and (max-width: 767px) {
      .template-cart .cart__buttons-container .seperator {
        max-width: 400px; } }
    .template-cart .cart__buttons-container .seperator:before, .template-cart .cart__buttons-container .seperator:after {
      content: '';
      display: flex;
      width: 50%;
      height: 1px;
      background: #f2f2f2; }
    .template-cart .cart__buttons-container .seperator:before {
      margin-right: 8px; }
    .template-cart .cart__buttons-container .seperator:after {
      margin-left: 8px; }
.template-cart .cart__footer .order-discount-card-wrapper {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
  justify-content: space-between; }
  .template-cart .cart__footer .order-discount-card-wrapper .order-discount {
    color: #0b7276; }
  .template-cart .cart__footer .order-discount-card-wrapper .order-discount--cart-total {
    padding-left: 0;
    min-width: 0; }
@media only screen and (max-width: 1023px) {
  .template-cart .cart__footer .cart-note {
    text-align: center; } }
.template-cart .cart__footer .cart-note .referred-friend {
  margin-bottom: 24px; }
  @media only screen and (max-width: 1023px) {
    .template-cart .cart__footer .cart-note .referred-friend {
      width: 100%;
      max-width: 400px; } }
.template-cart .cart__footer .cart__buttons-container {
  margin: 40px auto;
  float: right; }
  @media only screen and (max-width: 1023px) {
    .template-cart .cart__footer .cart__buttons-container {
      float: none;
      display: block;
      max-width: none;
      margin: 16px auto; } }
.template-cart .cart__footer .cart-subtotal .cart__summary-sub-total,
.template-cart .cart__footer .cart-subtotal .cart__summary-saving,
.template-cart .cart__footer .cart-subtotal .cart__delivery-charge,
.template-cart .cart__footer .cart-subtotal .cart__summary-total {
  display: flex;
  justify-content: space-between;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.5); }
.template-cart .cart__footer .cart-subtotal .cart__summary-saving span {
  color: #a42337; }
.template-cart .cart__footer .cart-subtotal .cart__summary-total {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(18px * 1.5); }
.template-cart #cart-form .cart__row.cart__row--heading tr th {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(14px * 1.5); }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.cart__row--heading tr th:nth-child(1) {
      display: none; } }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.cart__row--heading tr th:nth-child(2) {
      text-align: right !important; } }
.template-cart #cart-form .cart__row td {
  vertical-align: top; }
  .template-cart #cart-form .cart__row td.cart__meta {
    width: 35%; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td.cart__meta {
        width: 100%;
        padding: 16px 0; } }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__image-wrapper {
        padding-right: 16px;
        flex: 30% 0 0; } }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__image-wrapper .cart__image {
        max-height: 200px; } }
    @media only screen and (max-width: 767px) {
      .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__image-wrapper .cart__image {
        max-height: none;
        width: 100%; } }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper {
        width: 100%; } }
    .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .list-view-item__title {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.25);
      margin-bottom: 16px; }
      @media only screen and (max-width: 1023px) {
        .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .list-view-item__title {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: calc(14px * 1.25); } }
      @media only screen and (max-width: 1023px) {
        .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .list-view-item__title {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: calc(14px * 1.25);
          margin-bottom: 8px; } }
        @media only screen and (max-width: 1023px) and (max-width: 1023px) {
          .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .list-view-item__title {
            font-family: Poppins, sans-serif;
            font-size: 14px;
            font-weight: 600;
            line-height: calc(14px * 1.25); } }
    .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .product-details {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5);
      padding: 0;
      margin: 0 0 8px; }
      .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5);
        margin: 0 0 8px; }
        .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item.product-details__item--variant-option {
          margin: 0 0 8px; }
          .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item.product-details__item--variant-option span {
            font-weight: 600; }
        .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item.product-details__item--property {
          margin: 0 0 8px; }
          .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item.product-details__item--property .product-details__item-label {
            font-weight: 600; }
    .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .order-discount--list {
      display: none; }
      @media only screen and (max-width: 1023px) {
        .template-cart #cart-form .cart__row td.cart__meta .cart__product-information .cart__detail-wrapper .order-discount--list {
          display: block;
          margin: 0 0 8px 1.3em; } }
  .template-cart #cart-form .cart__row td .cart__price dd, .template-cart #cart-form .cart__row td.cart__price dd, .template-cart #cart-form .cart__row td.cart__final-price dd {
    line-height: 1em; }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row td .cart__price, .template-cart #cart-form .cart__row td.cart__price, .template-cart #cart-form .cart__row td.cart__final-price {
      width: 100%;
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: calc(16px * 1.5);
      text-align: left;
      margin-bottom: 16px; } }
  .template-cart #cart-form .cart__row td .cart__price [data-cart-item-discounted-price-group] [data-cart-item-original-price], .template-cart #cart-form .cart__row td.cart__price [data-cart-item-discounted-price-group] [data-cart-item-original-price], .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-discounted-price-group] [data-cart-item-original-price] {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(16px * 1.5);
    text-decoration: line-through;
    line-height: 20px; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td .cart__price [data-cart-item-discounted-price-group] [data-cart-item-original-price], .template-cart #cart-form .cart__row td.cart__price [data-cart-item-discounted-price-group] [data-cart-item-original-price], .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-discounted-price-group] [data-cart-item-original-price] {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5); } }
  .template-cart #cart-form .cart__row td .cart__price [data-cart-item-discounted-price-group] [data-cart-item-final-price], .template-cart #cart-form .cart__row td.cart__price [data-cart-item-discounted-price-group] [data-cart-item-final-price], .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-discounted-price-group] [data-cart-item-final-price] {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(16px * 1.5); }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td .cart__price [data-cart-item-discounted-price-group] [data-cart-item-final-price], .template-cart #cart-form .cart__row td.cart__price [data-cart-item-discounted-price-group] [data-cart-item-final-price], .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-discounted-price-group] [data-cart-item-final-price] {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: calc(16px * 1.5);
        line-height: 20px; } }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row td .cart__price [data-cart-item-regular-price], .template-cart #cart-form .cart__row td.cart__price [data-cart-item-regular-price], .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-regular-price] {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.5);
      line-height: 20px; } }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row td .cart__price .price--worth, .template-cart #cart-form .cart__row td.cart__price .price--worth, .template-cart #cart-form .cart__row td.cart__final-price .price--worth {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5); } }
  .template-cart #cart-form .cart__row td .cart__price .price--save, .template-cart #cart-form .cart__row td.cart__price .price--save, .template-cart #cart-form .cart__row td.cart__final-price .price--save {
    text-decoration: line-through; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td .cart__price .price--save, .template-cart #cart-form .cart__row td.cart__price .price--save, .template-cart #cart-form .cart__row td.cart__final-price .price--save {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5); } }
  .template-cart #cart-form .cart__row td.cart__price {
    width: 13%; }
    .template-cart #cart-form .cart__row td.cart__price .cart-item__price.price--worth {
      font-family: Poppins, sans-serif;
      font-size: 13px;
      font-weight: 400;
      line-height: calc(13px * 1.5);
      margin-top: 4px; }
  .template-cart #cart-form .cart__row td.cart__quantity-td {
    width: 12%; }
  .template-cart #cart-form .cart__row td.cart__delivery-td {
    width: 15%; }
  .template-cart #cart-form .cart__row td.cart__collection-td {
    width: 15%; }
  .template-cart #cart-form .cart__row td.cart__final-price {
    width: 10%; }
    .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-regular-price] {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.5); }
    .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-discounted-price-group] {
      margin: 0; }
      .template-cart #cart-form .cart__row td.cart__final-price [data-cart-item-discounted-price-group] [data-cart-item-final-price] {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: calc(16px * 1.5); }
  .template-cart #cart-form .cart__row td .cart__qty {
    position: relative;
    margin-top: 0;
    font-size: 0; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td .cart__qty {
        text-align: left;
        margin-bottom: 8px;
        padding-top: 16px;
        border-top: 1px solid #f2f2f2;
        margin-top: 8px; } }
    .template-cart #cart-form .cart__row td .cart__qty .cart__qty-label {
      margin-right: 4px;
      font-size: 13px;
      margin-top: -6px;
      margin-right: 12px; }
    .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust {
      display: inline-block;
      vertical-align: top;
      height: 40px;
      -webkit-appearance: none;
      border: 1px solid #323232;
      background-color: #fff;
      padding: 0 6px;
      margin: 0; }
      @media only screen and (max-width: 1023px) {
        .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust {
          padding: 0 12px; } }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust svg {
        width: 10px;
        height: 10px; }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust.cart__qty-input-adjust-minus {
        margin-right: -1px; }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust.cart__qty-input-adjust-plus {
        margin-left: -1px; }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust:focus {
        outline: none; }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust:hover {
        background-color: #f8f8f8; }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input-adjust[disabled] {
        border: 1px solid #f2f2f2; }
    .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input {
      font-size: 13px;
      text-align: center;
      width: 34px;
      min-height: 40px;
      padding: 0;
      line-height: 38px;
      -moz-appearance: textfield;
      /* Chrome, Safari, Edge, Opera */ }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input::-webkit-outer-spin-button, .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0; }
      .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input[disabled] {
        border: 1px solid #f2f2f2; }
      @media only screen and (max-width: 1023px) {
        .template-cart #cart-form .cart__row td .cart__qty .cart__qty-input {
          width: 40px; } }
    .template-cart #cart-form .cart__row td .cart__qty .cart__qty-display {
      font-size: 13px; }
      @media only screen and (max-width: 1023px) {
        .template-cart #cart-form .cart__row td .cart__qty .cart__qty-display {
          display: inline-block;
          vertical-align: middle; } }
    .template-cart #cart-form .cart__row td .cart__qty.loading .cart__qty-input-adjust,
    .template-cart #cart-form .cart__row td .cart__qty.loading .cart__qty-input {
      cursor: default;
      border: 1px solid #f2f2f2;
      pointer-events: none; }
      .template-cart #cart-form .cart__row td .cart__qty.loading .cart__qty-input-adjust:hover,
      .template-cart #cart-form .cart__row td .cart__qty.loading .cart__qty-input:hover {
        background-color: #fff; }
  .template-cart #cart-form .cart__row td .in-stock:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 13.4 10.1' style='enable-background:new 0 0 13.4 10.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none;stroke:%23FFFFFF;stroke-width:2;%7D%3C/style%3E%3Cpath id='Path_278' class='st0' d='M0.7,4.5l4.1,4.2l7.9-8'/%3E%3C/svg%3E");
    width: 18px;
    height: 18px;
    margin-top: -2px;
    margin-right: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 8px;
    background-color: #0b7276;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    overflow: hidden; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td .in-stock:before {
        width: 14px;
        height: 14px;
        margin-top: -1px;
        background-size: 6px 6px; } }
  .template-cart #cart-form .cart__row td .delivery-info {
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: calc(13px * 1.5);
    color: #b2b2b2; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td .delivery-info {
        padding-left: 18px; } }
  .template-cart #cart-form .cart__row td .cart__remove {
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: calc(13px * 1.5);
    margin: 0 0 16px; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row td .cart__remove {
        text-align: left; } }
  .template-cart #cart-form .cart__row td .cart__delivery-collection-wrapper .cart__delivery-td {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(14px * 1.5);
    margin-bottom: 8px;
    border-top: 1px solid #f2f2f2;
    padding-top: 8px; }
  .template-cart #cart-form .cart__row td .cart__delivery-collection-wrapper .cart__collection-td {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(14px * 1.5);
    margin-bottom: 8px;
    border-top: 1px solid #f2f2f2;
    padding-top: 8px; }
.template-cart #cart-form .cart__row.personalise-main {
  border-bottom: none; }
  .template-cart #cart-form .cart__row.personalise-main .cart__meta {
    padding-bottom: 0; }
    .template-cart #cart-form .cart__row.personalise-main .cart__meta .cart__product-information .product-details {
      display: none; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row.personalise-main .cart__meta .cart__product-information .cart__qty {
        padding-top: 8px;
        border-top: 1px solid #f2f2f2;
        margin-top: 8px; } }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row.personalise-main .cart__meta .cart__product-information .cart__qty .cart__qty-label {
        margin-top: 0;
        margin-right: 4px; } }
  .template-cart #cart-form .cart__row.personalise-main .cart__quantity-td {
    line-height: 13px; }
.template-cart #cart-form .cart__row.personalise-sub {
  background: #f8f8f8; }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.personalise-sub {
      background: #fff; } }
  .template-cart #cart-form .cart__row.personalise-sub td {
    padding-top: 16px; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row.personalise-sub td {
        padding-top: 0; } }
  .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__image-wrapper .cart__image {
    display: none; }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__qty {
      padding-top: 8px;
      border-top: none;
      margin-top: 0; } }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__qty .cart__qty-label {
      margin-top: 0;
      margin-right: 4px; } }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper {
      background: #f8f8f8;
      padding: 12px 16px 0;
      border-radius: 2px; } }
  .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper .list-view-item__title {
    display: none; }
  .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(16px * 1.5); }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5); } }
    .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item .product-details__item-label {
      display: block; }
      @media only screen and (max-width: 1023px) {
        .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper .product-details .product-details__item .product-details__item-label {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: calc(14px * 1.5);
          margin-bottom: 4px; } }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper .cart__price {
      margin-bottom: 0; } }
  .template-cart #cart-form .cart__row.personalise-sub .cart__meta .cart__product-information .cart__detail-wrapper .cart__price [data-cart-item-regular-price] {
    font-weight: 400; }
  .template-cart #cart-form .cart__row.personalise-sub .cart__quantity-td {
    line-height: 13px; }
  @media only screen and (max-width: 1023px) {
    .template-cart #cart-form .cart__row.personalise-sub .cart__delivery-collection-wrapper {
      display: none; } }
  .template-cart #cart-form .cart__row.personalise-sub .cart__delivery-td .in-stock,
  .template-cart #cart-form .cart__row.personalise-sub .cart__delivery-td .delivery-info {
    display: none; }
  .template-cart #cart-form .cart__row.personalise-sub .cart__collection-td .in-stock,
  .template-cart #cart-form .cart__row.personalise-sub .cart__collection-td .delivery-info {
    display: none; }
  .template-cart #cart-form .cart__row.personalise-sub .cart__final-price {
    padding-right: 16px; }
    @media only screen and (max-width: 1023px) {
      .template-cart #cart-form .cart__row.personalise-sub .cart__final-price {
        padding-right: 0; } }

/*============================================================================
  Override Instand Search Wrapper
==============================================================================*/
@media only screen and (min-width: 1024px) {
  .bc-sf-search-suggestion-wrapper {
    position: fixed !important;
    width: 296px !important;
    left: auto !important;
    right: 93px !important;
    top: 102px !important;
    transition: top 0.4s ease-in; } }
@media only screen and (min-width: 1024px) {
  .bc-sf-search-suggestion-wrapper .bc-sf-search-suggestion-popover {
    left: auto !important;
    right: 18px !important;
    top: -20px !important; } }
@media only screen and (min-width: 1024px) {
  .bc-sf-search-suggestion-wrapper .bc-sf-search-suggestion {
    min-width: 0 !important;
    right: auto !important;
    left: 0 !important;
    top: 0 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    position: relative;
    width: 100% !important;
    height: 100% !important;
    max-height: 367px; } }

.bc-sf-search-suggestion-mobile-top-panel .bc-sf-search-btn-close-suggestion:before {
  color: #323232 !important; }

.bc-sf-search-suggestion-mobile-overlay {
  background: rgba(0, 0, 0, 0.75) !important; }

.bc-sf-search-suggestion-product-title {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  padding-bottom: 4px !important;
  color: #323232 !important;
  margin-top: -2px !important; }
  .bc-sf-search-suggestion-product-title b {
    font-weight: 400 !important;
    color: #47bb9c !important; }

.bc-sf-search-suggestion-product-sku {
  color: #b2b2b2 !important;
  font-size: 11px !important;
  padding-bottom: 0 !important; }

.bc-sf-search-suggestion-product-vendor {
  color: #323232 !important;
  font-size: 13px !important;
  padding-bottom: 4px !important; }

.bc-sf-search-suggestion-product-price {
  color: #323232 !important;
  line-height: 20px !important;
  font-size: 16px !important; }

.bc-sf-search-suggestion-header-view-all a {
  font-size: 16px !important; }

.bc-sf-search-suggestion-item {
  padding: 8px !important; }
  .bc-sf-search-suggestion-item a {
    font-size: 14px !important;
    font-weight: 400 !important; }
    .bc-sf-search-suggestion-item a b {
      font-weight: 400 !important;
      color: #47bb9c !important; }
  .bc-sf-search-suggestion-item.bc-sf-search-suggestion-item-product {
    padding: 8px 4px !important; }

.bc-sf-search-suggestion-header {
  text-transform: none !important;
  font-size: 14px !important;
  padding: 8px 10px 4px !important;
  background-color: transparent !important;
  color: #b2b2b2; }
  @media only screen and (min-width: 1024px) {
    .bc-sf-search-suggestion-header {
      background-color: #f2f2f2 !important; } }
  .bc-sf-search-suggestion-header.bc-sf-search-suggestion-header-view-all {
    color: #323232 !important;
    letter-spacing: 0px !important;
    background-color: #fff !important;
    padding: 16px 0 !important; }

@media only screen and (min-width: 1024px) {
  body.sticky-down .bc-sf-search-suggestion-wrapper {
    top: 66px !important;
    transition: top 0.4s ease-out; } }

/*============================================================================
  Template blog
==============================================================================*/
.template-blog .main-content {
  padding-top: 0; }
  .template-blog .main-content .section-header h1 {
    margin-bottom: 32px; }
    @media only screen and (max-width: 1023px) {
      .template-blog .main-content .section-header h1 {
        margin-bottom: 16px; } }
  .template-blog .main-content .grid--blog {
    font-size: 0; }
    .template-blog .main-content .grid--blog .grid__item {
      display: inline-block;
      float: none;
      padding-left: 16px;
      vertical-align: top;
      width: 25%; }
      @media only screen and (max-width: 1023px) {
        .template-blog .main-content .grid--blog .grid__item {
          width: 33.33%; } }
      @media only screen and (max-width: 767px) {
        .template-blog .main-content .grid--blog .grid__item {
          width: 100%;
          padding-left: 16px; } }
      .template-blog .main-content .grid--blog .grid__item .article__grid-image-wrapper svg {
        display: block;
        background-color: #f8f8f8; }
      .template-blog .main-content .grid--blog .grid__item .article__grid-image-wrapper .article__grid-image-container {
        margin: 0 auto 32px 0; }
        @media only screen and (max-width: 1023px) {
          .template-blog .main-content .grid--blog .grid__item .article__grid-image-wrapper .article__grid-image-container {
            margin-bottom: 16px; } }
        .template-blog .main-content .grid--blog .grid__item .article__grid-image-wrapper .article__grid-image-container .article__grid-image {
          object-fit: cover;
          height: 100%; }
      .template-blog .main-content .grid--blog .grid__item .article__grid-meta {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5);
        margin-bottom: 48px; }
        .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__author,
        .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__date {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: calc(14px * 1.5);
          margin-bottom: 8px;
          color: #323232; }
        .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__author {
          margin-right: 8px; }
        .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__grid-excerpt {
          margin-bottom: 8px; }
        .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__tags {
          font-family: Poppins, sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: calc(14px * 1.5); }
          .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__tags .list--inline {
            border-top: 1px solid #f2f2f2;
            padding-top: 8px;
            margin: 0 0 24px; }
            .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__tags .list--inline .article__grid-tag {
              text-decoration: underline;
              margin-right: 8px; }
        @media only screen and (max-width: 1023px) {
          .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__meta-buttons li {
            width: 100%; } }
        @media only screen and (max-width: 1023px) {
          .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__meta-buttons li .btn, .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__meta-buttons li .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-blog .main-content .grid--blog .grid__item .article__grid-meta .article__meta-buttons li .shopify-payment-button__button--unbranded {
            width: 100%; } }

/*============================================================================
  Site map template
==============================================================================*/
.template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section h2 {
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 16px;
  margin-bottom: 24px; }
.template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section .site-sitemap_menu {
  margin-bottom: 32px; }
.template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-1 .site-sitemap_menu {
  font-size: 0;
  margin-left: 0;
  list-style: none; }
  .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-1 .site-sitemap_menu li {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(14px * 1.5);
    display: inline-block;
    width: 25%;
    vertical-align: top; }
    @media only screen and (max-width: 1023px) {
      .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-1 .site-sitemap_menu li {
        width: 100%; } }
.template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu {
  margin-left: 0;
  list-style: none; }
  .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu li {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: calc(16px * 1.25);
    border-bottom: 1px solid #b2b2b2;
    padding-bottom: 16px;
    margin-bottom: 24px; }
    @media only screen and (max-width: 1023px) {
      .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu li {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: calc(14px * 1.25); } }
.template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu_sub {
  margin-left: 0;
  font-size: 0;
  list-style: none; }
  .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu_sub .site-sitemap_menu_sub_group {
    display: inline-block;
    width: 25%;
    vertical-align: top; }
    @media only screen and (max-width: 1023px) {
      .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu_sub .site-sitemap_menu_sub_group {
        width: 100%; } }
    .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu_sub .site-sitemap_menu_sub_group li {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.5);
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 8px; }
    .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu_sub .site-sitemap_menu_sub_group .site-sitemap_menu_sub_sub {
      list-style: disc;
      margin-bottom: 24px; }
      .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu_sub .site-sitemap_menu_sub_group .site-sitemap_menu_sub_sub li {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: calc(14px * 1.5);
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 4px; }
  .template-page.full-template-page-site-map #shopify-section-page-site-map .sections .section.site-map-level-3 .site-sitemap_menu_sub.no_sub_sub li {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(16px * 1.5);
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 4px; }

/*============================================================================
  Search result template
==============================================================================*/
.template-search .filters-toolbar-wrapper {
  margin-top: 32px !important; }

/*============================================================================
  Fixing z-index
==============================================================================*/
#gis-cta-container.gis-circle {
  z-index: 997 !important;
  bottom: 10px;
  margin: 1em 1em 0 0; }
  @media screen and (min-width: 3000px) {
    #gis-cta-container.gis-circle {
      right: calc(((100% - 2500px)/2) - 150px); } }

#bc-sf-filter-scroll-to-top {
  right: 124px !important;
  top: calc(100% - 80px) !important; }
  @media screen and (max-width: 767px) {
    #bc-sf-filter-scroll-to-top {
      right: calc(50vw - 20px) !important;
      top: auto !important;
      bottom: 16px !important; } }

/*============================================================================
  Store locator
==============================================================================*/
#store-locator .title {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(16px * 1.5); }
#store-locator .drawer__content .title {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(14px * 1.5);
  margin-bottom: 8px; }
#store-locator .input-group {
  flex-wrap: nowrap;
  display: flex; }
  #store-locator .input-group input {
    flex-grow: 10;
    padding: 8px 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 0;
    border-right: none; }
  #store-locator .input-group a {
    flex-grow: 1;
    vertical-align: middle;
    line-height: 45px;
    padding: 0 16px; }
#store-locator .current-location {
  width: 100%;
  margin-top: 8px;
  line-height: 43px;
  padding: 0;
  position: relative; }
  #store-locator .current-location:focus {
    outline: none; }
  #store-locator .current-location svg {
    width: 16px;
    height: 18px;
    position: absolute;
    left: 16px;
    top: calc(50% - 9px); }
#store-locator .js-onstate-store-list-wrapper {
  padding: 8px 0 24px; }
  #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper {
    position: relative; }
    #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper .onstate-store-notice {
      display: flex;
      align-items: center;
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: calc(14px * 1.5);
      padding: 16px;
      background: #faeaca;
      margin-bottom: 8px;
      line-height: 18px; }
      #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper .onstate-store-notice svg {
        margin-right: 8px;
        width: 32px; }
      #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper .onstate-store-notice:hover {
        cursor: pointer; }
    #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper .onstate-store-notice-message {
      position: absolute;
      top: 52px;
      left: 0px;
      width: 100%;
      background: white;
      z-index: 9;
      font-size: 13px;
      line-height: 16px;
      border: 1px solid #b2b2b2;
      border-radius: 4px; }
      #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper .onstate-store-notice-message .onstate-store-notice-message-wrapper {
        padding: 16px; }
      #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper .onstate-store-notice-message:before {
        content: '';
        display: block;
        position: absolute;
        left: 15px;
        bottom: 100%;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-bottom-color: #b2b2b2; }
      #store-locator .js-onstate-store-list-wrapper .onstate-store-notice-wrapper .onstate-store-notice-message:after {
        content: '';
        display: block;
        position: absolute;
        left: 16px;
        bottom: 100%;
        width: 0;
        height: 0;
        border: 9px solid transparent;
        border-bottom-color: white; }
  #store-locator .js-onstate-store-list-wrapper .content-box__row {
    position: relative;
    background-color: #f8f8f8;
    padding: 16px;
    margin-bottom: 8px; }
    #store-locator .js-onstate-store-list-wrapper .content-box__row .onstate-store-title {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: calc(16px * 1.5);
      margin-bottom: 8px; }
    #store-locator .js-onstate-store-list-wrapper .content-box__row .onstate-store-address {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5);
      margin-bottom: 8px; }
    #store-locator .js-onstate-store-list-wrapper .content-box__row .onstate-store-distance-wrapper {
      display: flex;
      align-items: center;
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5);
      margin-bottom: 4px; }
      #store-locator .js-onstate-store-list-wrapper .content-box__row .onstate-store-distance-wrapper svg {
        width: 20px;
        padding-right: 8px; }
    #store-locator .js-onstate-store-list-wrapper .content-box__row .onstate-store-stock-wrapper {
      display: flex;
      align-items: center;
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: calc(14px * 1.5);
      margin-bottom: 4px; }
      #store-locator .js-onstate-store-list-wrapper .content-box__row .onstate-store-stock-wrapper:before {
        content: '';
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 13.4 10.1' style='enable-background:new 0 0 13.4 10.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none;stroke:%23FFFFFF;stroke-width:2;%7D%3C/style%3E%3Cpath id='Path_278' class='st0' d='M0.7,4.5l4.1,4.2l7.9-8'/%3E%3C/svg%3E");
        width: 14px;
        height: 14px;
        margin-top: 0px;
        margin-right: 8px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 8px 6px;
        background-color: #0b7276;
        display: inline-block;
        vertical-align: middle;
        border-radius: 50%;
        overflow: hidden; }
    #store-locator .js-onstate-store-list-wrapper .content-box__row button {
      margin-top: 16px;
      width: 100%;
      line-height: 41px;
      padding: 0; }
  #store-locator .js-onstate-store-list-wrapper .store-list-show-more .btn, #store-locator .js-onstate-store-list-wrapper .store-list-show-more .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #store-locator .js-onstate-store-list-wrapper .store-list-show-more .shopify-payment-button__button--unbranded {
    width: 100%; }
#store-locator.mp-drawer .drawer__footer {
  padding: 0; }
  #store-locator.mp-drawer .drawer__footer button {
    width: 100%; }

.bc-sf-product-sale-price {
  color: #a42337 !important; }

[data-shopify-buttoncontainer="true"] > :first-child {
  display: block !important; }

[data-shopify-buttoncontainer="true"] > :last-child {
  display: none !important; }

/*============================================================================
  Custom usp_bar styling
==============================================================================*/
#shopify-section-usp-bar {
  min-height: 84px; }

.usp__row {
  display: none;
  width: 100%;
  font-size: 0;
  margin: 0 0 0 8px;
  overflow: hidden; }
  .usp__row.slick-initialized {
    display: block; }
  .usp__row .usp__block {
    display: inline-block;
    padding: 16px 8px 16px 0;
    margin: 8px 8px 8px 0;
    border-right: 1px solid #f2f2f2; }
    .usp__row .usp__block:last-child {
      border-right: none; }
    .usp__row .usp__block:focus {
      outline: none; }
    .usp__row .usp__block .usp__line_1, .usp__row .usp__block .usp__line_2 {
      text-align: center; }
    .usp__row .usp__block .usp__line_1 {
      font-family: Poppins, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: calc(14px * 1.5); }
      @media only screen and (max-width: 767px) {
        .usp__row .usp__block .usp__line_1 {
          font-family: Poppins, sans-serif;
          font-size: 13px;
          font-weight: 600;
          line-height: calc(13px * 1.5); } }
    .usp__row .usp__block .usp__line_2 {
      font-family: Poppins, sans-serif;
      font-size: 13px;
      font-weight: 400;
      line-height: calc(13px * 1.5); }
      @media only screen and (max-width: 767px) {
        .usp__row .usp__block .usp__line_2 {
          font-family: Poppins, sans-serif;
          font-size: 11px;
          font-weight: 400;
          line-height: calc(11px * 1.5); } }

#contact_form .contact-image {
  width: 200px;
  display: inline-block;
  padding-right: 16px;
  padding-bottom: 16px;
  position: relative; }
  #contact_form .contact-image .contact-image-remove {
    position: absolute;
    right: 21px;
    top: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: block;
    color: #fff;
    background: rgba(120, 120, 120, 0.8);
    text-decoration: none; }
#contact_form .contact-images {
  background: #f7f7f7;
  padding: 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  display: none; }
#contact_form .contact-canvas {
  max-width: 100%;
  width: auto;
  height: auto;
  display: none; }
#contact_form .remove-contact-image {
  float: right;
  display: none; }

#form-success {
  text-align: center;
  margin: 50px;
  margin-left: 0;
  margin-right: 0;
  display: none; }

.legacy-account-page {
  display: none; }
