/** Shopify CDN: Minification failed

Line 1740:2 Expected identifier but found "*"
Line 1862:2 Expected identifier but found "*"
Line 4205:19 Expected "{" but found "("
Line 10284:21 Expected identifier but found "3"
Line 15842:59 Unexpected "{"

**/
@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 ================*/
/*================ #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 ================*/
/*============================================================================
  Convert pixels (unitless) to ems
  eg. for a relational value of 12px write calc-font-size(12) when the parent is 16px
  if the parent is another value say 24px write calc-font-size(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  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 ================*/
/*================ Footer Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero Slider ================*/
/*================ Typography ================*/
/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ Product video ================*/
/*================ Image placeholder ================*/


/*================ GLOBAL ================*/
/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
html,
body {
  position: relative;
}

body {
  min-height:100%;
  /*-webkit-perspective:0;*/
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility:hidden;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  padding: 0;
  margin: 0;
}

body.body-fade {
  opacity: 1;
}

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

input,
textarea,
select,
.disclosure__toggle {
  -webkit-text-size-adjust: 100%; }

a {
  background-color: transparent; }

b,
strong {
  font-weight: var(--font-weight-body--bolder); }

em,
i { 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,
.disclosure__toggle,
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,
.disclosure__toggle,
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.
==============================================================================*/
/*============================================================================
  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 ================*/

/*================ Small ================*/
@media only screen and (max-width: 640px) {
  /* 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; } }

/*================ Small-up ================*/
@media only screen and (min-width: 641px) {
  /* Whole */
  .small-up--one-whole {
    width: 100%; }
  /* Halves */
  .small-up--one-half {
    width: 50%; }
  /* Thirds */
  .small-up--one-third {
    width: 33.33333%; }
  .small-up--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .small-up--one-quarter {
    width: 25%; }
  .small-up--two-quarters {
    width: 50%; }
  .small-up--three-quarters {
    width: 75%; }
  /* Fifths */
  .small-up--one-fifth {
    width: 20%; }
  .small-up--two-fifths {
    width: 40%; }
  .small-up--three-fifths {
    width: 60%; }
  .small-up--four-fifths {
    width: 80%; }
  /* Sixths */
  .small-up--one-sixth {
    width: 16.66667%; }
  .small-up--two-sixths {
    width: 33.33333%; }
  .small-up--three-sixths {
    width: 50%; }
  .small-up--four-sixths {
    width: 66.66667%; }
  .small-up--five-sixths {
    width: 83.33333%; }
  /* Eighths */
  .small-up--one-eighth {
    width: 12.5%; }
  .small-up--two-eighths {
    width: 25%; }
  .small-up--three-eighths {
    width: 37.5%; }
  .small-up--four-eighths {
    width: 50%; }
  .small-up--five-eighths {
    width: 62.5%; }
  .small-up--six-eighths {
    width: 75%; }
  .small-up--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small-up--one-tenth {
    width: 10%; }
  .small-up--two-tenths {
    width: 20%; }
  .small-up--three-tenths {
    width: 30%; }
  .small-up--four-tenths {
    width: 40%; }
  .small-up--five-tenths {
    width: 50%; }
  .small-up--six-tenths {
    width: 60%; }
  .small-up--seven-tenths {
    width: 70%; }
  .small-up--eight-tenths {
    width: 80%; }
  .small-up--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .small-up--one-twelfth {
    width: 8.33333%; }
  .small-up--two-twelfths {
    width: 16.66667%; }
  .small-up--three-twelfths {
    width: 25%; }
  .small-up--four-twelfths {
    width: 33.33333%; }
  .small-up--five-twelfths {
    width: 41.66667%; }
  .small-up--six-twelfths {
    width: 50%; }
  .small--up-seven-twelfths {
    width: 58.33333%; }
  .small-up--eight-twelfths {
    width: 66.66667%; }
  .small-up--nine-twelfths {
    width: 75%; }
  .small-up--ten-twelfths {
    width: 83.33333%; }
  .small-up--eleven-twelfths {
    width: 91.66667%; }
  .grid--uniform .small-up--one-half:nth-child(2n+1),
  .grid--uniform .small-up--one-third:nth-child(3n+1),
  .grid--uniform .small-up--one-quarter:nth-child(4n+1),
  .grid--uniform .small-up--one-fifth:nth-child(5n+1),
  .grid--uniform .small-up--one-sixth:nth-child(6n+1),
  .grid--uniform .small-up--two-sixths:nth-child(3n+1),
  .grid--uniform .small-up--three-sixths:nth-child(2n+1),
  .grid--uniform .small-up--one-eighth:nth-child(8n+1),
  .grid--uniform .small-up--two-eighths:nth-child(4n+1),
  .grid--uniform .small-up--four-eighths:nth-child(2n+1),
  .grid--uniform .small-up--five-tenths:nth-child(2n+1),
  .grid--uniform .small-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .small-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .small-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .small-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .small-up--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .small-up--show {
    display: block !important; }
  .small-up--hide {
    display: none !important; }
  .small-up--text-left {
    text-align: left !important; }
  .small-up--text-right {
    text-align: right !important; }
  .small-up--text-center {
    text-align: center !important; } }

/*================ Medium ================*/
@media only screen and (min-width: 641px) and (max-width: 989px) {
  /* Whole */
  .medium--one-whole {
    width: 100%; }
  /* Halves */
  .medium--one-half {
    width: 50%; }
  /* Thirds */
  .medium--one-third {
    width: 33.33333%; }
  .medium--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .medium--one-quarter {
    width: 25%; }
  .medium--two-quarters {
    width: 50%; }
  .medium--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium--one-fifth {
    width: 20%; }
  .medium--two-fifths {
    width: 40%; }
  .medium--three-fifths {
    width: 60%; }
  .medium--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium--one-sixth {
    width: 16.66667%; }
  .medium--two-sixths {
    width: 33.33333%; }
  .medium--three-sixths {
    width: 50%; }
  .medium--four-sixths {
    width: 66.66667%; }
  .medium--five-sixths {
    width: 83.33333%; }
  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }
  .medium--two-eighths {
    width: 25%; }
  .medium--three-eighths {
    width: 37.5%; }
  .medium--four-eighths {
    width: 50%; }
  .medium--five-eighths {
    width: 62.5%; }
  .medium--six-eighths {
    width: 75%; }
  .medium--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium--one-tenth {
    width: 10%; }
  .medium--two-tenths {
    width: 20%; }
  .medium--three-tenths {
    width: 30%; }
  .medium--four-tenths {
    width: 40%; }
  .medium--five-tenths {
    width: 50%; }
  .medium--six-tenths {
    width: 60%; }
  .medium--seven-tenths {
    width: 70%; }
  .medium--eight-tenths {
    width: 80%; }
  .medium--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium--one-twelfth {
    width: 8.33333%; }
  .medium--two-twelfths {
    width: 16.66667%; }
  .medium--three-twelfths {
    width: 25%; }
  .medium--four-twelfths {
    width: 33.33333%; }
  .medium--five-twelfths {
    width: 41.66667%; }
  .medium--six-twelfths {
    width: 50%; }
  .medium--seven-twelfths {
    width: 58.33333%; }
  .medium--eight-twelfths {
    width: 66.66667%; }
  .medium--nine-twelfths {
    width: 75%; }
  .medium--ten-twelfths {
    width: 83.33333%; }
  .medium--eleven-twelfths {
    width: 91.66667%; }
  .grid--uniform .medium--one-half:nth-child(2n+1),
  .grid--uniform .medium--one-third:nth-child(3n+1),
  .grid--uniform .medium--one-quarter:nth-child(4n+1),
  .grid--uniform .medium--one-fifth:nth-child(5n+1),
  .grid--uniform .medium--one-sixth:nth-child(6n+1),
  .grid--uniform .medium--two-sixths:nth-child(3n+1),
  .grid--uniform .medium--three-sixths:nth-child(2n+1),
  .grid--uniform .medium--one-eighth:nth-child(8n+1),
  .grid--uniform .medium--two-eighths:nth-child(4n+1),
  .grid--uniform .medium--four-eighths:nth-child(2n+1),
  .grid--uniform .medium--five-tenths:nth-child(2n+1),
  .grid--uniform .medium--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .medium--show {
    display: block !important; }
  .medium--hide {
    display: none !important; }
  .medium--text-left {
    text-align: left !important; }
  .medium--text-right {
    text-align: right !important; }
  .medium--text-center {
    text-align: center !important; } }

/*================ Medium-up ================*/
@media only screen and (min-width: 990px) {
  /* 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; } }

/*================ Large ================*/
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  /* Whole */
  .large--one-whole {
    width: 100%; }
  /* Halves */
  .large--one-half {
    width: 50%; }
  /* Thirds */
  .large--one-third {
    width: 33.33333%; }
  .large--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .large--one-quarter {
    width: 25%; }
  .large--two-quarters {
    width: 50%; }
  .large--three-quarters {
    width: 75%; }
  /* Fifths */
  .large--one-fifth {
    width: 20%; }
  .large--two-fifths {
    width: 40%; }
  .large--three-fifths {
    width: 60%; }
  .large--four-fifths {
    width: 80%; }
  /* Sixths */
  .large--one-sixth {
    width: 16.66667%; }
  .large--two-sixths {
    width: 33.33333%; }
  .large--three-sixths {
    width: 50%; }
  .large--four-sixths {
    width: 66.66667%; }
  .large--five-sixths {
    width: 83.33333%; }
  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }
  .large--two-eighths {
    width: 25%; }
  .large--three-eighths {
    width: 37.5%; }
  .large--four-eighths {
    width: 50%; }
  .large--five-eighths {
    width: 62.5%; }
  .large--six-eighths {
    width: 75%; }
  .large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large--one-tenth {
    width: 10%; }
  .large--two-tenths {
    width: 20%; }
  .large--three-tenths {
    width: 30%; }
  .large--four-tenths {
    width: 40%; }
  .large--five-tenths {
    width: 50%; }
  .large--six-tenths {
    width: 60%; }
  .large--seven-tenths {
    width: 70%; }
  .large--eight-tenths {
    width: 80%; }
  .large--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .large--one-twelfth {
    width: 8.33333%; }
  .large--two-twelfths {
    width: 16.66667%; }
  .large--three-twelfths {
    width: 25%; }
  .large--four-twelfths {
    width: 33.33333%; }
  .large--five-twelfths {
    width: 41.66667%; }
  .large--six-twelfths {
    width: 50%; }
  .large--seven-twelfths {
    width: 58.33333%; }
  .large--eight-twelfths {
    width: 66.66667%; }
  .large--nine-twelfths {
    width: 75%; }
  .large--ten-twelfths {
    width: 83.33333%; }
  .large--eleven-twelfths {
    width: 91.66667%; }
  .grid--uniform .large--one-half:nth-child(2n+1),
  .grid--uniform .large--one-third:nth-child(3n+1),
  .grid--uniform .large--one-quarter:nth-child(4n+1),
  .grid--uniform .large--one-fifth:nth-child(5n+1),
  .grid--uniform .large--one-sixth:nth-child(6n+1),
  .grid--uniform .large--two-sixths:nth-child(3n+1),
  .grid--uniform .large--three-sixths:nth-child(2n+1),
  .grid--uniform .large--one-eighth:nth-child(8n+1),
  .grid--uniform .large--two-eighths:nth-child(4n+1),
  .grid--uniform .large--four-eighths:nth-child(2n+1),
  .grid--uniform .large--five-tenths:nth-child(2n+1),
  .grid--uniform .large--one-twelfth:nth-child(12n+1),
  .grid--uniform .large--two-twelfths:nth-child(6n+1),
  .grid--uniform .large--three-twelfths:nth-child(4n+1),
  .grid--uniform .large--four-twelfths:nth-child(3n+1),
  .grid--uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .large--show {
    display: block !important; }
  .large--hide {
    display: none !important; }
  .large--text-left {
    text-align: left !important; }
  .large--text-right {
    text-align: right !important; }
  .large--text-center {
    text-align: center !important; } }

/*================ Large-up ================*/
@media only screen and (min-width: 1201px) {
  /* 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; } }


/*================ Build Grid Push Classes ================*/

/*================ Push Small ================*/
@media only screen and (max-width: 640px) {
  /* 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%; } }

/*================ Push Small-up ================*/
@media only screen and (min-width: 641px) {
  /* Whole */
  .small-up--push-one-whole {
    left: 100%; }
  /* Halves */
  .small-up--push-one-half {
    left: 50%; }
  /* Thirds */
  .small-up--push-one-third {
    left: 33.33333%; }
  .small-up--two-thirds {
    left: 66.66667%; }
  /* Quarters */
  .small-up--push-one-quarter {
    left: 25%; }
  .small-up--push-two-quarters {
    left: 50%; }
  .small-up--push-three-quarters {
    left: 75%; }
  /* Fifths */
  .small-up--push-one-fifth {
    left: 20%; }
  .small-up--push-two-fifths {
    left: 40%; }
  .small-up--push-three-fifths {
    left: 60%; }
  .small-up--push-four-fifths {
    left: 80%; }
  /* Sixths */
  .small-up--push-one-sixth {
    left: 16.66667%; }
  .small-up--push-two-sixths {
    left: 33.33333%; }
  .small-up--push-three-sixths {
    left: 50%; }
  .small-up--push-four-sixths {
    left: 66.66667%; }
  .small-up--push-five-sixths {
    left: 83.33333%; }
  /* Eighths */
  .small-up--push-one-eighth {
    left: 12.5%; }
  .small-up--push-two-eighths {
    left: 25%; }
  .small-up--push-three-eighths {
    left: 37.5%; }
  .small-up--push-four-eighths {
    left: 50%; }
  .small-up--push-five-eighths {
    left: 62.5%; }
  .small-up--push-six-eighths {
    left: 75%; }
  .small-up--push-seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .small-up--push-one-tenth {
    left: 10%; }
  .small-up--push-two-tenths {
    left: 20%; }
  .small-up--push-three-tenths {
    left: 30%; }
  .small-up--push-four-tenths {
    left: 40%; }
  .small-up--push-five-tenths {
    left: 50%; }
  .small-up--push-six-tenths {
    left: 60%; }
  .small-up--push-seven-tenths {
    left: 70%; }
  .small-up--push-eight-tenths {
    left: 80%; }
  .small-up--push-nine-tenths {
    left: 90%; }
  /* Twelfths */
  .small-up--push-one-twelfth {
    left: 8.33333%; }
  .small-up--push-two-twelfths {
    left: 16.66667%; }
  .small-up--push-three-twelfths {
    left: 25%; }
  .small-up--push-four-twelfths {
    left: 33.33333%; }
  .small-up--push-five-twelfths {
    left: 41.66667%; }
  .small-up--push-six-twelfths {
    left: 50%; }
  .small--up-push-seven-twelfths {
    left: 58.33333%; }
  .small-up--push-eight-twelfths {
    left: 66.66667%; }
  .small-up--push-nine-twelfths {
    left: 75%; }
  .small-up--push-ten-twelfths {
    left: 83.33333%; }
  .small-up--push-eleven-twelfths {
    left: 91.66667%; } }

/*================ Push Medium ================*/
@media only screen and (min-width: 641px) and (max-width: 989px) {
  /* Whole */
  .medium--push-one-whole {
    left: 100%; }
  /* Halves */
  .medium--push-one-half {
    left: 50%; }
  /* Thirds */
  .medium--push-one-third {
    left: 33.33333%; }
  .medium--push-two-thirds {
    left: 66.66667%; }
  /* Quarters */
  .medium--push-one-quarter {
    left: 25%; }
  .medium--push-two-quarters {
    left: 50%; }
  .medium--push-three-quarters {
    left: 75%; }
  /* Fifths */
  .medium--push-one-fifth {
    left: 20%; }
  .medium--push-two-fifths {
    left: 40%; }
  .medium--push-three-fifths {
    left: 60%; }
  .medium--push-four-fifths {
    left: 80%; }
  /* Sixths */
  .medium--push-one-sixth {
    left: 16.66667%; }
  .medium--push-two-sixths {
    left: 33.33333%; }
  .medium--push-three-sixths {
    left: 50%; }
  .medium--push-four-sixths {
    left: 66.66667%; }
  .medium--push-five-sixths {
    left: 83.33333%; }
  /* Eighths */
  .medium--push-one-eighth {
    left: 12.5%; }
  .medium--push-two-eighths {
    left: 25%; }
  .medium--push-three-eighths {
    left: 37.5%; }
  .medium--push-four-eighths {
    left: 50%; }
  .medium--push-five-eighths {
    left: 62.5%; }
  .medium--push-six-eighths {
    left: 75%; }
  .medium--push-seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .medium--push-one-tenth {
    left: 10%; }
  .medium--push-two-tenths {
    left: 20%; }
  .medium--push-three-tenths {
    left: 30%; }
  .medium--push-four-tenths {
    left: 40%; }
  .medium--push-five-tenths {
    left: 50%; }
  .medium--push-six-tenths {
    left: 60%; }
  .medium--push-seven-tenths {
    left: 70%; }
  .medium--push-eight-tenths {
    left: 80%; }
  .medium--push-nine-tenths {
    left: 90%; }
  /* Twelfths */
  .medium--push-one-twelfth {
    left: 8.33333%; }
  .medium--push-two-twelfths {
    left: 16.66667%; }
  .medium--push-three-twelfths {
    left: 25%; }
  .medium--push-four-twelfths {
    left: 33.33333%; }
  .medium--push-five-twelfths {
    left: 41.66667%; }
  .medium--push-six-twelfths {
    left: 50%; }
  .medium--push-seven-twelfths {
    left: 58.33333%; }
  .medium--push-eight-twelfths {
    left: 66.66667%; }
  .medium--push-nine-twelfths {
    left: 75%; }
  .medium--push-ten-twelfths {
    left: 83.33333%; }
  .medium--push-eleven-twelfths {
    left: 91.66667%; } }

/*================ Push Medium-up ================*/
@media only screen and (min-width: 990px) {
  /* 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%; } }

/*================ Push Large ================*/
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  /* Whole */
  .large--push-one-whole {
    left: 100%; }
  /* Halves */
  .large--push-one-half {
    left: 50%; }
  /* Thirds */
  .large--push-one-third {
    left: 33.33333%; }
  .large--push-two-thirds {
    left: 66.66667%; }
  /* Quarters */
  .large--push-one-quarter {
    left: 25%; }
  .large--push-two-quarters {
    left: 50%; }
  .large--push-three-quarters {
    left: 75%; }
  /* Fifths */
  .large--push-one-fifth {
    left: 20%; }
  .large--push-two-fifths {
    left: 40%; }
  .large--push-three-fifths {
    left: 60%; }
  .large--push-four-fifths {
    left: 80%; }
  /* Sixths */
  .large--push-one-sixth {
    left: 16.66667%; }
  .large--push-two-sixths {
    left: 33.33333%; }
  .large--push-three-sixths {
    left: 50%; }
  .large--push-four-sixths {
    left: 66.66667%; }
  .large--push-five-sixths {
    left: 83.33333%; }
  /* Eighths */
  .large--push-one-eighth {
    left: 12.5%; }
  .large--push-two-eighths {
    left: 25%; }
  .large--push-three-eighths {
    left: 37.5%; }
  .large--push-four-eighths {
    left: 50%; }
  .large--push-five-eighths {
    left: 62.5%; }
  .large--push-six-eighths {
    left: 75%; }
  .large--push-seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .large--push-one-tenth {
    left: 10%; }
  .large--push-two-tenths {
    left: 20%; }
  .large--push-three-tenths {
    left: 30%; }
  .large--push-four-tenths {
    left: 40%; }
  .large--push-five-tenths {
    left: 50%; }
  .large--push-six-tenths {
    left: 60%; }
  .large--push-seven-tenths {
    left: 70%; }
  .large--push-eight-tenths {
    left: 80%; }
  .large--push-nine-tenths {
    left: 90%; }
  /* Twelfths */
  .large--push-one-twelfth {
    left: 8.33333%; }
  .large--push-two-twelfths {
    left: 16.66667%; }
  .large--push-three-twelfths {
    left: 25%; }
  .large--push-four-twelfths {
    left: 33.33333%; }
  .large--push-five-twelfths {
    left: 41.66667%; }
  .large--push-six-twelfths {
    left: 50%; }
  .large--push-seven-twelfths {
    left: 58.33333%; }
  .large--push-eight-twelfths {
    left: 66.66667%; }
  .large--push-nine-twelfths {
    left: 75%; }
  .large--push-ten-twelfths {
    left: 83.33333%; }
  .large--push-eleven-twelfths {
    left: 91.66667%; } }

/*================ Push Large-up ================*/
@media only screen and (min-width: 1201px) {
  /* Whole */
  .large-up--push-one-whole {
    left: 100%; }
  /* 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%; } }


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

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

.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: var(--color-text);
  background-color: var(--color-bg);
  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%; }

/*=============== Critical CSS ===================*/
.main-content {
  opacity: 1; }

.main-content .shopify-section {
  display: inherit; }

.critical-hidden {
  display: inherit; }

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

.text-fadein {
  opacity: 0; }

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInAndUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

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

/*================ #Basic Styles ================*/
.page-width,
.page-width-narrow,
.page-width-mid {
  *zoom: 1;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block;
  /* padding-top: 40px; */ }
  /*@media only screen and (min-width: 990px) {
    .main-content {
      padding-top: 55px; } } */

/*.template-collection .main-content,
.template-product .main-content,
.template-blog .main-content,
.template-article .main-content {
  margin-top: 80px; }

.template-page .main-content {
  margin-top: 80px; }

@media only screen and (max-width: 989px) {
  .template-product .main-content {
    margin-top: 79px; }

  .template-blog .main-content {
    margin-top: 79px; }
} */

.section-header {
  margin-bottom: 35px; }
  @media only screen and (min-width: 990px) {
    .section-header {
      margin-bottom: 55px; } }

/*================ Typography ================*/
blockquote {
  font-size:calc(((var(--font-h2-desktop))/ (var(--font-size-base))) * 1em);
  line-height: 1.223;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    padding: 140px 0 110px;
    margin-bottom: 30px; }
  blockquote p + cite {
    margin-top: 27.5px; }
  blockquote cite {
    display: block;
    font-size: 0.85em;
    font-weight: var(--font-weight-body); }
    blockquote cite::before {
      content: '\2014 \0020'; }

  @media only screen and (max-width:989px){
    blockquote { font-size:calc(((var(--font-h2-desktop))/ (var(--font-size-base-mobile))) * 1em); } }

  @media only screen and (max-width:640px){
    blockquote {
      font-size:calc(((var(--font-h2-mobile))/ (var(--font-size-base-mobile))) * 1em);
      line-height:1.2; }
    .rte blockquote {
      padding: 90px 0 60px; }
  }

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

pre {
  overflow: auto; }

input,
textarea,
select,
.disclosure__toggle {
  font-size: calc(var(--font-size-base) * 1px); /* 14px */
  line-height: 1.5;
  letter-spacing: 0.010em;
  color: var(--color-text);
  outline: none; }

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(0,0,0,0.4);
}

/*comment out when fixing cart qty */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:focus {
  border: 1px solid !important;
}
/*================ Headings ================*/
h1 em, .h1 em,
h1 i, .h1 i,
h2 em, .h2 em,
h2 i, .h2 i,
h3 em, .h3 em,
h3 i, .h3 i,
h4 em, .h4 em,
h4 i, .h4 i,
h5 em, .h5 em,
h5 i, .h5 i,
h6 em, .h6 em,
h6 i, .h6 i {
  font-style: italic;
}

h3, .h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 17.5px;
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  h3 a, .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

h3, .h3 {
  font-size: calc(((var(--font-size-header)) / (var(--font-size-base))) * 1em); /* 36px */
  line-height: 0.89;
  letter-spacing: 0; }

@media only screen and (max-width: 640px) {
h3, .h3 {
  font-size: calc(((var(--font-h3-mobile)) / (var(--font-size-base))) * 1em); /* 32px */
  line-height: 0.938; /* 30px */ }
}

h4,
.h4 {
  font-size: calc(((var(--font-h4-desktop)) / (var(--font-size-base))) * 1em); /* 32px */
  line-height: 0.94; /* 30px */
  letter-spacing: 0; }

@media only screen and (max-width: 640px) {
  h4,
  .h4 {
    font-size: calc(((var(--font-h4-mobile)) / (var(--font-size-base))) * 1em); /* 32px */
    line-height: 0.94; /* 30px */ }
}

h5,
.h5 {
  font-size: calc(((var(--font-h5-desktop)) / (var(--font-size-base))) * 1em); /* 24px */
  line-height: 1.1; /* 24px */
  letter-spacing: 0; }

@media only screen and (max-width: 640px) {
  h5,
  .h5 {
    font-size: calc(((var(--font-h5-mobile)) / (var(--font-size-base))) * 1em); /* 24px */
    line-height: 1.12; /* 30px */ }
}

h6,
.h6 {
  font-size: calc(((var(--font-h6-desktop)) / (var(--font-size-base))) * 1em); /* 18px */
  line-height: 1.23; /* 16px */
  letter-spacing: 0; }

@media only screen and (max-width: 640px) {
  h6,
  .h6 {
    font-size: calc(((var(--font-h5-mobile)) / (var(--font-size-base))) * 1em); /* 18px */
    line-height: 1.12; /* 16px */ }
}

p,
.p {
  /*font-family:var(--font-stack-body);
  font-style:var(--font-style-body);
  font-weight:var(--font-weight-body);*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1.rte p, .h1.rte p,
h2.rte p, .h2.rte p,
h3.rte p, .h3.rte p,
h4.rte p, .h4.rte p,
h5.rte p, .h5.rte p,
h6.rte p, .h6.rte p,
.rte {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.rte a {
  color: #f15a29;
}

.rte a:hover {
  font-family:"FFMarkWebProBold";
  color: #000;
  border-color: var(--color-text-focus); }

.rte a:not([disabled]):hover,
.rte a:focus {
  color: #000;
}

.accent {
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent); }

.p-default {
  font-family: var(--font-stack-body);
  font-weight: var(--font-weight-body);
  font-style: var(--font-style-body);
  font-size: calc(var(--font-size-base) * 1px); /* 16px */
  line-height: 1.36; /* 20px */
  margin-bottom: 0; }

.p-default.accent {
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent); }

.p-small {
  font-size: calc(var(--font-size-base) * 0.875px); /* 14px */
  line-height: 1.44; /* 24px */ 
  letter-spacing: 0; }
  @media only screen and (max-width: 640px) {
    .p-small {
      font-size: calc(var(--font-size-base) * 0.75px); /* 12px */
      line-height: 1.5; /* 24px */ } }



/*================ Color classes ================*/
.color-grey {
  color: var(--color-grey);
}

/*================ RTE headings ================*/
.rte {
  color: var(--color-body-text);
  margin-bottom: 35px; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1,
  .rte h2,
  .rte h3,
  .rte .h3,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte h6,
  .rte .h6 {
    margin-top: 20px;
    margin-bottom: 25px; }
    .rte h1:first-child,
    .rte h2:first-child,
    .rte h3:first-child,
    .rte .h3:first-child,
    .rte h4:first-child,
    .rte .h4:first-child,
    .rte h5:first-child,
    .rte .h5:first-child,
    .rte h6:first-child,
    .rte .h6:first-child {
      margin-top: 0; }
  .rte li {
    margin-bottom: 4px;
    list-style: inherit; }
    .rte li:last-child {
      margin-bottom: 0; }

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

.rte em,
.rte i {
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale; }

.rte h1 em, .rte h2 em, .rte h3 em,
.rte h4 em, .rte h5 em, .rte h6 em,
.rte h1 i, .rte h2 i, .rte h3 i, 
.rte h4 i, .rte h5 i, .rte h6  i,
.rte.h1 em, .rte.h2 em, .rte.h3 em,
.rte.h4 em, .rte.h5 em, .rte.h6 em,
.rte.h1 i, .rte.h2 i, .rte.h3 i,
.rte.h4 i, .rte.h5 i, .rte.h6 i,
.large-title em  {
  font-style: italic; }

/*================ Misc styles ================*/
.italic-light {
  font-weight: 300;
  font-style: italic;
}

.italic-book {
  font-weight: 400;
  font-style: italic;
}

.large-title {
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: calc(var(--font-size-base) * 11.43px); /* 160px */
  line-height: 1.105; /* 72px */ }
  @media only screen and (max-width: 1024px) {
    .large-title {
      font-size: calc(var(--font-size-base) * 4px); /* 56px */
      line-height: 1.125; /* 63px */ } }
  @media only screen and (max-width: 640px) {
    .large-title {
      font-size:calc(((var(--font-h2-mobile))/ (var(--font-size-base-mobile))) * 0.79em); /* 39px */
      line-height: 1.148; /* 45px */ } }

.fine-print {
  font-size: calc(((14) / (var(--font-size-base))) * 1em);
  font-style: italic; }

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

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

.address {
  margin-bottom: 40px; }

/*================ Drawers ================*/
body::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 8;
  transition: all 0.3s ease; }

.customer-login-drawer,
.product-drawer,
.general-drawer {
  position: fixed;
  display: flex;
  flex-direction: column;
  min-width: 375px;
  width: 50%;
  height: 100%;
  background: #FBF9F7;
  z-index: 99999;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.3s ease; }
  @media only screen and (max-width: 989px) {
    .customer-login-drawer,
    .product-drawer,
    .drawer {
      width: 100%; } }

.customer-login-drawer,
.general-drawer {
  justify-content: center; }

.customer-login-drawer__inner-container,
.product-drawer__inner-container,
.drawer__inner-container {
  max-width: 475px;
  margin: 0 auto;
  padding: 60px 15px; }

.product-drawer__inner-container,
.drawer__inner-container {
  overflow: scroll;
  padding-top: 120px; }

@media only screen and (max-width: 640px) {
.customer-login-drawer__inner-container,
.drawer__inner-container {
  overflow: scroll;
  padding-top: 120px; } }

.customer-login-drawer__inner-container::-webkit-scrollbar,
.product-drawer__inner-container::-webkit-scrollbar,
.drawer__inner-container::-webkit-scrollbar {
  display: none; }

.product-drawer__inner-container h4,
.drawer__inner-container h4 {
  max-width: 170px;
  margin: 0 auto 70px; }

.customer-login-drawer__inner-container h4 {
  margin-bottom: 60px; }

.customer-login-drawer__inner-container input,
.drawer__inner-container input {
  width: 100%; }

.customer-login-drawer__inner-container ul,
.drawer__inner-container ul {
  padding-bottom: 30px; }

.product-drawer table td,
.general-drawer table td,
.template-page table td {
  padding: 12px;
  text-align: right;
  border-color: rgba(0, 0, 0, 0.15); }

.product-drawer table tr td:first-child,
.general-drawer table tr td:first-child,
.template-page table tr td:first-child {
  text-align: left; }

.product-drawer table tr:first-child,
.product-drawer table tr td:first-child,
.general-drawer table tr td:first-child,
.template-page table tr:first-child {
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  letter-spacing: 0.275em;
  text-transform: uppercase;
  font-size: calc(var(--font-size-base) * 0.645px); /* 9px */
  line-height: 1.45; /* 13px */ }

.template-page .accordion-table table td {
  padding: 15px 0;
  text-align: left; }

.template-page .accordion-table table tr td:first-child {
  text-align: left; }

.template-page .accordion-table table tr:first-child {
  font-family: var(--font-stack-body);
  font-style: var(--font-style-body);
  font-weight: var(--font-weight-body);
  letter-spacing: 0.015em;
  text-transform: initial;
  font-size: 14px;
  line-height: 1.36; }

.or-separator,
.or-separator-mobile {
  margin: 60px auto; }

@media only screen and (min-width: 990px) {
.or-separator-mobile {
  display: none; } }

body.a-drawer-is-open::after,
body.cookie-modal-is-visible::after {
  opacity: 1;
  visibility: visible; }

.this-drawer-is-open {
  transform: translateX(0%);
  transition: all 0.3s ease; }

.open-drawer,
.close-drawer {
  cursor: pointer; }

.close-drawer {
  position: absolute;
  padding: 20px;
  right: 0;
  top: 0; }

.close-drawer svg {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15)); }

.forgotten-pw {
  margin-bottom: 25px; }

.forgotten-pw a,
a.register-prompt {
  border-bottom: 1px solid #000;
  padding-bottom: 1px; }

.forgotten-pw:hover,
.forgotten-pw a:not([disabled]):hover, 
.forgotten-pw a:focus,
a.register-prompt:hover,
a.register-prompt:not([disabled]):hover, 
a.register-prompt:focus {
  color: #000;
  font-family:"FFMarkWebProBold";
  font-weight: normal;
  font-style: normal;
}

/*================ Announcement Bar ================*/
.announcement-bar {
  z-index: 13; /* 12 */
  position: relative;
  text-align: center;
  width: 100%;
  overflow: hidden;
  padding: 13px 0;}

.announcement-bar__message {
  display: block;
  padding: 0;
  width: 300%;
  position: relative;
  overflow: hidden;
  animation: marquee 45s linear infinite;
  animation-duration: 40s; }

@media only screen and (max-width: 640px) {
  .announcement-bar__message {
  width: 500%;
  animation-duration: 20s; } }

.announcement-bar__message span {
  float: left;
  display: inline-block;
  width: 25%;
}

.announcement-bar__message:hover {
  animation-play-state:paused; }

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}

/*================ Hero and slideshow headers ================*/
.mega-title,
.mega-subtitle {
  color: var(--color-overlay-title-text); }
  .hero .mega-title, .hero
  .mega-subtitle {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); }
  @media only screen and (min-width: 990px) {
    .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: calc(((var(--font-size-header) + 8) / (var(--font-size-base))) * 1em); }
  @media only screen and (min-width: 990px) {
    .mega-title--large {
      font-size: calc(((var(--font-mega-title-large-desktop)) / (var(--font-size-base))) * 1em); } }

@media only screen and (min-width: 990px) {
  .mega-subtitle {
    font-size: calc(((var(--font-size-base) + 4) / (var(--font-size-base))) * 1em);
    margin: 0 auto; }
    .text-center .mega-subtitle {
      max-width: 75%; } }

.mega-subtitle p {
  color: var(--color-overlay-title-text); }

.mega-subtitle a {
  color: var(--color-overlay-title-text);
  border-bottom: 1px solid currentColor; }
  .mega-subtitle a:hover, .mega-subtitle a:focus {
    color: var(--color-overlay-text-focus); }

.mega-subtitle--large {
  font-size: calc(((var(--font-size-base) + 2) / (var(--font-size-base))) * 1em);
  font-weight: var(--font-weight-header); }
  @media only screen and (min-width: 990px) {
    .mega-subtitle--large {
      font-size: calc(((var(--font-size-base) + 8) / (var(--font-size-base))) * 1em); } }

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

/*================ #Icons ================*/
svg.icon:not(.icon--full-color) .icon-error__symbol,
symbol.icon:not(.icon--full-color) .icon-error__symbol {
  fill: #ffffff; }

/*================ 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: 989px) {
    .payment-icons {
      line-height: 40px; } }
  .payment-icons .icon {
    width: 38px;
    height: 24px;
    fill: inherit; }

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

/*================ Spinner Icon ================*/
.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: calc(calc(var(--font-size-base) * 1px) - 2px);
  height: calc(calc(var(--font-size-base) * 1px) - 2px);
  margin-top: 0.1em;
  flex-shrink: 0; }

/*================ #Lists ================*/
ul,
ol {
  margin: 0;
  padding: 0;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

ol {
  list-style: decimal; }

ul.has-bullets {
  margin-left: 15px; }

ul.has-bullets li {
  list-style: disc; }

.list--inline li {
  display: inline-block; }

/*================ #Rich Text Editor ================*/
.rte img {
  height: auto; }

.rte table {
  table-layout: fixed; }

.rte ul,
.rte ol {
  margin: 0 0 17.5px 17px; }
  .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; }

.rte a:not(.btn) {}

.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:not([disabled]):hover, a:focus {
  color: var(--color-text-focus); }


/*================ Buttons ================*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
  position: relative;
  -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;
  background: transparent;
  width: 100%;
  padding: 12px 15px 11px;
  color: #000;
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  font-size: calc(var(--font-size-base) * 1.16px); /* 16px */
  line-height: 1; /* 14px */
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.btn span {
  white-space: nowrap;
  line-height: 53px; }

.btn:not([disabled]):hover,
.shopify-payment-button .shopify-payment-button__button--unbranded:not([disabled]):hover,
.btn:focus,
.btn:active,
.shopify-payment-button .shopify-payment-button__button--unbranded:focus {
  color: #F15A29;
  outline: none;
  border-color: #F15A29; }

.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 .shopify-payment-button__button--unbranded[disabled],
.btn[aria-disabled],
.shopify-payment-button .shopify-payment-button__button--unbranded[aria-disabled] {
  cursor: default;
  border-color: #BEB8AE;}

.btn--secondary {
  position: relative;
  background: transparent;
  border: 1px solid #262D26;
  border-radius: 0;
  width: 100%;
  padding: 12px 20px;
  color: var(--color-btn-primary);
  text-transform: uppercase;
  display: inline-block; }

.btn--secondary:not([disabled]):hover, .btn--secondary:focus {
  background-color: transparent;
  color: var(--color-btn-primary); }

.btn--secondary-accent {
  background-color: var(--color-body);
  color: var(--color-btn-primary);
  border-color: var(--color-btn-primary); }

.btn--secondary-accent:not([disabled]):hover, .btn--secondary-accent:focus {
  background-color: var(--color-body);
  color: var(--color-btn-primary-focus);
  border-color: var(--color-btn-primary-focus); }

.btn--tertiary {
  font-family: var(--font-stack-body);
  font-style: var(--font-style-body);
  font-weight: var(--font-weight-body);
  font-size: calc(var(--font-size-base) * 0.94px); /* 13px */
  line-height: 1.375; /* 18px */
  letter-spacing: 0;
  text-transform: initial;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #000;
  color: var(--color-black);
  width: auto;
  padding: 0 0 1px;
  display: inline-block;
}

.btn--tertiary:hover,
.btn--tertiary:not([disabled]):hover {
  color: #000;
  font-family:"FFMarkWebProBold";
  font-weight: normal;
  font-style: normal;
  border-color: #000;
}

.btn--tertiary:not([disabled]):hover::before,
.btn--tertiary:hover::before {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn--small {
  padding: 8px 10px;
  font-size: calc(((12) / (var(--font-size-base))) * 1em);
  line-height: 1; }

.arrow-accent-cta {
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  letter-spacing: 0.275em;
  text-transform: uppercase;
  font-size: calc(var(--font-size-base) * 0.645px); /* 9px */
  line-height: 1.45; /* 13px */
}

.arrow-accent-cta:after {
  content: url('{{ "long-arrow-right.svg" | asset_url }}'); }

.arrow-cta-back {
  font-size: calc(var(--font-size-base) * 0.94px); /* 13px */
  line-height: 1.375; /* 18px */
  letter-spacing: 0.010em; }

.arrow-cta-back:before {
  content: url('{{ "long-arrow-left.svg" | asset_url }}'); }

/*================ Button variations ================*/
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  color: var(--color-text);
  text-align: left; }
  .btn--link:not([disabled]):hover, .btn--link:focus {
    color: var(--color-text-focus);
    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: var(--color-btn-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .text-link--accent:not([disabled]):hover, .text-link--accent:focus {
    color: var(--color-btn-primary-focus); }

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

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


/*================ #Tables ================*/
table {
  margin-bottom: 27.5px; }

th {
  font-style: normal;
  font-weight: normal; }

th,
td {
  text-align: left;
  border: 1px solid var(--color-border);
  padding: 0; }

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

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 1200px) {
  .responsive-table thead {
    display: none; }
  .responsive-table th,
  .responsive-table td {
    float: left;
    clear: left;
    width: 100%;
    text-align: right;
    padding: 27.5px;
    border: 0;
    margin: 0; }
  .responsive-table th::before,
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px;
    font-weight: normal; }
  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 55px; }
    .responsive-table__row + .responsive-table__row::after,
    tfoot > .responsive-table__row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 27.5px;
      right: 27.5px;
      border-bottom: 1px solid var(--color-border); } }

@media only screen and (max-width: 640px) {
  .responsive-table tr {
    border-bottom: 1px solid var(--color-border); } }

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

/*================ Adds a background color pulsating animation ================
[data-image-loading-animation] {
  background-color: var(--global-color-image-loader-primary);
  -moz-animation: image-loader 2s 400ms infinite;
  -o-animation: image-loader 2s 400ms infinite;
  -webkit-animation: image-loader 2s 400ms infinite;
  animation: image-loader 2s 400ms infinite; }
  .no-js [data-image-loading-animation] {
    animation-name: none; }
*/

/*================ Forms ================*/
form {
  margin: 0; }

fieldset {
  border: 1px solid var(--color-border-form);
  margin: 0 0 55px;
  padding: 27.5px; }

legend {
  border: 0;
  padding: 0; }

button {
  cursor: pointer; }

input[type="submit"]:not(.cart__submit) {
  width: 100%;
  padding: 10px 20px 15px;
  display: block;
  border-radius: 0;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

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

.input-btn {
  position: relative; }

.input-btn input {
  position: relative;
  z-index: 2;
  padding: 10px 20px 15px; }

.input-btn input,
.input-btn input:hover,
.input-btn .btn:not([disabled]):hover {
  color: #fff; }

.input-btn:after {
  content: url('icon-button-style-three.svg');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; }

label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  font-size: calc(var(--font-size-base) * 1.13px);
  line-height: 1.1; /* 20px */
  letter-spacing: 0;
  text-transform: uppercase; }

[type="radio"] + label,
[type="checkbox"] + label {
  display: inline-block;
  margin-bottom: 0; }
label[for] {
  cursor: pointer; }

input,
textarea,
select,
.disclosure__toggle {
  border: 0;
  background-color: #fff;
  padding: 10px 5px;
  color: var(--color-text-field-text);
  max-width: 100%;
  line-height: 1.36;
  letter-spacing: 0.010em;
  border-radius: 0; }
  input:focus,
  textarea:focus,
  select:focus,
  .disclosure__toggle:focus {
    border-color: var(--color-border-form-darker); }
  input[disabled],
  textarea[disabled],
  select[disabled],
  .disclosure__toggle[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,
  .input--error.disclosure__toggle::-webkit-input-placeholder {
    color: #FF6448;
    opacity: 1; }
  input.input--error::-moz-placeholder,
  textarea.input--error::-moz-placeholder,
  select.input--error::-moz-placeholder,
  .input--error.disclosure__toggle::-moz-placeholder {
    color: #FF6448;
    opacity: 1; }
  input.input--error:-ms-input-placeholder,
  textarea.input--error:-ms-input-placeholder,
  select.input--error:-ms-input-placeholder,
  .input--error.disclosure__toggle:-ms-input-placeholder {
    color: #FF6448;
    opacity: 1; }
  input.input--error::-ms-input-placeholder,
  textarea.input--error::-ms-input-placeholder,
  select.input--error::-ms-input-placeholder,
  .input--error.disclosure__toggle::-ms-input-placeholder {
    color: #FF6448;
    opacity: 1; }
  input.hidden-placeholder::-webkit-input-placeholder,
  textarea.hidden-placeholder::-webkit-input-placeholder,
  select.hidden-placeholder::-webkit-input-placeholder,
  .hidden-placeholder.disclosure__toggle::-webkit-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-moz-placeholder,
  textarea.hidden-placeholder::-moz-placeholder,
  select.hidden-placeholder::-moz-placeholder,
  .hidden-placeholder.disclosure__toggle::-moz-placeholder {
    color: transparent; }
  input.hidden-placeholder:-ms-input-placeholder,
  textarea.hidden-placeholder:-ms-input-placeholder,
  select.hidden-placeholder:-ms-input-placeholder,
  .hidden-placeholder.disclosure__toggle:-ms-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-ms-input-placeholder,
  textarea.hidden-placeholder::-ms-input-placeholder,
  select.hidden-placeholder::-ms-input-placeholder,
  .hidden-placeholder.disclosure__toggle::-ms-input-placeholder {
    opacity: 1; }
  .product-form input, .product-form
  textarea, .product-form select, .product-form .disclosure__toggle {
    min-height: 44px; }

textarea {
  min-height: 100px; }

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

.input-error-message {
  display: flex;
  color: #FF6448;
  font-size: calc(var(--font-size-base) * 0.65px); /* 13px */
  line-height: 1.25; /* 14px */
  margin-bottom: 20px; /* 7px */}
  @media only screen and (max-width: 989px) {
    .input-error-message {
      margin-bottom: 19.44444px; } }
  .input-error-message .icon {
    width: 1em;
    height: 1em;
    margin-right: calc((10 / (var(--font-size-base))) * 1em); }
    #ContactFooter-email-error.input-error-message {
      margin-bottom: 7px; }

select,
.disclosure__toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: var(--svg-select-icon);
  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: 15px;
  padding-bottom: 8px; }
  @media only screen and (min-width: 990px) {

    select,
    .disclosure__toggle {
      padding-top: 10px;
      padding-left: 18px;
      padding-bottom: 10px; } }

.select-group {
  position: relative;
  z-index: 2; }
  .select-group select, .select-group .disclosure__toggle {
    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-size: calc(((10) / (var(--font-size-base))) * 1em);
  text-transform: uppercase; }

optgroup {
  font-weight: var(--font-weight-body--bold); }

option {
  color: var(--color-text);
  background-color: var(--color-body); }

select::-ms-expand, .disclosure__toggle::-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: var(--color-text-field-text);
  opacity: 0.6; }

::-moz-placeholder {
  color: var(--color-text-field-text);
  opacity: 0.6; }

:-ms-input-placeholder {
  color: var(--color-text-field-text);
  opacity: 0.6; }

::-ms-input-placeholder {
  color: var(--color-text-field-text);
  opacity: 1; }

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

input,
textarea,
select {
  padding: 0; }

/*================ Vertical forms ================*/
.form-vertical input,
.form-vertical select,
.form-vertical .disclosure__toggle,
.form-vertical textarea {
  display: block;
  width: 100%;}
  .form-vertical input.input--error,
  .form-vertical select.input--error,
  .form-vertical .input--error.disclosure__toggle,
  .form-vertical textarea.input--error {
    margin-bottom: 11.66667px; }

.form-vertical select {
  padding: 20px; }

.form-vertical [type="radio"],
.form-vertical [type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }

.form-vertical .grid { margin-left: -10px; }

.form-vertical .grid__item { padding-left: 10px; }

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

.field__input-wrapper,
.field__select-wrapper {
  border: 0;
  border-radius: 0;
  padding: 5px;
  margin-bottom: 10px; }

.field__select-wrapper {
  padding: 0; }

label.label-checkbox input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
  z-index: -1;
  opacity: 0; }

.label-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 27px; }

.label-checkbox__box {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 17px;
  height: 17px;
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
  vertical-align: middle; }

.label-checkbox {
  font-family: var(--font-stack-body);
  font-weight: var(--font-weight-body);
  font-style: var(--font-style-body);
  font-size: 13px !important;
  line-height: 1.375 !important; /* 18px */
  text-transform: capitalize;
  letter-spacing: 0.010em; }

.label-checkbox input:checked ~ .label-checkbox__box:before {
  content: url('checkbox-tick.svg');
  position: relative;
  top: -1px;
  left: 3.5px; }

.label-checkbox input:disabled ~ .label-checkbox__box {
  background: black;
  opacity: 0.6;
  pointer-events: none; }

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

/*================ Single field forms ================*/
.floating-label-form .field__input-wrapper {
  position: relative; }

.floating-label-form .field__input-wrapper {
  padding: 0; }

.floating-label-form .field__input-wrapper input,
.floating-label-form .field__input-wrapper textarea {
  border: 0;
  width: 100%;
  padding: 20px;
  transition: all 0.2s ease-out;
  line-height: 1.3;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

.floating-label-form .field__input-wrapper input:invalid,
.floating-label-form .field__input-wrapper textarea:invalid {
  padding-top: 1.8em;
  padding-bottom: 0.3571428571em;
}

.floating-label-form .field__input-wrapper input:invalid + label,
.floating-label-form .field__input-wrapper textarea:invalid + label {
  transition: all 0.2s ease-out;
  font-size: 10px;
  line-height: 2;
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

.floating-label-form .field__input-wrapper label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 5px;
  font-size: 12px;
  width: 100%;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  display: block;
  margin: 0.3em 0 0.5em 0;
  text-transform: uppercase;
  -webkit-text-size-adjust: 100%;
}

/*================ Form feedback messages ================*/
.note,
.form-message {
  padding: 0;
  margin: 0 0 27.5px; }

.form-message--success {
  border: 0;
  /*background-color: #f8fff9;*/
  color: var(--color-black);
  display: block;
  width: 100%; }
  .form-message--success span {
    display: block;
    color: var(--color-grey); }

.form-message--error {
  line-height: 1.25; /* 14px */
  color: #FF6448;
  border: 0;
  /*background-color: #fff8f8;*/
  padding: 0;
  text-align: left;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  .form-message--error li {
    list-style-type: disc;
    list-style-position: inside; }
  .form-message--error .form-message__title {
    margin-bottom: 10px; }
  .form-message--error .form-message__link, .form-message--error a {
    display: inline-block;
    text-decoration-skip-ink: auto;
    color: #FF6448;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .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: #FF6448; }

.errors {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*================ 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: 55px; }

.input-group--nowrap {
  flex-wrap: nowrap; }

.input-group--error {
  margin-bottom: 0; }

.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: 42px; }
  @media only screen and (min-width: 990px) {
    .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: 46px; } }

.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: 2px 0 0 2px;
  text-align: left; }
  .input-group__field input {
    width: 100%; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__field--connected {
  margin-bottom: 0; }
  .input-group__field--connected input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 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 2px 2px 0; }


/*================ #Site Nav and Dropdowns ================*/
.site-nav {
  display: flex;
  flex-wrap: nowrap;
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  font-size: calc(var(--font-size-base) * 1.285px); /* 18px */
  line-height: 1.2; /* 25px */
  text-align: center;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  border-top: 1px solid #000; }

.nav-overlay {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 89px;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  z-index: 999;
  background-color: #FCECE0;
  border-top: 1px solid #000;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

  @media only screen and (max-width: 989px) {
    .nav-overlay {
      top: 80px; } }

/*.nav-overlay ul li {
  opacity: 0; }*/

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nav-overlay ul li {
   font-family: var(--font-stack-accent);
   font-style: var(--font-style-accent);
   font-weight: var(--font-weight-accent);
   font-size: 30px;
   line-height: 35px;
   letter-spacing: 0;
   text-transform: uppercase;
   /*animation: fadeInAndUp 1.5s 1;
   animation-fill-mode: forwards;*/
   pointer-events: auto; }
  @media only screen and (max-width: 989px) {
    .nav-overlay ul li { 
      font-size: 32px;
      line-height: 52px; } }

.nav-overlay ul li a {
  color: #000;
  transition: none;
}

/*.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(1n) {
  animation-delay: .1s
}

.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(2n) {
  animation-delay: .3s
}

.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(3n) {
  animation-delay: .6s
}

.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(4n) {
  animation-delay: .9s
}

.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(5n) {
  animation-delay: 1.2s
}

.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(6n) {
  animation-delay: 1.5s
}

.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(7n) {
  animation-delay: 1.8s
}

.nav-overlay.open ul.nav-overlay__main-linklist li:nth-child(8n) {
  animation-delay: 2.1s
}*/

a.toggle-nav {
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  text-transform: uppercase;
  font-size: 20px;
  color: #F15A29;
  cursor: pointer; }

a.toggle-nav:hover {
  color: #F15A29; }

@media only screen and (min-width: 990px) {
  a.toggle-nav {
    display: none;
  }
}


a.toggle-mobile-nav {
  padding-left: 60px;
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  text-transform: uppercase;
}

.mobile-nav-overlay {
  display: none;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.mobile-nav-overlay ul li { opacity: 0; }

.mobile-nav-overlay.open {
  position: fixed;
  display: block;
  top: 70px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F15A29;
  z-index: 999;
}

.mobile-nav-overlay.open ul {
  padding-left: 10px; }
  @media only screen and (max-width: 989px) {
   .mobile-nav-overlay.open ul { 
     padding-top: 90px; } }

.mobile-nav-overlay.open ul li {
  font-size: 75px;
  line-height: 80px;
  /*animation: fadeInAndUp .6s 1;
  animation-fill-mode: forwards;*/
  pointer-events: auto; }
  @media only screen and (max-width: 989px) {
  	.mobile-nav-overlay.open ul li {
      font-size: 50px;
      line-height: 55px;} }

.nav-overlay__content-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
 }
  @media only screen and (max-width: 989px) {
    .nav-overlay__content-container {
  } }

.nav-overlay__content-container ul {
  flex: 1 0 33.333%;
  margin-bottom: 0px;
}

.nav-overlay__ft-content-text p {
  color: #E3DCD1;
  font-size: 12px; }

.nav-overlay__ft-content-text a {
  color: #E3DCD1; }

.nav-overlay__ft-content-text a:hover {
  color: #fff; }

.sh-menu__featured-container {
  flex: 1 0 66.666%;
  display: flex; }
  @media only screen and (max-width: 640px) {
    .sh-menu__featured-container {
      display: none; } }

.nav-overlay__content-container ul li a:hover {
  color: #808080;
}

.nav-overlay__social-content {
  margin-top: 25px;
  margin-bottom: 30px;
}

.nav-overlay__social-content ul {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.nav-overlay__social-content ul li {
  margin: 0 3px;
}

.nav-overlay__social-content h5.accent {
  font-size: 16px;
}

.nav-overlay__social-content h4 {
  font-size: 25px;
}

.nav-overlay__secondary-menu ul {
  display: flex;
  justify-content: center;
}

.nav-overlay__secondary-menu ul li {
  margin: 0 15px;
}

.nav-overlay.open .nav-overlay__secondary-menu ul li {
  font-family:"FFMarkWebProBold";
  font-weight: normal;
  font-style: normal;
  font-size: calc(var(--font-size-base) * 1px);
  text-transform: unset;
}

.nav-overlay__social-content ul li svg {
  width: 32px;
  height: 32px;
}

/*================ Site Nav Links ================*/

.site-nav li {
  flex: 1 0 16.666%;
  border-right: 1px solid #000;
}

.site-nav li:nth-child(6),
.site-nav li:nth-child(12) {
  border-right: 0;
}

.site-nav__link {
  color: #000; }

a.site-nav__link:not([disabled]):hover {
  color: #ec6d26;
}

.site-nav__link.site-nav__link--active {
  color: #ec6d26;
}

.site-nav__link.active-link {
  position: relative; }

.site-nav__link.active-link:after {
  content: '';
  position: absolute;
  bottom: -1px;
  display: block;
  width: 100%; }

.site-nav__link.site-nav--active-dropdown {
  z-index: 2; }

.site-nav__link:focus .site-nav__label, .site-nav__link:not([disabled]):hover .site-nav__label {
}

.site-nav__link--button,
.site-header__logo-svg {
  z-index: 99; }

.site-nav__link--button svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-nav__link-button {
  color: var(--color-black);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 989px) {
  .site-nav__link--button {
    font-size: calc(var(--font-size-base) * 1px); } }

.site-nav__link--button:focus, .site-nav__link--button:hover {
  color: var(--color-black);
  outline: none; }

.tint-link .site-nav__link--button {
  color: var(--color-grey);
}

/*================ Dropdowns ================*/

.site-nav__dropdown {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  padding: 139px 15px 0;
  margin: -37px 0 0;
  text-align: left;
  background: var(--color-bg);
  left: 0;
  top: 31px;
  width: 100%; }

.site-nav__dropdown.page-width-narrow {
  padding-left: 9.375%;
  padding-right: 9.375%;
  max-width: 100%;
}

.site-nav__dropdown .site-nav__link {
  padding: 4px 85px 45px 0; }
.site-nav--active-dropdown .site-nav__dropdown {
  opacity: 1;
  visibility: visible; }
.site-nav__dropdown li {
  display: inline-block; }

.site-nav__dropdown--right:not(.site-nav__dropdown--centered) {
  right: 0;
  left: unset; }

.site-nav__dropdown--left:not(.site-nav__dropdown--centered) {
  left: 0; }

.site-nav__dropdown--centered {
  width: 100%;
  padding: 0;
  text-align: center; }

@media only screen and (min-width: 1201px) {
  .site-nav--has-dropdown:hover .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-out; }
  .site-nav--has-dropdown:hover button svg {
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg); }
}

.site-nav__dropdown ul {
  float: left;
  z-index: 12;
}

/*.site-nav__dropdown-tint {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 39px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 240, 240, 0.4);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.site-nav__dropdown-tint.show-tint {
  opacity: 1;
  visibility: visible; } */

/*================ Child list ================*/
.site-nav__childlist {
  display: inline-block;
  background: var(--color-bg);
  padding: 11px 17px;
  text-align: left; }

.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: -15px; }

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

.site-nav__child-link--parent {
  font-weight: var(--font-weight-body--bold);
  margin: 4px 0; }

body.prevent-scrolling {
  overflow: hidden;
  position: fixed;
  width: 100%; }

.page-width {
  padding-left: 30px;
  padding-right: 30px; }
  @media only screen and (max-width: 989px) {
    .page-width {
      padding-left: 20px;
      padding-right: 20px; } }

@media only screen and (min-width: 1025px) {
  .page-width-narrow {
    max-width: calc(80.5% + 40px);
    padding-left: 20px;
    padding-right: 20px; }
  
  .page-width-mid {
  	max-width: calc(89% + 40px);
    padding-left: 20px;
    padding-right: 20px; }
}

@media only screen and (min-width: 990px) and (max-width: 1024px) {
  .page-width-narrow,
  .page-width-mid {
  max-width: calc(100% - 80px);
  padding-left: 20px;
  padding-right: 20px; } }

@media only screen and (max-width: 989px) {
  .page-width,
  .page-width-narrow,
  .page-width-mid {
    padding-left: 20px;
    padding-right: 20px; } }

.page-container {
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  position: relative; }
  /*margin-top: -80px;*/ /* -76px*/

@media only screen and (max-width: 989px) {
.template-customers-account .page-container {
  overflow-x: hidden; } }

body.is-overflowing .page-container {
  margin-top: -118px;
}

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

.hr--section-top {
  padding-top: 30px; /* margin-top */
}

.hr--section-bottom {
  padding-bottom: 30px; /* margin-bottom */
  border-bottom: 0;
  border-top: 1px solid #BEB8AE;
}

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

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

.hr--page-border {
  border-bottom: 1px solid rgba(0,0,0,0.15); }

.border-top {
  border-top: 1px solid rgba(0, 0, 0, 1); }

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 1); }

@media only screen and (max-width: 989px) {
.border-top.article-container-first {
  border-top: 0; } }

.empty-page-content {
  padding: 95px 0 150px; }
  @media only screen and (max-width: 640px) {
    .empty-page-content {
      max-width: 270px;
      margin: 0 auto;
      padding-top: 40px;
      padding-bottom: 130px; } }

.empty-page-content h1 {
  max-width: 620px;
  margin: 0 auto 30px; }
  @media only screen and (max-width: 989px) {
    .empty-page-content h1 {
      margin-bottom: 30px; } }

.empty-page-content p {
  max-width: 260px;
  margin: 0 auto; }

.empty-page-content h1 span {
  font-style: italic; }

.template-cart .empty-page-content {
  border-top: 0;
  padding-top: 15px; }

.template-cart .empty-page-content h1 {
  margin-bottom: 120px; }

.empty-page-content .arrow-accent-cta {
  margin-top: 25px;
  display: block; }

.template-404 .empty-page-content {
  margin-top: 80px;
  padding: 130px 0 150px;
}


.template-404 .empty-page-content p {
  margin-bottom: 30px;
}

.template-404 .empty-page-content .btn span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-52%);
}

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

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

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

@-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 image-loader {
  0% {
    background-color: var(--global-color-image-loader-primary); }
  50% {
    background-color: var(--global-color-image-loader-primary); }
  100% {
    background-color: transparent; } } /* background-color: var(--global-color-image-loader-primary); */

@-moz-keyframes image-loader {
  0% {
    background-color: var(--global-color-image-loader-primary); }
  50% {
    background-color: var(--global-color-image-loader-primary); }
  100% {
    background-color: transparent; } }

@-ms-keyframes image-loader {
  0% {
    background-color: var(--global-color-image-loader-primary); }
  50% {
    background-color: var(--global-color-image-loader-primary); }
  100% {
    background-color: transparent; } }

@keyframes image-loader {
  0% {
    background-color: var(--global-color-image-loader-primary); }
  50% {
    background-color: var(--global-color-image-loader-primary); }
  100% {
    background-color: transparent; } }

.drawer {
  display: none;
  position: fixed;
  -webkit-overflow-scrolling: touch;
  z-index: 9; }
  .js-drawer-open-top .drawer {
    display: block; }

.drawer--show {
  overflow: hidden;
}

.drawer--top {
  width: 100%;
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }
  .js-drawer-open-top .drawer--top {
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    display: flex;
    max-height: 100vh; }

.drawer-page-content::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 7;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }

.js-drawer-open .drawer-page-content::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; }

.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: calc(((18) / (var(--font-size-base))) * 1em); }
  .drawer__close-button:active, .drawer__close-button:focus {
    background-color: rgba(0, 0, 0, 0.6); }

.grid--view-items {
  overflow: auto;
  margin-bottom: -35px; }
  .template-collection .grid--view-items {
    margin-bottom: 0;
  }

.template-collection .grid-view-item, 
.template-product .grid-view-item,
.template-cart .grid-view-item {
  height: 100%;
  margin: 0 auto;
  padding: 20px 20px 0 20px; }
  .custom__item .grid-view-item {
    margin-bottom: 0; }

.template-collection .grid-view-item:hover,
.template-product .grid-view-item:hover,
.template-cart .grid-view-item:hover {
  background-color: #EC6D26;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.grid-view-item__wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  font-size: 24px;
  text-transform: uppercase; }
  @media only screen and (max-width: 989px) {
    .grid-view-item__wrapper { 
      display: inherit; } }

.grid-view-item__title-price-wrapper {
  margin: 0 auto;
  text-align: center;
}

.grid-view-item__title-price-wrapper .price {
  justify-content: center;
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  font-size: 14px;
  text-transform: uppercase;
}

.grid-view-item__wrapper a.btn {
  max-width: 130px;
  padding: 8px 5px 7px;
}

.product-card:hover .grid-view-item__wrapper a.btn {
  background-color: #F15A29;
  color: #fff;
  border-color: #F15A29; }

.grid-view-item__title {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 32px;}

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

@media only screen (min-width: 641px) and (max-width: 1200px) {
  .template-collection .grid-view-item {
    padding: 0 30px; }
}

@media only screen and (max-width: 989px) {
  .template-collection .grid-view-item {
  margin: 0 auto; } }

.grid-view-item__link {
  display: block; }

.grid-view-item__vendor {
  margin-top: 4px;
  color: var(--color-body-text);
  font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em);
  text-transform: uppercase; }
  @media only screen and (max-width: 989px) {
    .grid-view-item__vendor {
      font-size: calc(((var(--font-size-base) - 3) / (var(--font-size-base))) * 1em); } }

.grid-view-item__image-wrapper {
  position: relative;
  width: 100%; }

.grid-view-item__image {
  display: block;
  margin: 0 auto;
  width: 100%;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .grid-view-item__image-wrapper .grid-view-item__image {
    position: absolute;
    border-radius: 25px;
    top: 0; }
  .grid-view-item__image.lazyload {
    opacity: 0; }

.grid-view-item__image-hover {
  opacity: 0;
}

.list-view-item {
  margin-bottom: 22px; }
  .list-view-item:last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 990px) {
    .list-view-item {
      border-bottom: 1px solid var(--color-border);
      padding-bottom: 22px; }
      .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;
  min-height: 44px; }
  @media only screen and (max-width: 989px) {
    .list-view-item__image-column {
      width: 85px; } }

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

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

.list-view-item__title {
  color: var(--color-text);
  min-width: 100px;
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  font-size: calc(((var(--font-size-base) + 2) / (var(--font-size-base))) * 1em);
  text-transform: uppercase; }
  @media only screen and (max-width: 989px) {
    .list-view-item__title {
      font-size: calc(((var(--font-size-base) - 1) / (var(--font-size-base))) * 1em); } }

.list-view-item__vendor {
  color: var(--color-body-text);
  font-size: 0.9em;
  font-weight: var(--font-weight-body);
  text-transform: uppercase;
  letter-spacing: 1px; }

.list-view-item__price-column {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 20%;
  font-size: calc(((var(--font-size-base) + 1) / (var(--font-size-base))) * 1em); }
  @media only screen and (max-width: 989px) {
    .list-view-item__price-column {
      font-size: calc(((var(--font-size-base) - 1) / (var(--font-size-base))) * 1em); } }
  .list-view-item__price-column .price {
    align-items: flex-end; }
    .list-view-item__price-column .price dd {
      margin: 0 0 0 0.5em; }
  .list-view-item__price-column .price__regular,
  .list-view-item__price-column .price__sale {
    flex-basis: 100%;
    justify-content: flex-end;
    margin-right: 0; }

/*============================================================================
  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: 990px) {
      .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: 990px) {
        .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: 990px) {
        .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; }



/*=============== Swiper ==============*/

.swiper-container {
  position: relative;
  overflow: hidden; }

.swiper-button-next,
.swiper-button-prev {
  width: 44px!important;
  height: 44px!important;
  margin-top: -22px!important;
  right: 20px !important; }

.swiper-button-prev {
  right: auto !important;
  left: 20px !important; }

.swiper-button-next::after {
  content: url('swiper-arrow-right.svg')!important; }

.swiper-button-prev::after {
  content: url('swiper-arrow-left.svg')!important; }  

.swiper-button__underlay {
  /* background: rgb(251,249,247);
  background: linear-gradient(-90deg, rgba(251,249,247,1) 0%, rgba(251,249,247,0.500437675070028) 50%, rgba(251,249,247,0) 100%); */
  position: absolute;
  right: 0;
  height: 100%;
  bottom: 0;
  width: 360px;
  z-index: 9; }
  @media only screen and (max-width: 640px) {
    .swiper-button__underlay {
      width: 135px; } }

.swiper-pagination-bullets {
  margin-bottom: 15px;
}

.swiper-pagination-bullet {
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
  width: 20px;
  height: 20px;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/*=============== Accordions ==============*/

.accordion-wrapper .accordion__container.border-bottom {
  border: 0; }

.accordion-wrapper .accordion-content a { }

.accordion-wrapper .accordion-content a:not([disabled]):hover { }

@media only screen and (max-width: 989px) {
  .accordion-wrapper .accordion-toggle {
    width: 100%;
    position: relative;
    cursor: pointer;
    padding: 20px 0; }

  .accordion-wrapper .accordion-toggle .accordion-closed {
    display: block; }

  .accordion-wrapper .accordion-toggle .accordion-closed:after {
    content: url('accordion-plus.svg'); }

  .accordion-wrapper .accordion-toggle .accordion-open:after {
    content: url('accordion-minus.svg'); }

  .accordion-wrapper .accordion-toggle .accordion-open {
    display: none; }

  .accordion-wrapper .accordion-toggle.border-top {
    border-color: rgba(0,0,0,0.15); }

  .accordion-wrapper .accordion-toggle span {
    pointer-events: none; }


  .accordion-wrapper .accordion__container.border-bottom {
    border-bottom: 1px solid rgba(0,0,0,0.15); }

  .accordion-wrapper .accordion__container.active .accordion-toggle .accordion-closed {
    display: none; }

  .accordion-wrapper .accordion__container.active .accordion-toggle .accordion-open {
    display: block; }

  .accordion-wrapper .accordion-toggle .accordion-open,
  .accordion-wrapper .accordion-toggle .accordion-closed {
    float: right; }

  .accordion-wrapper .accordion-content {
    position: relative;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    max-height: 0;
    width: 100%;
    opacity: 0;
    height: auto;
    max-height: 0;
    overflow: hidden; }

  .accordion-wrapper .accordion__container.active .accordion-toggle span::before {
    transform: rotate(0deg); }

  .accordion-wrapper .accordion__container.active .accordion-content {
    opacity: 1;
    max-height: 500px;
    transition: all 0.2s ease-in; } }

  .template-product .accordion-wrapper .accordion__container.active .accordion-content {
    padding-bottom: 15px; }

/*=============== Accordion Tables ==============*/

.accordion-table table td {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  border: none;
  padding: 15px 0; }

.accordion-table table tr {
  border-top: 1px solid #BEB8AE; }

.accordion-table table tr:last-child {
  border-bottom: 1px solid #BEB8AE; }

.accordion-table table td.accordion-table-toggle {
  color: #000;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
  font-style: normal; }

.accordion-table table td.accordion-table-toggle.active {
  opacity: 1;
}

.accordion-table table td:nth-child(odd) {
  position: relative; }

.accordion-table table td:nth-child(odd):before {
  content: url('accordion-plus.svg');
  height: 8px;
  width: 8px;
  position: absolute;
  right: 0;
  margin-left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.accordion-table table td:nth-child(odd).active:before {
  position: absolute;
  content: url('accordion-minus.svg');
  width: 8px;
  height: 8px; }

.accordion-table table td:nth-child(even):before {
  padding-right: em($gutter-site / 4);
  margin-left: em(-18);
  margin-left: em(-18); }

.accordion-table table td.accordion-table-panel {
  border: none;
  max-width: 90%;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out; }

.accordion-table table td.accordion-table-panel ul {
  padding-left: 0; }

.accordion-table table td.accordion-table-panel ul li {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.accordion-table table td.accordion-table-panel h3 {
  margin-top: 15px;
  margin-bottom: 10px; }

.accordion-table table td.accordion-table-panel p:last-child {
  margin: 0 0 19.44444px; }

/*=============== Breadcrumbs ==============*/
.breadcrumb {
  text-transform: uppercase; }

.breadcrumb a:hover {
 color: #ec6d26; }

.breadcrumb .breadcrumb-dot {
  font-size: 0;
  letter-spacing: 0;
  display: inline-block;
  margin: 0 5px 0 3px; }

.breadcrumb .breadcrumb-dot svg {
  position: relative;
  top: -2px;
}

/*================ Index sections ================*/
.index-section {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media only screen and (min-width: 990px) {
    .index-section {
      padding-top: 55px;
      padding-bottom: 55px; } }
  .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: -70px; }

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

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

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

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

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

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

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

.placeholder-svg {
  display: block;
  fill: var(--color-blankstate);
  background-color: var(--color-blankstate-background);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid var(--color-blankstate-border); }

.placeholder-noblocks {
  padding: 40px;
  text-align: center; }

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .placeholder-background .icon {
    border: 0; }

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

.plyr.plyr--full-ui.plyr--video {
  color: var(--color-text);
  background-color: transparent;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */ }
  .plyr.plyr--full-ui.plyr--video .plyr__video-wrapper {
    background-color: transparent; }
  .plyr.plyr--full-ui.plyr--video .plyr__poster {
    display: none;
    background-color: var(--color-video-bg); }
  .plyr.plyr--full-ui.plyr--video:fullscreen .plyr__video-wrapper .plyr.plyr--full-ui.plyr--video:fullscreen .plyr__poster {
    background-color: #000; }
  .plyr.plyr--full-ui.plyr--video:-webkit-full-screen .plyr__video-wrapper,
  .plyr.plyr--full-ui.plyr--video:-webkit-full-screen .plyr__poster {
    background-color: #000; }
  .plyr.plyr--full-ui.plyr--video:-moz-full-screen .plyr__video-wrapper,
  .plyr.plyr--full-ui.plyr--video:-moz-full-screen .plyr__poster {
    background-color: #000; }
  .plyr.plyr--full-ui.plyr--video:-ms-fullscreen .plyr__video-wrapper,
  .plyr.plyr--full-ui.plyr--video:-ms-fullscreen .plyr__poster {
    background-color: #000; }
  .plyr.plyr--full-ui.plyr--video .plyr--fullscreen-fallback .plyr__video-wrapper,
  .plyr.plyr--full-ui.plyr--video .plyr--fullscreen-fallback .plyr__poster {
    background-color: #000; }
  .plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid {
    background-color: var(--color-bg);
    border-color: rgba(var(--color-text-rgb), 0.05); }
    .plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid.plyr__tab-focus, .plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid:hover {
      color: rgba(var(--color-text-rgb), 0.55); }
  .plyr.plyr--full-ui.plyr--video .plyr__controls {
    background-color: var(--color-bg);
    border-color: rgba(var(--color-text-rgb), 0.05); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']::-moz-range-thumb {
    box-shadow: 2px 0 0 0 var(--color-bg); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']::-ms-thumb {
    box-shadow: 2px 0 0 0 var(--color-bg); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']::-webkit-slider-thumb {
    box-shadow: 2px 0 0 0 var(--color-bg); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']::-webkit-slider-runnable-track {
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(var(--color-text-rgb), 0.6) var(--value, 0)); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']::-moz-range-track {
    background-color: rgba(var(--color-text-rgb), 0.6); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']::-ms-fill-upper {
    background-color: rgba(var(--color-text-rgb), 0.6); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range'].plyr__tab-focus::-webkit-slider-runnable-track {
    box-shadow: 0 0 0 4px rgba(var(--color-text-rgb), 0.25); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range'].plyr__tab-focus::-moz-range-track {
    box-shadow: 0 0 0 4px rgba(var(--color-text-rgb), 0.25); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range'].plyr__tab-focus::-ms-track {
    box-shadow: 0 0 0 4px rgba(var(--color-text-rgb), 0.25); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']:active::-moz-range-thumb {
    box-shadow: 0 0 0 3px rgba(var(--color-text-rgb), 0.25); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']:active::-ms-thumb {
    box-shadow: 0 0 0 3px rgba(var(--color-text-rgb), 0.25); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress input[type='range']:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(var(--color-text-rgb), 0.25); }
  .plyr.plyr--full-ui.plyr--video .plyr__progress .plyr__tooltip {
    background-color: var(--color-text);
    color: var(--color-bg); }
    .plyr.plyr--full-ui.plyr--video .plyr__progress .plyr__tooltip::before {
      border-top-color: var(--color-text); }
  .plyr.plyr--full-ui.plyr--video.plyr--loading .plyr__progress__buffer {
    background-image: linear-gradient(-45deg, rgba(var(--color-text-rgb), 0.6) 25%, transparent 25%, transparent 50%, rgba(var(--color-text-rgb), 0.6) 50%, rgba(var(--color-text-rgb), 0.6) 75%, transparent 75%, transparent); }
  .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range'] {
    color: var(--color-bg); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']::-moz-range-thumb {
      box-shadow: 2px 0 0 0 var(--color-text); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']::-ms-thumb {
      box-shadow: 2px 0 0 0 var(--color-text); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']::-webkit-slider-thumb {
      box-shadow: 2px 0 0 0 var(--color-text); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']::-webkit-slider-runnable-track {
      background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(var(--color-bg-rgb), 0.6) var(--value, 0)); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']::-moz-range-track, .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']::-ms-fill-upper {
      background-color: rgba(var(--color-bg-rgb), 0.6); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range'].plyr__tab-focus::-webkit-slider-runnable-track {
      box-shadow: 0 0 0 4px rgba(var(--color-bg-rgb), 0.25); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range'].plyr__tab-focus::-moz-range-track {
      box-shadow: 0 0 0 4px rgba(var(--color-bg-rgb), 0.25); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range'].plyr__tab-focus::-ms-track {
      box-shadow: 0 0 0 4px rgba(var(--color-bg-rgb), 0.25); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']:active::-moz-range-thumb {
      box-shadow: 0 0 0 3px rgba(var(--color-bg-rgb), 0.25); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']:active::-ms-thumb {
      box-shadow: 0 0 0 3px rgba(var(--color-bg-rgb), 0.25); }
    .plyr.plyr--full-ui.plyr--video .plyr__volume input[type='range']:active::-webkit-slider-thumb {
      box-shadow: 0 0 0 3px rgba(var(--color-bg-rgb), 0.25); }

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: var(--color-bg);
  border-color: rgba(var(--color-text-rgb), 0.05); }

.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: var(--color-text); }

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
  color: rgba(var(--color-text-rgb), 0.55); }

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus {
  color: rgba(var(--color-text-rgb), 0.55);
  background: rgba(var(--color-text-rgb), 0.05); }

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-color: rgba(var(--color-text-rgb), 0.05); }

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  background: var(--color-bg);
  border-color: rgba(var(--color-text-rgb), 0.05); }
  .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
    color: rgba(var(--color-text-rgb), 0.55); }


/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.password-page {
  display: table;
  height: 100%;
  width: 100%;
  color: var(--color-body-text);
  background-color: var(--color-body);
  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: var(--color-text);
  font-weight: var(--font-weight-header);
  max-width: 100%; }

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

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

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

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

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

.password-message {
  max-width: 500px;
  margin: 82.5px auto 27.5px; }

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

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

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


/*================ Pages (Press, Retailers etc) ================*/
.page-contact {
  background-color: #EDEBE7; }

.page-contact h1.h5 { margin-bottom: 110px; }
  @media only screen and (min-width: 641px) {
  .page-contact h1.h5 { display: none; } }

.page-contact .form-vertical {
  max-width: 575px;
  margin: 50px 0 30px; }

  @media only screen and (max-width: 640px) {
  .page-contact .form-vertical {
    margin-top: 85px; } }

.page-contact .section-header,
.page-retailers .section-header,
.page-press .section-header {
  padding-top: 95px; }

.page-contact .section-header .rte,
.page-retailers .section-header .rte,
.page-press .section-header .rte {
  max-width: 620px; }

.page-retailers .form-vertical,
.page-press .form-vertical {
  max-width: 575px;
  margin: 115px 0 30px; }

.form-vertical .form-half-row .grid__item:last-child input,
.form-vertical .form-half-row .grid__item:last-child select,
.page-contact .form-vertical .form-half-row .grid__item:last-child input,
.page-retailers .form-vertical .form-half-row .grid__item:last-child input,
.page-press .form-vertical .form-half-row .grid__item:last-child input {
  border-left: 1px solid var(--color-border-form);
  padding-left: 10px; }

  @media only screen and (max-width: 640px) {
    .form-vertical .form-half-row .grid__item:last-child input,
    .form-vertical .form-half-row .grid__item:last-child select,
    .page-contact .form-vertical .form-half-row .grid__item:last-child input,
    .page-retailers .form-vertical .form-half-row .grid__item:last-child input,
    .page-press .form-vertical .form-half-row .grid__item:last-child input {
      border-left: none;
      padding-left: 0; } }

.page-contact .form-vertical .btn,
.page-retailers .form-vertical .btn,
.page-press .form-vertical .btn {
  margin-top: 20px; }

/*================ General Page ================*/
.general-page {
  padding-bottom: 100px; }

.general-page .section-header h1 {
  margin: 0 0 60px; }
  
.general-page .rte h6 {
  margin-top: 50px; }

.general-page .rte ul {
  list-style: none;
  margin-left: 0; }

.general-page .rte ol {
  margin-left: 20px; }

.general-page .rte ul li:before {
  content: '\2013';
  padding-right: 5px; }

@media only screen and (max-width: 640px) {
  .general-page {
    padding-bottom: 20px; } 

  .general-page .section-header h1 {
    margin: 30px 0 0; }
}

/*================ Product ================*/

/*=== Product Badges ===*/
.badge-tags {
  display: flex;
}

.product-badge {
  display: inline-block;
  background-color: #E9DDD4;
  border: 1px solid transparent;
  border-radius: 3px;
  color: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  margin-right: 10px;
  margin-bottom: 8px; }

.product-badge.below-shipping {
  margin-top: 15px; }

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

.product-single__container {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 50px; }

.product-single__container .pattern-top-cream {
  background-size: 15.12%;
  position: relative;
  top: -0.5px; }

@media only screen and (min-width: 990px) {
  .product-single__container {
    max-width: 485px;
    margin: 45px auto 55px; } }

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .product-single__container .pattern-top-cream {
    height: 30px; } }

@media only screen and (max-width: 480px) {
  .product-single__container .pattern-top-cream {
    height: 18px; } }


@media only screen and (max-width: 989px) {
  .product-single__container {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px; }
  .product-single__container .page-width {
    padding-left: 30px;
    padding-right: 30px; } }

.product-single__meta {
  margin-top: 30px; }

.product-single__meta h3 {
  margin-bottom: 0; }

.product-single__meta .breadcrumb {
  margin-bottom: 60px; }
  @media only screen and (max-width: 989px) {
    .product-single__meta .breadcrumb {
      margin-bottom: 50px; } }

p.product-single__short-desc {
  font-size: calc(var(--font-size-base) * 1.43px); /* 20px */
  line-height: 1.25; /* 25px */ }
  @media only screen and (max-width: 989px) {
  p.product-single__short-desc {
   font-size: calc(var(--font-size-base) * 1.145px); /* 16px */
   line-height: 1.25; /* 20px */
   margin-bottom: 20px;  } }

.product-single__vendor {
  font-size: 15px; }

@media only screen and (max-width: 989px) {
  .product-single__meta {
    margin-top: 30px; }

  .product-single__title {
    margin-top: 0;
    margin-bottom: 10px; }
}

.product-single__title span {
  display: block; }

@media only screen and (max-width: 989px) {
  .product-single__notes {
     } }

.product-single__notes {
  border-top: 1px solid rgba(0, 0, 0, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  text-transform: uppercase;
  display: flex; }

.product-single__notes li {
  border-right: 1px solid #000;
  padding: 15px 20px; }

.product-single__notes li:first-child {
  padding-left: 0; }

.product-single__notes li:last-child {
  border-right: 0; }

.product-single__notes li span {
  color: #EC6D26; }

.product-single__icons {
  display: flex;
  align-items: center;
  margin-left: -15px; }

.product-form__gradient {
  background: linear-gradient(0deg, rgba(242,242,242,1), rgba(242,242,242,0) 100%);
  height: 10px; }

.template-product .product__price {
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  font-size: calc(((var(--font-h1-desktop)) / (var(--font-size-base))) * 0.834em);
  line-height: 0.834;
  text-transform: uppercase;
  letter-spacing: 0;
}

.template-product .product__price .price-item {
  color: #f15a29;
  text-transform: uppercase;
}

.cto-available-store__msg {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 50px; }
  .cto-available-store__msg span:first-child {
    line-height: 0; 
    margin-right: 10px; }
  @media only screen and (max-width: 989px) {
    .cto-available-store__msg { 
      margin-top: 8px;
      margin-bottom: 35px; } }

.backorder-msg {
  display: flex;
  align-items: center;
  margin-top: 15px; }
  .backorder-msg span:first-child {
    line-height: 0; 
    margin-right: 10px; }
  @media only screen and (max-width: 989px) {
    .backorder-msg { 
      margin-top: 8px; } }      

.sale-exclusion-msg {
  text-align: center;
  padding: 15px; 
  border-bottom: 1px solid var(--color-border); }

/*
.product-form__gradient {
  display: block;
  clear: both;
  width: 100%;
  height: 60px; }

.product-form__gradient:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(232,232,232,1) 0%, rgba(232,232,232,0.5) 50%, rgba(232,232,232,0) 100%);
  transition: height 0.3s ease; }


.product-form__sticky-container-inner {
  padding-top: 20px; }

.product-form__sticky-container-inner .price-variant-wrapper {
  display: flex;
  margin-bottom: 20px; }

@media only screen and (max-width: 989px) {
  .product-form__sticky-container-inner .price-variant-wrapper {
    justify-content: center; } }

.product-form__sticky-container-inner .single-option-selector {
  color: var(--color-grey);
  border: 0;
  padding: 0;
  min-height: auto;
  margin-left: 35px;
}
*/

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

.product__policies {
  margin: 0.4rem 0 1rem 0;
  font-size: calc(((var(--font-size-base) - 1) / (var(--font-size-base))) * 1em); }

/*================ Gift Card Template Specifics ================*/
.template-product.product-gift-card .product-single__meta {
  margin-top: 240px; }

@media only screen and (max-width: 989px) {
  .template-product.product-gift-card .product-single__meta {
    margin-top: 20px; } }

.template-product.product-gift-card .product-form__item .gift-card-message {
  margin-top: 20px;
  font-size: calc(var(--font-size-base) * 0.9px); /* 18px */
  line-height: 1.39; /* 25px */ }

.template-product.product-gift-card .variant-swatches {
  margin-top: 60px; }

.template-product.product-gift-card .single-option-selector-label {
  padding-bottom: 14px; }

.template-product.product-gift-card .product__price {
  margin-bottom: 20px; }

.product-gift-card__large-text {
  font-style: normal;
  font-size: calc(var(--font-size-base) * 1.65px); /* 23px */
  line-height: 1.35; /* 31px */
  letter-spacing: 0.015em;
  margin: 60px 0 90px; }
  @media only screen and (max-width: 989px) {
    .product-gift-card__large-text {
      font-size: calc(var(--font-size-base) * 1.5px); /* 21px */
      line-height: 1.39; /* 29px */
      margin: 40px 0 50px; } }

/* Product Ships To */
.ships-to-wrapper {
  background-color: #F4F2F0;
  border-radius: 3px;
  margin: 60px auto 90px;
  padding: 10px 13px; }
  @media only screen and (max-width: 640px) {
    .ships-to-wrapper {
      margin: 50px auto 30px; } }

.ships-to-wrapper .ships-to-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px; }

.ships-to-wrapper .ships-to-title {
  margin: 0; }

.ships-to-link,
.lead-time-cta {
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.ships-to-link:hover,
.lead-time-cta:hover {
  color: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1); }

.ships-to-wrapper ul {display: flex;}

.ships-to-wrapper li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 25px !important; }

.ships-to-wrapper li span.ships-to-icon {
  width: 26px;
  height: 26px;
  margin-right: 8px; }

.ships-to-wrapper li span.ships_to_United-States:before {
  content: url('//cdn.shopify.com/s/files/1/0233/8069/t/71/assets/flag-united-states-of-america.svg?v=1998245100576045275'); }

.ships-to-wrapper li span.ships_to_Canada:before {
  content: url('//cdn.shopify.com/s/files/1/0233/8069/t/71/assets/flag-canada.svg?v=5977907249811167618'); }

.ships-to-wrapper.with-lead-time {
  display: flex; }

.ships-to-wrapper.with-lead-time ul {
  flex-direction: column;
  align-items: flex-start; }

.ships-to-wrapper.with-lead-time .ships-to-link {
  position: absolute;
  bottom: 0;
  left: 0; }

.ships-to-wrapper.with-lead-time .ships-to,
.ships-to-wrapper.with-lead-time .lead-time-msg {
  position: relative;
  flex: 1 0 50%; }

.ships-to-wrapper.with-lead-time .lead-time-msg {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 15px; }

/*================ Product Accordion ================*/
.product-single__description.accordion-table table {
  margin-bottom: 0; }

.product-single__description.accordion-table table td {
  padding-right: 20px; }

.product-single__description.accordion-table table td.accordion-table-toggle {
  padding-right: 20px; }

.product-single__description.accordion-table table td:nth-child(odd):before {
  right: 0; }

.product-single__description.accordion-table table td.accordion-table-panel {
  padding: 0 20px 0 0; }

/*================ Add to cart form ================*/
.selector-wrapper__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }

.selector-wrapper__header .selector-wrapper_name {
  margin-bottom: 23px; }

.selector-wrapper__header .selector-wrapper_name span {
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  font-size: calc(var(--font-size-base) * 1.13px);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase; }

.variant-swatches {
  display: flex;
  flex-wrap: wrap; }

.variant-swatches .variant-swatch {
  position: relative;
  margin-bottom: 23px;
  margin-right: 20px;
  height: 25px; }

.template-product .variant-swatch .single-option-selector-product-template {
  display: none; }

/* Start Recharge Subscription Widget Styling */ 

.rc-container {
  margin-bottom: -30px !important5;
  margin-top: 40px;}

.rc-template__button-group .rc-radio-group__options {
  flex-direction: column; }

.rc-template__button-group .rc-radio.rc-option--active {
  box-shadow: none !important; }

.rc-template__button-group .rc-radio {
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  padding: 7px !important; 
  width: 100% !important;
  max-width: 100% !important;
  color: #000;
  margin-bottom: 10px; }
  
.rc-template__button-group .rc-radio .rc-option__price {
  display: inline !important;
  font-weight: normal !important;
  font-size: inherit !important;
  margin-top: 0 !important; }

.rc-selling-plans__label {
  display: none; }

.rc-template__button-group .rc-radio-group__options+.rc-selling-plans {
  margin-top: 0 !important; }

.rc_widget__option__plans__dropdown, 
.rc-selling-plans__dropdown {
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  font-size: 14px;
  line-height: 1.1; /* 20px */
  letter-spacing: 0;
  text-transform: uppercase;
  background-color: #ec6d26;
  width: 100%;
  text-align: center; 
  min-height: 33px !important; }

/* End Recharge Subscription Widget Styling */ 

.variant-swatch__tooltip {
  position: absolute;
  z-index: 8;
  top: -135px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color-body);
  width: 120px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15)); }

.variant-swatch__tooltip .variant-swatch__tooltip-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 45px 0;
  display: block;
  border-radius: 3px 3px 0 0; }

.variant-swatch__tooltip .variant-swatch__tooltip-label {
  white-space: nowrap;
  padding: 5px;
  display: block; }

.variant-swatch:hover .variant-swatch__tooltip {
  visibility: visible;
  opacity: 1; }

.variant-swatches input {
  display: none; }

.variant-swatches .variant-swatch label {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  border-radius: 25px; }

.single-option-selector-label {
  border-radius: 0;
  display: flex;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #fceee0; }

.variant-swatch-alt .single-option-selector-label {
  border-left: 0;
  border: 1px solid #000;
}

.variant-swatch-alt:first-child .single-option-selector-label {
  border-left: 1px solid #000;
}

.variant-swatch-alt .single-option-selector-label {
  padding: 12px 16px 11px;
}

.variant-swatch-alt input:checked + label.single-option-selector-label {
  position: relative;
  border-radius: 0; }

.variant-swatches.with-color input:checked + label.single-option-selector-label {
  border-color: #000;
}

.single-option-selector-label span:first-child {
  margin-right: 0; }

.variant-swatch-alt {
  display: flex;
  flex-wrap: wrap; }

.variant-swatch-alt .variant-swatch { 
  margin-right: 0;
  margin-left: -1px;
  margin-top: -1px;
  border: 1px solid rgba(0,0,0,1); }

.variant-swatch-alt .variant-swatch label.single-option-selector-label {
  border: 0;
}

.variant-swatch-alt input:checked + label.single-option-selector-label {
  padding: 12px 16px 11px;
  background-color: #000;
  color: #FCEEE0;
  border-color: #000; }

.product-form {
  width: auto; }

.product-form__controls-group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px; }

@media only screen and (max-width: 989px) {
  .product-form__controls-group {
    margin-top: 25px; }
}

.product-form__controls-group--submit {
  margin-top: 0;
  margin-left: 20px; }
  @media only screen and (max-width: 989px) {
   .product-form__controls-group--submit {
     margin-left: 0; } }

.product-form__item {
  flex-grow: 0;
  flex-basis: 100%;
  margin-bottom: 10px;
  padding: 0; }
  @media only screen and (min-width: 990px) {
    .product-form__item {
      padding: 0; }
      .product-single--large-image .product-form__item {
        flex-basis: 100%; } }

.product-gift-card .product-form__item {
  flex-basis: 100%; }

.product-form__item.color-product-form__item {
  margin-bottom: 7px; }


.product-form__item--submit {
  position: relative;
  display: flex;
  -webkit-flex: 1 1 100%;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  margin-bottom: 0; }

.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: 990px) {
    .product-single--small-media .product-form__item--payment-button,
    .product-single--full-media .product-form__item--payment-button {
      display: inline-flex;
      -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--variant-sold-out .shopify-payment-button {
  display: none; }

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

.quantity-wrapper {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  justify-content: center; 
  align-items: center; }
  .quantity-wrapper input {
    font-family: var(--font-stack-accent);
    font-weight: var(--font-weight-accent);
    font-style: var(--font-style-accent);
    font-size: 18px;
    text-transform: uppercase;
    min-height: 32px;
    min-width: 35px;
    max-width: 45px;
  	background-color: transparent;
  	text-align: center;
  	border: 1px solid #000; }
  .quantity-wrapper span {
    position: relative;
    line-height: 26px;
    /* padding: 8px 7px; */ }

  .quantity-wrapper span:last-child {
    top: auto;
    bottom: 0; }    

.js--quantity {
  cursor: pointer; }

.js--quantity svg {
  pointer-events: none; }

.template-product .quantity-wrapper {
  justify-content: flex-start;
}

.product-form_inventory-msg div {
  margin-bottom: 15px; }  

.product-form__error-message-wrapper {
  display: flex;
  flex-basis: 100%;
  padding: 0.5rem 0;
  margin: 0 calc((5 / (var(--font-size-base))) * 1em) 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 {
  font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em);
  line-height: 1.2;
  color: #EC6D26; }

.terms-msg {
  font-family: var(--font-stack-body);
  font-weight: var(--font-weight-body);
  font-size: 16px;
  line-height: 20px;
  padding: 0;
  margin-bottom: 15px; }
  .terms-msg input {
    display: none; }
  .terms-msg .control-indicator {
    position: relative;
    display: inline-block;
    top: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 0;
    margin-right: 5px; }
    .terms-msg .control-indicator:after {
      position: relative;
      top: -1px;
      left: 1px;
      content: url('checkbox-tick.svg');
      width: 8px;
      height: auto;
      opacity: 0; }

label.terms-msg { text-transform: initial; }

.control--checkbox span {
  color: red; }

.control--checkbox input:checked ~ .control-indicator {
  border-color: var(--color-black); }
.control--checkbox input:checked ~ span {
  color: var(--color-black); }
.control--checkbox input:checked ~ .control-indicator:after {
  opacity: 1; }

.product__price-btn-container {
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media only screen and (max-width: 989px) {
    .product__price-btn-container {
      flex-direction: column;
      align-items: flex-start; } }

@media only screen and (max-width: 989px) {
  .product__price-btn-container .product__price {
    margin-bottom: 20px; } }


.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;
  min-height: 38px; }
  .product-single--small-media .product-form__cart-submit, .product-single--small-media .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-single--small-media .shopify-payment-button__button--unbranded,
  .product-single--full-media .product-form__cart-submit,
  .product-single--full-media .shopify-payment-button .shopify-payment-button__button--unbranded,
  .shopify-payment-button .product-single--full-media .shopify-payment-button__button--unbranded {
    -webkit-flex: 50%;
    -moz-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    margin-right: 10px; }

.product-form__cart-submit {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #fff;
  border: none;
  position: absolute;
  top: 48%;
  left: 48%;
  -webkit-transform: translate(-48%, -48%);
  -moz-transform: translate(-48%, -48%);
  -ms-transform: translate(-48%, -48%);
  transform: translate(-48%, -48%); }

.product-form__cart-submit:hover,
.product-form__cart-submit.btn:not([disabled]):hover {
  background-color: transparent;
  color: #F15A29;
  border-color: #F15A29;
}

.btn.product-form__cart-submit::after,
.btn.product-form__cart-submit::before {
  width: 0;
}

.btn.product-form__cart-submit:hover::after,
.btn.product-form__cart-submit:hover::before {
  width: 0; }

.product-single--small-media .shopify-payment-button,
.product-single--full-media .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: var(--color-btn-primary-focus) !important; }

.shopify-payment-button .shopify-payment-button__button--branded {
  border-radius: 2px;
  overflow: hidden; }

.shopify-payment-button .shopify-payment-button__more-options {
  margin: 16px 0 10px;
  font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em);
  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: 990px) {
  .product-form__cart-submit--small {
    max-width: 300px; } }

.product-single__description-wrapper {
  border-top: 1px solid #000;
  margin-top: 30px;
  padding: 30px 0 15px; }

.product-single__description {
  margin-top: 30px;
  margin-bottom: 100px; }
  @media only screen and (max-width: 989px) {
    .product-single__description {
    margin-bottom: 0; } }

.product-single__description.rte p {  }

.product-single__description.rte h3 {
  font-size: calc(var(--font-size-base) * 0.6px); /* 12px */
  line-height: 1.17; /* 14px */ }

.product-single__description.rte ul {
  margin-left: 0; }

.product-single__description.rte li {
  list-style: none;
  display: flex;
  margin-bottom: 10px;
}

.product-single__description.rte li:before {
  content: url('Arrow.svg');
  margin-right: 8px;
}

.product__quantity-error .icon {
  margin-right: 1rem; }

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

.product-single__thumbnail-image {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  padding: 2px; }

.product-single__thumbnail-badge {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 6px;
  top: 6px;
  pointer-events: none; }
  @media only screen and (min-width: 990px) {
    .product-single__thumbnail-badge {
      width: 26px;
      height: 26px; } }
  .product-single__thumbnail-badge .icon {
    fill: var(--color-bg);
    width: 100%;
    height: 100%;
    vertical-align: baseline; }
  .product-single__thumbnail-badge .icon-3d-badge-full-color-outline,
  .product-single__thumbnail-badge .icon-video-badge-full-color-outline {
    stroke: rgba(var(--color-text-rgb), 0.05); }
  .product-single__thumbnail-badge .icon-3d-badge-full-color-element,
  .product-single__thumbnail-badge .icon-video-badge-full-color-element {
    fill: var(--color-text); }

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

.zoomImg {
  background-color: var(--color-body); }

@media only screen and (min-width: 990px) {
  .product-single__media-group {
    position: sticky;
    -webkit-position: sticky;
    top: 154px;
    height: calc(100vh - 154px);
    overflow: hidden; }

  .product-single__media-group  .product-single__media {
    padding: 0!important;
    height: 100vh;
  }

  .product-single__media-group img {
    object-fit: cover;
    object-position: center;
    height: calc(100vh - 154px); }

  .product-single__media-group .swiper-button-next,
  .product-single__media-group .swiper-button-prev {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

  .product-single__media-group:hover .swiper-button-next,
  .product-single__media-group:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible; }  
}

.product-single__media-wrapper {
  margin: 0 auto;
  width: 100%;
  float: left; }

.product-single__media {
  margin: 0 auto;
  min-height: 1px;
  width: 100%;
  height: 100%;
  position: relative; }
  .product-single__media iframe,
  .product-single__media model-viewer,
  .product-single__media .shopify-model-viewer-ui,
  .product-single__media img,
  .product-single__media > video,
  .product-single__media .plyr,
  .product-single__media .media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%; }
  .product-single__media .media-video {
    object-fit: cover;
    object-position: center;
    min-height: 100vh; }
  .product-single__media iframe,
  .product-single__media .media-video,
  .product-single__media model-viewer,
  .product-single__media .shopify-model-viewer-ui,
  .product-single__media .media-item,
  .product-single__media .plyr,
  .product-single__media .plyr__video-wrapper {
    height: 100%; }

.product-single__media--video {
  background-color: var(--color-video-bg); }

.product-single__view-in-space {
  background-color: rgba(var(--color-text-rgb), 0.08);
  border: none;
  width: 100%;
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  font-size: calc(((var(--font-size-base)) / (var(--font-size-base))) * 1em);
  color: var(--color-text); }
  .product-single__view-in-space[data-shopify-xr-hidden] {
    visibility: hidden; }
    @media only screen and (min-width: 990px) {
      .product-single__view-in-space[data-shopify-xr-hidden] {
        display: none; } }
  .product-single__view-in-space:hover .product-single__view-in-space-text, .product-single__view-in-space:focus .product-single__view-in-space-text {
    border-bottom-color: var(--color-text); }
  .product-single__view-in-space svg.icon {
    height: calc((25 / (var(--font-size-base))) * 1em);
    width: calc((25 / (var(--font-size-base))) * 1em);
    margin-top: -3px;
    margin-right: 2.43px;
    fill: transparent; }
    .product-single__view-in-space svg.icon .icon-3d-badge-full-color-outline {
      stroke: none; }
    .product-single__view-in-space svg.icon .icon-3d-badge-full-color-element {
      fill: var(--color-text);
      opacity: 1; }

.product-single__view-in-space-text {
  border-bottom: 1px solid transparent; }

@media only screen and (min-width: 990px) {
.product-media__carousel .slick-track {
  height: 100vh; } }

.product-media__carousel-nav {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 999; }

.product-media__carousel-nav div {
  margin-right: 50px;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 115px;
  white-space: nowrap; }

.product-media__carousel-nav span {
  padding-left: 20px; }

.product-media__carousel-nav div.slider-arrow {
  cursor: pointer; }

@media only screen and (max-width: 989px) {
  .product-single__media-group {
    position: relative; }
  .thumbnails-wrapper {
    position: relative;
    top: 10px;
    text-align: center;
    margin: 0 2px 30px 2px; }
  .thumbnails-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 10px;
    padding-bottom: 10px; }
    .thumbnails-slider__btn .icon {
      height: 14px;
      width: 14px; }
  .thumbnails-slider__prev {
    left: -15px; }
  .thumbnails-slider__next {
    right: -15px; }
  .product-single__thumbnail {
    margin: 0 auto; } }

.product-single__thumbnails {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-left: -9px;
  margin-right: -9px; }
  @media only screen and (max-width: 989px) {
    .product-single__thumbnails {
      margin-top: 0;
      justify-content: center; }
      .slider-active .product-single__thumbnails {
        display: block;
        margin: 0 auto;
        max-width: 75%;
        overflow: hidden; } }

@media only screen and (max-width: 989px) {
  .product-single__thumbnails-slider-track {
    position: relative;
    left: 0;
    top: 0;
    display: block; }
    .product-single__thumbnails-slider-track:before, .product-single__thumbnails-slider-track:after {
      content: "";
      display: table; }
    .product-single__thumbnails-slider-track:after {
      clear: both; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-slider-track {
    display: flex;
    flex-wrap: wrap; } }

.product-single__thumbnails-item {
  flex: 0 0 25%;
  padding-left: 5px; }
  @media only screen and (max-width: 989px) {
    .product-single__thumbnails-item.slick-slide {
      padding-bottom: 10px;
      padding-left: 2.5px;
      padding-right: 2.5px;
      vertical-align: middle; }
      .thumbnails-slider--active .product-single__thumbnails-item.slick-slide {
        padding-top: 5px;
        padding-bottom: 5px; } }
  @media only screen and (min-width: 990px) {
    .product-single__thumbnails-item {
      padding-left: 5px;
      padding-right: 5px; } }

@media only screen and (max-width: 989px) {
  .product-single__thumbnails-item-slide {
    display: block;
    float: left;
    height: 100%;
    min-height: 1px;
    padding: 5px 2.5px; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--small {
    flex: 0 0 50%; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--small {
    flex: 0 0 33.33333%; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--medium {
    flex: 0 0 33.33333%; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--medium {
    flex: 0 0 25%; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--large {
    flex: 0 0 25%; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--large {
    flex: 0 0 20%; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--full {
    flex: 0 0 20%; } }

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--full {
    flex: 0 0 12.5%; } }

/*================ Template | Collections ================*/

.template-collection .grid--view-items {
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 989px) {
    .template-collection .grid--view-items {
      margin-bottom: 0; } }


/*.template-collection .collection-header {
  display: flex;
  align-self: center; }
  @media only screen and (max-width: 989px) {
  .template-collection .collection-header {
    justify-content: center;
    text-align: center;
  }
  .template-collection .section-header {
    margin-top: 60px;
    margin-bottom: 55px;
  }
}*/

.template-collection .grid,
.template-product .product-recommendations__inner .grid,
.template-cart #shopify-section-cart-collection .grid {
  margin-left: 0;
}

.template-product .product-recommendations__inner .grid--view-items {
  display: flex;
  flex-wrap: wrap;
}

.template-collection .grid__item,
.template-product .product-recommendations__inner .grid__item,
.template-cart #shopify-section-cart-collection .grid__item {
  padding-left: 0;
}

.template-collection .grid__item.collection-header {
  flex: 1 0 50%; }
  @media only screen and (max-width: 989px) {
    .template-collection .grid__item.collection-header {
      flex: 1 0 100%; }
  }

#AjaxinateContainer {
  width: 100%; }

.template-collection #AjaxinateContainer {
  display: flex;
  flex-wrap: wrap; }

.template-collection .grid__item--collection-template {
  flex: 0 0 25%; }
  @media only screen and (max-width: 989px) {
  .template-collection .grid__item--collection-template {
    flex: 0 0 50%; } }

.collection-header {
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-hero {
  position: relative;
  overflow: hidden; }
@media only screen and (max-width: 989px) {
  .collection-hero { margin-top: 40px; } }

.collection-header__meta,
.search-header__meta {
  padding-top: 19px; }

@media only screen and (min-width: 641px) {
  .collection-header__meta,
  .search-header__meta {
    display: flex;
    justify-content: space-between; }

  .collection-header__meta-counts-container-mob,
  .search-header__meta-counts-container-mob {
    display: none; }

  .collection-header__meta-page-count,
  .search-header__meta-page-count {
    padding-left: 100px; }
}

@media only screen and (max-width: 640px) {
  .collection-header__meta-counts-container,
  .search-header__meta-counts-container {
    display: none;
  }

  .collection-header__meta-counts-container-mob .collection-header__meta-counts,
  .search-header__meta-counts-container-mob .search-header__meta-counts {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-bottom: 20px; }

  .search-header__meta-counts-container-mob .search-header__meta-counts {
    padding-bottom: 10px; }

  .collection-header__meta-breadcrumbs,
  .search-header__meta-breadcrumbs {
    text-align: center; }
}

.collection-header__subcategories-container {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.15); }

.collection-header__subcategories {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-left: 20px;
  padding-top: 30px!important;
  padding-bottom: 20px!important; }

.collection-header__subcategories .swiper-slide {
  width: 126px;
}

.collection-header__subcategories-container .swiper-button-prev {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }

.collection-header__subcategories-container:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible; }

.collection-header__subcategories-container .icon-circle-arrow-right {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%); }

.collection-header__subcategories .collection-header__item {
  text-align: center;
}

.collection-header__subcategories .collection-header__item a {
  display: flex;
  flex-direction: column;
  align-items: center; }

.collection-header__subcategories .collection-header__item img {
  max-height: 49px; }

.collection-header__subcategories .collection-header__item span {
  white-space: nowrap;
  margin-top: 15px; }

.collection-title__container {
  margin: 0;
 }
  @media only screen and (max-width: 989px) {
    .collection-title__container {
      margin-bottom: 40px; }
  }

.collection-header__linklist-container {
  padding-top: 35px;
}

.collection-header__linklist-container ul {
  display: flex;
  justify-content: flex-start;
}

@media only screen and (max-width: 989px) {
  .collection-header__linklist-container ul {
    flex-wrap: wrap;
  }
}

.collection-header__linklist-container ul li {
  margin-right: 15px; }
  @media only screen and (max-width: 989px) {
    .collection-header__linklist-container ul li {
      margin-right: 5px; } }

@media only screen and (max-width: 989px) {
  .collection-header__linklist-container ul li {
    margin-bottom: 10px;
  }
}

.collection-header__linklist-container ul li a.btn {
  padding: 8px 15px 7px;
}

.collection-header__linklist-container ul li a.btn:hover {
  background-color: #f15a29;
  color: #fff;
  border-color: #f15a29;
}

@media only screen and (max-width: 989px) {
  .collection-header__linklist-container ul li a.btn {
    min-height: 27px;
    padding: 4px 15px;
    font-size: 12px;
  }
}

.vendor-collection-description,
.collection-description {
  max-width: 260px;
  margin: 22px auto 30px;
  color: #FCEEE0; }

.vendor-collection-description {
  max-width: 180px; }  

.collection-hero__image {
  max-width: 240px;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1; }

.collection-hero__image.ratio-container:after {
  padding-bottom: 55%; }

.collection-hero__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-image-overlay);
  opacity: var(--opacity-image-overlay); }

.collection-hero__title {
  color: #FCEEE0; 
  margin-top: 35px;
  width: 100%;
  margin-bottom: 15px;}
  @media only screen and (min-width: 990px) {
    .collection-hero__title {
      font-size: calc(((var(--font-size-header) + 7) / (var(--font-size-base))) * 1em);
      margin-bottom: 35px; } }


@media only screen and (max-width: 640px) {
  .collection-layout-container--large .small--one-half {
      width: 100%;
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
  padding-bottom: 30px; }


@media only screen and (min-width: 990px) {
 .cart-header a { margin-right: 40px; }
}

.cart-header h1,
.cart-header a {
  color: #EC6D26; }

.cart-header__title {
  margin-bottom: 0; }
  @media only screen and (min-width: 990px) {
    .cart-header__title {
      margin-left: 40px;
    }
  }

/*================ Cart page ================*/
.cart__backorder-prompt {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 15px 50px 15px 15px;
  z-index: 999;
  background-color: #FBF9F7;
  box-shadow: 0px 3px 6px #0000000D; }

.cart__backorder-prompt svg {
  position: absolute;
  top: 15px;
  right: 15px; }

.cart__backorder-prompt .accent {
  margin-bottom: 80px; }

.cart__backorder-prompt.hide-modal {
  opacity: 0;
  visibility: hidden; }

form.cart {
  margin-bottom: 60px;
  color: var(--color-body-text);
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000; }
  @media only screen and (max-width: 989px) {
    form.cart {
      flex-direction: column;
      margin-bottom: 60px; }

    form.cart .right-column {
      margin-top: 60px; }
  }
  form.cart .left-column,
  form.cart .right-column {
    width: 40%;
    padding-left: 15px; }
    @media only screen and (min-width: 990px) and (max-width: 1024px) {
      form.cart .left-column,
      form.cart .right-column {
        width: 45%; } }
    @media only screen and (min-width: 641px) and (max-width: 989px) {
      form.cart .left-column,
      form.cart .right-column {
        width: 80%;
        margin: 60px auto 0;
        padding-left: 0; }
    }
    @media only screen and (max-width: 640px) {
      form.cart .left-column,
      form.cart .right-column {
        width: 100%; }
    }
  form.cart .left-column h2 {
    margin-bottom: 15px; }
  form.cart .cart-block {
    margin-bottom: 70px; }
  form.cart table {
    margin-bottom: 35px; }
  form.cart th,
  form.cart td {
    border: 0; }
  form.cart td {
    padding: 20px 22px; }
	@media only screen and (max-width: 989px) {
      form.cart td {
        padding: 20px 22px 0; } }
  form.cart th {
    font-family: var(--font-stack-body);
    font-weight: var(--font-weight-body);
    font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em);
    padding: 10px 22px;
    font-size: 16px; }
  form.cart table tbody tr:first-child {
  padding-top: 40px;
  }
  @media only screen and (max-width: 989px) {
    form.cart table thead {
      display: none; }
    form.cart td:nth-child(3),
    form.cart th:nth-child(2) {
      padding-left: 0;
      padding-right: 0; } 
  }

    form.cart th:first-child,
    form.cart td:first-child { 
      padding-left: 50px; }
    form.cart td:first-child.cart__removed-product,
    form.cart th:first-child.cart__removed-product {
      padding: 1.2rem 50px;
      border-bottom: 1px solid #000; }
    form.cart dd {
    margin-left: 0; }
  

@media only screen and (max-width: 989px) {
  form.cart table tbody tr:first-child {
    padding-top: 0; }
  
  form.cart th:first-child,
  form.cart td:first-child { 
    padding-left: 20px; }
  
  form.cart td:first-child.cart__removed-product,
  form.cart th:first-child.cart__removed-product {
    padding: 1.2rem 20px; }
}

@media only screen and (max-width: 989px) {
  .mobile-table__overflow {
    position: relative;
    max-height: 345px;
    padding-bottom: 10%;
    overflow-y: hidden;
    margin-bottom: 40px;
    -webkit-transition: max-height 1s ease;
    -moz-transition: max-height 1s ease;
    -ms-transition: max-height 1s ease;
    transition: max-height 1s ease; }
    .mobile-table__overflow .mobile-table__overflow-overlay {
      -webkit-transition: background 1s ease;
      -moz-transition: background 1s ease;
      -ms-transition: background 1s ease;
      transition: background 1s ease;
      background: rgb(251,249,247);
      background: linear-gradient(0deg, rgba(251,249,247,1) 0%, rgba(251,249,247,0.500437675070028) 50%, rgba(251,249,247,0) 100%);
      position: absolute;
      height: 200px;
      bottom: 0;
      width: 100%;
      z-index: 99; }
      .mobile-table__overflow .mobile-table__overflow-overlay a.btn {
      position: absolute;
      bottom: 0; } 

  /*.mobile-table__overflow.expanded {
    -webkit-transition: max-height 1s ease;
    -moz-transition: max-height 1s ease;
    -ms-transition: max-height 1s ease;
    transition: max-height 1s ease;
    max-height: 3000px; }*/

  .mobile-table__overflow.expanded .mobile-table__overflow-overlay {
     background: transparent;
     height: 40px; } }  

.cart__meta {
  width: 50%; }
  @media only screen and (min-width: 990px) {
    .cart__meta {
      width: 45%; } }
  @media only screen and (max-width: 989px) {
    .cart__meta {
      width: 100%; } }

.cart__product-information {
  display: flex; }

.cart__image-wrapper {
  padding-right: 25px;
  flex: 100px 0 0; }

.product-details {
  padding: 15px 0;
  /* font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em); */ }
  .product-details.hide + .cart__remove {
    margin-top: 0; }

.product-details__item {
  display: inline-block;
  margin-bottom: 0; }

.product-details__item--variant-option:last-child .product-details__divider {
  display: none;
}

.shipping-details {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 12px;
  border-radius: 3px;
  font-size: calc(var(--font-size-base) * 0.94px); /* 13px */
  line-height: 1.375; /* 18px */ }  

.cart__qty.quantity-wrapper {
  margin: 0; }
  @media only screen and (max-width: 989px) {
    .cart__qty.quantity-wrapper {
    justify-content: flex-start; } }


/*.cart__qty {
  display: flex;
  justify-content: center;
  font-size: calc(var(--font-size-base) * 0.6px); /* 12px 
  line-height: 1.17; /* 14px  }

.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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cart__qty input:focus {
  border: 0 !important; }

.cart__qty .js--quantity {
  display: flex;
  justify-content: center;
  cursor: pointer; }

.cart__qty .js--quantity svg {
  pointer-events: none; }

.cart__qty .js--quantity[data-increment="true"] svg {
  margin: 7px 8px; }

.cart__qty .js--quantity[data-increment="false"] svg {
  margin: 10px; }

.cart__qty-input {
  font-size: calc(var(--font-size-base) * 0.6px); /* 12px 
  line-height: 1.17; /* 14px 
  text-align: center;
  width: 60px;
  padding: 0;
  border-bottom: none;
  -webkit-appearance: none; }*/

.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: 990px) {
    .cart__qty-error-message-wrapper--desktop {
      display: block; } }

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

.cart__qty-error-message,
.cart__error-message {
  vertical-align: middle; }

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

.cart__row {
  position: relative;
 }
  .cart__row p {
    margin-bottom: 0; }
    .cart__row p + p {
      margin-top: 10px; }
  .cart__row td {
    vertical-align: top; }

@media only screen and (max-width: 989px) {
  .cart__row {
    display: flex;
  	flex-direction: column; } }

.cart__row--heading {
  color: var(--color-text);
  border-bottom: 1px solid #000; }

.cart-subtotal__price {
  float: right;
  text-align: right;
  padding-left: 27.5px; }
  @media only screen and (min-width: 750px) {
    .cart-subtotal__price {
      padding-left: 55px;
      min-width: 150px;
      display: inline-block; } }

.cart__footer {
  display: flex;
  justify-content: flex-end;
  padding: 40px 20px;
  border-top: 1px solid #000; }
  @media only screen and (min-width: 990px) {
    .cart__footer {
      padding-right: 110px; } }

.cart__total {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 990px) {
  .cart__total {
    max-width: 340px;
  }
}


.cart__total-left {
  display: flex;
  flex-direction: column;
  flex: 1 0 60%;
}

.cart__total-right {
  flex: 1 0 40%;
}

.cart__total-full {
  flex: 1 0 100%;
}

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

.cart__footer-message {
  padding: 12px 40px 12px 12px;
  border-radius: 3px;
  border: 1px solid var(--color-border);
  margin-top: 25px; }

.cart__footer-message-title {
  border-bottom: 1px solid var(--color-border);
  display: inline-block; }

.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: 750px) {
    .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; } }

.cart__submit {
  margin-bottom: 0;
  min-height: 44px;
  width: 100%;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  color: #fff; }

.cart__submit[disabled] {
 cursor: no-drop;
}

.cart__submit svg {
  width: 100%;
  height: auto;
}

.cart__submit:hover { 
  color: #fff;
}

.cart__submit span {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-52%,-52%);
}

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

.cart-subtotal,
.cart__shipping,
.cart__discount {
  margin-bottom: 14px; }

.cart__shipping {
  max-width: 200px;
}

.cart-total__title { 
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  font-size: 18px;
  text-transform: uppercase;
}

.cart__total .cart-total__cost {
  position: relative;
  right: -4px;
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  font-size: 50px;
  color: #ec6d26; }

.cart-note h2,
.cart-customer h2,
.cart-delivery-method h2 {
  margin-bottom: 25px; }

.cart-customer .rte {
  margin-bottom: 20px; }

.cart-customer .btn {
  margin-top: 7px; }

.cart-customer .btn--secondary {
  margin-top: 15px; }

.cart-customer .or-separator {
  margin: 50px auto 7px; }

.cart-customer .guest-login__message {
  margin-top: 50px; }

.cart-delivery-method__shipping-info-text p {
  display: inline; }

.cart-delivery-method .open-drawer {
  margin-left: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 1); }

@media only screen and (max-width: 989px) {
  .cart-customer {
    padding-top: 60px; } }

.cart-note__inner {
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 5px; }

.cart-note__label,
.cart-note__input {
  display: block; }
  @media only screen and (max-width: 749px) {
    .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: 749px) {
    .cart-note__input {
      margin-bottom: 40px; } }

.cart__product-title {
  border-bottom: none;
  color: var(--color-body-text); }

  .cart__product-vendor.h4 { margin-bottom: 0; }

  .cart__product-title:not([disabled]):hover, 
  .cart__product-title:focus {
    color: var(--color-body-text); }

.cart__image {
  display: block;
  margin: 0;
  border: 1px solid var(--color-border); }

.cart__remove {
  position: absolute;
  right: 0;
  bottom: 15px;
  margin-top: calc((8 / (var(--font-size-base))) * 1em); }

.cart__remove a {
  padding-bottom: 0;
  opacity: 0.6; }

.cart__remove a:hover {
  opacity: 1; }

.template-cart .cart__remove {
  position: relative;
  padding-top: 15px; 
  bottom: 0;}

.template-cart .cart__remove a {
  transition: none;
  color: #000;
  opacity: 1; }

.template-cart .cart__remove a:hover {
  color: #000;
  font-family:'FFMarkWebProBold';
  opacity: 1;}

@media only screen and (max-width: 989px) {
 .template-cart .cart__remove {
   text-align: left; } }

.cart__price {
  padding-right: 0; }
  .cart__price dl {
    margin: 0; }

.cart__quantity-td {
  margin-bottom: 20px; }

.cart__quantity-td .mobile-cart-qty-price {
  display: flex; 
  align-items: center;
  justify-content: center; }
  
.cart__quantity-td .mobile-cart-qty-price .cart__qty,
.cart__quantity-td .mobile-cart-qty-price .cart__final-price {
  flex: 1 0 50%; }

.cart__quantity-td .mobile-cart-qty-price .cart__final-price {
  text-align: right;
  margin: 0; }

.cart__final-price {
  position: relative;
  width: 15%; }
  @media only screen and (max-width: 989px) {
    .cart__final-price {
      position: absolute;
      right: 22px;
      width: 50%;
      bottom: 0;
      text-align: right; } }

#is-a-gift {
  margin-bottom: 25px; }

.gift-wrapping-msg {
  font-weight: 400;
  text-transform: initial;
  letter-spacing: 0.015em; 
  margin: 0; } 
  .gift-wrapping-msg input {
    display: none; }
  .gift-wrapping-msg .control-indicator {
    position: relative;
    display: inline-block; 
    top: 2px;
    width: 17px;
    height: 17px; 
    border: 1px solid var(--color-border); 
    margin-right: 5px; }
    .gift-wrapping-msg .control-indicator:after {
      position: relative;
      top: -1px;
      left: 3px;
      content: url('checkbox-tick.svg');
      width: 8px;
      height: auto;
      opacity: 0; }

.gift-wrapping-msg.control--checkbox input:checked ~ .control-indicator {
  border-color: var(--color-black); }
.gift-wrapping-msg.control--checkbox input:checked ~ .control-indicator:after {
  opacity: 1; }

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

.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: 1rem; }
  .additional-checkout-buttons input[type="image"] {
    padding: 0;
    border: 0;
    background: transparent; }

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

.customer-account__container {
  margin-top: 40px; }

.template-customers-login .customer-account__container .page-width-narrow,
.template-customers-register .customer-account__container .page-width-narrow,
.template-page.page-tours .customer-account__container .page-width-narrow,
.template-page.page-brand-hub .customer-account__container .page-width-narrow,
.template-customers-activate_account .customer-account__container .page-width-narrow,
.template-customers-reset_password .customer-account__container .page-width-narrow  {
  max-width: calc(52.5% + 40px);
}

@media only screen and (max-width: 989px) {
  .template-customers-login .customer-account__container .page-width-narrow,
  .template-page.page-tours .customer-account__container .page-width-narrow,
  .template-page.page-brand-hub .customer-account__container .page-width-narrow,
  .template-customers-register .customer-account__container .page-width-narrow,
  .template-customers-activate_account .customer-account__container .page-width-narrow,
  .template-customers-reset_password .customer-account__container .page-width-narrow  {
     max-width: calc(84% + 40px);
  } 
}

@media only screen and (min-width: 991px) {
  .customer-account__container .myaccount__order-table,
  .customer-account__container .myaccount__order-history,
  .customer-account__container .myaccount__addresses-new {
    border-left: 1px solid rgba(0, 0, 0, 0.15); } }

.customer-account__col-inner {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 50px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000; }

.customer-account__col-inner h1 {
  padding-top: 80px; }
  @media only screen and (max-width: 989px) {
    .customer-account__col-inner h1 {
      padding-top: 44px;
      padding-bottom: 42px; } }

.customer-account__col-inner p,
.customer-account__col-inner ul {
  max-width: 460px; }

.template-customers-register .customer__btn-container {
  margin-top: 30px; }

.customer__btn-container {
  position: relative; }

.customer__btn-container input {
  z-index: 9; }

.customer__btn-container svg {
  position: absolute;
  top: 48%;
  left: 48%;
  -webkit-transform: translate(-48%, -48%);
  -moz-transform: translate(-48%, -48%);
  -ms-transform: translate(-48%, -48%);
  transform: translate(-48%, -48%); }

.address-container {
  display: inline-block; }

.address-container .address h4 {
  margin-bottom: 30px; }

.address-container .address .list--inline {
  margin-top: 30px;
  margin-bottom: 60px; }

.address-container .address .list--inline li {
  margin-right: 10px; }

.other-addresses-address {
  padding-top: 45px; }

.customer-account__container .customer-login-form,
.customer-account__container .customer-register-form,
.customer-account__container .customer-reset-pw-form,
.customer-account__container .customer-activate-acc-form,
.customer-account__container .customer-order-table-container,
.customer-account__container .add-address-form {
  max-width: 460px;
  margin: 0 auto 95px; }

.customer-account__container .customer-order-table-container,
.customer-account__container .customer-order-history-container,
.customer-account__container .add-address-form {
  padding-top: 102px; }
  @media only screen and (max-width: 989px) {
    .customer-account__container .customer-order-table-container,
    .customer-account__container .customer-order-history-container,
    .customer-account__container .add-address-form {
      margin-left: 0;
      padding-top: 20px;
    }
  }

.customer-account__container .customer-order-history-container {
  padding-bottom: 60px;
}

.myaccount {
  display: flex; }
  @media only screen and (max-width: 989px) {
    .myaccount {
      flex-direction: column; } }

  @media only screen and (max-width: 640px) {
    .myaccount {
      flex-wrap: wrap; } }

@media only screen and (max-width: 989px) {
  .customer-account__container .customer-order-history-container {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 60px; }
}

.myaccount__order-history h2.h6,
.myaccount__order-table h2.h6,
.myaccount__order-details-container h3.h6,
.myaccount__order-shipping-details h3.h6,
.myaccount__account-details h2.h6,
.myaccount__addresses-list h1.h6 {
  padding-top: 10px; }

.myaccount__order-history h2.h6 {
  margin-bottom: 25px; }

.myaccount__order-history table tr th,
.myaccount__order-history table tr td {
  padding: 25px 0 20px;
  border-left: 0;
  border-right: 0;
  width: 15%;
  vertical-align: top; }

@media only screen and (min-width: 990px) {
  .customer-account__container .customer-order-history-container p {
    padding-left: 20px;
  }
  
  .customer-account__container .customer-order-history-container h2.accent-large {
    padding-left: 15px; } }

/* Order History Accordion */
.myaccount__order-history .order-history-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px; }

.myaccount__order-history .order-history-accordion .accordion-toggle {
  width: 100%;
  position: relative;
  cursor: pointer;
  padding: 20px 0; }
  @media only screen and (min-width: 990px) {
    .myaccount__order-history .order-history-accordion .accordion-toggle {
      padding-left: 15px; } }

.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-closed {
  display: block; }

.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-closed:after {
  content: url('accordion-plus.svg'); }

.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-open:after {
  content: url('accordion-minus.svg'); }

@media only screen and (min-width: 990px) {
.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-closed:after,
.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-open:after {
  padding-right: 5px; } }

.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-open {
  display: none; }

.myaccount__order-history .order-history-accordion .accordion-toggle.border-top {
  border-color: rgba(0,0,0,0.15); }

.myaccount__order-history .order-history-accordion .accordion-toggle span {
  pointer-events: none; }

.myaccount__order-history .order-history-accordion .accordion__container.border-bottom {
  border-bottom: 1px solid rgba(0,0,0,0.15); }

.myaccount__order-history .order-history-accordion .accordion__container.active .accordion-toggle .accordion-closed {
  display: none; }

.myaccount__order-history .order-history-accordion .accordion__container.active .accordion-toggle .accordion-open {
  display: block; }

.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-open,
.myaccount__order-history .order-history-accordion .accordion-toggle .accordion-closed {
  float: right; }

.myaccount__order-history .order-history-accordion .accordion-content {
  position: relative;
  max-width: 475px;
  margin: 0 auto;
  padding: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  height: auto;
  max-height: 0;
  overflow: hidden; }
  @media only screen and (min-width: 990px) {
    .myaccount__order-history .order-history-accordion .accordion-content {
      padding-left: 15px; } }

.myaccount__order-history .order-history-accordion .accordion-content .order-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgb(252, 238, 224);
  background: linear-gradient(0deg, rgba(252,238,224,1) 0%, rgba(252,238,224,1) 30%, rgba(252,238,224,0) 100%);
  width: 100%;
  z-index: 9;
  padding-bottom: 65px; }
  @media only screen and (max-width: 989px) {
    .myaccount__order-history .order-history-accordion .accordion-content .order-cta-overlay {
    padding-bottom: 40px; } }

  @media only screen and (min-width: 990px) {
  .myaccount__order-history .order-history-accordion .accordion-content .order-cta-overlay {
    padding-left: 15px; } }

.myaccount__order-history .order-history-accordion .accordion-content .order-cta-overlay a {
  position: relative; }

.myaccount__order-history .order-history-accordion .accordion-content .order-cta-overlay a span {
  position: relative;
  z-index: 2;
  color: #fff; }

.myaccount__order-history .order-history-accordion .accordion-content .order-cta-overlay a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; }

.myaccount__order-history .order-history-accordion .accordion__container.active .accordion-toggle span::before{
  transform: rotate(0deg); }

.myaccount__order-history .order-history-accordion .accordion__container.active .accordion-content {
  opacity: 1;
  max-height: 325px; }

@media only screen and (min-width: 1201px) {
.myaccount__order-history table tr td[data-label="Order Status"] {
  width: 16.5%; } }

.myaccount__order-history table tr th span,
.myaccount__order-history table tr td span {
  display: block;
  padding-bottom: 2px; }

@media only screen and (max-width: 1200px) {
  .myaccount__order-history table tr th,
  .myaccount__order-history table tr td {
    width: 100%;
    padding: 10px 0; }

  .myaccount__order-history table tr th[data-label]:before,
  .myaccount__order-history table tr td[data-label]:before {
    text-transform: uppercase; }
}

.myaccount__addresses-new .account-return-desktop,
.myaccount__addresses-new .account-return-mob {
  padding-top: 10px;
  float: right; }
  @media only screen and (max-width: 640px) {
    .myaccount__addresses-new .account-return-desktop,
    .myaccount__addresses-new .account-return-mob {
      float: left; }
    .myaccount__addresses-new .account-return-desktop {
      display: none; } }

.myaccount__addresses-new .account-return-desktop a.btn,
.myaccount__addresses-new .account-return-mob a.btn {
  font-size:calc(var(--font-size-base) * 1px);
  line-height: 1.35; }

.myaccount__addresses-new .account-return-desktop a,
.myaccount__addresses-new .account-return-mob a {
  text-transform: uppercase;
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent); }

.myaccount__addresses-new .account-return-desktop a:hover,
.myaccount__addresses-new .account-return-mob a:hover {
  color: #ec6d26;
}

.myaccount__order-details-container h3.h6,
.myaccount__order-shipping-details h3.h6 {
  margin-bottom: 25px; }

.myaccount__order-details-container p.accent,
.myaccount__order-shipping-details p.accent {
  padding-top: 35px; }

.customer-account__container .form-half-row .grid__item:last-child input {
  border-left: 1px solid var(--color-border-form);
  padding-left: 10px; }

@media only screen and (max-width: 989px) {
  .customer-account__container .add-address-form .form-half-row .grid__item:last-child input,
  .customer-account__container .add-address-form .form-half-row .grid__item:last-child select {
    border-left: none;
    padding-left: 0; }
}

@media only screen and (max-width: 640px) {
  .customer-account__container .form-half-row .grid__item:last-child input {
    border-left: none;
    padding-left: 0; }
}

.template-customers-login .customer-account__container .customer-login-form,
.template-page.page-customer-redirect .customer-account__container .customer-login-form {
  padding-top: 102px; }

@media only screen and (max-width: 989px) {
  .template-customers-login .customer-account__container .customer-login-form,
  .template-page.page-customer-redirect .customer-account__container .customer-login-form {
    padding-top: 20px; }

  .template-customers-reset_password .customer-account__container .customer-reset-pw-form,
  .template-customers-login .customer-account__container .customer-login-form,
  .template-page.page-customer-redirect .customer-account__container .customer-login-form {
    padding-top: 40px;
    padding-left: 20px; 
    padding-right: 20px; }

  .template-customers-login .customer-account__container .customer-register-form,
  .template-page.page-customer-redirect .customer-account__container .customer-login-form {
    margin-bottom: 30px;
  	padding-left: 20px; 
    padding-right: 20px; }
  
  
  .template-customers-register .customer-account__container .customer-register-form {
  	padding-left: 20px; 
    padding-right: 20px; }
  
}

#HideRecoverPasswordLink {
  display: inline; }

.guest-login {
  max-width: 460px;
  margin: 0 auto;
  text-align: center; }
  @media only screen and (max-width: 989px) {
    .guest-login {
    margin-left: 0; } }

.guest-login__message {
  margin-bottom: 23px; }

.template-customers-login .customer-account__container .customer-login-form h1,
.template-page.page-customer-redirect .customer-account__container .customer-login-form h1 {
  padding: 0; }

.template-customers-login .customer-account__container .customer-register-form ul,
.template-page.page-customer-redirect .customer-account__container .customer-register-form ul {
  margin-bottom: 50px; }

.customer-account__container .customer-login-form .login-form-field-wrapper {
  position: relative; }

.customer-account__container .customer-login-form .login-form-field-wrapper p {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 20px; }

.customer-login-form .btn--tertiary,
.customer-login-form .btn--tertiary:hover {
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
}

@media only screen and (max-width: 989px) {
  .customer-account__container .customer-register-form h2 {
    display: none; }

  .template-customers-login .customer-account__container .customer-register-form h2,
  .template-page.page-customer-redirect .customer-account__container .customer-register-form h2 {
    display: block; }
}

.customer-account__container .customer-register-form .register__terms-message {
  display: block;
  margin-top: 60px;
  margin-bottom: 20px; }

.customer-account__container .customer-register-form .register__terms-message a {
  border-bottom: 1px solid #000;
  padding-bottom: 1px; }

.customer-account__container .customer-register-form .register__terms-message a:hover {
  border-color: var(--color-text-focus); }

.customer-account__container .customer-register-form .login-message {
  margin-top: 20px; }
  @media only screen and (max-width: 989px) {
    .customer-account__container .customer-register-form .login-message {
      margin-bottom: 20px; } }

.customer-account__container .customer-register-form .login-message a {
  border-bottom: 1px solid #000;
  padding-bottom: 1px;}

.customer-account__container .customer-register-form .login-message a:hover {
  border-color: var(--color-text-focus);
  color: #000;
  font-family:'FFMarkWebProBold'; }

.customer-account__container .edit-address-form form {
  position: fixed;
  max-height: 90%;
  overflow-y: scroll;
  background-color: var(--color-body);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 50px 20px;
  border: 0;
  border-radius: 50px; 
  z-index: 14; }
  @media only screen and (max-width: 640px) {
  .customer-account__container .edit-address-form form {
    width: calc(100% - 30px); } }


.customer-account__container .edit-address-form form h2 {
  text-align: center; }

.customer-account__container .edit-address-form form .input-btn {
  padding: 20px; }

.customer-account__container .edit-address-form form .btn--tertiary {
  display: block;
  margin: 0 auto; }

.customer-account__container .edit-address-form-underlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%; }

.customer-account__container .add-address-form {
  padding-top: 80px;
  padding-bottom: 60px; }
  @media only screen and (min-width: 641px) {
    .customer-account__container .add-address-form {
      padding-left: 15px; } }

.customer-account__container .edit-address-form label,
.customer-account__container .add-address-form label {
  font-size: calc(var(--font-size-base) * 0.65px); /* 13px */
  line-height: 1.25; /* 14px */
  top: -2px; }

.customer-account__container .customer-login-form .btn,
.customer-account__container .customer-register-form .btn,
.customer-account__container .customer-reset-pw-form .btn,
.customer-account__container .customer-activate-acc-form .btn,
.customer-account__container .add-address-form .btn {
  width: 100%;
  display: block;
  margin-top: 10px; }

.customer-account__container .add-address-form .btn {
  margin-top: 35px; }

.customer-account__container .add-address-form .btn.address-new-toggle {
  width: auto; }

.customer-account__container .edit-address-form .btn--secondary.address-edit-toggle,
.customer-account__container .add-address-form .btn--secondary.address-new-toggle {
  padding-top: 20px; }

.customer-account__container .customer-login-form .btn,
.customer-account__container .customer-reset-pw-form .btn,
.customer-account__container .customer-activate-acc-form .btn {
  margin-top: 20px;
  margin-bottom: 20px; }

.btn.activate-account-btn__cancel {
  color: #fff;
}

.address-new-toggle {
  max-width: 270px;
  margin-top: 90px;
  margin-bottom: 15px; }

#AddressNewForm {
  clear: both; }

.myaccount__order-table .return-link,
.myaccount__order-history .account-logout {
  float: right;
  padding-top: 15px;
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  text-transform: uppercase; }

.myaccount__order-table .return-link a:not([disabled]):hover,
.myaccount__order-table .return-link a:hover,
.myaccount__order-history .account-logout a:hover {
  color: #ec6d26; }

@media only screen and (max-width: 989px) {
  .account-logout,
  .return-link {
    display: none; }
}

.myaccount__order-table h2.h6,
.myaccount__order-table p.order-date {
  margin-bottom: 25px; }

.myaccount__order-table .order-table th dt,
.myaccount__order-table .order-table th dd,
.myaccount__order-table .order-table td dt,
.myaccount__order-table .order-table td dd {
  margin: 0; }

.myaccount__account-details,
.myaccount__order-history,
.myaccount__addresses-list,
.myaccount__order-table,
.myaccount__order-address-wrapper {
  -webkit-flex: 1 0 100%;
  -moz-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%; }

.myaccount__account-details,
.myaccount__order-address-wrapper,
.myaccount__addresses-list {
  padding-bottom: 100px; }

@media only screen and (min-width: 990px) {
  .myaccount__account-details,
  .myaccount__order-history,
  .myaccount__addresses-list,
  .myaccount__order-table,
  .myaccount__order-address-wrapper {
    -webkit-flex: 1 0 50%;
    -moz-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%; } }

.myaccount__account-details h1,
.myaccount__order-address-wrapper h1,
.myaccount__addresses-list h1 {
  padding-top: 80px;
  padding-bottom: 60px; }
  @media only screen and (max-width: 989px) {
    .myaccount__account-details h1,
    .myaccount__order-address-wrapper h1,
    .myaccount__addresses-list h1,
    .customer-account__col-inner h1 {
      padding-top: 40px;
      padding-bottom: 0; } }

.myaccount__order-billing-details,
.myaccount__order-shipping-details {
  flex: 0 0 50%; }

.myaccount__order-billing-details-block,
.myaccount__order-shipping-details-block,
.myaccount__account-details-block {
  margin-bottom: 40px; }


@media only screen and (max-width: 989px) {
.myaccount__account-details-block,
.myaccount__order-billing-details-block,
.myaccount__order-shipping-details-block {
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 30px; } }

.add-edit-address {
  padding-top: 20px; }

#rc_link_container { display: block; }

#rc_link_container a {
  display: inline-block;
  padding-top: 40px;
  border-bottom: 1px solid #000;
  padding-bottom: 1px; }

#rc_link_container a:hover {
  font-family:'FFMarkWebProBold';
  color: #000; }

label.rc_label {
  color: #000 !important; }

div.rc_block__type--active label.rc_label {
  color: #fff !important; }

.myaccount__account-page-nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline; }

.myaccount__account-page-nav {
  margin-top: 10px; }
  @media only screen and (max-width: 989px) {
    .myaccount__account-page-nav {
      margin-top: 20px; } }

.grid__item.myaccount__addresses-list ul.address-block {
  display: flex;
  flex-wrap: wrap-reverse;
  max-width: 530px;
  margin-top: 140px; }
  @media only screen and (max-width: 989px) {
    .grid__item.myaccount__addresses-list ul.address-block {
      margin-top: 0;
      flex-direction: column; } }

.grid__item.myaccount__addresses-list ul.address-block li {
  flex: 0 0 50%; }
  @media only screen and (min-width: 641px) and (max-width: 890px) {
  .grid__item.myaccount__addresses-list ul.address-block li {
  flex: 0 0 100%; } }

.grid__item.myaccount__addresses-list ul.address-block li .btn--small {
  padding: 0;
  border: 0;
  margin-right: 20px;
  font-size: calc(var(--font-size-base) * 0.65px); /* 13px */
  line-height: 1.25; /* 14px */ }

.grid__item.myaccount__addresses-list ul.address-block li .btn--small:focus,
.grid__item.myaccount__addresses-list ul.address-block li .btn--small:active {
  outline: none; }

/* here */
.grid--no-gutters .grid__item.myaccount__account-details {
  padding-bottom: 60px; }
  @media only screen and (min-width: 990px) {
    .grid--no-gutters .grid__item.myaccount__account-details {
      padding-right: 15px;
      padding-bottom: 85px; } }

.myaccount__account-details p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* to here */

/* Start: Quicklinks */

.myaccount__quick-links-container {
  margin-top: 60px; }

.myaccount__quick-links-container ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 0 -15px; }
  @media only screen and (max-width: 989px) {
    .myaccount__quick-links-container ul {
      flex-wrap: nowrap; } }

.myaccount__quick-links-container ul li {
  width: calc(33.333% - 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 3px;
  padding: 0 15px 0;
  margin:0 0 15px 15px; }
  @media only screen and (max-width: 989px) {
    .myaccount__quick-links-container li {
      flex: 1 0 140px; } }

.myaccount__quick-links-container ul li::after {
  content: '';
  padding-bottom: 128%; }

.myaccount__quick-links-container ul li a {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 15px; }

.myaccount__quick-links-container ul li a img {
  max-width: 35px; }

.myaccount__quick-links-container ul li a span {
  max-width: 110px;
  margin-top: 10px; }

@media only screen and (max-width: 1200px) {
  .myaccount__quick-links-container ul li {
    width: calc(50% - 15px);
  }
}
/* End: Quicklinks */

@media only screen and (min-width: 641px) {
  .myaccount__account-details .myaccount__account-details-inner,
  .myaccount__order-address-wrapper .myaccount__order-details-container,
  .myaccount__order-address-wrapper .myaccount__order-shipping-details,
  .myaccount__order-address-wrapper .myaccount__quick-links-container {
    width: 66.666%; }
}

.myaccount__account-details-inner-columns,
.myaccount__order-details-inner {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap; }

.myaccount__account-details-inner-columns div {
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  max-width: 340px; }

@media only screen and (max-width: 989px) {
  .myaccount__account-details-inner-columns div,
  .myaccount__order-billing-details,
  .myaccount__order-shipping-details {
  -webkit-flex: 1 0 100%;
  -moz-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  max-width: 100%; } }

.myaccount__order-history p.order-date {
  margin-bottom: 25px; }

.order-table {
  margin-top: 30px; }
  .order-table a {
    border-bottom: none }
  .order-table th, .order-table td {
    border: 0;
    vertical-align: top; }
  .order-table tbody th,
  .order-table tfoot th {
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0; }
  .order-table tbody tr td {
    width: 33.333%; }
  .order-table tbody tr td.order-table__product {
    width: 0%; }
  .order-table__price dl {
    margin: 0; }
  .order-table thead {
    border-bottom: 1px solid #000; }
  .order-table tfoot { }
    .order-table tfoot tr th,
    .order-table tfoot tr td {
      width: 50%; }
    .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 {
       }
    .order-table tfoot tr th,
    .order-table tfoot tr td {
      padding-bottom: 10px;
    }
    .order-table tfoot tr:last-child th,
    .order-table tfoot tr:last-child td {
      padding-bottom: 1.25em; }
  @media only screen and (min-width: 1131px) {
    .order-table tfoot tr th {
    }
    .order-table tfoot tr td {
    }
  }
  @media only screen and (min-width: 990px) {
    .order-table thead th {
      padding-top: 1em;
      padding-bottom: 1em; }
    .order-table tbody tr th, .order-table tbody tr td {
      padding-top: 0em;
      padding-bottom: 0.9em; }
    .order-table tfoot tr td, .order-table tfoot tr th {
      vertical-align: top; } }
  /* @media only screen and (max-width: 1130px) {
    .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 15px;
        border: 0;
        margin: 0; }
      .order-table th::before,
      .order-table td::before {
        float: left;
        text-align: left;
        padding-right: 2em;
        max-width: 80%; }
      .order-table .small--hide {
        display: none; }
      .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: var(--font-weight-body--bold); }
      .order-table tbody td dl { margin: 0; } } */

.order-table__product {
  width: 48.2%; }

.order-table__product-inner {
  display: flex; }

.order-table__product-img-container {
  position: relative;
  width: 55px;
  min-width: 55px; }

.order-table__product-img-container .ratio-container:after {
  padding-bottom: 125%; }

.order-table__product-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px; }

.order-table__product-quantity {
  background-color: #FBF9F7;
  font-size: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  position: absolute;
  background: #FBF9F7;
  padding: 2px 7.4px 2px 6.5px;
  top: -10px;
  right: -10px;
}

.order-table__product-text-container {
  display: flex;
  flex-direction: column;
  padding-left: 20px; }

.total-row th span,
.total-row td span {
  display: inline; }

.item-props {
  margin-top: 5px;
  display: flex;
  flex-direction: column; }

.item-props__property {
  font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em); }

.order-discount {
  color: var(--color-sale-text);
  display: block;
  line-height: 1.2em; }
  .order-discount .icon-saletag {
    width: 1em;
    height: 1em;
    margin-right: 0.4em; }

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

.order-discount--list {
  margin: 0.8em 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; }

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

.order-discount--cart {
  font-size: calc(((var(--font-size-base) - 1) / (var(--font-size-base))) * 1em);
  padding-right: 0; }
  @media only screen and (min-width: 990px) {
    .order-discount--cart {
      font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em); } }

.order-discount--cart-total {
  padding-left: 27.5px; }
  @media only screen and (min-width: 990px) {
    .order-discount--cart-total {
      padding-left: 55px;
      min-width: 150px; } }

/*================ MODULES ================*/
.cookie-banner {
  opacity: 1;
  visibility: visible;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  background-color: #000;
  padding: 30px 60px;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff; }
  @media only screen and (max-width: 990px) {
    .cookie-banner {
      flex-direction: column;
      padding: 20px; } }

.cookie-banner.hide-modal {
  opacity: 0;
  visibility: hidden; }

.cookie-banner .accent-light {
  flex-grow: 1; }

.cookie-banner a {
  color: var(--color-white);
  text-decoration: underline;
  transition: none; }

.cookie-banner a:hover {
  color: var(--color-white);
  font-family:'FFMarkWebProBold';
}

.cookie-banner .close-banner { cursor: pointer; }

.cookie-banner p {
  color: #fff;
  max-width: 700px;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (max-width: 990px) {
.cookie-banner .btn  {
  width: auto;
  margin-left: -15px;
} }

.cookie-banner .btn span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-52%);
  color: #fff;
}

.site-header__menu {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden; }

body.is-overflowing .site-header__menu {
  opacity: 1;
  visibility: visible; }

.site-header__menu svg {
  margin-top: -4px; }

.site-header__menu.site-header__icon:focus,
.site-header__menu.site-header__icon:active {
  outline: none; }

.site-header__menu .icon-chevron-down {
  width: 6px;
  height: 5px;
  margin-left: 0.5rem; }

#shopify-section-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 12; /* 8 */
}

.site-header {
  background-color: #FCEEE0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000;
}


@media only screen and (max-width: 989px) {
  .site-header {
    overflow: hidden; 
  } 
}

.site-header p {
  margin-bottom: 0;
  padding-left: 25px;
}

.site-header__row-one {
  display: flex;
  justify-content: space-between;
  margin: 25px;
  align-items: center;
}

@media only screen and (max-width: 989px) {
  .site-header__row-two {
    display: none;
  } 
}

.site-header__navigation {
  display: flex;
  flex: 1 0 33.333%;
  align-items: center;
  justify-content: space-between;}


  @media only screen and (max-width: 640px) {
    .site-header__navigation {
      justify-content: flex-end;
      flex: 1 0 50%; } }

.site-header .header-title {
  font-size: calc(var(--font-size-base) * 0.9px); /* 18px */
  line-height: 1.375; /* 20px */ }

@media only screen and (max-width: 640px) {
.site-header .header-title {
  font-size: calc(var(--font-size-base) * 0.8px); /* 16px */
  line-height: 1.375; /* 20px */ } }

[data-section-type=header-section],
.site-header:focus,
.site-header:active {
  outline: none;
}

.site-header .grid__item .site-nav,
.site-header .grid__item .site-header__menu,
.site-header .grid__item .site-header__icons-wrapper {
  padding: 0 15px;
}

.is-overflowing .site-header__icons-wrapper p.open-drawer,
.is-overflowing .site-header__icons-wrapper svg.icon-wishlist {
  display: none; }

.site-header__icons-wrapper {
  align-items: center;
  text-align: right;
  display: flex;
}

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


.site-header__icons-wrapper a {
 }

@media only screen and (max-width: 989px) {
  .site-header__icons-wrapper a {
    padding: 8px 5px 7px 5px;
  }
}

.site-header__icons-wrapper a:hover {
 }

.site-header__icons-wrapper a.site-header-shop-btn {
  background-color: #F15A29;
  color: #fff; }
  @media only screen and (max-width: 640px) {
    .site-header__icons-wrapper a.site-header-shop-btn { 
     display: none; } }

.site-header__icons-wrapper a.site-header-shop-btn:hover {
 background-color: transparent;
 color: #F15A29; }

.site-header__row-one-spacer {
  min-width: 58px;
}

@media only screen and (max-width: 989px) {
  .site-header__row-one-spacer {
    display: none; } }

@media only screen and (max-width: 989px) {
  .site-header__row-one {
    margin: 13px 20px;
  }
}

.site-header__logo-wrapper {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.site-header__logo {
  margin: 15px 0;
  text-align: center;
  margin: 0 auto; }

.site-header__logo-svg svg {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }

@media only screen and (max-width: 989px) {
  .site-header__logo-svg svg {
    max-width: 125px;
  }
}

.is-overflowing .site-header__logo-svg svg {
  max-width: 120px; }

@media only screen and (max-width: 640px) {
  .is-overflowing .site-header__logo-svg svg {
    -webkit-transform-origin: top;
    transform-origin: top; }

  .is-overflowing .is-scrolling .site-header__logo-wrapper {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: bottom;
    transform-origin: bottom; }

  .site-header__logo-svg svg path.mobile-hide,
  .site-header__logo-svg svg rect.mobile-hide {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

  .is-scrolling .site-header__logo-svg svg path.mobile-hide,
  .is-scrolling .site-header__logo-svg svg rect.mobile-hide {
    opacity: 0; } }

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

.site-header__logo-image {
  display: block; }
  @media only screen and (min-width: 990px) {
    .site-header__logo-image {
      margin: 0 auto; } }

.site-header__icons {
  position: relative;
  white-space: nowrap;
  padding: 15px 0; }
  @media only screen and (max-width: 989px) {
    .site-header__icons {
      padding-right: 0; } }

.site-header__icons .site-header__cart.emptyCart svg.icon-cart path {
  stroke: #9B9B9B;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-header__icons .site-header__cart.emptyCart:hover svg.icon-cart path {
  stroke: #000000;
}

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

.site-header__search {
  display: none!important;
}

.site-header__search-wrapper {
  display: flex;
  flex: 1 0 33.333%;
  position: relative; }

.site-header__search-wrapper .search-form__container {
  border: none;
  background: transparent;
}

.site-header__search-wrapper .search-bar__interior {
  padding: 0;
}
.site-header__search-wrapper .search-bar__input {
  border: none;
  background: transparent;
  padding: 0 0 0 25px;

  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  letter-spacing: .275em;
  text-transform: uppercase;
  font-size: calc(var(--font-size-base) * .715px);
  line-height: 1.38;
}

.site-header__search-wrapper .search-bar__input::placeholder {
  opacity: 1;
}

.site-header__search-wrapper .search-bar__submit svg {
  position: relative;
  top: 3px;
}

.site-header__search-wrapper .search-bar__submit {
  left: 0;
}

.site-header__search-wrapper .search-bar__actions {
  display: none;
}

@media only screen and (max-width: 1066px) {
  .site-header__search-wrapper .search-form__container {
    display: none!important;
  }
}

.site-header__search-toggle {
  display: flex;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  display: block;
  min-width: 130px; }
  .site-header__search-toggle svg {
    margin-right: 10px; }

body.is-overflowing .site-header__search-toggle {
  opacity: 0;
  visibility: hidden; }

.site-header__cart-title,
.site-header__search-title {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  display: block;
  vertical-align: middle; }

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

.site-header__cart-count {
  position: relative;
  display: inline-block;
  font-size: calc(var(--font-size-base) * 1.285px); /* 18px */
  line-height: 0;
  color: #EC6D26; }

.site-header__cart-count:after {
  content: url('cart-count-circle.svg');
}

.site-header__cart-count span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.site-header__cart svg.icon-cart {
  position: relative;
  top: 2px; }

.site-header__menu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.site-header__icon {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 0; }
  @media only screen and (max-width: 640px) {
    .site-header__icon {
      padding-left: 15px; } }

/* Meganav */

.drawer-page-content.meganav-is-visible::after {
  opacity: 1;
  visibility: visible; }

.meganav {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  margin-top: 55px;
  z-index: 10;
  background: #F15A29;
  padding: 60px 0 0;
  /* border-top: 1px solid #E3DCD1; */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.meganav.is-visible {
  opacity: 1;
  visibility: visible; }

.meganav .page-width-narrow {
  padding-bottom: 43px; }

.meganav .page-width-narrow .grid {
  display: flex; }

.meganav .page-width-narrow .meganav-column {
  flex: 1 0 20%; }

.meganav .page-width-narrow .meganav-column h3 {
  margin-top: 20px;
  margin-bottom: 15px; }

.meganav .page-width-narrow .meganav-column h3.meganav-image__title {
  margin-top: 11px;
  margin-bottom: 3px; }

.meganav .page-width-narrow .meganav-column ul {
  margin-bottom: 50px; }

.meganav .page-width-narrow .meganav-column ul li {
  margin-bottom: 5px; }

.meganav .page-width-narrow .meganav-column .meganav-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 122.5%;
  display: block;
  border-radius: 3px; }

.meganav-shop-all {
  text-align: center;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  padding: 15px;
}

/* Article */

@media only screen and (max-width: 989px) {
.blog-list-view .border-top {
  border-top: 0;  } }

.article-container-first .article-listing .article__list-image-wrapper {
  flex: 1 0 66.666% !important; }

.article-container-first .article-listing .article-listing__text-container {
  flex: 1 0 33.333% !important; }

@media only screen and (max-width: 989px) {
  .article-container-first .page-width-narrow {
    padding-left: 0;
    padding-right: 0; }

    .article-container-first .grid__item {
    border-bottom: 1px solid #000; }

  .article-container-first .article-listing {
    padding-top: 0; }

  .article-container-first .article-listing__text-container {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px; }

  .article-container-first .article-listing__text-container h3,
  .article-container-first .article-listing__text-container .h3 {
    font-size: 36px; }
}

.article-listing {
  display: flex;
  padding-top: 50px;
  margin-bottom: 50px; }

@media only screen and (max-width: 989px) {
  .article-listing {
    padding-top: 30px;
    margin-bottom: 0;
    flex-direction: column; } }

.article-listing__text-container {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 66.666%; }

@media only screen and (max-width: 989px) {
  .article-listing__text-container {
    padding-top: 20px;
    padding-left: 0; }

  .article-listing__text-container h3,
  .article-listing__text-container .h3 {
    font-size: 24px; }
}

.article-listing__text-container h3 {
  color: #f15a29;
  margin-bottom: 5px; }

.article-listing__text-container .rte { 
  margin-bottom: 0;
  max-width: 430px; }

.article-listing__text-container .btn { 
  width: auto;
  padding-left: 0;
  padding-bottom: 0;
  color: #f15a29; }

.article-listing__text-container .btn:hover { 
  color: #000; }

@media only screen and (max-width: 989px) {
  .article-listing__text-excerpt-link {
    display: none; } }

.article {
  margin-bottom: 55px; }

.template-article.article {
  margin-bottom: 0; }

.template-article .section-header span {
  margin-left: 5px; }

.article__meta {
  margin-bottom: 22px; }

.template-article .article__title {
  color: #f15a29;
  margin: 0 auto 30px; }


.template-article .rte ul {
  margin-left: 0; }

.template-article .rte li {
  list-style: none;
  display: flex; }

.template-article .rte ul li:before {
  content: url('Arrow.svg');
  margin-right: 8px; }

.template-page .article__title,
.page-stories-overview .article__title {
  max-width: 290px;
}
@media only screen and (max-width: 989px) {
  .article__title {
    margin-bottom: 0; }

  .article__title--has-image {
    padding-left: 22px; } }

.article__author {
  margin-right: 10px; }

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

.article__tags {
  margin-bottom: 25px; }

@media only screen and (max-width: 989px) {
.article__tags {
  margin-top: 16px;
  margin-bottom: 40px;
} }

.grid--blog .article__tags,
.grid--blog .article__tags ul {
  margin-bottom: 0;
}
.grid--blog .article__title {
  margin-top: 25px;
}
@media only screen and (max-width: 989px) {
  .grid--blog .article__title {
    margin-top: 40px; } }

.article__tags li {
  font-size: calc(var(--font-size-base) * 0.6px); /* 12px */
  line-height: 1.17; /* 14px */
  margin: 0 15px; }

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

.article__grid-tag,
.rte a:not(.btn).article__grid-tag {
  border: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.5);
}

.article__link {
  display: block; }
  @media only screen and (max-width: 989px) {
    .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--fixed-overlay:not([disabled]):hover .article__grid-image-wrapper::before, .article__link--fixed-overlay:focus .article__grid-image-wrapper::before {
  bottom: auto; }

.article__grid-image-container {
  opacity: 1;
  -webkit-transition: ease opacity 350ms;
  -moz-transition: ease opacity 350ms;
  -ms-transition: ease opacity 350ms;
  transition: ease opacity 350ms;
}

.article__grid-image-container:hover {
  opacity: 0.9;
}

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

.rte--article {
  margin-bottom: 20px; }


/*============================================================================
  Blog article grid
==============================================================================*/
.template-blog .section-header {
  margin-top: 160px;
  margin-bottom: 75px; }

@media only screen and (min-width: 990px) {
.template-blog .section-header {
  margin-top: 160px;
  margin-bottom: 200px; } }

.grid--blog {
  overflow: auto;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -55px; }

.article__grid-meta {
  max-width: 290px;
  margin: 0 auto 55px; }

.template-blog .article__grid-meta {
  margin-bottom: 65px; }

.article__grid-excerpt {
  margin-bottom: 40px;
}

@media only screen and (min-width: 990px) {
  .template-blog .article__grid-meta {
    margin-bottom: 170px; }

  .article__grid-excerpt {
    margin-bottom: 40px; }
}

.article-image-wrapper.article__grid-image-wrapper {
  margin-left: 0;
  margin-right: 0; }

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

.article__grid-image-wrapper--small {
  width: 50%; }

.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: 989px) {
    .article__grid-image-container {
      float: left;
      margin: 0; } }
  .article__grid-image-container img {
    display: block; }

.article__grid-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 80%;
  margin: 0 auto;
  width: 100%; }
  .js .article__grid-image {
    position: relative;
    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%;
  flex: 1 0 33.333%; }

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

/*============================================================================
  Blog/article card
==============================================================================*/
.blog-card {
  margin-bottom: 30px;
  margin-top: 30px; }
  @media only screen and (min-width: 990px) {
    .blog-card {
      margin-top: 0; } }

.blog-card__image-wrapper {
  margin-bottom: 30px;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .blog-card__image-wrapper:hover .blog-card__title-wrapper::before, .blog-card__image-wrapper:focus .blog-card__title-wrapper::before {
    opacity: var(--hover-overlay-opacity); }
  .blog-card__image-wrapper:focus {
    opacity: 1; }

.blog-card__image-wrapper--small {
  padding-bottom: 50%; }

.blog-card__image-wrapper--medium {
  padding-bottom: 75%; }

.blog-card__title {
  color: var(--color-overlay-title-text);
  font-size: calc(((var(--font-size-header)) / (var(--font-size-base))) * 1em);
  hyphens: auto;
  margin-bottom: 11px;
  padding: 0 5px;
  position: absolute;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  top: 50%;
  width: 100%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media only screen and (min-width: 990px) {
    .blog-card__title {
      padding: 0 15px; } }

.blog-card__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.blog-card__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; }

.blog-card__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-image-overlay);
  opacity: var(--opacity-image-overlay); }

.blog-card__excerpt {
  margin-bottom: 17.5px; }

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

.relatedArticles {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 55px; }
  @media only screen and (max-width: 989px) {
    .relatedArticles.page-width {
      padding-right: 0;
    }
    .relatedArticles .grid--blog .grid__item {
      padding-left: 0;} }

.relatedArticles h3.section-title {
  text-align: center;
  margin-bottom: 60px; }

/*============================================================================
  Article
==============================================================================*/
.template-article .section-header {
  margin-bottom: 0;
  overflow-y: hidden;
}

.template-article .section-header .section-header__inner {
  padding: 0;
}

.template-article .section-header .section-header__inner h1,
.template-article .section-header .section-header__inner h2 {
  font-size: calc(((var(--font-size-header)) / (var(--font-size-base))) * 1.195em); /* 43px */
  line-height: 0.89;
}

.template-article .section-header .section-header__inner h2 {
  margin-top: 40px;
  margin-bottom: 10px; }
  @media only screen and (max-width: 989px) {
    .template-article .section-header .section-header__inner h2 {
      margin-bottom: 0; } }

.template-article .section-header .article__subtitle p {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 200;
  font-size: calc(var(--font-size-base) * 0.8px); /* 16px */
  line-height: 1.375; /* 22px */
  margin-bottom: 70px; }

.template-article .section-header .article__title {
  margin: 0 0 30px 0;
}

.template-article .section-header .article__credits {
  margin-bottom: 15px; }

@media only screen and (max-width: 989px) {
  .template-article .section-header .article__title {
    max-width: none;
    margin-bottom: 105px; }
}

@media only screen and (max-width: 640px) {
  .template-article .section-header .article__subtitle p {
    margin-bottom: 40px;
    font-size: calc(var(--font-size-base) * 0.6px); /* 12px */
    line-height: 1.17; /* 14px */
  }
}

@media only screen and (max-width: 640px) {
  .template-article .section-header .article__ft-image.page-width-narrow {
    padding-left: 0;
    padding-right: 0; }
}

.article__ft-image-caption {
  color: var(--color-grey);
  font-size: calc(var(--font-size-base) * 0.7px); /* 14px */
  line-height: 1.215; /* 17px */
  max-width: 305px;
  margin-top: 30px;
}

@media only screen and (min-width: 641px) {
  .page__content-container,
  .article__content-container {
    border-left: 1px solid #000;
    padding-left: 60px;
    margin: 60px 0 115px; }
}

@media only screen and (max-width: 640px) {
  .template-article .section-header .article__title-small .article__title {
    padding-top: 45px;
  }
  .template-article .section-header .article__title {
    margin-bottom: 45px; }
  .template-article .section-header .article__title-small .article__title {
    margin-bottom: 135px; }

  .article__ft-image-caption {
    margin-top: 15px; }

  .page__content-container {
    margin: 30px auto 0; }

  .article__content-container {
    margin: 40px auto 0; }
}

.page__content-container .rte p,
.article__content-container .rte p {
  max-width: 630px;
  margin-bottom: 20px; }

.article__content-container .rte p.blog-image-caption {
  max-width: 100%;
}

.page__content-container .rte hr,
.article__content-container .rte hr {
  max-width: 630px;
  margin: 40px 0;
}

.page__content-container .rte img {
  display: block;
  width: 100%;
  margin: 40px 0; }

.article__content-container .rte img {
  display: block;
  width: 100%;
  margin: 40px 0 10px;
}

.article__content-container .rte .article__image-row {
  margin-left: -20px; }

.article__content-container .rte .article__image-column {
  width: 50%;
  float: left;
  padding-left: 20px; }

.article__content-container .rte .article__image-column img {
  width: 100%; }

.article__content-container .rte .article__image-caption {
  margin-bottom: 60px;
  margin-top: -25px; }

.article__content-container .rte .article__playlist {
  margin-top: 120px;
  margin-bottom: 120px; }

@media only screen and (max-width: 640px) {
  .article__content-container .rte .article__image-caption {
    margin-top: -40px; }

  .article__content-container .rte .article__playlist {
    margin-top: 60px;
    margin-bottom: 60px; }

  .article__content-container .rte .article__image-column {
    width: 100%;
    padding-left: 20px; }

  .article__content-container .rte .article__image-column:first-child img {
    margin-bottom: 0; }

  .article__content-container .rte .article__image-column:last-child img {
    margin-top: 15px; }
}

.article__feature {
  text-align: center;
  background-color: #E8E8E8;
}

.article__feature-inner {
  text-align: center;
  padding: 30px 60px;
}

@media only screen and (max-width: 640px) {
  .article__feature-inner {
    padding: 35px 25px 55px;
  }
}

.article__feature-inner .feature__subtitle {
  text-transform: uppercase;
  font-size: calc(var(--font-size-base) * 0.6px); /* 12px */
  line-height: 1.17; /* 14px */
}

.article__feature-inner h6 {
  margin-top: 95px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 640px) {
  .article__feature-inner h6 {
    margin-top: 60px;
    margin-bottom: 30px; }
}

.article__feature-inner h6,
.article__feature-inner h6 span {
  font-size:calc(var(--font-size-base) * 1px);
  line-height: 1.35;
}

.article__feature-inner p {
  font-size: calc(var(--font-size-base) * 0.8px); /* 16px */
  line-height: 1.375; /* 22px */ }

.article__feature-inner a.btn--secondary {
  margin-top: 60px; }

@media only screen and (max-width: 640px) {
  .article__feature-inner a.btn--secondary {
    margin-top: 25px; } }

.article__tags li:first-child {
  margin-left: 0; }

.article__tags li:last-child {
  margin-right: 0; }

.article__meta-container .article__tags {
  margin-top: 0; }

.article__meta-container .article__date {
  text-align: right;
  color: var(--color-grey);
  font-size: calc(var(--font-size-base) * 0.6px); /* 12px */
  line-height: 1.17; /* 14px */ }

@media only screen and (min-width: 990px) {
  .article__meta-container .article__tags ul {
    white-space: nowrap; } }

@media only screen and (max-width: 989px) {
  .article__meta-container .article__tags ul.more-than-2 {
    display: flex;
    flex-wrap: wrap; }
  .article__meta-container .article__tags ul.more-than-2 li {
    flex: 1 1 50%;
    display: block;
    margin: 0; } }

p.blog-image-caption {
  font-size: 12px;
  color: #f15a29;
  margin-bottom: 40px; }

.cart-popup-wrapper {
  opacity: 1;
  visibility: visible;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }

.cart-popup-wrapper--hidden {
  opacity: 0;
  visibility: hidden; }

.cart-popup__close {
  cursor: pointer;
  z-index: 998;
}

.cart-popup {
  width: 50vw;
  position: absolute;
  left: 0;
  top: 154.5px;
  z-index: 999; }

@media only screen and (max-width: 989px) {
  .cart-popup {
    width: 100vw;
    top: 0;
    border-right: 0;
  }
}

.cart-popup:focus,
.cart-popup:active {
  outline: none; }

.cart-popup__container {
  background-color: #EC6D26;
  padding: 30px 30px 40px 40px;
  border-right: 1px solid #000; }
  @media only screen and (max-width: 989px) {
  .cart-popup__container {
    padding: 20px; } }

.cart-popup__header {
  display: flex;
  flex-direction: row;
  align-items: center; }

.cart-popup__heading {
  flex-grow: 1;
  padding: 0;
  margin: 0; }

.cart-popup__inner {
  display: flex;
}

@media only screen and (max-width: 989px) {
  .cart-popup__inner {
    flex-direction: column;
  }
}

.cart-popup-item {
  display: flex;
  margin: 15px 0; }

.cart-popup-item__image-wrapper {
  position: relative;
  flex-shrink: 0;
  margin-right: 10px;
  text-align: center; }

@media only screen and (max-width: 989px) {
  .cart-popup-item__image-wrapper {
    display: none;
  }
}

.cart-popup-item__image {
  display: block;
  max-width: 95px; }

.cart-popup-item__description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; }

.cart-popup-item__description .product-details {
  text-align: left;
  margin-bottom: 5px; }

.cart-popup-item .product-details {
  padding: 0;
  display: none; }

.cart-popup-item__description .product-details__item {
  margin-bottom: 0;
  margin-right: 5px; }

.cart-popup-item__vendor {
  margin-bottom: 0; }

.cart-popup-item__title {
  font-size: 28px;
  margin-bottom: 5px; }

.product-details__item .product-details__divider {
  margin: 0 3px; }

.cart-popup-item__quantity {
  flex-shrink: 0; }

@media only screen and (min-width: 990px) {
  .cart-popup-footer { 
    padding-right: 20px; } }

@media only screen and (max-width: 989px) {
  .cart-popup-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap; } }

.cart-popup__cta-link { }

.cart-popup__cta-link svg path {
  stroke: #fff;
}

.cart-popup__cta-link span,
.cart-popup__cta-link-two span {
  position: absolute;
  top: 48%;
  left: 48%;
  -webkit-transform: translate(-48%, -48%);
  -moz-transform: translate(-48%, -48%);
  -ms-transform: translate(-48%, -48%);
  transform: translate(-48%, -48%);
}

.cart-popup__cta-link.btn,
.cart-popup__cta-link-two.btn {
  padding: 0 15px; }
  @media only screen and (max-width: 989px) {
    .cart-popup__cta-link.btn,
    .cart-popup__cta-link-two.btn {
      padding: 0 7.5px;
      width: auto; } }
  @media only screen and (max-width: 509px) {
    .cart-popup__cta-link.btn,
    .cart-popup__cta-link-two.btn {
      width: 100%; } }

.cart-popup__cta-link.btn:not([disabled]):hover {
  color: #fff; }

.cart-popup__cta-link-two span {
  color: #fff;
}

.cart-popup__cta-link span:hover {
  color: #fff;
}

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

.cart-popup__dismiss-button {
   }

.cart-popup .pattern-bottom-orange {
 bottom: 12px;
 width: calc(100% - 1px); }

.sidebar {
  margin-top: 40px; }

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

.pagination {
  position: relative;
  top: -1px;
  text-align: center;
  list-style: none;
  font-size: calc(((15) / (var(--font-size-base))) * 1em);
  padding-bottom: 165px; }
  .pagination li {
    display: inline-block;
    margin-left: 10px; }
  .pagination li a,
  .pagination li span.ellipsis {
    display: block;
    padding-top: 15px;
    padding-right: 10px;
    letter-spacing: 1px;
  }
  .pagination li span.ellipsis {
    color: rgba(0, 0, 0, 0.6);
  }
  .pagination li.accent a {
    color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid transparent;
    padding-right: 10px; }
  .pagination li.accent a:hover,
  .pagination li.accent.active a {
    color: var(--color-black);
    border-top: 1px solid var(--color-black);
    margin-top: 0; }

.pagination .btn {
  border: 0;
  background: transparent;
  padding: 0 20px 10px 10px; }
  @media only screen and (max-width: 640px) {
    .pagination .btn {
      border: 0;
      background: transparent;
      padding: 0 15px 10px 5px; } }

.pagination li:first-child,
.pagination li:last-child {
  position: absolute; }

.pagination li:first-child {
  left: 0; }

.pagination li:last-child {
  right: 0; }

.pagination .btn svg {
  position: relative;
  top: 15px; }

.pagination .btn::before,
.pagination .btn::after,
.pagination .btn:hover::before,
.pagination .btn:hover::after {
  width: 0; }

.pagination__text {
  padding: 0 27.5px; }

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

.comment__content {
  margin-bottom: 5px; }

.comment__meta-item {
  margin-right: 10px;
  font-size: calc(((14) / (var(--font-size-base))) * 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: var(--color-border);
  color: var(--color-text);
  margin-right: 5px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .btn--share:not([disabled]):hover, .btn--share:focus {
    background-color: transparent;
    border-color: var(--color-btn-social-focus);
    color: var(--color-text); }
  .btn--share .icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px; }
  .btn--share .icon-facebook {
    fill: #3b5998; }
  .btn--share .icon-twitter {
    fill: #00aced; }
  .btn--share .icon-pinterest {
    fill: #cb2027; }

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

/*================ Variables ================*/
.search-form__input-wrapper {
  position: relative; }

.search-form__input {
  padding-right: 45px;
  width: 100%;
  min-height: 44px;
  color: var(--color-text-field-text);
  background-color: var(--color-text-field);
  border: none;
  border: 1px solid var(--color-border-form); }
  .search-form__input::-ms-clear {
    display: none; }
  .search-form__input::-webkit-search-cancel-button {
    display: none; }
  .search-form__input::placeholder {
    color: var(--color-text-field-text);
    opacity: 0.6; }
  .search-form__input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--color-text-field-text);
    opacity: 0.6; }
  .search-form__input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--color-text-field-text);
    opacity: 0.6; }

.search-form__clear-action {
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  margin-top: -12px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  transition-property: opacity, visibility, background-color, transform;
  transition-duration: 100ms;
  transition-timing-function: ease-in-out; }
  .search-form__clear-action .icon-close {
    flex: 1 1 auto;
    width: 12px;
    height: 12px;
    fill: var(--color-text-field-text); }
  .search-form__clear-action:focus, .search-form__clear-action:hover {
    background-color: rgba(var(--color-text-field-text-rgb), 0.2); }
  .search-form__clear-action:active {
    transform: scale(0.9); }
  .search-form__clear-action.predictive-search__clear-button--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  .search-bar__form .search-form__clear-action {
    right: 44px; }

.search-form--focus .predictive-search__clear-button--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; }

.search-page-form .predictive-search__clear-button--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; }

.search-form__connected-submit {
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  background-color: var(--color-btn-primary);
  border-radius: 0 2px 2px 0;
  transition: background-color 100ms ease-in-out; }
  .search-form__connected-submit:focus, .search-form__connected-submit:hover {
    background-color: var(--color-btn-primary-darker); }
  .search-form__connected-submit:active {
    background-color: var(--color-btn-primary); }
  .search-form__connected-submit .icon-search {
    fill: var(--color-btn-primary-text);
    width: 20px;
    height: 20px; }

.search-bar {
  z-index: 999;
  background-color: var(--color-body); }

.search-bar__interior {
  height: 100%;
  display: flex;
  flex: 1; }
  @media only screen and (min-width: 990px) {
    .search-bar__interior {
      padding-left: 55px;
      padding-right: 55px;
      height: auto; } }

.search-form__container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 10px;
  background-color: var(--color-bg); }

.search-bar__form {
  flex: 1 1 100%;
  position: relative;
  max-width: 990px;
  border: 1px solid transparent; }

.search-bar__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center; }

.search-bar__submit {
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  padding: 0;
  height: 100%;
  vertical-align: middle;
  background-color: transparent;
  border: 0;
  margin: 0;
  color: var(--color-text-field-text); }
  .search-bar__submit .icon {
    position: relative;
    top: -1px;
    width: 1.2rem;
    height: auto; }
  .search-bar__submit:hover, .search-bar__submit:focus {
    color: rgba(var(--color-text-field-text-rgb), 0.6); }

.search-bar__input {
  padding-right: 45px;
  width: 100%;
  min-height: 44px;
  color: var(--color-text-field-text);
  background-color: var(--color-text-field);
  border: none;
  border: 1px solid var(--color-border-form); }

.search-bar__close {
  padding: calc(10em / 16) 0.75em;
  margin-right: -10px; }
  .search-bar__close .icon {
    width: 1rem;
    height: auto; }

.search--less-than-2-results {
  height: 40vh; }

.predictive-search-wrapper {
  transition-property: opacity, visibility;
  transition-duration: 100ms;
  transition-timing-function: ease-in-out;
  z-index: 1000;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 18px;
  min-width: 340px;
  border-top: 1px solid var(--color-black);
  background-color: var(--color-bg);
  overflow-y: auto;
  display: none;
  box-shadow: 0px 3px 6px #0000000D; }
  @media only screen and (min-width: 990px) {
    .predictive-search-wrapper {
      max-height: 80vh; } }

.search-bar .predictive-search-wrapper {
  position: fixed; }
  @media only screen and (max-width: 989px) {
    .search-bar .predictive-search-wrapper {
      border: none;
      min-width: 100%; } }
  @media only screen and (min-width: 990px) {
    .search-bar .predictive-search-wrapper {
      position: absolute;
      right: auto;
      left: auto;
      max-width: 748px; } }

.search-page-form .predictive-search-wrapper {
    max-height: 60vh; }

.is-overflowing .predictive-search-wrapper--drawer {
  position: fixed;
  top: 81px !important;
  padding-top: 0;
  margin-top: 0;
  height: calc(100% - 81px); }

.predictive-search-wrapper--visible {
  display: block; }

.predictive-search {
  height: 100%;
  text-align: left; }
  @media only screen and (max-width: 989px) {
    .search-bar .predictive-search {
      overflow-y: auto;
      -webkit-overflow-scrolling: touch; } }

.predictive-search-loading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  text-align: center; }

.icon-predictive-search-spinner::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid;
  border-color: currentColor currentColor currentColor transparent;
  -moz-animation: spin 500ms infinite linear;
  -o-animation: spin 500ms infinite linear;
  -webkit-animation: spin 500ms infinite linear;
  animation: spin 500ms infinite linear; }

.predictive-search-loading__icon {
  display: inline-block;
  margin: 0;
  color: var(--color-body-text);
  width: 20px;
  height: 20px; }
  .predictive-search-loading__icon .icon-predictive-search-spinner::before {
    width: 100%;
    height: 100%;
    border-width: 3px; }

.predictive-search-title {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 15px 7.5px; }

.predictive-search-title__content {
  flex: 1 1 auto;
  margin-bottom: 0;
  padding-right: 40px;
  color: var(--color-body-text);
  white-space: normal; }

.predictive-search-title__loading-spinner {
  flex: 0 0 auto;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  color: var(--color-body-text); }
  .predictive-search-title__loading-spinner .icon-predictive-search-spinner::before {
    width: 100%;
    height: 100%;
    border-width: 3px; }

.predictive-search-item {
  font-weight: 400;
  white-space: normal; }
  .predictive-search__list li:nth-last-child(2) .predictive-search-item__link {
    padding-bottom: 15px; }

.is-overflowing .predictive-search__list {
  padding-bottom: 40px; }

.predictive-search-item__details {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0; }

.predictive-search-item__detail--inline {
  display: flex;
  flex-direction: row; }

.predictive-search-item__link {
  display: flex;
  align-items: flex-start;
  padding: 7.5px 15px;
  background-color: transparent;
  transition: background-color 100ms ease-in-out; }
  .predictive-search-item__link:active {
    background-color: transparent; }

.predictive-search-item--selected .predictive-search-item__link,
.predictive-search-item--selected .predictive-search-view-all__button,
.predictive-search-item__link:hover {
  background-color: var(--predictive-search-focus); }

.predictive-search__column {
  flex: 1 1 auto; }

.predictive-search__column--image {
  flex-grow: 0;
  flex-shrink: 0;
  width: 55px;
  height: auto;
  margin-right: 10px;
  position: relative; }

.predictive-search-item__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px; }

.predictive-search__column--content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; }

.predictive-search__column--center {
  justify-content: center; }

.predictive-search-item__title-text {
  display: inline-block;
  color: var(--color-text); }

.predictive-search-item__vendor {
  color: var(--color-body-text);
  font-size: calc(((var(--font-size-base) - 3) / (var(--font-size-base))) * 1em);
  text-transform: uppercase;
  letter-spacing: 1px; }

.predictive-search-item__price {
  padding-top: 6px;
  flex: 0 0 auto;
  color: var(--color-body-text); }

.predictive-search-item__price--sale {
  color: var(--color-sale-text); }

.predictive-search-item__price--compare {
  text-decoration: line-through; }

.is-overflowing .predictive-search-view-all {
  position: fixed;
  bottom: 0;
  width: 100%; }

.predictive-search-view-all__button {
  display: block;
  width: 100%;
  border: none;
  padding: 14px;
  text-align: center;
  color: var(--color-white);
  background-color: #262D26;
  white-space: normal; }

.template-search h1 {
  max-width: 680px;
  margin: 50px auto 0; }

.template-search h1 span {
  font-style: italic; }

.template-search .search-page-form {
  max-width: 330px;
  margin: 110px auto 130px; }
  @media only screen and (max-width: 640px) {
  .template-search .search-page-form {
    margin: 80px auto; } }  

/*.template-search .grid--view-items {
  margin-top: 140px; }*/

.template-search .input-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.6); }  

.template-search .search-form__input {
  background-color: transparent;
  border: 0; }

.template-search .search-form__connected-submit {
  background-color: transparent;
  justify-content: flex-end; }

.template-search .search-form__connected-submit .icon-search {
 fill: #000; }

.search--no-results-found {
  margin-top: 15px; }

/*================ Mobile Site Nav ================*/
.mobile-nav-overflow {
  overflow-x: hidden;
  overflow-y: scroll;
}

.mobile-nav-overflow::-webkit-scrollbar {
  display: none; }

.mobile-nav {
  padding-top: 30px;
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.3s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .sub-nav--is-open .mobile-nav {
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: var(--color-body);
  z-index: 14;
  padding: 20px 15px 15px;
  border-bottom: 1px solid var(--color-border); }

.mobile-nav__header .mobile-nav__search {
  justify-content: center;
  display: none!important;
  align-items: center; }

.mobile-nav__header {
  display: flex;
  flex: 1 0 33.333%;
  position: relative; }

.mobile-nav__header .search-form__container {
  border: none;
  background: transparent;
  padding: 0; }

.mobile-nav__header .search-bar__input {
  border: none;
  background: transparent;
  padding: 0 0 0 25px;
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  letter-spacing: .275em;
  text-transform: uppercase;
  font-size: calc(var(--font-size-base) * .715px);
  line-height: 1.38; }

.site-header__secondary-row .search-form__input::placeholder {
  color: #000;
  opacity: 1; }

.mobile-nav__header .search-bar__submit {
  width: 15px;
  left: 0; }

.mobile-nav__header .search-bar__submit svg {
  position: relative;
  top: 2px; }

.mobile-nav__header .search-bar__actions {
  display: none;
}

.mobile-nav__header .mobile-nav__search svg {
  margin-right: 20px; }

.mobile-nav__header .close-nav {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15); }

.mobile-nav__customer {
  margin-top: 60px; }

.mobile-nav__link,
.mobile-nav__sublist-link {
  display: block;
  width: 100%;
  padding: 5px 15px; }

.mobile-nav__link {
  position: relative; }

button.mobile-nav__link {
  display: flex;
  justify-content: space-between; }

.mobile-nav__item {
  display: block;
  width: 100%; }
  .mobile-nav__item .icon {
    height: auto;
    width: 6px;
    margin: 0; }

.mobile-nav__return-btn {
  position: relative;
  padding: 0 15px;
  line-height: 1.375; }

.mobile-nav__return-btn span {
  display: inline-block; }

.mobile-nav__return-btn .icon {
  margin-right: 15px; }

.js-toggle-submenu span {
  display: table-cell;
  vertical-align: middle; }

.mobile-nav__icon {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
  pointer-events: none;
  overflow: hidden; }

.mobile-nav__table {
  display: table;
  width: 100%; }

.mobile-nav__table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  text-align: left;
  white-space: normal; }

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

.mobile-nav__dropdown-columns {
  display: flex; }

.mobile-nav__dropdown-columns div {
  flex: 1 0 33.333%; }

.mobile-nav__dropdown-columns div.subnav-links {
  flex: 1 0 66.666%;
  border-left: 1px solid var(--color-border); }

.mobile-nav__dropdown-columns div.subnav-links button.mobile-nav__sublist-link .mobile-nav__label {
  padding-top: 40px; }

.mobile-nav__dropdown-columns div.subnav-links li:first-child button.mobile-nav__sublist-link .mobile-nav__label {
  padding-top: 0; }

.mobile-nav__dropdown {
  padding: 35px 0;
  position: absolute;
  z-index: 8;
  width: 100%;
  height: calc(100vh - 155px);
  top: 0;
  right: -100%;
  /*display: none;*/
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .mobile-nav__dropdown:focus,
  .mobile-nav__dropdown:active {
    outline: none; }
  .is-active + .mobile-nav__dropdown {
    /*display: block;*/
    opacity: 1;
    visibility: visible; }
  .mobile-nav__dropdown.is-closing {
    transition: all 0.3s cubic-bezier(0.29, 0.63, 0.44, 1);
    opacity: 0.99; }
  .mobile-nav__dropdown .mobile-nav__sublist-header {
    font-family: var(--font-stack-header);
    font-style: var(--font-style-header);
    font-weight: var(--font-weight-header);
    text-transform: uppercase;
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px; }
  .mobile-nav__dropdown .mobile-nav__sublist-header--main-nav-parent {
    color: var(--color-body-text); }

.mobile-nav__dropdown .mobile-nav__sublist-link {
  padding: 0 0 2px;
}

.mobile-nav__dropdown .mobile-nav__sublist-link .mobile-nav__label {
  padding: 5px 15px;
  display: block; }

.mobile-nav__shop-all {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 20px 0;
  background-color: var(--color-body);
  border-top: 1px solid var(--color-border); }

/*================ Mobile nav wrapper ================*/
.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-body);
  transition: all 0.3s cubic-bezier(0.29, 0.63, 0.44, 1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 14; }
  .mobile-nav-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--color-border); }
  .mobile-nav-wrapper.js-menu--is-open {
    /*display: block;*/
    opacity: 1;
    visibility: visible; }

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

/*================ Site header mobile nav ================*/
.site-header__mobile-nav {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
  background-color: var(--color-body);
  padding: 0 20px; }

.site-header__mobile-nav .site-nav__link {
  padding-top: 12.5px;
  padding-bottom: 12.5px; }

.site-header__secondary-row {
  width: 100%;
  padding: 0;
  max-height: auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }


@media only screen and (max-width: 640px) {
  .site-header__secondary-row div {
    z-index: 999; }
}

/*================ Modals ================*/
.modal {
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  background-color: var(--color-bg);
  bottom: 0;
  color: var(--color-text);
  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%; }

.modal__close {
  border: 0;
  padding: 55px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2; }
  .modal__close .icon {
    font-size: calc(((20) / (var(--font-size-base))) * 1em); }

/*================ Price ================*/

.price {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0; }
  .price dl {
    margin-top: 0; }
  .price dd {
    margin: 0; }

.price--unavailable {
  visibility: hidden; }

.price--compare-price-hidden .price__compare {
  display: none; }

.price__pricing-group {
  display: flex;
  flex-direction: row;
  align-items: center; }

.price__regular {
  display: block; }

.price--on-sale .price__regular,
.price--on-sale .price__availability {
  display: none; }

.price__availability {
  display: none;
  color: var(--color-body-text);
  font-size: 0.9em;
  font-weight: var(--font-weight-body);
  text-transform: uppercase;
  letter-spacing: 1px; }

.price--sold-out .sold-out-msg {
  color: var(--color-black);
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.price--sold-out .price__availability {
  display: block; }

.price__sale {
  display: none; }
  .price--on-sale .price__sale {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }

.price__compare {
  margin-left: 5px;
  color: var(--color-grey); }
  .price__compare .price-item {
    color: var(--color-grey); }

.price__vendor {
  color: var(--color-body-text);
  font-size: 0.9em;
  font-weight: var(--font-weight-body);
  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__vendor--listing {
  margin: 0 0 4px; }

.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 {
  color: var(--color-body-text); }

.price-item--sale {
  color: var(--color-sale-text); }

.price--on-sale .price-item--regular {
  text-decoration: line-through; }

.price-unit-price {
  color: var(--color-body-text);
  font-size: 0.8em; }

.price-item__label {
  display: inline-block;
  white-space: nowrap;
  font-weight: var(--font-weight-body--bolder); }

.price__badges {
  margin-top: 0; }

.price__badge {
  display: none;
  align-self: center;
  text-align: center;
  font-size: 0.5em;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-text);
  border-radius: 2px;
  padding: 0.2rem 0.5rem; }

.price__badge--sale {
  color: var(--color-bg);
  border-color: var(--color-sale-text);
  background-color: var(--color-sale-text); }
  .price--on-sale .price__badge--sale {
    display: flex; }
  .price--sold-out .price__badge--sale {
    display: none; }

.price__badge--sold-out {
  color: var(--color-body-text);
  border-color: var(--color-body-text); }
  .price--sold-out .price__badge--sold-out {
    display: flex; }

.price__badges--listing {
  margin-top: 0.5rem; }
  .price__badges--listing .price__badge {
    font-size: 0.6em;
    padding: 0.25rem 0.55rem; }

.trade_tooltip_trigger {
  border: 1px solid #a6a6a6;
  border-radius: 50%;
  left: 5px;
  position: relative;
  padding: 0.5px 0.5px 0.5px 3.5px; }

.trade_price {
  position: relative;3
  z-index: 2; }

.trade_price:hover + .trade_tooltip {
  opacity: 1;
  z-index: 1; }

.trade_tooltip {
  transition: all 0.3s ease;
  opacity: 0;
  background: #d8c1b4;
  color: #fff;
  padding: 8px 10px 10px;
  text-align: center;
  max-width: 200px;
  position: absolute;
  top: -22px;
  right: 10px; }

.trade_tooltip .arrow-down {
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -10px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #d8c1b4; }

/*================ Module | Filters and Sort toolbar and selection ================*/
.filters-toolbar-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 22px; }
  @media only screen and (min-width: 990px) {
    .filters-toolbar-wrapper {
      margin-bottom: 55px; } }

.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: var(--color-text-field-text);
    width: calc(10em / 16);
    height: calc(10em / 16);
    right: 8px; }

@media only screen and (max-width: 989px) {
  .filter-by__title {
    display: none !important; } }

.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%; }
  @media only screen and (max-width: 989px) {
    .filters-toolbar__item:first-child .filters-toolbar__input {
      padding-left: 0; } }

@media only screen and (max-width: 989px) {
  .filters-toolbar__item-child {
    flex-grow: 0; } }

@media only screen and (max-width: 989px) {
  .filters-toolbar__item-child:first-child {
    margin-right: 2.5rem; } }

@media only screen and (min-width: 990px) {
  .filters-toolbar__item-child:first-child {
    margin-right: 3rem; } }

@media only screen and (max-width: 989px) {
  .filters-toolbar__item-child .filters-toolbar__input {
    padding-left: 0;
    padding-right: 25px;
    width: 100%; } }

.filter-menu {
  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%;
  -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: 989px) {
    .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; } }

.filters-toolbar__label {
  display: inline-block; }
  @media only screen and (max-width: 989px) {
    .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: 36px;
  opacity: 1;
  position: relative; }
  .filters-toolbar__item:first-child .filters-toolbar__input {
    padding-left: 0; }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

.filters-toolbar__product-count {
  font-size: calc(var(--font-size-base) * 1px); /* 20px */
  line-height: 1.2; /* 24px */
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (max-width: 989px) {
    .filters-toolbar__product-count {
      font-size: calc(((var(--font-size-base) - 2) / (var(--font-size-base))) * 1em);
      line-height: 46px; } }

.selected-tags-wrapper {
  position: relative;
  margin-top: 50px; }
  @media only screen and (max-width: 989px) {
    .selected-tags-wrapper {
      margin-top: 40px; } }

.selected-tags {
  display: block;
  clear: both;
  max-width: 70%; }
  @media only screen and (max-width: 989px) {
    .selected-tags {
      display: inline-block;
      margin-left: 10px; }
    .selected-tags:first-child {
      margin-left: 0; }   }

.selected-tags-wrapper a.filter-clear {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--color-grey);
  }
  .selected-tags-wrapper a.filter-clear:before {
    position: relative;
    content: url('filter-menu-close.svg');
    margin-right: 5px;
    top: -1px;
    opacity: 0.5;
  }
  .selected-tags-wrapper a.filter-clear:hover,
  .selected-tags-wrappwer a.filter-clear:hover:before {
    color: var(--color-black);
    opacity: 1;
  }
  @media only screen and (max-width: 989px) {
    .selected-tags-wrapper a.filter-clear {
      position: relative;
      display: block;
      clear: both; } }

.collection-mob__view-by {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 50px; }

.collection-mob__view-by svg {
  margin-left: 20px; }

/* Footer */
footer {
  background-color: #000;
}

.site-footer {
  background-color: #000;
  padding: 40px 0 0;
  display: flex;
  flex-flow: row wrap;
  padding-left: 80px; 
  padding-right: 80px; }

@media only screen and (max-width: 989px) {
  .site-footer {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0; } }

/* .grid.site-footer {
  margin-left: -20px;
} */

.site-footer .grid__item {
  padding-left: 25px;
}

.site-footer h4, .site-footer .h4 {
  margin-bottom: 16px;
}

.site-footer__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.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%;
  margin-bottom: 55px; }

.site-footer__item:first-of-type {
  padding-left: 0; }

.site-footer__item:last-of-type {
  padding-right: 0; }

.site-footer .mobile-layout {
  display: flex; }

.site-footer__section {
  display: inline-block;
  vertical-align: top;
  padding-bottom: 43px; }

.site-footer__linklist {
  margin-top: 15px; }

.site-footer__linklist li,
.site-footer__linklist li a {
  color: #fff; }

.site-footer__linklist li {
  font-family:'FFMarkWebProBold';
  font-size: 16px;
  padding: 0 0 10px; }

.site-footer__linklist li a:not([disabled]):hover {
  color: #ec6d26; }

@media only screen and (max-width: 640px) {
  .site-footer__linklist li {
    padding-bottom: 8px; } }

.site-footer__linklist li:first-child {
  padding-top: 0; }

.site-footer__linklist-item {
  display: block;
  padding: 15px 0; }

.site-footer__linklist-item:last-of-type {
  padding-right: 0; }

@media only screen and (max-width: 640px) {
  .site-footer__linklist .p-large {
  	font-size: 16px; }
}

.site-footer__icon-list {
  padding-bottom: 0; }

.site-footer__social-icons {
  padding-top: 0; }

.social-icons__item {
  padding: 0 8px; }

.social-icons__item:first-of-type {
  padding-left: 0; }

.social-icons__link {
  display: block; }

.site-footer__secondary-inner {
  background-color: #000;
}

.site-footer__secondary-inner .page-width {
  padding-left: 80px;
  padding-right: 80px;
}

.site-footer__secondary-inner .page-width svg {
  margin-bottom: 40px;
}

.site-footer__secondary-pattern {
  margin-bottom: -5px;
  background-image: url('icon-footer-pattern.svg');
  background-size: contain;
  background-repeat: repeat;
  height: 28px;
}
@media only screen and (max-width: 989px) {
  .site-footer__secondary-pattern {
  	background-size: cover; }
}

.site-footer__copyright-content {
  background-color: #1D1C1C;
  padding: 10px 80px 20px;  }

@media only screen and (max-width: 640px) {
  .site-footer__copyright-content {
    padding: 20px; } }

.site-footer__copyright-content,
.site-footer__copyright-content a {
  font-family: var(--font-stack-header);
  font-size: 14px;
  text-transform: uppercase;
  color: #fff; }

.site-footer__brand-image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

.site-footer__brand-image::after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 110%; }

.site-footer__links-container h4 {
  font-weight: var(--font-weight-body);
  font-style: var(--font-style-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #EC6D26;
}

.site-footer__contact-container .rte {
  margin-bottom: 10px;
}

@media only screen and (max-width:640px) {
  .site-footer__contact-container .p-large.rte {
    font-size: 16px;
    line-height: 19px;
  }
} 

@media only screen and (min-width: 990px) {
  .site-footer__content {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

  .site-footer__item {
    padding: 0 15px 0 15px;
    margin-bottom: 45px; }

  .site-footer__linklist-item {
      padding: 0 30px 5px 0; }

  .site-footer__contact-container {
    max-width: 510px;
    width: 100%; }

  .site-footer__icon-list {
    padding-bottom: 0; } }

@media only screen and (max-width: 989px) {
  .site-footer__content {
    padding: 0 18px; }

  .site-footer__item:last-of-type {
      margin-bottom: 0; }

  .site-footer__links-container {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 50px;
  }

  .site-footer__linklist.list--inline > li {
    display: block; }

  .site-footer__copyright-content {
    margin-top: 0;
    color: #fff; }

  .site-footer__section {
    padding-bottom: 0;
    } }


@media only screen and (min-width: 641px) and (max-width: 989px) {
  .site-footer__newsletter {
    margin-top: 10px; }
}

@media only screen and (max-width: 640px) {

  .site-footer__newsletter p.newsletter-terms-text {
    max-width: 210px; } }


.site-footer__secondary {
  margin-top: 80px;
  padding-top: 20px; }
@media only screen and (max-width: 640px) {
  .site-footer__secondary {
   margin-top: 30px; } }

.brewed-footer-logo path,
.brewed-footer-logo polygon {
  fill: #fff;
}

/* Feature Row */

.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: 989px) {
    .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: 989px) {
    .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-section,
.feature-row__image-block {
  background-size: cover; }

.feature-row__large {
  -webkit-flex: 0 1 58.33333%;
  -moz-flex: 0 1 58.33333%;
  -ms-flex: 0 1 58.33333%;
  flex: 0 1 58.33333%;
}

.feature-row__small {
  -webkit-flex: 0 1 41.66667%;
  -moz-flex: 0 1 41.66667%;
  -ms-flex: 0 1 41.66667%;
  flex: 0 1 41.66667%;
}

@media only screen and (max-width: 989px) {
  .feature-row__large,
  .feature-row__small {
    -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;
  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: 989px) {
    .feature-row__image {
      order: 1; } }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media only screen and (max-width: 989px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media only screen and (min-width: 990px) {
  .feature-row__text--left {
    padding-left: 15px; }
  .feature-row__text--right {
    padding-left: 15px; } }

@media only screen and (min-width: 990px) {
  .featured-row__subtext {
    font-size: calc((var(--font-size-base) / (var(--font-size-base))) * 1em); } }

/* Remove at end */
/*.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: 990px) {
    .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: 990px) {
  .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: var(--color-image-overlay);
  opacity: var(--opacity-image-overlay);
  z-index: 1; }

.hero__inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 55px 0;
  z-index: 2; }

.hero__btn {
  margin-top: 27.5px; }

/*================ Fixed width ================
.hero-fixed-width {
  position: relative; }
  .hero-fixed-width::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--color-image-overlay);
    opacity: var(--opacity-image-overlay);
    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; }*/


.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }


.collection-grid {
  margin-bottom: -22px;
  overflow: auto; }

.collection-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 22px; }
  @media only screen and (min-width: 990px) {
    .collection-grid-item {
      margin-bottom: 30px; } }

.collection-grid-item__title {
  color: var(--color-overlay-title-text);
  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; }
  @media only screen and (min-width: 990px) {
    .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: var(--hover-overlay-opacity); }
  .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: var(--color-image-overlay);
  opacity: var(--opacity-image-overlay); }

.collection-back_to_top {
  padding: 25px 0;
  display: flex;
  justify-content: center; }

.collection-back_to_top svg {
  display: block;
  margin: 0 auto; }

.collection-recommended__collections {
  padding-bottom: 40px; }

.collection-recommended__collections h3 {
  padding: 55px 0 40px;
  font-size: calc(((var(--font-h6-desktop)) / (var(--font-size-base))) * 1.04em); /* 32px */
  line-height: 1.31; /* 42px */ }
  @media only screen and (max-width: 989px) {
    .collection-recommended__collections h3 {
    font-size: calc(((var(--font-h6-desktop)) / (var(--font-size-base))) * 0.84em); /* 26px */
    line-height: 1.31; /* 34px */ } }

.collection-recommended__collections_item a {
  position: relative;
  display: block; }

.collection-recommended__collections_item .collection-recommended__collections-img {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px; }

.collection-recommended__collections-img.ratio-container:after {
  padding-bottom: 125%; }

.collection-recommended__collections_item_inner {
  position: absolute;
  bottom: 11px;
  left: 10px;
  width: calc(100% - 25px); }

.collection-recommended__collections_item_inner h4 {
  margin-bottom: 10px; }
  @media only screen and (max-width: 989px) {
    .collection-recommended__collections_item_inner h4 {
    font-size: calc(((var(--font-h4-desktop)) / (var(--font-size-base))) * 1em); /* 42px */
    line-height: 1.29; /* 54px */ } }

.collection-recommended__collections_item_inner h4,
.collection-recommended__collections_item_inner .text {
  color: #fff; }

.collection-recommended__collections_item_inner .cta {
  display: flex;
  align-items: center;
  flex-wrap: none; }

.collection-recommended__collections_item_inner .cta .arrow {
  width: 60px;
  transition: all 0.3s ease;
  margin-top: 0;
  margin-left: 10px;
  height: 1px;
  background: #fff;
  position: relative; }

.collection-recommended__collections_item a:hover .arrow {
  width: 100%; }

.collection-recommended__collections_item_inner .cta .text {
  white-space: nowrap; }

.collection-recommended__collections_item_inner .cta .arrow .head,
.collection-recommended__collections_item_inner .cta .arrow .head:after {
  height: 1px;
  background: #fff;
  width: 7px;
  position: absolute;
  right: -1px;
  top: 2px;
  transform: rotate(-40deg); }

.collection-recommended__collections_item_inner .cta .arrow .head:after {
  content: "";
  border-color: #fff;
  right: -3px;
  top: -3px;
  transform: rotate(80deg); }

.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: -30px;
  margin-left: -30px; }
  @media only screen and (max-width: 989px) {
    .custom-content {
      margin-bottom: -22px;
      margin-left: -22px; } }

.custom__item {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding-left: 30px;
  max-width: 100%; }
  @media only screen and (max-width: 989px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 22px;
      margin-bottom: 22px; }
      .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-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; }

/*================ Linklist ================*/
@media only screen and (max-width: 989px) {
  .custom__item.custom__item--link_list {
    flex: 1 0 100%;
    max-width: none; } }

.custom__linklist {
  margin-left: -15px;
  margin-right: -15px; }
  @media only screen and (min-width: 990px) {
    .custom__linklist {
      margin-left: -12px;
      margin-right: -12px; } }

.custom__linklist-link {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px 0; }
  @media only screen and (min-width: 990px) {
    .custom__linklist-link {
      padding: 3px 12px;
      margin-top: 0;
      margin-bottom: 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: 55px; }

.index-section--newsletter-background {
  background-color: var(--color-bg-alt); }

.rich-text__heading--large {
  font-size: 1.4em; }

.rich-text__heading--small {
  font-size: 0.88em; }

.rich-text__text--large {
  font-size: calc(((var(--font-rich-text-large)) / (var(--font-size-base))) * 1em); }

.rich-text__text--small {
  font-size: calc(((var(--font-rich-text-small)) / (var(--font-size-base))) * 1em); }

.product-card {
  position: relative;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000; }

.grid-view-item__image-wrapper {
  padding-bottom: 124%; }

@media only screen and (min-width: 641px) {
  .desktop-resize .grid-view-item__image-wrapper {
    padding-bottom: calc(62% - 55px);
  }
  .desktop-resize .grid-view-item__image {
    padding-bottom: calc(62% - 55px);
  }
}

.grid-view-item__image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 124%; }

.product-card:hover .grid-view-item__image {
  opacity: 0; }

.product-card:hover .grid-view-item__image-hover {
  opacity: 1; }

.product-card__image-with-placeholder-wrapper {
  position: relative;
  margin: 0 auto 25px;
  border-radius: 25px;
  border: 1px solid #000;
  overflow-y: hidden; }

.product-card .product-card__inventory-items-left {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;  }

.product-card:hover .product-card__inventory-items-left {
  opacity: 1;
  visibility: visible; }

.product-card__add-to-cart,
.product-card__view {
  position: absolute;
  display: none
  bottom: 0;
  padding: 13px 0;
  background: #D5D2CC;
  z-index: 9;
  width: 100%;
  text-align: center;
  cursor: pointer;
  border-radius: 0 0 3px 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
}

.product-card:hover .product-card__add-to-cart,
.product-card:hover .product-card__view {
  transform: translateY(0%); }

.product-card__title {
  display: block; }

.product-card__title span {
  display: block; }

.product-card__title span:first-child {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.product-card__cto-title {
  display: block; }

.product-card__cto-title span {
  border-bottom: 1px solid rgba(0, 0, 0, 1); }

.product-card__vendor {
  display: inline-block;
  margin-top: 18px;
}

.product-card__info-container {
  position: relative;
  color: var(--color-grey);
  padding-top: 10px; }

.product-size__info {
  padding-right: 20px; }

@media only screen and (max-width: 1200px) {
  .product-card__info-container span,
  .product-card__info-container div {
    font-size: calc(var(--font-size-base-mobile) * 0.5882352941px); /* 10px */
    line-height: 1.2; /* 12px */ }
}
@media only screen and (max-width: 989px) {
  .product-card__info-container {
    padding-top: 20px; }

  .product-card__info-right {
    margin-top: 5px; }

  .product-card__info-right .price .product-size__info,
  .product-card__info-right .price .price__regular,
  .product-card__info-right .price .price__sale,
  .product-card__info-right .price .price__unit,
  .product-card__info-right .price .price__badges {
    margin: 0 10px; }

  .product-card__info-right .price dd {
    margin: 0; }

  .product-size__info {
    padding-right: 0; }
}

.brand-item .brand-item__inner {
  max-width: 745px;
  margin: 0 auto;
  display: block; }
  .brand-item .brand-item__inner span {
    display: block;
    padding-top: 20px;
    padding-bottom: 30px;
    max-width: 75%; }
  @media only screen and (min-width: 1025px) {
    .brand-item .brand-item__inner {
      padding: 0 5.1%; } }
  @media only screen and (max-width: 1024px) {
    .brand-item .brand-item__inner {
      max-width: 500px; } }


/* Remove at end */
/*[data-section-type="video-section"] {
  margin: 0 auto; }
  @media only screen and (max-width: 989px) {
    [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%;
  transition: height 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  @media only screen and (min-width: 990px) {
    .video-section-wrapper {
      overflow: hidden; } }
  @media only screen and (max-width: 989px) {
    .video-section-wrapper {
      overflow: visible !important; }
      .video-section-wrapper.video-is-playing {
        margin: 0; }
      .video-section-wrapper.video-is-loaded {
        transition: height 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87), 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: 990px) {
    .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: 990px) {
    .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: 990px) {
    .video-section-wrapper--large.video-section-wrapper--min-height {
      min-height: 775px; } }

.video-section-wrapper--min-height {
  transition: height 0s, margin 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  @media only screen and (max-width: 989px) {
    .video-section-wrapper--min-height.video-is-loaded {
      transition: height 0s, margin 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87); } }

.video-background-wrapper--no-overlay {
  background-color: rgba(var(--color-image-overlay-rgb), 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: var(--color-overlay-title-text); }
  .video-is-paused .video__title {
    display: none; }

/*================ Video styles ================
video {
  background-position: center;
  background-size: cover;
}

.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: 990px) {
    .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: 990px) {
    .video-control__play-wrapper-mobile {
      display: none; } }

.video-control__play-wrapper--with-text {
  margin-top: 30px; }

.video-control__play {
  display: flex;
  justify-content: center;
  align-items: 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: 989px) {
    .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: var(--color-image-overlay);
  opacity: var(--opacity-image-overlay);
  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: 990px) {
    .video-background-wrapper .video__image {
      opacity: 0; } }*/

.product-recommendations__inner {
  padding: 0 0 35px; }
  @media only screen and (min-width: 990px) {
    .product-recommendations__inner .grid__item {
      float: right;  } }

.disclosure {
  position: relative;
  line-height: 0; }

.disclosure__toggle {
  padding-top: 0;
  padding-bottom: 0;
  white-space: nowrap; }

.disclosure-list {
  background-color: var(--color-text-field);
  border: 1px solid var(--color-border);
  bottom: 0;
  left: 0;
  padding: 0;
  position: absolute;
  display: none;
  min-height: auto;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 0; }

.disclosure-list--visible {
  display: block; }

.disclosure-list__item {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-size: 12px;
  white-space: nowrap;
  padding: 5px 95px 5px 10px;
  text-align: left;
  line-height: 1.2;
  border-bottom: 1px solid var(--color-border); }
  .disclosure-list__item:last-child {
    border-bottom: 0; }
  .disclosure-list__item:active {
    opacity: 0.5; }

.disclosure-list__option {
  color: var(--color-text-field-text); }
  .disclosure-list__option:focus, .disclosure-list__option:hover {
    color: var(--color-text-field-text) !important; }

.disclosure-list__item--current .disclosure-list__option {
  opacity: 0.5; }

/*================ Selectors ================*/
.selectors-form {
  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-bottom: 15px; }
  @media only screen and (min-width: 990px) {
    .selectors-form {
      -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; } }

.site-footer .selectors-form {
  position: relative;
  bottom: -7px;
  margin: 0; }

.selectors-form__item {
  padding-bottom: 15px;
  margin: 0; }
  @media only screen and (min-width: 990px) {
    .selectors-form__item {
      padding-bottom: 0; }
      .selectors-form__item:first-of-type {
        margin-left: 0; } }


/*============================================================================
  Sections and Blocks
==============================================================================*/

/*================ Still needed? ================*/
/*================ Full bleed image with text ================*/
.feature-row__full-bleed__video-container {
  max-height: 100vh; }

.feature-row__full-bleed__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.feature-row__full-bleed__video-container .sound-station {
  position: relative;
  z-index: 9;
  text-align: right; }

.feature-row__full-bleed__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }

.feature-row__full-bleed__video-container .sound-station .icon-mute,
.feature-row__full-bleed__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.feature-row__full-bleed__video-container .sound-station .icon-sound,
.feature-row__full-bleed__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.feature-row__full-bleed__video {
  object-fit: cover; }

.feature-row__full-bleed .feature-row {
  align-items: stretch; }

@media only screen and (min-width: 990px) {
  .feature-row__full-bleed .feature-row {
  max-height: 100vh; }
}

.feature-row__full-bleed .feature-row .feature-row__large {
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: start; }


.feature-row__full-bleed .feature-row .feature-row__small {
  background-repeat: no-repeat;
  background-size: cover; }

.feature-row__full-bleed .feature-row .feature-row__large h2.h3 {
  flex-grow: 1;
  margin: 0; }

.feature-row__full-bleed .feature-row .feature-row__large .title-add-padding-top {
  padding-top: 110px; }

.feature-row__full-bleed .feature-row__text {
  padding-top: 15px; }

.feature-row__full-bleed .feature-row__text .featured-row__subtext {
  max-width: 690px;
  margin-right: 15px; }

.feature-row__full-bleed .feature-row__text .featured-row__subtext-narrow {
  max-width: 615px;
  margin-right: 15px; }

@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .feature-row__full-bleed .feature-row__text .featured-row__subtext,
  .feature-row__full-bleed .feature-row__text .featured-row__subtext-narrow {
    max-width: 487px; }
}

@media only screen and (max-width: 989px) {
  .feature-row__full-bleed .feature-row {
    flex-direction: column;
  }
  .feature-row__full-bleed .feature-row__text--left {
    padding-left: 15px; }
  .feature-row__full-bleed .feature-row__text--right {
    padding-left: 15px; }
}

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .feature-row__full-bleed .feature-row__text .featured-row__subtext,
  .feature-row__full-bleed .feature-row__text .featured-row__subtext-narrow {
    max-width: 612px; }
}

@media only screen and (max-width: 989px) {
  .feature-row__full-bleed .feature-row .feature-row__large {
    order: 1;
    padding-bottom: 20px; }

  .feature-row__full-bleed .feature-row .feature-row__small {
    order: 2; }


  .feature-row__full-bleed .feature-row .feature-row__large.override-mob-order {
    order: 2; }
  .feature-row__full-bleed .feature-row .feature-row__small.override-mob-order {
    order: 1; }

  .feature-row__full-bleed .feature-row .feature-row__large h2.h3 {
    padding-bottom: 320px; }
}

@media only screen and (max-width: 640px) {
  .feature-row__full-bleed .feature-row .feature-row__large .title-add-padding-top {
    padding-top: 45px; }

  .feature-row__full-bleed .feature-row .feature-row__large h2.h3 {
    padding-bottom: 250px; }
}

/*================ Still needed? ================*/
/*================ Full width image ================*/
.hero-swiper .swiper-slide {
  height: auto;
  background-color: #fff;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }

.hero-swiper:hover .swiper-button-next,
.hero-swiper:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible; }

.page-block-full-width-image__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.page-block-full-width-image__video-container .sound-station {
  position: relative;
  z-index: 9;
  text-align: right; }

.page-block-full-width-image__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }

.page-block-full-width-image__video-container .sound-station .icon-mute,
.page-block-full-width-image__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.page-block-full-width-image__video-container .sound-station .icon-sound,
.page-block-full-width-image__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.page-block-full-width-image__video {
  object-fit: cover; }

.page-block-full-width-image {
  position: relative; }

.page-block-full-width-image .page-block-full-width-image__image {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

.page-block-full-width-image .page-block-full-width-image__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0 60px;
  width: 100%;
  z-index: 9; }
  @media only screen and (min-width: 990px) {
    .page-block-full-width-image .page-block-full-width-image__text {
      justify-content: center;
      align-items: baseline;
      padding: 0 100px;
      flex-direction: row; } }

.page-block-full-width-image .text-position__top-center .page-block-full-width-image__text,
.page-block-full-width-image .text-position__top-left .page-block-full-width-image__text {
  top: 12%;
  bottom: auto; }

.page-block-full-width-image .text-position__bottom-center .page-block-full-width-image__text,
.page-block-full-width-image .text-position__bottom-left .page-block-full-width-image__text {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: auto;
  bottom: 30%; /* 160px */ }  

.page-block-full-width-image .text-position__top-left .page-block-full-width-image__text,
.page-block-full-width-image .text-position__bottom-left .page-block-full-width-image__text {
  justify-content: flex-start; }  

.page-block-full-width-image .text-position__top-left .page-block-full-width-image__text .page-block-full-width-image__text-title,
.page-block-full-width-image .text-position__bottom-left .page-block-full-width-image__text .page-block-full-width-image__text-title {
  text-align: left; }

.page-block-full-width-image .page-block-full-width-image__text .page-block-full-width-image__text-title {
  text-align: center; }    

.page-block-full-width-image .page-block-full-width-image__text .page-block-full-width-image__text-title .rte {
  margin: 0 auto 20px; 
  }
  @media only screen and (max-width: 989px) {
    .page-block-full-width-image .page-block-full-width-image__text .page-block-full-width-image__text-title .rte {
      text-align: center; } }

.page-block-full-width-image .page-block-full-width-image__text .page-block-full-width-image__text-title .rte.subtext {
  max-width: 720px; }

.page-block-full-width-image__text-title .btn {
  max-width: 142px;
  padding: 7px 15px 6px;
}

.page-block-full-width-image .large-title p {
  color: var(--color-orange); }

.page-block-full-width-image .rte.subtext p,
.page-block-full-width-image a.btn {
  color: var(--color-white); }

.page-block-full-width-image a.btn {
  border-color: var(--color-white); }

.page-block-full-width-image .text-color__light .page-block-full-width-image__text-title .h1.rte p {
  color: #F15A29; }

.page-block-full-width-image .text-color__light .rte.subtext p,
.page-block-full-width-image .text-color__light a {
  color: var(--color-white); }   
  @media only screen and (max-width: 989px) {
    .page-block-full-width-image .text-color__light a {
      margin: 0 auto;
      text-align: center;
      display: block; } }

@media only screen and (max-width: 1199px) {
  .page-block-full-width-image .text-position__top-center .page-block-full-width-image__text,
  .page-block-full-width-image .text-position__top-left .page-block-full-width-image__text {
    top: 12%; }

  .page-block-full-width-image .text-position__bottom-center .page-block-full-width-image__text,
  .page-block-full-width-image .text-position__bottom-left .page-block-full-width-image__text {
    bottom: 30%; } } 

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .page-block-full-width-image .text-position__top-center .page-block-full-width-image__text,
  .page-block-full-width-image .text-position__top-left .page-block-full-width-image__text {
    top: 15%; }
  
  .page-block-full-width-image__text .page-block-full-width-image__text-title .h1 {
    font-size: 26px; } }

@media only screen and (max-width: 640px) {
  .page-block-full-width-image .text-position__top-center .page-block-full-width-image__text,
  .page-block-full-width-image .text-position__top-left .page-block-full-width-image__text {
    top: 20%; }
  
  .page-block-full-width-image .page-block-full-width-image__text .page-block-full-width-image__text-title .rte {
    max-width: 445px; }
  
  .page-block-full-width-image__text .page-block-full-width-image__text-title .h1 {
    font-size: 26px; }

  .page-block-full-width-image .page-block-full-width-image__text {
    padding: 0 15px; }
}

/*=========== Pillars Module One ============*/

.pillars-module-one {
  padding: 45px 0; }

.pillars-module-one.reduce-padding {
  padding-top: 20px; }

.pillars-module-one__btn-mobile {
  margin-top: 20px;
  max-width: 136px;
  width: 100%; }

.pillars-module-one .grid {
  display: flex; }

@media only screen and (max-width: 989px) {
  .pillars-module-one {
    padding: 50px 0 60px; } 

  .pillars-module-one .grid {
    flex-direction: column; }
}

.pillars-module-one .pillars-module-one__left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative; }
  @media only screen and (max-width: 989px) {
    .pillars-module-one .pillars-module-one__left-column {
      max-width: 600px;
      margin: 0 auto; } }

.pillars-module-one__image-badge {
  position: absolute;
  z-index: 2;
  top: -25px;
  left: 0;
  max-width: 100px;
}

.pillars-module-one .image-on-right .pillars-module-one__image-badge {
  right: -25px;
  left: auto; }
 @media only screen and (max-width: 480px) {
   .pillars-module-one .image-on-right .pillars-module-one__image-badge { 
     right: 0; } }

.pillars-module-one__large-img,
.pillars-module-one__small-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }

.pillars-module-one__large-img:after,
.pillars-module-one__small-img:after {
  padding-bottom: 100%; }

.pillars-module-one .pillars-module-one__right-column {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.pillars-module-one .pillars-module-one__right-column-inner {
  max-width: 510px; }
  @media only screen and (max-width: 989px) {
    .pillars-module-one .pillars-module-one__right-column-inner {
      padding-top: 30px;
      text-align: center; } }

.pillars-module-one h4 {
  margin-bottom: 0; }

.pillars-module-one h2 {
  margin-bottom: 15px; }

.pillars-module-one .rte {
  margin-bottom: 20px; }

.pillars-module-one .btn {
  padding: 7px 14px 6px 0;
  position: relative;
  width: auto;
  margin-top: 13px }

.pillars-module-one .btn span {
   position: absolute;
   top: 48%;
   left: 48%;
   transform: translate(-52%,-52%);
   color: #fff;
}

@media only screen and (max-width: 989px) {
  .pillars-module-one__notes {
     } }

.pillars-module-one__notes {
  border-top: 1px solid rgba(0, 0, 0, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  text-transform: uppercase;
  display: inline-flex; }

.pillars-module-one__notes li {
  border-right: 1px solid #000;
  padding: 15px; }

.pillars-module-one__notes li:first-child {
  padding-left: 0; }

.pillars-module-one__notes li:last-child {
  border-right: 0;
  padding-right: 0; }

.pillars-module-one__notes li span {
  color: #fff; }

/*================ Pillars Module Two – Full Image with text ================*/
.pillars-module-two {
  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: 989px) {
    .pillars-module-two {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.pillars-module-two__video-container {
  max-height: 100vh; }

.pillars-module-two__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.pillars-module-two__video-container .sound-station {
  position: relative;
  z-index: 9; 
  text-align: right; }  

.pillars-module-two__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px; 
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }    

.pillars-module-two__video-container .sound-station .icon-mute,
.pillars-module-two__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.pillars-module-two__video-container .sound-station .icon-sound,
.pillars-module-two__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.pillars-module-two__video {
  object-fit: cover; }

.pillars-module-two .feature-row {
  align-items: stretch; }

@media only screen and (min-width: 990px) {
  .pillars-module-two .feature-row {
  max-height: 100vh; }
}

.pillars-module-two.pillars-module-two__sticky .feature-row {
  max-height: initial;
  align-items: flex-start; }

.pillars-module-two .feature-row .feature-row__text-block,
.pillars-module-two .feature-row .feature-row__text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  margin: 100px auto;
  padding: 0; }

.pillars-module-two .feature-row .feature-row__image-block {
  background-repeat: no-repeat;
  background-size: cover; }

.pillars-module-two.module-three__sticky .feature-row .feature-row__image-block {
  position: sticky;
  -webkit-position: sticky;
  top: 115px;
  padding-top: 23%;
  min-height: calc(100vh - 115px); }

.pillars-module-two .feature-row .feature-row__text-block .rte.h2,
.pillars-module-two .feature-row .feature-row__text-block .rte.h3,
.pillars-module-two .feature-row .feature-row__text-section .rte h2,
.pillars-module-two .feature-row .feature-row__text-section .rte h3 {
  flex-grow: 1;
  margin: 0; }

.pillars-module-two .feature-row .feature-row__text-block .title-add-padding-top,
.pillars-module-two .feature-row .feature-row__text-section .title-add-padding-top{
  padding-top: 110px; }

.pillars-module-two .feature-row__text {
  padding-top: 15px; }

.pillars-module-two .feature-row__text .featured-row__subtext {
  max-width: 690px;
  margin: 0 auto; }

.pillars-module-two .feature-row__text .featured-row__subtext.with-cta {
  margin-bottom: 30px; }

.pillars-module-two.pillars-module-two__sticky .feature-row__text .featured-row__subtext {
  margin-top: 240px; }
  @media only screen and (max-width: 989px) {
    .module-three.module-three__sticky .feature-row__text .featured-row__subtext {
      margin-top: 50px; } }


@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .pillars-module-two .feature-row__text .featured-row__subtext {
    max-width: 487px; }
}

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .pillars-module-two .feature-row__text .featured-row__subtext {
    font-size: 14px;
    max-width: 612px; }
}

@media only screen and (max-width: 989px) {
  .pillars-module-two .feature-row {
    flex-direction: column;
  }
  .pillars-module-two .feature-row__text--left {
    padding-left: 15px; }
  .pillars-module-two .feature-row__text--right {
    padding-left: 15px; } 

  .pillars-module-two .feature-row .feature-row__text-block,
  .pillars-module-two .feature-row .feature-row__text-section {
    margin: 60px 0;
    padding: 0 30px;
    max-width: 100%;
    order: 1; }

  .pillars-module-two .feature-row .feature-row__image-block {
    order: 2; }

  .pillars-module-two .feature-row .feature-row__text-block.override-mob-order,
  .pillars-module-two .feature-row .feature-row__text-section.override-mob-order {
    order: 2; }
  .pillars-module-two .feature-row .feature-row__image-block.override-mob-order {
    order: 1; }

  .pillars-module-two .feature-row .feature-row__text-block .rte.h2,
  .pillars-module-two .feature-row .feature-row__text-block .rte.h3,
  .pillars-module-two .feature-row .feature-row__text-section .rte.h2,
  .pillars-module-two .feature-row .feature-row__text-section .rte.h3 {
    padding-bottom: 60px; } }

@media only screen and (max-width: 640px) {
  .pillars-module-two .feature-row .feature-row__text-block,
  .pillars-module-two .feature-row .feature-row__text-section {
    padding: 0 15px; }

  .pillars-module-two .feature-row .feature-row__text-block .title-add-padding-top,
  .pillars-module-two .feature-row .feature-row__text-section .title-add-padding-top{
    padding-top: 45px; }

  .pillars-module-two .feature-row .feature-row__text-block h2.h3,
  .pillars-module-two .feature-row .feature-row__text-section h2.h3 {
    padding-bottom: 60px; }
  
  .pillars-module-two .feature-row .feature-row__text-block .btn,
  .pillars-module-two .feature-row .feature-row__text-section .btn { margin-top: 0; }

  .pillars-module-two .feature-row .feature-row__image-block {
    min-height: 400px; } }

.pillars-module-two__icon-image {
  max-width: 140px;
  margin: 0 auto 35px; }

.pillars-module-two .btn {
  position: relative;
  padding: 7px 14px 6px;
  width: auto;
  margin-left: -14px; }

.pillars-module-two .btn span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-52%);
}

.pillars-module-two .rte.h6 {
  color: #EC6D26;
  margin-bottom: 15px; }

@media only screen and (max-width: 989px) {
  .pillars-module-two .rte.h6 {
    font-size: 12px; }
}

.pillars-module-two .rte.h1 {
  margin-bottom: 15px; }

/*================ Pillars Module Three – Buttons ================*/

.pillars-module-three {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pillars-module-three__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 989px) {
  .pillars-module-three__inner {
    flex-direction: column; } }

.pillars-module-three .btn {
  max-width: 290px;
  position: relative;
}

.pillars-module-three .btn span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-52%);
}

.pillars-module-three .btn.button-style-five span {
  left: 45%;
  transform: translate(-55%,-52%); }

.pillars-module-three .btn.button-style-three span {
  color: #fff; }

.pillars-module-three .btn.button-style-three span:hover {
  color: #ec6d26; }

.pillars-module-three .btn.button-style-five svg {
  margin-left: 25px; }

/*================ Pillars Module Four – Ticker Bar ================*/
.ticker-bar {
  position: relative;
  z-index: 8; /* 12 */
  width: 100%;
  overflow-x: hidden;
  padding: 15px 0; }

.pillars-module-four .ticker-bar {
  font-family: var(--font-stack-header);
  font-weight: var(--font-weight-body);
  font-style: var(--font-style-body);
  font-size: 18px;
  text-transform: uppercase; }

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .ticker-bar {
    padding: 160px 0; 
  }
}

@media only screen and (max-width: 640px) {
  .ticker-bar {
    padding: 80px 0; 
  }
}

.ticker-bar__inner {
  text-align: center;
  width: 100%;
  overflow: hidden;
  padding: 0; }

.ticker-active .ticker-bar__message {
  display: block;
  padding: 0;
  min-width: 180%;
  position: relative;
  overflow: hidden;
  animation: marquee 45s linear infinite;
  animation-duration: 40s; }

.ticker-active .ticker-bar__message span {
  float: left;
  display: inline-block;
  width: 25%; }

.ticker-active .ticker-bar__message span svg {
  margin-right: 30px; }

.ticker-active .ticker-bar__message:hover {
  animation-play-state:paused; }

@media only screen and (max-width: 640px) {
  .ticker-active .ticker-bar__inner {
    width: 175%;}
  .ticker-active .ticker-bar__message {
    animation-duration: 20s; } }  

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}

/*================ Pillars Module Five – Staff ================*/

.pillars-module-five { 
  padding-top: 60px;
  padding-bottom: 60px; }

.pillars-module-five__wrapper {
  display: flex; }
@media only screen and (max-width: 989px) {
  .pillars-module-five__wrapper {
    flex-direction: column; } }

.pillars-module-five__image {
  border: 1px solid #000;
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.pillars-module-five__image:after {
  padding-bottom: 115%; }

.pillars-module-five__column h3 {
  margin-top: 30px;
}

@media only screen and (max-width: 989px) { 
  .pillars-module-five__column {
    margin-bottom: 50px;
  }
}

/*================ Pillars Module Six – Heading and paragraph ================*/
.pillars-module-six {
  padding-top: 60px;
  padding-bottom: 60px; }

.pillars-module-six__icon-image {
  max-width: 140px;
  margin: 0 auto 35px; }

.pillars-module-six__underline-icon svg {
  margin-top: 10px; /* -10px */
  margin-bottom: 30px; }

.pillars-module-six .h1 {
  max-width: 730px;
  margin: 0 auto; }

.pillars-module-six .rte {
  max-width: 600px; 
  margin: 0 auto; }

.pillars-module-six .rte a {
  color: #000; 
  border-bottom: 1px solid #000; }

.pillars-module-six .btn, .highlighted-block__content .btn {
  position: relative;
  width: auto;
  margin-top: 40px; 
}

.highlighted-block__content .btn {
  margin-top: 0px; 
}

.pillars-module-six .btn svg, .highlighted-block__content .btn svg {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-48%, -48%);
  -webkit-transform: translate(-48%, -48%);
  -moz-transform: translate(-48%, -48%);
  -ms-transform: translate(-48%, -48%); }

/*================ Pillars Module Seven – Venue Feature ================*/

.pillars-module-seven {
  position: relative; }

.pillars-module-seven__content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%; }

.pillars-module-seven__content-inner {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 989px) {
    .pillars-module-seven__content-inner { 
      flex-direction: column; 
    }
  }

.pillars-module-seven__text {
  flex: 1 0 66%; }

.pillars-module-seven__text-inner {
  margin: 0 auto;
  max-width: 500px;
  color: #fff;
  padding-top: 50px; }

.pillars-module-seven__text-inner .h1 { 
  margin-bottom: 15px; }
  @media only screen and (max-width: 989px) {
  	.pillars-module-seven__text-inner .h1 {
      text-align: center; 
    }
  }

.pillars-module-seven__text-inner .rte p { color: #fff; }

.pillars-module-seven__text-inner .rte {
  margin: 0;
  max-width: 330px; }
  @media only screen and (max-width: 989px) {
    .pillars-module-seven__text-inner .rte {
      text-align: center;
      font-size: 14px;
      margin: 0 auto; }
  }

.pillars-module-seven__widget {
  flex: 1 0 34%;
  border-left: 1px solid #000;
  border-right: 1px solid #000; }
  @media only screen and (max-width: 989px) {
    .pillars-module-seven__widget {
      display: none; }
  }

.pillars-module-seven__widget-inner {
  background-color: #FCEEE0;
  padding: 40px 40px;}

.pillars-module-seven__mobile-widget {
  margin-top: 25px;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;}
  @media only screen and (min-width: 990px) {
    .pillars-module-seven__mobile-widget { 
      display: none; } }

.pillars-module-seven__mobile-widget span,
.pillars-module-seven__mobile-widget p {
  color: #fff;
  margin: 0 auto;
}

.pillars-module-seven__mobile-widget p {
  margin-bottom: 0;
}

.pillars-module-seven__widget-inner p a, .pillars-module-seven__mobile-widget p a {
  color: #eb6d27 !important;
  margin-top: 4px;
  text-transform: uppercase;
}

.pillars-module-seven__mobile-widget p {
  margin-top: 10px;
}

.pillars-module-seven__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

@media only screen and (max-width: 640px) {
  .pillars-module-seven__image {
    height: 510px;
  }
}

.pillars-module-seven__image:after {
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, #000000 100%);
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.pillars-module-seven .hours-color {
  color: #f15a29; }
  @media only screen and (max-width: 989px) {
  .pillars-module-seven .hours-color {
    color: #fff; } }

/*================ Pillars Module Eight – Image Row 2 or 3 ================*/

.pillars-module-eight {
  display: block; }

.pillars-module-eight .grid__item {
  position: relative;
  width:100% !important;
}

.pillars-module-eight .pillars-module-eight-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.pillars-module-eight__image-badge {
  position: absolute;
  z-index: 2;
  max-width: 100px;
  height: auto;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
}

.pillars-module-eight .pillars-module-eight-text {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 3; }

.pillars-module-eight .pillars-module-eight-text h3,
.pillars-module-eight .pillars-module-eight-text h6 {
  margin-bottom: 0; }

.pillars-module-eight .pillars-module-eight-text h6 {
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  margin-bottom: 10px; }

/*================ Pillars Module Nine – Image Row of 3 (with mobile swiper) ================*/

.pillars-module-nine {
  display: block; }

.pillars-module-nine .grid__item {
  position: relative;
}

.pillars-module-nine .pillars-module-nine-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.pillars-module-nine .pillars-module-nine-text {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%); }
  @media only screen and (max-width: 640px) {
      .pillars-module-nine .pillars-module-nine-text { 
        padding-bottom: 20px; } }

.pillars-module-nine .pillars-module-nine-text h3,
.pillars-module-nine .pillars-module-nine-text h6 {
  margin-bottom: 0; }

.pillars-module-nine .pillars-module-nine-text h6 {
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  margin-bottom: 10px; }

/*================ Pillars Module Ten – Image Row of 2 (with mobile swiper) ================*/

.pillars-module-ten {
  display: block; }

.pillars-module-ten .grid__item {
  position: relative; }

.pillars-module-ten .pillars-module-ten-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.pillars-module-ten .pillars-module-ten-text {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%); }
  @media only screen and (max-width: 640px) {
    .pillars-module-ten .pillars-module-ten-text { 
      padding-bottom: 20px; } }

.pillars-module-ten .pillars-module-ten-text h3,
.pillars-module-ten .pillars-module-ten-text h6 {
  margin-bottom: 0; }

.pillars-module-ten .pillars-module-ten-text h6 {
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  margin-bottom: 10px; }


/*================ Pillars Module Eleven – Image Row of 2 hover option (with mobile swiper) ================*/

.pillars-module-eleven {
  display: block; }

.pillars-module-eleven .grid__item {
  position: relative;
}

.pillars-module-eleven .pillars-module-eleven-image {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.pillars-module-eleven .grid__item .pillars-module-eleven-text .rte {
  opacity: 0; 
  visibility: hidden;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease; }

.pillars-module-eleven .grid__item:hover .pillars-module-eleven-text .rte {
  opacity: 1; 
  visibility: visible; }

.pillars-module-eleven .pillars-module-eleven-image:after {
  background-color: rgba(0, 0, 0, 0.75);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
}

.pillars-module-eleven .pillars-module-eleven-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  z-index: 2; }
  @media only screen and (max-width: 989px) {
    .pillars-module-eleven .pillars-module-eleven-text {
      bottom: 40px; } }

.pillars-module-eleven .grid__item:hover .pillars-module-eleven-text {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
}

.pillars-module-eleven .grid__item:hover .pillars-module-eleven-image:after {
  opacity: 1;
}

.pillars-module-eleven .pillars-module-eleven-text h3,
.pillars-module-eleven .pillars-module-eleven-text h6 {
  margin-bottom: 0; }

.pillars-module-eleven .pillars-module-eleven-text h6 {
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  margin-bottom: 10px; }


/*================ Pillars Module Twelve – Heading and paragraph ================*/
.pillars-module-twelve {
  padding-top: 35px;
  padding-bottom: 35px; }

.pillars-module-twelve__inner {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000; }

.pillars-module-twelve__ticker-tape {
  border-bottom: 1px solid #000;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%; }

.ticker {
  display: inline-flex;
  font-family: var(--font-stack-header);
  font-weight: var(--font-weight-body);
  font-style: var(--font-style-body);
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite; 
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
 -webkit-animation-name: ticker;
         animation-name: ticker;
}

@media only screen and (max-width: 640px) {
  .ticker { font-size: 14px; }
}

.ticker__item {
  display: inline-flex;
  padding: 15px 7.5px;
  text-transform: uppercase;
  padding: 11px 7.5px 8px; }

.ticker__item svg {
  width: 50px;
  height: 21px;
}

.ticker__item span {
  padding-left: 8px; }

.pillars-module-twelve .ticker__item:nth-child(odd) {
  color: #000; }

.pillars-module-twelve .ticker__item:nth-child(even) {
  color: #EC6D26; }

.pillars-module-twelve .ticker__item {
   font-family: var(--font-stack-accent);
   font-weight: var(--font-weight-accent);
   font-style: var(--font-style-accent);
   font-size: 14px;
}

.pillars-module-twelve__inner-wrapper {
  padding-left: 60px;
  padding-right: 60px; }
  @media only screen and (max-width: 989px) {
    .pillars-module-twelve__inner-wrapper {
      padding-left: 30px;
      padding-right: 30px; } }

.pillars-module-twelve__title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px; }

.pillars-module-twelve__title-wrapper .h1 { 
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px; }

@media only screen and (max-width: 989px) {
  .pillars-module-twelve__title-wrapper svg {
    display: none; } }

.pillars-module-twelve__icon-image {
  max-width: 140px;
  margin: 0 auto 35px; }

.pillars-module-twelve .rte {
  max-width: 600px; 
  margin: 25px auto; }

.pillars-module-twelve .rte a {
  color: #000; 
  border-bottom: 1px solid #000; }

.pillars-module-twelve__images-wrapper {
  display: flex;
  margin-bottom: 30px; }
  @media only screen and (max-width: 989px) {
    .pillars-module-twelve__images-wrapper {
      flex-direction: column; } }

.pillars-module-twelve__column a:not([disabled]):hover {
  color: #ec6d26; }

.pillars-module-twelve__image {
  position: relative;
  border: 1px solid #000;
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px; }

.pillars-module-twelve__image:after {
  padding-bottom: 130%; }

.pillars-module-twelve__images-wrapper h4 {
  margin-bottom: 0; }
  @media only screen and (max-width: 989px) {
    .pillars-module-twelve__images-wrapper h4 {
      font-size: 28px; } }

.pillars-module-twelve__images-wrapper h3 {
  margin-bottom: 20px; }

.pillars-module-twelve__image-one-badge,
.pillars-module-twelve__image-two-badge,
.pillars-module-twelve__image-three-badge {
  position: absolute;
  z-index: 2;
  max-width: 100px;
  height: auto;
}

/*================ Pillars Module Thirteen – Beer feature with ticker tape ================*/
.pillars-module-thirteen {
  padding-top: 35px;
  padding-bottom: 35px; }

.pillars-module-thirteen__inner {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000; }

.pillars-module-thirteen__inner .pattern-bottom-cream {
  background-size: 6.63%; }
  @media only screen and (min-width: 990px) {
    .pillars-module-thirteen__inner .pattern-bottom-cream {
  		min-height: 23px;
        padding-bottom: 1.5%; } }
  @media only screen and (max-width: 989px) {
    .pillars-module-thirteen__inner .pattern-bottom-cream {
  	  background-size: 15.12%; } }
  @media only screen and (min-width: 640px) and (max-width: 989px) {
    .pillars-module-thirteen__inner .pattern-bottom-cream {
      height: 30px; } }
  @media only screen and (max-width: 490px) {
    .pillars-module-thirteen__inner .pattern-bottom-cream {
      height: 19px} }
  @media only screen and (max-width: 375px) {
    .pillars-module-thirteen__inner .pattern-bottom-cream {
      height: 16px} }

.pillars-module-thirteen__ticker-tape {
  border-bottom: 1px solid #000; }

.pillars-module-thirteen .ticker__item {
   font-family: var(--font-stack-accent);
   font-weight: var(--font-weight-accent);
   font-style: var(--font-style-accent);
   font-size: 14px;
}

.pillars-module-thirteen .ticker__item:nth-child(odd) {
  color: #000; }

.pillars-module-thirteen .ticker__item:nth-child(even) {
  color: #EC6D26; }

.pillars-module-thirteen .grid {
  display: flex; }

.pillars-module-thirteen__inner-content {
  padding-top: 60px;
  padding-bottom: 60px; }

@media only screen and (max-width: 989px) {
  .pillars-module-thirteen {
    padding: 50px 0 60px; } 

  .pillars-module-thirteen .grid {
    flex-direction: column; }
}

.pillars-module-thirteen .pillars-module-thirteen__left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; }
  @media only screen and (max-width: 989px) {
    .pillars-module-thirteen .pillars-module-thirteen__left-column {
      max-width: 600px;
      margin: 0 auto; } }

.pillars-module-thirteen__large-img,
.pillars-module-thirteen__small-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }

.pillars-module-thirteen__large-img:after,
.pillars-module-thirteen__small-img:after {
  padding-bottom: 100%; }

.pillars-module-thirteen .pillars-module-thirteen__right-column {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.pillars-module-thirteen .pillars-module-thirteen__right-column-inner {
  max-width: 510px; }
  @media only screen and (max-width: 989px) {
    .pillars-module-thirteen .pillars-module-thirteen__right-column-inner {
      margin-top: 30px;
      text-align: center; } }

.pillars-module-thirteen h4 {
  margin-bottom: 0; }

.pillars-module-thirteen h2 {
  margin-bottom: 15px; }

.pillars-module-thirteen .rte {
  margin-bottom: 20px; }

.pillars-module-thirteen .btn {
  padding: 7px 14px 6px 0;
  position: relative;
  width: auto; }

.pillars-module-thirteen .btn span {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-52%,-52%);
  color: #fff; }

/*=========== Pillars Module Fourteen – Menu List ============*/

.pillars-module-fourteen {
  display: block; }

.pillars-module-fourteen__inner {
  display: flex;
  justify-content: center; }

.pillars-module-fourteen__inner ul {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px; }
  @media only screen and (max-width: 989px) {
    .pillars-module-fourteen__inner ul {
      overflow-x: scroll; } }

.pillars-module-fourteen__inner li {
  text-transform: uppercase;
  font-size: 18px;
  margin-left: 15px;
  margin-right: 15px;
  white-space: nowrap; }

.pillars-module-fourteen__inner li a.pillars-module-fourteen__link--active,
.pillars-module-fourteen__inner li a:hover {
  color: #EC6D26; }

.pillars-module-fourteen__inner li a.pillars-module-fourteen__link--active {
  border-bottom: 1px solid #EC6D26; }


/*=========== Pillars Module Fifteen ============*/

.pillars-module-fifteen {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px; }


.pillars-module-fifteen__title-btn {
  display: flex;
  flex-direction: column;
  align-items: center; }

.pillars-module-fifteen__icon-features {
  display: flex; 
  flex-direction: row;
  justify-content: center;
  margin-top: 30px; }

.pillars-module-fifteen__icon-features .h5 {
  max-width: 175px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px; }

@media only screen and (max-width: 989px) {
  .pillars-module-fifteen {
    flex-direction: column; }
  
  .pillars-module-fifteen__icon-features {
    margin-top: 50px;
    align-items: center;
    flex-wrap: wrap; }
  
  .pillars-module-fifteen__icon-features div {
  	flex: 1 0 50%;
    margin-bottom: 30px; }
  
  .pillars-module-fifteen__icon-features div:nth-child(3) {
    margin-bottom: 0; }
}

.pillars-module-fifteen .h2 {
  text-align: left; }

.pillars-module-fifteen .btn {
  position: relative;
  width: auto; }

.pillars-module-fifteen .btn svg {
  position: absolute;
  top: 50%; /* 48% */
  left: 50%; /* 48% */
  transform: translate(-50%,-50%);
  color: #fff; }

.pillars-module-fifteen .pillars-module-fifteen__icon-image {
  max-width: 100px;
  margin: 0 auto;
  margin-bottom: 30px; }

/*================ Pillars Module Sixteen – Socials ================*/

.pillars-module-sixteen {
  padding-top: 35px;
  padding-bottom: 35px;
}

.pillars-module-sixteen h4 {
  margin-bottom: 0; }

.pillars-module-sixteen ul {
  display: flex;
  justify-content: center;
  margin-bottom: 15px; }

.pillars-module-sixteen li {
  margin: 0 5px; }

.pillars-module-sixteen li svg {
  width: 32px;
  height: 32px; }

/*================ Pillars Module Seventeen – Image (with gutters) with text ================*/
.pillars-module-seventeen {
  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;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media only screen and (max-width: 989px) {
    .pillars-module-seventeen {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.pillars-module-seventeen__video-container {
  max-height: 100vh; }

.pillars-module-seventeen__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.pillars-module-seventeen__video-container .sound-station {
  position: relative;
  z-index: 9; 
  text-align: right; }  

.pillars-module-seventeen__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px; 
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }    

.pillars-module-seventeen__video-container .sound-station .icon-mute,
.pillars-module-seventeen__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.pillars-module-seventeen__video-container .sound-station .icon-sound,
.pillars-module-seventeen__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.pillars-module-seventeen__video {
  object-fit: cover; }

.pillars-module-seventeen .feature-row {
  align-items: stretch; }

@media only screen and (min-width: 990px) {
  .pillars-module-seventeen .feature-row {
  max-height: 100vh; }
}

.pillars-module-seventeen.pillars-module-seventeen__sticky .feature-row {
  max-height: initial;
  align-items: flex-start; }

.pillars-module-seventeen .feature-row .feature-row__text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 460px;
  margin: 100px auto;
  padding: 0; }
  @media only screen and (min-width: 990px) and (max-width: 1200px) {
    .pillars-module-seventeen .feature-row .feature-row__text-block {
      margin: 100px 30px; } }

.pillars-module-seventeen .feature-row .feature-row__image-block {
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #000; }

.pillars-module-seventeen.module-three__sticky .feature-row .feature-row__image-block {
  position: sticky;
  -webkit-position: sticky;
  top: 115px;
  padding-top: 23%;
  min-height: calc(100vh - 115px); }

.pillars-module-seventeen .feature-row .feature-row__text-block .rte.h2,
.pillars-module-seventeen .feature-row .feature-row__text-block .rte.h3 {
  flex-grow: 1;
  margin: 0; }

.pillars-module-seventeen .feature-row .feature-row__text-block .title-add-padding-top {
  padding-top: 110px; }

.pillars-module-seventeen .feature-row__text {
  padding-top: 15px; }

.pillars-module-seventeen .feature-row__text .featured-row__subtext {
  max-width: 690px;}

.pillars-module-seventeen .feature-row__text .featured-row__subtext.with-cta {
  margin-bottom: 30px; }

.pillars-module-seventeen.pillars-module-seventeen__sticky .feature-row__text .featured-row__subtext {
  margin-top: 240px; }
  @media only screen and (max-width: 989px) {
    .module-three.module-three__sticky .feature-row__text .featured-row__subtext {
      margin-top: 50px; } }


@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .pillars-module-seventeen .feature-row__text .featured-row__subtext {
    max-width: 487px; }
}

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .pillars-module-seventeen .feature-row__text .featured-row__subtext {
    font-size: 14px;
    max-width: 612px; }
}

@media only screen and (max-width: 989px) {
  .pillars-module-seventeen .feature-row {
    flex-direction: column;
  }
  .pillars-module-seventeen .feature-row__text--left {
    padding-left: 15px; }
  .pillars-module-seventeen .feature-row__text--right {
    padding-left: 15px; } 

  .pillars-module-seventeen .feature-row .feature-row__text-block {
    margin: 60px 0;
    padding: 0;
    max-width: 100%;
    order: 1; }

  .pillars-module-seventeen .feature-row .feature-row__image-block {
    order: 2; }

  .pillars-module-seventeen .feature-row .feature-row__text-block.override-mob-order {
    order: 2; }
  .pillars-module-seventeen .feature-row .feature-row__image-block.override-mob-order {
    order: 1; }

  .pillars-module-seventeen .feature-row .feature-row__text-block .rte.h2,
  .pillars-module-seventeen .feature-row .feature-row__text-block .rte.h3 {
    padding-bottom: 60px; } }

@media only screen and (max-width: 640px) {
  .pillars-module-seventeen .feature-row .feature-row__text-block {
    padding: 0; }

  .pillars-module-seventeen .feature-row .feature-row__text-block .title-add-padding-top {
    padding-top: 45px; }

  .pillars-module-seventeen .feature-row .feature-row__text-block h2.h3 {
    padding-bottom: 60px; }
  
  .pillars-module-seventeen .feature-row .feature-row__text-block .btn { margin-top: 0; }

  .pillars-module-seventeen .feature-row .feature-row__image-block {
    min-height: 400px; } }

.pillars-module-seventeen__icon-image {
  max-width: 140px;
  margin: 0 auto 35px; }

.pillars-module-seventeen .rte.h6 {
  color: #EC6D26;
  margin-bottom: 15px; }

@media only screen and (max-width: 989px) {
  .pillars-module-seventeen .rte.h6 {
    font-size: 12px; }
}

.pillars-module-seventeen .rte.h1 {
  margin-bottom: 15px; }


/*================ Pillars Module Eighteen – Scrollable image gallery ================*/
.pillars-module-eighteen {
  padding-top: 45px;
  padding-bottom: 45px; }
  @media only screen and (max-width: 640px) {
    .pillars-module-eighteen {
      padding-top: 25px;
      padding-bottom: 25px; } }

.pillars-module-eighteen__inner {
  display: flex;
  align-items: center;
  margin-left: 70px; }
  @media only screen and (max-width: 640px) {
    .pillars-module-eighteen__inner { 
      margin-left: 30px; } }

.pillars-module-eighteen__title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 35px; }
  @media only screen and (max-width: 640px) {
    .pillars-module-eighteen__title-container {
      margin-right: 20px; } }

.pillars-module-eighteen__title-container h3 {
  margin-bottom: 10px; }
  @media only screen and (max-width: 640px) {
    .pillars-module-eighteen__title-container h3 {
      display: none; } }

.pillars-module-eighteen-swiper.swiper-container {
  width: 100%;
  height: 100%; }

.pillars-module-eighteen-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.pillars-module-eighteen-swiper .swiper-slide .pillars-module-eighteen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #000; }

.pillars-module-eighteen-swiper .swiper-slide .pillars-module-eighteen-image:after {
  padding-bottom: 100%; }


/*================ Pillars Module Nineteen – Full width image ================*/

.pillars-module-nineteen__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.pillars-module-nineteen__video-container .sound-station {
  position: relative;
  z-index: 9; 
  text-align: right; }  

.pillars-module-nineteen__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px; 
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }    

.pillars-module-nineteen__video-container .sound-station .icon-mute,
.pillars-module-nineteen__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.pillars-module-nineteen__video-container .sound-station .icon-sound,
.pillars-module-nineteen__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.pillars-module-nineteen__video {
  object-fit: cover; }

.pillars-module-nineteen__text {
  z-index: 9; }

.pillars-module-nineteen {
  position: relative; }

.pillars-module-nineteen .pillars-module-nineteen__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid #000; }

.pillars-module-nineteen .pillars-module-nineteen__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  width: 100%;
  bottom: 60px; }

@media only screen and (min-width: 990px) {
  .pillars-module-nineteen .pillars-module-nineteen__text.with-btn {
    justify-content: flex-end;
    align-items: baseline;
    flex-direction: row;
  }
  .pillars-module-nineteen .pillars-module-nineteen__text {
    justify-content: center;
    align-items: baseline;
    flex-direction: row;
  }
}

.pillars-module-nineteen .pillars-module-nineteen__text .pillars-module-nineteen__text-title {
  flex: 0 0 50%;
  text-align: center; }

.pillars-module-nineteen .pillars-module-nineteen__text .pillars-module-nineteen__text-button {
  flex: 0 0 25%;
  text-align: right; }

@media only screen and (max-width: 989px) {
  .pillars-module-nineteen .pillars-module-nineteen__text .pillars-module-nineteen__text-title .h3 p {
    font-size: 30px; }

  .pillars-module-nineteen .pillars-module-nineteen__text .pillars-module-nineteen__text-button {
    padding-top: 50px; }
}

@media only screen and (max-width: 640px) {
  .pillars-module-nineteen .pillars-module-nineteen__text {
    bottom: 25px; }

  .pillars-module-nineteen .pillars-module-nineteen__text .pillars-module-nineteen__text-title .h3 {
    max-width: 230px;
    margin: 0 auto;
  }
}

/*================ Pillars Module Twenty – Contact form ================*/

.pillars-module-twenty {
  padding-top: 60px; 
  padding-bottom: 60px;
}

.pillars-module-twenty .page-width-narrow {
  max-width: 785px; /*calc(52.5% + 40px);*/
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
} 

.pillars-module-twenty .page-width-narrow .pattern-bottom-cream {
  background-size: 9%;
}

@media only screen and (max-width: 989px) {
  .pillars-module-twenty {
  	padding: 60px 20px; }
  
  .pillars-module-twenty .page-width-narrow .pattern-bottom-cream {
    background-size: 15.12%; } }

@media only screen and (max-width: 480px) {
  .pillars-module-twenty .page-width-narrow .pattern-bottom-cream {
    height: 18px; } }

.pillars-module-twenty h6 {
  max-width: 575px;
  margin: 0 auto 40px;
  font-size: 20px;
  padding-top: 45px; }

@media only screen and (max-width: 989px) {
  .pillars-module-twenty h6 {
    padding-left: 20px;
    padding-right: 20px; } }

.pillars-module-twenty .contact-form {
  max-width: 380px;
  margin: 0 auto;
  padding: 0 10px; }

.pillars-module-twenty .btn {
  margin-top: 20px;
  margin-bottom: 20px; }

.pillars-module-twenty .btn span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-52%); }

.pillars-module-twenty .btn span input {
  background-color: transparent;
  color: #fff;
  text-transform: uppercase; }

.pillars-module-twenty .form-vertical input {
  min-height: 53px;
  padding-left: 18px;
  padding-right: 18px;
}

.pillars-module-twenty .form-vertical textarea {
  padding: 18px;
}

.pillars-module-twenty .form-vertical label {
  margin-top: 22px;
  margin-bottom: 12px;
}

.pillars-module-twenty .page-width-narrow { 
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

/*=========== Pillars Module Twenty One – Trade Assets ============*/

.pillars-module-twenty-one {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pillars-module-twenty-one .page-width-narrow {
  display: flex;
  justify-content: center; }

.pillars-module-twenty-one .pillars-module-twenty-one__left-col {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.pillars-module-twenty-one .pillars-module-twenty-one__right-col {
  border-right: 1px solid #000;
}

@media only screen and (max-width: 989px) {
  .pillars-module-twenty-one .page-width-narrow {
    flex-direction: column;
  }

  .pillars-module-twenty-one .pillars-module-twenty-one__left-col,
  .pillars-module-twenty-one .pillars-module-twenty-one__right-col {
    border-left: 0;
    border-right: 0;
  }
}

.pillars-module-twenty-one .asset-group__container {
  max-width: 400px;
  margin: 0 auto 50px;
  padding: 0 35px;
}

.pillars-module-twenty-one .asset-group__container h3 a:after {
  margin-left: 5px;
  content: url('download-icon.svg');
}

.pillars-module-twenty-one .asset-group__container .assets-group ul li:after {
  margin-left: 5px;
  content: url('download-icon-small.svg');
}

@media only screen and (max-width: 989px) {
  .pillars-module-twenty-one .asset-group__container { margin-bottom: 40px; }
}

.pillars-module-twenty-one__summary {
  margin-top: 30px;
}

@media only screen and (max-width: 989px) {
  .pillars-module-twenty-one__summary {
    margin-top: 10px;
  }
}

.pillars-module-twenty-one .pillars-module-twenty-one__summary .rte {
  max-width: 370px;
  margin: 0 auto;
}

.pillars-module-twenty-one .pillars-module-twenty-one__summary .btn span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-52%);
}

/*================ Module One – Full width image ================*/
.module-one__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.module-one__video-container .sound-station {
  position: relative;
  z-index: 9;
  text-align: right; }

.module-one__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }

.module-one__video-container .sound-station .icon-mute,
.module-one__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.module-one__video-container .sound-station .icon-sound,
.module-one__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.module-one__video {
  object-fit: cover; }

.module-one {
  position: relative; }

.module-one .module-one__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }


/*================ Module Two – Rich text ================*/
.module-two {
  padding-top: 80px;
  padding-bottom: 115px; }

.module-two h5 {
  margin-bottom: 15px; }

.module-two .large-title {
  max-width: 530px;
  margin: 0 auto; }

.module-two .rte {
  max-width: 260px;
  margin: 60px auto 0; }

@media only screen and (max-width: 640px) {
  .module-two {
    padding-top: 20px;
    padding-bottom: 60px; }

  .module-two h5 {
    margin-bottom: 50px; }

  .module-two .rte {
    margin-top: 30px;
    margin-bottom: 0; }
}


/*================ Module Three – Full Image with text ================*/
.module-three {
  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: 989px) {
    .module-three {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.module-three__video-container {
  max-height: 100vh; }

.module-three__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.module-three__video-container .sound-station {
  position: relative;
  z-index: 9; 
  text-align: right; }  

.module-three__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px; 
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }    

.module-three__video-container .sound-station .icon-mute,
.module-three__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.module-three__video-container .sound-station .icon-sound,
.module-three__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.module-three__video {
  object-fit: cover; }

.module-three .feature-row {
  align-items: stretch; }

@media only screen and (min-width: 990px) {
  .module-three .feature-row {
  max-height: 100vh; }
}

.module-three.module-three__sticky .feature-row {
  max-height: initial;
  align-items: flex-start; }

.module-three .feature-row .feature-row__text-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  max-width: 450px;
  margin: 100px auto;
  padding: 0; }

.module-three .feature-row .feature-row__image-block {
  background-repeat: no-repeat;
  background-size: cover; }

.module-three.module-three__sticky .feature-row .feature-row__image-block {
  position: sticky;
  -webkit-position: sticky;
  top: 115px;
  padding-top: 23%;
  min-height: calc(100vh - 115px); }

.module-three .feature-row .feature-row__text-block .rte.h2,
.module-three .feature-row .feature-row__text-block .rte.h3 {
  flex-grow: 1;
  margin: 0; }

.module-three .feature-row .feature-row__text-block .title-add-padding-top {
  padding-top: 110px; }

.module-three .feature-row__text {
  padding-top: 15px; }

.module-three .feature-row__text .featured-row__subtext {
  max-width: 690px;
  margin-right: 15px;
  margin-bottom: 0; }

.module-three .feature-row__text .featured-row__subtext.with-cta {
  margin-bottom: 30px; }

.module-three.module-three__sticky .feature-row__text .featured-row__subtext {
  margin-top: 240px; }
  @media only screen and (max-width: 989px) {
    .module-three.module-three__sticky .feature-row__text .featured-row__subtext {
      margin-top: 50px; } }


@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .module-three .feature-row__text .featured-row__subtext {
    max-width: 487px; }
}

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .module-three .feature-row__text .featured-row__subtext {
    max-width: 612px; }
}

@media only screen and (max-width: 989px) {
  .module-three .feature-row {
    flex-direction: column;
  }
  .module-three .feature-row__text--left {
    padding-left: 15px; }
  .module-three .feature-row__text--right {
    padding-left: 15px; } 

  .module-three .feature-row .feature-row__text-block {
    margin: 60px 0;
    padding: 0 30px;
    max-width: 100%;
    order: 1; }

  .module-three .feature-row .feature-row__image-block {
    order: 2; }

  .module-three .feature-row .feature-row__text-block.override-mob-order {
    order: 2; }
  .module-three .feature-row .feature-row__image-block.override-mob-order {
    order: 1; }

  .module-three .feature-row .feature-row__text-block .rte.h2,
  .module-three .feature-row .feature-row__text-block .rte.h3 {
    padding-bottom: 60px; } }

@media only screen and (max-width: 640px) {
  .module-three .feature-row .feature-row__text-block {
    padding: 0 15px; }

  .module-three .feature-row .feature-row__text-block .title-add-padding-top {
    padding-top: 45px; }

  .module-three .feature-row .feature-row__text-block h2.h3 {
    padding-bottom: 60px; }
  
  .module-three .feature-row .feature-row__text-block .btn { margin-top: 35px; }

  .module-three .feature-row .feature-row__image-block {
    min-height: 400px; } }

.module-three .btn {
  max-width: 142px;
  padding: 7px 14px 6px;
}

/*================ Module Four – Alternate Image with Text ================*/

.module-four {
  padding-top: 120px;
  padding-bottom: 120px; }
  @media only screen and (max-width: 640px) {
    .module-four {
      padding-top: 60px;
      padding-bottom: 60px; } }

.module-four .grid {
  display: flex;
  align-items: center;
  /*min-height: 100vh;*/ }

.module-four__video-container {
  overflow: hidden; }
  
.module-four__video-container.ratio-container:after {
  padding-bottom: 56.25%; }

.module-four__video-container .sound-station {
  position: relative;
  z-index: 9; 
  text-align: right; }  

.module-four__video-container .sound-station svg {
  position: absolute;
  top: 15px;
  right: 15px; 
  cursor: pointer;
  transition: opacity 0.2s ease 0.1s;
  z-index: 99; }    

.module-four__video-container .sound-station .icon-mute,
.module-four__video-container .sound-station .icon-sound.switch {
  visibility: visible;
  opacity: 1; }

.module-four__video-container .sound-station .icon-sound,
.module-four__video-container .sound-station .icon-mute.switch {
  opacity: 0;
  visibility: hidden; }

.module-four__video {
  object-fit: cover; }

.module-four__image a {
  position: relative; }

.module-four__image a {
  opacity: 1;
  -webkit-transition: ease opacity 350ms;
  -moz-transition: ease opacity 350ms;
  -ms-transition: ease opacity 350ms;
  transition: ease opacity 350ms; }

.module-four__image a:hover {
  opacity: 0.9; }

.module-four__image .module-four__img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 3px; }

.orientation-is-portrait.module-four__image .module-four__img:after {
  padding-bottom: 127%; }
.module-four__image .module-four__img:after {
  padding-bottom: 73%; }  

@media only screen and (min-width: 641px) and (max-width: 989px) {
  .orientation-is-landscape.module-four__image {
    width: 50%; }
  .orientation-is-landscape.module-four__text {
    left: 5%;
    width: 45%; } }

.module-four__text .h4.rte {
  margin-bottom: 50px; }  

.module-four .grid .module-four__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* flex-end */}

.module-four .grid .module-four__text .h3 {
  flex-grow: 1;
  align-self: flex-start; }

.module-four .module-four__text-paragraph {
  max-width: 460px;
  font-size: calc(var(--font-size-base) * 1.09px);
  line-height: 1.36; }

.module-four.image-on-right .grid .module-four__text {
  align-items: flex-start; } 

@media only screen and (max-width: 640px) {
  .moduFle-four {
    padding-top: 60px;
    padding-bottom: 60px; }

  .module-four .grid {
    flex-direction: column;
    align-items: flex-start; }

  .module-four.image-on-right .module-four__image {
    display: flex;
    align-self: flex-end; 
    flex-direction: column; } 

  .module-four.image-on-right .grid {
    display: flex;
    flex-direction: column-reverse; }

  .module-four.image-on-right .module-four__image div,
  .module-four.image-on-right .module-four__image img {
    position: relative;
    padding-top: 0 !important; }  

  .module-four .module-four__image {
    margin-bottom: 30px; }

  .module-four.image-is-landscape .module-four__image {
    margin-bottom: 80px; }

  .module-four .module-four__text .h4 {
    margin-bottom: 40px; }

  .module-four .module-four__text-paragraph {
    margin-bottom: 30px; } }


/*================ Module Eight – 3 columns image (optional) with text ================*/
.module-eight {
  padding: 120px 0; }
  @media only screen and (max-width: 640px) {
    .module-eight {
      padding: 60px 0; } }

.module-eight__btn-container {
  margin-top: 80px; }

.module-eight__container-inner .rte.link-tint a {
  color: rgba(0, 0, 0, 0.6); }

.module-eight__container {
  width: 100%;
  margin: 0 auto; }

.module-eight__container h3 {
  margin-bottom: 60px; }

.module-eight__container-inner {
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 640px) {
    .module-eight__container-inner {
      flex-direction: column; } }

.module-eight__container-inner div {
  max-width: 320px;
  margin: 0 auto;
  padding: 0 15px; }
  @media only screen and (max-width: 989px) {
    .module-eight__container-inner div {
      margin-bottom: 50px; }
    .module-eight__container-inner div:last-child {
      margin-bottom: 0; } }

.module-eight__container-inner div img {
  max-width: 73px;
  width: 100%;
  margin: 0 auto; }

.module-eight__container-inner div img.large-image {
  max-width: 145px;
  margin-bottom: 10px; }

.module-eight__container h5 {
  font-size: calc(var(--font-size-base) * 1px);
  margin-top: 5px;
  margin-bottom: 30px; }

.module-eight__btn-container .btn {
  max-width: 220px;
  width: auto; }

.module-eight__btn-container .rte {
  margin-top: 20px; }


/*================ Module Eleven – Two 50% content blocks ================*/
.module-eleven {
  display: flex;
  padding-top: 120px;
  padding-bottom: 120px; }
  @media only screen and (max-width: 640px) {
    .module-eleven {
      flex-direction: column;
      padding-top: 60px;
      padding-bottom: 60px; } }

.module-eleven__left-column,
.module-eleven__right-column {
  flex: 1 0 50%; }
  @media only screen and (max-width: 640px) {
    .module-eleven__left-column,
    .module-eleven__right-column {
      flex: 1 0 100%; } }

.module-eleven__left-column {
  margin-bottom: 60px; }
  @media only screen and (min-width: 641px) {
    .module-eleven__left-column {
      border-right: 1px solid rgba(0, 0, 0, 0.15);
      margin-bottom: 0; } }

.module-eleven__column-inner {
  max-width: 380px;
  margin: 0 auto; }
  @media only screen and (min-width: 769px) and (max-width: 989px) {
    .module-eleven__column-inner {
      padding: 0 30px; } }
  @media only screen and (min-width: 641px) and (max-width: 768px) {
    .module-eleven__column-inner {
      padding: 0 60px; } }
  @media only screen and (max-width: 640px) {
    .module-eleven__column-inner {
      padding: 0 30px; } }

.module-eleven__column-inner.module-eleven__column-inner-narrow {
  max-width: 340px; }

.module-eleven__img {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px; }

.module-eleven__img.ratio-container:after {
  padding-bottom: 120%; } /*134*/
  @media only screen and (max-width: 989px) {
    .module-ten__img.ratio-container:after {
      padding-bottom: 106%; } }

.module-eleven__column-inner-multiple {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px; }

.module-eleven__column-inner-multiple .module-eleven__img {
  border-radius: 3px;
  flex: 1 0 calc(50% - 15px);
  margin: 0 7.5px 15px; }

.module-eleven__column-inner-multiple {
  margin-bottom: -14px; }

.module-eleven__column-inner-multiple .module-eleven__img.ratio-container:after {
  padding-bottom: 120.6%; }

.module-eleven__text-wrapper {
  padding: 0 20px; }
  @media only screen and (min-width: 641px) and (max-width: 768px) {
    .module-eleven__text-wrapper {
      padding: 0; } }

.module-eleven__column-inner h3 {
  margin: 14px auto 24px; }

.module-eleven__column-inner .rte {
  margin-bottom: 0; }

.module-eleven__column-inner a.arrow-accent-cta {
  display: inline-block;
  margin-top: 20px; }



/*================ Module Sixteen – Link list ================*/
.module-sixteen {
  padding: 35px 0; }

.module-sixteen__links-container {
  position: relative; }

.module-sixteen__links-container .icon-circle-arrow-right {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%); }

.module-sixteen ul {
  display: flex;
  align-items: center; }

.module-sixteen li {
  text-align: center;
  padding: 0 30px;
  flex: 1 0 126px; }

.module-sixteen li a {
  display: flex;
  flex-direction: column;
  align-items: center; }

.module-sixteen li img {
  max-height: 49px; }

.module-sixteen li span {
  max-width: 100px;
  margin-top: 15px; }


/*================ Module Eighteen – Richtext (Large Text) ================*/
.module-eighteen {
  padding-top: 60px;
  padding-bottom: 60px; }

.module-eighteen .rte {
  max-width: 700px;
  margin: 0 auto; }

.module-eighteen .arrow-accent-cta {
  display: block;
  margin-top: 25px; }


/*================ Module Nineteen – Rich text Alternative ================*/
.module-nineteen {
  padding-top: 80px;
  padding-bottom: 115px; }

.module-nineteen h5 {
  margin-bottom: 15px; }

.module-nineteen .rte {
  max-width: 655px;
  margin: 60px auto 0; }

.module-nineteen__email-addresses {
  max-width: 460px;
  margin: 65px auto 0; }

.module-nineteen__email-addresses-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15); }

.module-nineteen__email-addresses-row p {
  margin-top: 8px;
  margin-bottom: 8px; }
  @media only screen and (max-width: 989px) {
    .module-nineteen__opening-times-row p {
      margin-top: 6px;
      margin-bottom: 6px; } }

@media only screen and (max-width: 640px) {
  .module-nineteen {
    padding-top: 20px;
    padding-bottom: 60px; }

  .module-nineteen h5 {
    margin-bottom: 50px; }

  .module-nineteen .rte {
    margin-top: 30px;
    margin-bottom: 0; }
}




.block__video {
  position: relative;

  .sound-icons,
  .control-icons {
    position: absolute;
    top: em(30);
    right: em(30);
    z-index: 1;
    cursor: pointer;
  }

  .sound-icons {
    .icon-mute {
      display: inline;
    }
    .icon-sound {
      display: none;
    }
  }
  .control-icons {
    &.with-sound {
      right: em(70);
    }

    .icon-play {
      display: inline;
    }
    .icon-pause {
      display: none;
    }
  }

  &.video-playing {
    .icon-play {
      display: none;
    }
    .icon-pause {
      display: inline;
    }
  }

  &.play-with-sound {
    .icon-mute {
      display: none;
    }
    .icon-sound {
      display: inline;
    }
  }

  &.dark-section {
    svg {
      g, path, line {
        stroke: #fff;
      }
    }
  }

  video {
    width: 100%;
    display: block;
  }

  @include media-query($small) {
    .sound-icons,
    .control-icons {
      right: em(15);
    }
    .control-icons {
      &.with-sound {
        right: em(55);
      }
    }
  }
}

.shopify-challenge__container {
  padding-top: 200px;
  padding-bottom: 200px;
}


/* ============================================================================
  Spacing
============================================================================== */
.remove-padding-top {
  padding-top: 0; }
.remove-padding-bottom {
  padding-bottom: 0; }  
  @media only screen and (min-width: 641px) {
    .more-padding-top.remove-padding-top {
      padding-top: 0; }
    .more-padding-bottom.remove-padding-bottom {
      padding-bottom: 0; } }  
  @media only screen and (max-width: 640px) {
    .remove-mobile-padding-top,
    .more-padding-top.remove-mobile-padding-top {
      padding-top: 0; }
    .remove-mobile-padding-bottom,
    .more-padding-bottom.remove-mobile-padding-bottom {
      padding-bottom: 0; } }  

/* ============================================================================
  Quickview
============================================================================== */
.quick-view-wrapper {
  position: fixed;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  opacity: 0;
  visibility: hidden; 
  z-index: 12; }

.quick-view-wrapper.is-active {
  opacity: 1;
  visibility: visible; }

.quick-view {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 110px;
  background: #FBF9F7;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateY(100%); }

.quick-view-wrapper.is-active .quick-view {
  transform: translateY(0%); } 

.quick-view__mask {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); 
  z-index: 9;}

.quick-view__container {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 989px) {
    .quick-view__container {
      flex-direction: column; } }

.quick-view__details {
  display: flex;
  align-items: center;
  width: 25%; }
  @media only screen and (max-width: 989px) {
    .quick-view__details {
      flex-direction: column;
      width: 100%; } }

.quick-view__container .product__title,
.quick-view__container .product__price {
  font-size: calc(var(--font-size-base) * 1.143px); /* 16px */
  line-height: 1.36; /* 20px */ }

.quick-view__container .product__price {
  margin-top: 0; }

@media only screen and (max-width: 989px) {
  .quick-view__container .product__details {
    padding-top: 25px;
    padding-bottom: 25px; }

  .quick-view__container .product__price .price {
    justify-content: center; } 
}

.quick-view .product__fulldetails {
  padding: 0 35px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 110px; }
  @media only screen and (max-width: 989px) {
    .quick-view .product__fulldetails {
      border-left: 0;
      line-height: 1;
      padding: 20px 35px; } }

.quick-view .product__fulldetails a {
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6); }

.quick-view .product__fulldetails a:hover {
  color: rgba(0, 0, 0, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 1); }

.quick-view__aside {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 75%; }
  @media only screen and (max-width: 989px) {
    .quick-view__aside {
      flex-direction: column;
      width: 100%; } }

.quick-view__aside form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }

.quick-view__aside .selector-wrapper {
  background: #edebe7;
  margin: 0;
  padding: 5px;
  border-radius: 3px;
  height: 47px;
  margin-right: 15px;
  width: 180px; }
  @media only screen and (max-width: 989px) {
    .quick-view__aside .selector-wrapper {
      margin-left: 15px;
      margin-bottom: 15px; } }

.quick-view__aside .quantity-wrapper {
  margin-bottom: 0;
  margin-right: 30px; }

.quick-view__aside .product-form__cart-submit {
  height: 110px;
  padding: 20px;
  min-width: 255px;
  width: 100%; }
  @media only screen and (max-width: 989px) {
    .quick-view__aside .product-form__cart-submit {
    height: 50px; } }

.quick-view__aside .product-form__controls-group {
  margin-top: 0;
  flex-wrap: nowrap; }
  @media only screen and (max-width: 989px) {
    .quick-view__aside .product-form__controls-group {
      width: 100%; } }

.quick-view__loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%); }

.quick-view__close {
  padding: 20px;
  cursor: pointer; }
  @media only screen and (max-width: 989px) {
    .quick-view__close {
      position: absolute;
      top: -95px; } }

.quick-view__close * {
  pointer-events: none; }

/* ============================================================================
  Search Drawer
============================================================================== */
.drawer-page-content::after {
  background: transparent;
}

/* ============================================================================
  Module-nine
============================================================================== */
.module-nine-container {
  width: 100%;
}

@media only screen and (max-width: 989px) {
  .module-nine-container {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}

/* ============================================================================
  Table JS
============================================================================== */
.table-js-arrow {
  display: none; }

.table-js .swiper-button__underlay {
  display: none; }

@media only screen and (max-width: 989px) {
  .table-js  {
    position: relative;
  }

  .accordion-wrapper .table-js {
    margin-bottom: 40px; }

  .table-js__container {
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
  }

  .table-js.is-active table {
    min-width: 100%;
    margin: 0!important;
    width: auto!important;
  }

  .table-js.is-active table td {
    min-width: 120px;
  }

  .table-js-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    cursor: pointer;
    z-index: 10; }

  .table-js-arrow:after {
    content: url('swiper-arrow-right.svg')!important;
    width: 44px!important;
    height: 44px!important;
    margin-top: -22px!important;
    right: 20px !important; }  

  .table-js-arrow.is-active,
  .table-js .swiper-button__underlay.is-active {
    display: block; }
}

/* ============================================================================
  TO BE REMOVED
============================================================================== */
body {
  overflow-x: hidden;
}
/* Karmoon END */

.pre-footer__time h4 {
  font-size: calc(((var(--font-h1-desktop)) / (var(--font-size-base))) * 1.5em);
  line-height: 1.14;
  position: relative;
}

.pre-footer__time h4 span {
  font-size: 12px;
  position: absolute;
  top: 17px;
}






/*=============== Ajax cart ===============*/
 .cart-ajax__wrapper .cart-ajax {
	 -ms-transform: translateX(100%);
	 -webkit-transform: translateX(100%);
	 transform: translateX(100%);
}
 .cart-ajax__wrapper.cart-ajax--show .cart-ajax__background {
	 pointer-events: all;
	 opacity: 1;
}
 .cart-ajax__wrapper.cart-ajax--show .cart-ajax {
	 pointer-events: all;
	 -ms-transform: translateX(0%);
	 -webkit-transform: translateX(0%);
	 transform: translateX(0%);
}
 .cart-ajax__tools {
	 position: fixed;
	 right: 60px;
	 bottom: 30px;
	 left: 60px;
	 margin-top: 30px;
	 text-align: center;
}
 @media only screen and (max-width: 640px) {
	 .cart-ajax__tools {
		 right: 30px;
		 left: 30px;
	}
}
 .cart-ajax__tools p {
	 font-size: 13px;
	 line-height: 17px;
}
 .ie9 .cart-ajax__tools, html[data-useragent*='MSIE 10.0'] .cart-ajax__tools, html[data-useragent*='rv:11.0'] .cart-ajax__tools {
	 position: absolute;
	 width: 370px;
}
 .cart-ajax__tools .btn {
	 width: 100%;
	 margin-bottom: 20px;
}
 .cart-ajax__tools .btn:last-child {
	 margin-bottom: 0;
}
 .cart-ajax__tools .btn.btn--tertiary {
	 margin-bottom: 20px;
}
 .cart-ajax__background {
	 position: fixed;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 z-index: 1000;
	 overflow: auto;
	 padding: 20px 420px 20px 20px;
	 background: rgba(226, 226, 226, 0.9);
	 opacity: 0;
	 pointer-events: none;
	 transition: 0.8s;
}
 .cart-ajax {
	 position: fixed;
	 right: 0;
	 top: 0;
	 bottom: 0;
	 z-index: 99999;
	 padding: 60px 60px 30px;
	 max-width: 100%;
	 width: 480px;
	 border: none;
	 background-color: #fff;
	 pointer-events: none;
	 transition: all 0.4s cubic-bezier(0.4, 0, 1, 1);
}
 @media only screen and (max-width: 640px) {
	 .cart-ajax {
		 width: 343px;
		 padding: 30px;
	}
}
/*=============== Ajax header section ===============*/
.cart-ajax__close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px 4px;
}

 @media only screen and (max-width: 640px) {
	 .cart-ajax__close {
		 top: 20px;
		 right: 20px;
	}
}
 .cart-ajax__header {
	 text-align: left;
}
 .cart-ajax__title {
	 margin: 0;
	 text-transform: uppercase;
}
 @media only screen and (max-width: 640px) {
	 .cart-ajax__title {
		 font-size: 22px;
		 line-height: 30px;
	}
}
 .cart-ajax__subtitle {
	 margin-top: 0;
}
/*=============== Ajax main body/rows of product ===============*/
 .cart-ajax__list {
	/* height: $cart-height;
	 */
	 max-height: calc(100vh - 200px);
	 padding: 0;
	 overflow-y: scroll;
	 overflow-x: hidden;
	 border-bottom: 1px solid #e2e2e2;
	 margin-bottom: 30px;
}
 @media only screen and (max-width: 640px) {
	 .cart-ajax__list {
		 max-height: calc(100vh - 320px);
	}
}
 .cart-ajax__list::-webkit-scrollbar {
	 width: 1px;
}
 .cart-ajax__list::-webkit-scrollbar-track {
	 box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1);
}
 .cart-ajax__list::-webkit-scrollbar-thumb {
	 background-color: grey;
	 outline: 1px solid white;
}
 .cart-ajax__row {
	 margin-bottom: 30px;
	 padding-bottom: 30px;
	 overflow: hidden;
	 border-bottom: 1px solid #e2e2e2;
	 transition: opacity 0.35s cubic-bezier(0.2, 0.6, 0.4, 1);
}
 .cart-ajax__row.cart-ajax__row--deleted {
	 opacity: 0;
}
 .cart-ajax__row:last-child {
	 border-top-width: 0;
	 margin-bottom: 0;
	 padding-top: 0;
	 border-bottom: 0;
}
 .cart-ajax__row {
	 display: -webkit-flex;
	 display: -ms-flexbox;
	 display: flex;
	 width: 100%;
}
 .cart-ajax__row__column {
	vertical-align: top;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
 .cart-ajax__row__column:nth-child(1) {
	 min-width: 150px;
	 padding: 0 0;
}
 @media only screen and (max-width: 640px) {
	 .cart-ajax__row__column:nth-child(1) {
		 width: 70px;
	}
}
 .cart-ajax__row__column:nth-child(2) {
	 padding: 0;
	 width: inherit;
}
 .cart-ajax__row__column:nth-child(3) {
	 vertical-align: bottom;
}
 .cart-ajax__row__column .quantity-wrapper {
    max-width: 100%;
    float: left;
    margin-bottom: 5px;
    background: none;
    border: 1px solid;
    border-radius: 20px;
}
 .cart-ajax__row__column .quantity-wrapper input {
	 padding: 0;
	 display: inline-block;
	 width: 20px;
     min-width: unset;
	 text-align: center;
	 border: 0;
}
 .cart-ajax__row__image {
	 display: block;
	 height: 90px;
	 width: 60px;
	 border-right: 20px solid transparent;
	 background-size: contain;
	 background-position: top center;
	 background-repeat: no-repeat;
}
 @media only screen and (min-width: 380px) {
	 .cart-ajax__row__image {
		 width: 90px;
	}
}
 @media only screen and (min-width: 1201px) {
	 .cart-ajax__row__image {
		 height: 130px;
		 width: 130px;
         background-size: cover;
	}
}
 .cart-ajax__row__money {
	 max-width: 50%;
	 float: right;
	 font-size: 20px;
	 line-height: 26px;
	 text-align: right;
}
 @media only screen and (max-width: 640px) {
	 .cart-ajax__row__money {
		 font-size: 18px;
		 line-height: 24px;
	}
}


 .cart-ajax__row__unit-price {
	 display: block;
	/* float: right;
	 */
	 margin-bottom: 5px;
	 font-size: 13px;
	 line-height: 17px;
}
 .cart-ajax__row__title {
	 text-decoration: none;
	 margin: 0;
	 margin-bottom: 5px;
}
 .cart-ajax__row__subtitle {
	 margin: 0 0 5px;
}
 .cart-ajax__row__variant {
	 font-weight: normal;
	 display: block;
	 margin: 0;
	 font-size: 13px;
	 line-height: 17px;
}
 .cart-ajax__remove {
   cursor: pointer;
   font-size: 13px;
   /* position: absolute;
   top: 0;
   right: 0;
   */
   line-height: 17px;
   text-decoration-line: underline;
   color: grey;
   margin-bottom: 0px;
   clear: both;
}
 .cart-ajax__message {
  text-align: center;
}
.cart-ajax__link {
  text-align: center;
  display: block;
  margin-bottom: 20px;
  line-height: 26px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cart-ajax__link .cart-ajax--total-price {
  font-size: 20px;
}
.js--quantity {
  background: transparent;
  width: 26px;
  height: 26px;
  line-height: 26px;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.js--quantity.amount-1 {
  opacity: 0.3;
}

.js--quantity.decrease {
  margin-right: 7px; }

.js--quantity.increase {
  margin-left: 7px; }

/*=============== Pillars Patterns ===============*/

.pattern-top-cream,
.pattern-bottom-cream,
.pattern-bottom-orange {
  margin-bottom: -5px;
  background-repeat: repeat;
  height: 26px;
  position: relative;
}

.pattern-top-cream {
  top: -0.5px;
  background-position: top left;
  background-image: url('icon-pattern-top-cream.svg'); }

.pattern-bottom-cream {
  bottom: -0.5px;
  background-position: bottom left;
  background-image: url('icon-pattern-bottom-cream.svg'); }

.pattern-bottom-orange {
  bottom: -0.5px;
  background-position: bottom left;
  background-image: url('icon-pattern-bottom-orange.svg'); }

.pattern-bottom-black {
  margin-bottom: -5px;
  background-image: url('icon-pattern-bottom-black.svg');
  background-size: auto;
  background-repeat: repeat;
  height: 28px;
}

.pillars-module-fifteen__container {
  position: relative;
  z-index: 10;
  margin-bottom: -20px; }

.pillars-module-fifteen__container .pattern-bottom-black {
  height: 27px;
  margin-bottom: -15px; }

@media only screen and (max-width: 640px) {
  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction { bottom: 0; }
}

.pillars-newsletter__popup {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 13;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.pillars-newsletter__popup:after {
  content: '';
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  z-index: 13;
  position: absolute;
  top: 0;
  left: 0; }

.pillars-newsletter__popup .close-newsletter__popup {
  text-align: right;
  margin-bottom: 25px;
  cursor: pointer; }

.pillars-newsletter__popup .close-newsletter__popup:hover {
  cursor: pointer; }

.pillars-newsletter__popup.hide-modal {
  opacity: 0;
  visibility: hidden; }

.pillars-newsletter__popup-inner {
  background-color: #FCECE0;
  border-radius: 50px;
  max-width: 420px;
  padding: 30px 20px 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 14; }

.pillars-newsletter__popup h3,
.pillars-newsletter__popup h4 { 
  color: #EC6D26;
  text-align: center;
  margin-bottom: 0; }

.pillars-newsletter__popup-inner form {
  margin-top: 20px;}  

.pillars-newsletter__popup .input-group {
  justify-content: flex-start; }

.pillars-newsletter__popup .input-group__btn {
  text-align: center; }

.pillars-newsletter__popup input[type="email"] {
  padding-left: 20px; }

.accepts-marketing {
  font-family: var(--font-stack-body);
  font-weight: var(--font-weight-body);
  font-size: 16px;
  line-height: 20px;
  padding: 0;
  margin-bottom: 15px;
  text-transform: initial; } 
  .accepts-marketing input {
    display: none; }
  .accepts-marketing .control-indicator {
    position: relative;
    display: inline-block;
    top: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 0;
    margin-right: 5px; }
    .accepts-marketing .control-indicator:after {
      position: relative;
      top: -1px;
      left: 1px;
      content: url('checkbox-tick.svg');
      width: 8px;
      height: auto;
      opacity: 0; }

.accepts-marketing.control--checkbox input:checked ~ .control-indicator {
  border-color: var(--color-black); }
.accepts-marketing.control--checkbox input:checked ~ .control-indicator:after {
  opacity: 1; }

.pillars-newsletter__popup span.marketing-msg {
  font-size: 12px; }

.pillars-newsletter__popup .newsletter__submit {
  position: relative;
  padding: 7px 14px 6px;
  width: auto;
  margin-left: -14px;
  border: 0; }

.newsletter__submit[disabled] {
 cursor: no-drop; }

.pillars-newsletter__popup .newsletter__submit span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-52%); }

.pillars-newsletter__popup .form-message {
  margin-top: 20px; }

/* ====== Rebundle App Customisations ====== */
.rb-app {
  width: 100% !important;
  background: transparent !important; /*Needs to be applied to override white background injected by app */ }

.rb-aspect-ratio {
  padding-bottom: 123% !important; }

select.rb-select,
input.rb-input {
  border-radius: 0 !important; }

.product-recharge-bundle #shopify-section-header {
  position: relative; }

.rb-header,
.rb-sticky-form {
  background-color: #EC6D26 !important; }

.rb-section-header,
.rb-app, .rb-img {
  background-color: #fceee0 !important; }

.rb-section-header.tsticky {
  position: relative;
  top: 0 !important; }

.rb-subscribe-and-save-container,
select.rb-select {
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  text-transform: uppercase; }

.rb-slider:focus {
  border: 0; }  

.rb-subscribe-and-save-container .torder-1-l {
  font-size: 18px; }

.rb-subscribe-and-save-container .rb-field.tmt2 {
  margin-top: 20px; }

@media only screen and (max-width: 989px) {
  .rb-subscribe-and-save-container .titems-center,
  .rb-subscribe-and-save-container div {
    text-align: center;
    justify-content: center; } }

.rb-options .rb-field .rb-label.tf5 {
  font-size: 18px; }
  
.rb-header.tpt3-ns {
  padding: 70px 100px 0; }

   @media only screen and (max-width: 989px) {
    .rb-header.tpt3-ns {
      padding: 40px 20px 0; } }

.rb-heading .tpr4-ns {
  padding-right: 0; }

@media only screen and (min-width: 990px) {
.rb-heading .tw-40-l {
  width: 30%; } }

.rb-bundle-title {
 word-break: inherit !important;}

.rb-bundle-title.tf2,
.rb-bundle-title.tf1 {
  font-size: 112px; }
  @media only screen and (max-width: 989px) {
    .rb-bundle-title.tf2,
    .rb-bundle-title.tf1 {
      font-size: 80px; } }
  @media only screen and (max-width: 959px) {
    .rb-bundle-title.tf2,
    .rb-bundle-title.tf1 {
      font-size: 70px;
      text-align: center;
      border-bottom: 1px solid #fceee0;
      padding-bottom: 15px;
      margin-bottom: 15px; } }

@media only screen and (min-width: 880px) {
  .rb-price-btn-wrapper {
    padding-left: 12px;
    border-left: 1px solid #fceee0; } }

@media only screen and (max-width: 880px) {
  .rb-price-btn-wrapper {
    border-top: 1px solid #fceee0;
    width: 100%;
    justify-content: center;
    margin-top: 12px; }

  .rb-price-btn-wrapper.tflex-column {
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    /*flex-wrap: wrap;*/ }

  .rb-price-btn-wrapper.tflex-column .rb-price.tnowrap,
  .rb-price-btn-wrapper.tflex-column .rb-price.ttr-ns {
    white-space: normal;
    text-align: center; } }


.rb-price-btn-wrapper .rb-price .tf3 {
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  text-transform: uppercase;
  font-size: 50px !important; }
  @media only screen and (max-width: 880px) {
    .rb-price-btn-wrapper .rb-price .tf3 {
      font-size: 40px !important; } }

.rb-price-btn-wrapper .rb-btn-wrapper {
  padding: 12px 0 12px 12px; }
  @media only screen and (max-width: 880px) {
    .rb-price-btn-wrapper .rb-btn-wrapper {
      padding: 0; } }

  @media only screen and (min-width: 881px) {
    .rb-price-btn-wrapper .rb-btn-wrapper {
      border-left: 1px solid #fceee0; } } 

select.rb-select {
  padding: 9px 25px 9px 15px;
  border: 1px solid #000 !important; }

.rb-container.titems-baseline-l {
  align-items: normal; }

.rb-sticky-form {
  padding: 40px 100px;
  margin-bottom: 0; }

  @media only screen and (max-width: 989px) {
    .rb-sticky-form {
      padding: 20px; } }

.rb-form {
  border-top: 1px solid #fceee0;
  border-bottom: 1px solid #fceee0; }  

  @media only screen and (max-width: 880px) {
    .rb-form {
      flex-wrap: wrap;
      padding-top: 12px; }

    .rb-form.tjustify-between {
      justify-content: center; } }

.rb-sticky-form .titems-end-ns {
  align-items: center; }

@media only screen and (min-width: 990px) {
  .rb-sticky-form .rb-field {
    display: flex; } }

@media only screen and (max-width: 880px) {
  .rb-sticky-form .rb-field.tmr4-ns,
  .rb-sticky-form .rb-field.tmr4-ns label {
    margin-right: 0;
    text-align: center; }

  .rb-sticky-form .rb-field.tmb3 {
    margin-bottom: 0; } }   

.rb-sticky-form.tpt3 {
  padding-top: 40px; }  
  @media only screen and (max-width: 880px) {
    .rb-sticky-form.tpt3 {
      padding-top: 20px; } }

.rb-sticky-form .tpb2-ns {
  padding-bottom:  0; }

.rb-sticky-form.tmb4 {
  margin-bottom: 0; }  

.rb-form.tmb3 {
  margin-bottom: 40px; }

.rb-form .rb-btn, 
.rb-form .rb-btn.disabled, 
.rb-form .rb-btn[disabled] {
  position: relative;
  background-color: transparent !important;
  border: 0 !important;
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  text-transform: uppercase;
  opacity: 1;
  padding: 19px 27px;
  min-width: 221px;
  display: block;
  margin: 5px auto;}

.rb-form .rb-btn .rb-notice,
.rb-form .rb-btn span {
  position: relative;
  z-index: 2; }  

.rb-form .rb-btn:after {
  content: url('icon-button-style-three.svg');
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }  

.rb-progress-bar-guide {
  border-radius: 25px !important;
  background-color: #000 !important;
  border-color: #000 !important;
  color: #000 !important; }

.rb-progress-bar {
  border-radius: 25px !important;
  background-color: #FCEEE0 !important;
  border-color: #FCEEE0 !important;
  color: #FCEEE0 !important; }

.rb-progress-bar-wrapper .th1-ns,
.rb-progress-bar-wrapper .rb-progress-bar-guide,
.rb-progress-bar-wrapper .rb-progress-bar  {
  height: 25px; }

.rb-box-builder .rb-section.tmt4 {
  margin-top: 0; }

.rb-box-builder .rb-section-header.tmb3 {
  margin-bottom: 0; }

.rb-section-header.tpv1 {
  padding: 20px 15px; }

.rb-section-header .tjustify-between {
  justify-content: center; }

.rb-items-wrapper .rb-title {
  font-family: var(--font-stack-header);
  font-style: var(--font-style-header);
  font-weight: var(--font-weight-header);
  font-size: 28px;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px; }

.rb-qty-wrapper {
  margin-bottom: 20px; }  

.rb-qty-wrapper input.rb-input {
  font-family: var(--font-stack-accent);
  font-style: var(--font-style-accent);
  font-weight: var(--font-weight-accent);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 1px solid #000;
  max-width: 40px;
  line-height: 31px;
  max-height: 31px; }

.rb-qty-wrapper .rb-btn,
.rb-qty-wrapper .rb-btn[disabled],
.rb-qty-wrapper .rb-btn.tdisabled {
  background-color: transparent;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
  padding: 0;
  width: 26px;
  line-height: 18px;
  height: 26px;
  font-weight: bold;
  top: 3px;
  position: relative; }  

.rb-qty-wrapper .rb-btn span {
  color: #000;
  margin: -5px auto 0; }

.rb-container {
  width: 100% !important; } 
  @media only screen and (max-width: 989px) {
    .rb-container {
      padding-left: 0 !important;
      padding-right: 0 !important; } } 

.rb-items-wrapper .rb-item {
  margin: 0;
  padding: 20px;
  width: 25%;
  border-bottom: 1px solid;
  border-right: 1px solid; }

  @media only screen and (max-width: 989px) {
    .rb-items-wrapper {
      margin: 0 !important; }
    .rb-items-wrapper .rb-item {
      width: 50%;
      padding: 10px; } }


.rb-extras-wrapper.tnr4-ns {
  margin-right: 0;
  margin-left: 0; }

@media only screen and (max-width: 768px) {
  .rb-extras-wrapper.tflex-row-ns {
    flex-direction: column; } }

.rb-extras-builder.tph4-ns,
.rb-extras-sidebar.tph4-ns {
  padding-left: 0;
  padding-right: 0; }

.rb-extras-builder .rb-items-wrapper {
  margin-right: 0;
  margin-left: 0; }


.rb-extras-builder .rb-items-wrapper .rb-item {
  width: 33.333%;
  padding: 20px; }

  @media only screen and (max-width: 1024px) {
    .rb-extras-builder .rb-items-wrapper .rb-item {
      width: 50%; } }

  @media only screen and (max-width: 640px) {
    .rb-extras-builder .rb-items-wrapper .rb-item {
      padding: 10px; } }

@media only screen and (max-width: 768px) {
  .tw-70-ns,
  .tw-30-ns,
  .tw-40,
  .tw-60 {
    width: 100% !important; } }

.rb-extras-header.tmb4 {
  background-color: #EC6D26 !important;
  margin-bottom: 0;
  text-align: center;
  padding: 70px 100px; }

  @media only screen and (max-width: 640px) {
    .rb-extras-header.tmb4 {
      padding: 40px 20px; } }

.rb-extras-header .rb-link {
}

.rb-extras-header .rb-link,
.rb-extras-summary .rb-link,
.rb-extras-summary .rb-btn {
  position: relative;
  background-color: transparent !important;
  border: 0 !important;
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
  padding: 20px 27px;
  min-width: 220px;
  display: inline-block;
  width: auto; 
  z-index: 2; }

.rb-extras-summary .rb-btn {
  padding: 15px 20px; }

.rb-extras-header .rb-link:hover,
.rb-extras-summary .rb-link:hover {
  color: #fff; }

.rb-extras-header .rb-link:after,
.rb-extras-summary .rb-link:after {
  content: url('icon-button-style-three.svg');
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; } 

.rb-extras-summary .rb-btn {
  color: #000; }

.rb-extras-summary .rb-btn:after {
  content: url('icon-button-style-one.svg');
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.rb-extras-title.tf2 {
  font-size: 60px;
  max-width: 700px;
  margin: 0 auto 20px; }
  
.tpa3-ns.rb-extras-summary {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  padding: 20px; }

  @media only screen and (max-width: 768px) {
   .tpa3-ns.rb-extras-summary {
      position: relative;
      padding: 40px 15px;
      border-top: 1px solid;
      margin-top: -1px; } }

.rb-extras-builder .rb-select {
  margin-bottom: 10px; }

.rb-items-wrapper .tflex-row {
  flex-direction: column; }

.rb-item-content.tpl3 {
  padding-left: 0; }

.shopify-installments__content {color: #FCEEE0;} /* change color as you like */

.index-section:last-child {
padding-top:0px;
}



.youtube-videos-section {
	    padding-top: 0;
	    padding-bottom: 0;
	}
.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}


.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.youtube-video-embed.medium-up--two-thirds.medium-up--push-one-sixth.youtube-video-embed {
	position: relative;
}
.youtube-videos-section {
	padding:0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
}

.booking-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  margin: 5% auto;
  padding: 10px 10px 40px;
  border: 0px;
  width: 325px;
  border-radius:36px;
}

.modal-container {
	background-color: #fceee0;
	padding:30px 20px;
	border: 1px solid black;
	border-bottom: 0px;
}
.modal-footer {
	background-image: url(https://www.pillarsbrewery.com/cdn/shop/t/13/assets/icon-pattern-bottom-cream.svg);
	background-position:bottom left;
	background-repeat:repeat-x;
	border: 1px solid black;
	border-bottom: 0px;
	border-top: 0px;
}

.modal-content h3 {
	color: #ec6e26;
}

.closeBtn, .closeBtnTap, .closeBtnUnPub {
  color: #aaa;
  float: right;
  font-size: 26px;
  font-weight: normal;
}

.closeBtn:hover, .closeBtnTap:hover, .closeBtnUnPub:hover,
.closeBtn:focus, .closeBtnTap:focus, .closeBtnUnPub:focus, {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#dmn-partner-widget #dmn-widget-inner .padded-interior {
height:100% !important;
}

#dmn-partner-widget #dmn-widget-inner .stage .scroll-height {
height:inherit !important;
}

.nav-overlay__submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-overlay__submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
 }

.nav-overlay__submenu-toggle[aria-expanded="true"] + .nav-overlay__submenu {
  display: block;
}

.nav-overlay__main-item {
  position: relative;
}

.nav-overlay__link {
  display: inline-block;
  padding: 10px;
  color: #333; /* Adjust as needed */
  text-decoration: none;
}

.nav-overlay__sublink {
  display: block;
  padding: 0px 20px;
  color: #333; /* Adjust as needed */
  text-decoration: none;
  line-height: 2;
}

.nav-overlay__submenu li {
    font-size: 20px !important;
}

.nav-overlay__sublink:hover {
  background-color: #f8f8f8; /* Adjust as needed */
}

.site-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fceee0; /* Adjust as needed */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  width: 100%;
  font-size:18px;
}

.site-nav__item:hover > .site-nav__submenu {
  display: block;
}

.site-nav__submenu-item {
  position: relative;
}
.site-nav__submenu li {
	padding:5px;
}
.site-nav__submenu li:first-of-type { 
	border-left: 1px solid black;
}
.site-nav__submenu-item a {
  display: block;
  padding: 5px 20px;
  white-space: nowrap;
  color: #333; /* Adjust as needed */
  text-decoration: none;
}

.site-nav__submenu-item a:hover {
  background-color: #fceee0; /* Adjust as needed */
}

.page-malthaus .h1 {
  font-size: calc(((var(--font-size-header)) / (var(--font-size-base))) * 2em);
}

.page-malthaus .h3, .page-malthaus h3 {
  font-family:"OCHighway" !important;
  font-size: calc(((var(--font-size-header)) / (var(--font-size-base))) * 1.4em);
}
.page-malthaus .btn {
  font-family:"OCHighway" !important;
  font-size: calc(((var(--font-size-header)) / (var(--font-size-base))) * 0.8em);
}
.page-malthaus .h1, .page-malthaus .h2,
.page-malthaus h1, .page-malthaus h2,
.page-malthaus .pillars-module-eleven-text h3 {
  font-family:"BNBranch"  !important;
  letter-spacing: 1px;
}

.page-malthaus, .page-malthaus .pillars-module-seven__widget-inner,
.page-sustainability, .page-sustainability .pillars-module-seven__widget-inner {
  background-color: #EFECE0 !important;
}

.page-malthaus .pattern-top-cream {
  background-image: none;
  }
  .page-malthaus .site-header, 
  .page-malthaus .site-nav__submenu,
  .page-malthaus .site-nav__submenu-item a:hover,
  .page-malthaus .pillars-module-seven__widget-inner
    {
        background: #1A1A1A !important;
    }
    .page-sustainability .site-header, 
    .page-sustainability .site-nav__submenu,
    .page-sustainability .site-nav__submenu-item a:hover
      {
          background: #6D8240 !important;
      }
    
  .page-malthaus .site-nav__link, .page-malthaus a.site-header__logo-svg,
  .page-sustainability .site-nav__link, .page-sustainability a.site-header__logo-svg,
  .page-malthaus .pillars-module-three .btn.button-style-three span,
  .page-malthaus .pillars-module-seven h3 {
    color: #EFECE0;
  }
  
  .page-malthaus #bookingModal .modal-container {
        background: #1A1A1A !important;
        border: #EFECE0 1px solid;
  }
  
  .page-malthaus #bookingModal h3,
  .page-malthaus .pillars-module-seven__widget-inner h3,
  .page-malthaus .pillars-module-seven__widget-inner p {
    color: #EFECE0;
  }
  
  .page-malthaus #bookingModal .modal-footer {
    display: none;
  }
  
  .page-malthaus .pillars-module-seven__widget {
    border: none;
  }
  
  .page-malthaus .pillars-module-three g#Button\/Large\/Hand\/Black\/Sans {
    fill: #1A1A1A !important;
  }
  
  @media only screen and (max-width: 989px) {
      .page-malthaus .site-header__logo-svg svg,
      .page-sustainability .site-header__logo-svg svg,
      .page-malthaus .nav-overlay__link,
      .page-sustainability .nav-overlay__link,
      .page-malthaus .nav-overlay ul li a,
      .page-sustainability .nav-overlay ul li a
       {
          color: #EFECE0;
      }
      .page-malthaus  .toggle-nav g#Header\/Mobile\/Cream,
      .page-sustainability .toggle-nav g#Header\/Mobile\/Cream {
        stroke: #EFECE0
      }
      .page-sustainability .site-header,
      .page-sustainability nav.nav-overlay.medium-down--hide.open
        {
            background: #6D8240 !important;
            color: #EFECE0;
        }
      .page-malthaus .site-header,
      .page-malthaus nav.nav-overlay.medium-down--hide.open,
      .page-malthaus #bookingModal .modal-container
       {
            background: #1A1A1A !important;
            color: #EFECE0;
      }
      
      .page-malthaus #bookingModal h3 {
        color: #EFECE0 !important;
      }
      
      .page-sustainability .nav-overlay .pattern-bottom-cream,
      .page-malthaus .nav-overlay .pattern-bottom-cream {
          background-image: url(icon-pattern-bottom-cream-border.svg);
      }
      .page-malthaus .nav-overlay .no-bullets g,
      .page-sustainability .nav-overlay .no-bullets g,
      .page-sustainability #Pillars-MobileMenuClose #Shape,
      .page-malthaus #Pillars-MobileMenuClose #Shape {
        fill: #EFECE0;
      }
      .page-sustainability #Pillars-MobileMenuClose #Path {
        fill: #6D8240 !important;
      }
      .page-malthaus #Pillars-MobileMenuClose #Path {
        fill: #1A1A1A
      }
     
  }
  
  .page-malthaus .site-header__cart-count:after,
  .page-sustainability .site-header__cart-count:after{
    content: url(cart-count-circle-white.png);
  }
  
  .page-malthaus a.site-header__logo-svg:hover,
  .page-sustainability a.site-header__logo-svg:hover {
    color: #ec6d26;
  }
  
  .page-malthaus .site-nav, .page-malthaus .site-nav li, .page-malthaus .site-header,
  .page-sustainability .site-nav, .page-sustainability .site-nav li, .page-sustainability .site-header {
    border-color: #EFECE0;
  }

.pillars-fullscreen-slider h6 {
  color: #ec6d26;
  font-family: var(--font-stack-accent);
  font-weight: var(--font-weight-accent);
  font-style: var(--font-style-accent);
  margin-bottom: 10px;
}


.page-sustainability g#Group-13, 
.page-sustainability g#Group-12 line,
.page-sustainability g#Group-12 polyline,
.page-sustainability g#Group-12 polygon {
  stroke: #6D8240;
  fill: #6D8240;;
}

.page-malthaus .pillars-module-three #Desktop path,
.page-malthaus .pillars-module-three #Group-3,
.page-malthaus .pillars-module-three #Symbols g {
  stroke:#1A1A1A;
}

.page-malthaus .pillars-module-three #Stroke-3,
.page-malthaus .pillars-module-three #Fill-5 {
  fill: #EFECE0;
}

.page-sustainability .pillars-module-eleven-text h6 {
  color: #6D8240;
}