/*  code to temperory price hide from US frontend */
ul.product-single__meta-list.list--no-bullets.list--inline {
  visibility: hidden; }

/*============================================================================
  Venture by Shopify
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems

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

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

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

  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ THEME SASS HELPERS ================*/
/*================ Prefix mixins ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ Style mixins ================*/
/*================ SASS VARIABLES & SETTINGS ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  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 ================*/
/*================ Product Grid ================*/
/*================ Product slider ================*/
/*================ Collection Grid ================*/
/*================ Typography Variables ================*/
/*================ Z-Index ================*/
/*================ Drawers ================*/
/*================ Sticky nav ================*/
/*================ Links and Buttons ================*/
/*================ Product and Collection Cards ================*/
/*================ Search in header ================*/
/*================ Meganav ================*/
/*================ Hero ================*/
/*================ Slate ================*/
/*============================================================================
  Slate Table of Contents

  #Mixins
  #Grid
  #Normalize
  #Helper Classes
  #Basic Styles
  #Icons
  #Lists
  #Rich Text Editor
  #Links and Buttons
  #Tables
  #Reponsive Tables
  #Images and Iframes
  #Forms
  #Site Nav and Dropdowns
  #Section Headers
  #Giftcard Template
==============================================================================*/
/*================ #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 ================*/
/*============================================================================
  #Grid
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid {
  *zoom: 1; }
  .grid:after {
    content: '';
    display: table;
    clear: both; }

.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -20px; }

.grid__item {
  float: left;
  padding-left: 20px;
  width: 100%;
  -ms-flex-preferred-size: auto !important;
  -webkit-flex-basis: auto !important;
  -moz-flex-basis: auto !important;
  flex-basis: auto !important; }

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

/*================ Flex grid ================*/
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.flex__item {
  position: relative;
  -webkit-flex: 1 1 100%;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: auto !important;
  min-width: 0; }

.flex__item--fixed {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

/*============================================================================
  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%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }

/* Halves */
.one-half {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

/* Thirds */
.one-third {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.two-thirds {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

/* Quarters */
.one-quarter {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.two-quarters {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.three-quarters {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

/* Fifths */
.one-fifth {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  flex-basis: 20%; }

.two-fifths {
  width: 40%;
  -ms-flex-preferred-size: 40%;
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  flex-basis: 40%; }

.three-fifths {
  width: 60%;
  -ms-flex-preferred-size: 60%;
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  flex-basis: 60%; }

.four-fifths {
  width: 80%;
  -ms-flex-preferred-size: 80%;
  -webkit-flex-basis: 80%;
  -moz-flex-basis: 80%;
  flex-basis: 80%; }

/* Sixths */
.one-sixth {
  width: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  flex-basis: 16.66667%; }

.two-sixths {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.three-sixths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.four-sixths {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

.five-sixths {
  width: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  flex-basis: 83.33333%; }

/* Eighths */
.one-eighth {
  width: 12.5%;
  -ms-flex-preferred-size: 12.5%;
  -webkit-flex-basis: 12.5%;
  -moz-flex-basis: 12.5%;
  flex-basis: 12.5%; }

.two-eighths {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.three-eighths {
  width: 37.5%;
  -ms-flex-preferred-size: 37.5%;
  -webkit-flex-basis: 37.5%;
  -moz-flex-basis: 37.5%;
  flex-basis: 37.5%; }

.four-eighths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.five-eighths {
  width: 62.5%;
  -ms-flex-preferred-size: 62.5%;
  -webkit-flex-basis: 62.5%;
  -moz-flex-basis: 62.5%;
  flex-basis: 62.5%; }

.six-eighths {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

.seven-eighths {
  width: 87.5%;
  -ms-flex-preferred-size: 87.5%;
  -webkit-flex-basis: 87.5%;
  -moz-flex-basis: 87.5%;
  flex-basis: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%;
  -ms-flex-preferred-size: 10%;
  -webkit-flex-basis: 10%;
  -moz-flex-basis: 10%;
  flex-basis: 10%; }

.two-tenths {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  flex-basis: 20%; }

.three-tenths {
  width: 30%;
  -ms-flex-preferred-size: 30%;
  -webkit-flex-basis: 30%;
  -moz-flex-basis: 30%;
  flex-basis: 30%; }

.four-tenths {
  width: 40%;
  -ms-flex-preferred-size: 40%;
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  flex-basis: 40%; }

.five-tenths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.six-tenths {
  width: 60%;
  -ms-flex-preferred-size: 60%;
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  flex-basis: 60%; }

.seven-tenths {
  width: 70%;
  -ms-flex-preferred-size: 70%;
  -webkit-flex-basis: 70%;
  -moz-flex-basis: 70%;
  flex-basis: 70%; }

.eight-tenths {
  width: 80%;
  -ms-flex-preferred-size: 80%;
  -webkit-flex-basis: 80%;
  -moz-flex-basis: 80%;
  flex-basis: 80%; }

.nine-tenths {
  width: 90%;
  -ms-flex-preferred-size: 90%;
  -webkit-flex-basis: 90%;
  -moz-flex-basis: 90%;
  flex-basis: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  -webkit-flex-basis: 8.33333%;
  -moz-flex-basis: 8.33333%;
  flex-basis: 8.33333%; }

.two-twelfths {
  width: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  flex-basis: 16.66667%; }

.three-twelfths {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.four-twelfths {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.five-twelfths {
  width: 41.66667%;
  -ms-flex-preferred-size: 41.66667%;
  -webkit-flex-basis: 41.66667%;
  -moz-flex-basis: 41.66667%;
  flex-basis: 41.66667%; }

.six-twelfths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.seven-twelfths {
  width: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  -webkit-flex-basis: 58.33333%;
  -moz-flex-basis: 58.33333%;
  flex-basis: 58.33333%; }

.eight-twelfths {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

.nine-twelfths {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

.ten-twelfths {
  width: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  flex-basis: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%;
  -ms-flex-preferred-size: 91.66667%;
  -webkit-flex-basis: 91.66667%;
  -moz-flex-basis: 91.66667%;
  flex-basis: 91.66667%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 749px) {
  /** Whole */
  .small--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .small--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .small--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .small--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .small--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .small--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .small--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .small--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .small--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .small--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .small--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .small--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .small--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .small--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .small--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .small--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .small--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .small--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .small--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .small--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .small--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .small--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .small--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .small--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

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

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

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

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

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

  .small--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 750px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .medium-up--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .medium-up--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .medium-up--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .medium-up--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .medium-up--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .medium-up--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .medium-up--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .medium-up--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .medium-up--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .medium-up--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .medium-up--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .medium-up--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .medium-up--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .medium-up--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .medium-up--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .medium-up--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .medium-up--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .medium-up--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .medium-up--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .medium-up--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .medium-up--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .medium-up--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .medium-up--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .medium-up--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .medium-up--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .medium-up--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

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

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

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

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

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

  .medium-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 990px) {
  /** Whole */
  .large-up--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .large-up--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .large-up--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .large-up--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .large-up--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .large-up--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .large-up--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .large-up--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .large-up--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .large-up--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .large-up--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .large-up--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .large-up--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .large-up--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .large-up--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .large-up--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .large-up--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .large-up--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .large-up--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .large-up--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .large-up--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .large-up--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .large-up--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .large-up--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .large-up--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .large-up--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .large-up--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .large-up--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .large-up--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .large-up--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .large-up--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .large-up--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

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

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

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

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

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

  .large-up--text-center {
    text-align: center !important; } }
/*================ Grid Push Classes ================*/
@media only screen and (min-width: 750px) {
  /* 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%; } }
/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*, *:before, *:after {
  box-sizing: border-box; }

body {
  margin: 0; }

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

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

a {
  background-color: transparent; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

button::-moz-focus-inner,
[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"] {
  /* -webkit-appearance: none;
  -moz-appearance: none; */ }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

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

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

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

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

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

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

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

.page-width {
  *zoom: 1;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 10px; }
  .page-width:after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (min-width: 750px) {
    .page-width {
      padding: 0 20px;
      width: 100%; } }

/*================ #Fonts ================*/
@font-face {
  font-family: 'gotham-light';
  font-weight: light;
  src: url("gotham-light-webfont.eot");
  src: url("gotham-light-webfont.eot?#iefix") format("embedded-opentype"), url("gotham-light-webfont.woff") format("woff"); }

@font-face {
  font-family: 'gotham-medium';
  font-weight: medium;
  src: url("gotham-medium-webfont.eot");
  src: url("gotham-medium-webfont.eot?#iefix") format("embedded-opentype"), url("gotham-medium-webfont.woff") format("woff"); }

@font-face {
  font-family: 'gotham';
  src: url("gotham-book-webfont.eot");
  src: url("gotham-book-webfont.eot?#iefix") format("embedded-opentype"), url("gotham-book-webfont.woff") format("woff"); }

@font-face {
  font-family: 'gotham-italic';
  font-style: italic;
  src: url("gotham-bookitalic-webfont.eot");
  src: url("gotham-bookitalic-webfont.eot?#iefix") format("embedded-opentype"), url("gotham-bookitalic-webfont.woff") format("woff"); }

@font-face {
  font-family: 'gotham-bold';
  font-weight: bold;
  src: url("gotham-bold-webfont.eot");
  src: url("gotham-bold-webfont.eot?#iefix") format("embedded-opentype"), url("gotham-bold-webfont.woff") format("woff"); }

/*================ Typography ================*/
blockquote p + cite {
  margin-top: 10px; }
blockquote cite {
  display: block; }
  blockquote cite:before {
    content: '\2014 \0020'; }

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

pre {
  overflow: auto; }

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

.icon--wide {
  width: 40px; }

.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

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

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin-left: 5px; }
  .payment-icons .icon {
    height: 26px;
    width: 40px; }
  .payment-icons .icon--wide {
    width: 55px; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 24px;
  height: 24px; }

/*================ #Lists ================*/
ul, ol {
  margin: 0;
  padding: 0; }

ol {
  list-style: decimal; }

.list--inline {
  padding: 0;
  margin: 0; }
  .list--inline li {
    display: inline-block;
    margin-bottom: 0; }

.rte ul, .rte ol {
  margin: 0 0 10px 20px; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

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

/*================ #Rich Text Editor ================*/
.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*================ #Links and Buttons ================*/
.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #c1a573;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #b18e50;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: #8f723f;
    color: white; }
  .btn[disabled], [disabled].btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary {
    cursor: default;
    color: #757575;
    background-color: #d5d5d5; }
  .btn .icon, .btn--secondary .icon,
  .rte .btn .icon,
  .rte .btn--secondary .icon {
    fill: currentColor;
    path: currentColor; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #030303; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #101010;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #292929;
    color: white; }

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

/*================ #Tables ================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

th {
  font-weight: 700; }

th, td {
  text-align: left;
  border: 1px solid white; }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 749px) {
  .responsive-table thead {
    display: none; }
  .responsive-table tr {
    display: block; }
  .responsive-table tr,
  .responsive-table td {
    float: left;
    clear: both;
    width: 100%; }
  .responsive-table th,
  .responsive-table td {
    display: block;
    text-align: right;
    padding: 10px;
    margin: 0; }
  .responsive-table td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 14px;
    padding-right: 10px; } }
.responsive-table__row {
  border-bottom: 1px solid white; }

/*================ #Images and Iframes ================*/
svg:not(:root) {
  overflow: hidden; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*================ Forms ================*/
@media only screen and (max-width: 989px) {
  input,
  select,
  textarea {
    font-size: 16px; } }
fieldset {
  border: 1px solid white;
  margin: 0 0 20px;
  padding: 10px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #c1a573;
  border-radius: 0;
  max-width: 100%; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #e6e6e6; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #d5d5d5;
    border-color: #757575; }

textarea {
  min-height: 100px; }

/*================ Error styles ================*/
input.input--error,
select.input--error,
textarea.input--error {
  border-color: #ec523e;
  background-color: #ec523e;
  color: #ec523e; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/2236/3995/t/9/assets/ico-select.svg?v=3340439965210837167");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 ================*/ }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
.label--hidden {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .label--hidden {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

label[for] {
  cursor: pointer; }

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

.site-nav li {
  display: inline-block; }

/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap; }
  .site-nav__link .icon-arrow-down {
    position: relative; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 5; }
  .site-nav__dropdown li {
    display: block; }

/*================ #Giftcard Template ================*/
.giftcard__qr-code img {
  margin: 0 auto; }

.giftcard__apple-wallet-image {
  display: block;
  margin: 0 auto; }

.giftcard__wrap {
  margin: 0 auto 20px; }

/*================ Print Giftcard Styles ================*/
@media print {
  @page {
    margin: 0.5cm; }

  p {
    orphans: 3;
    widows: 3; }

  html, body {
    background-color: #fff;
    color: #000; }

  .giftcard__print-link,
  .giftcard__apple-wallet {
    display: none; } }
/*================ GLOBAL ================*/
.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

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

.main-content {
  display: block;
  margin-top: 30px;
  padding-bottom: 40px; }
  @media only screen and (min-width: 750px) {
    .main-content {
      margin-top: 60px;
      padding-bottom: 80px; } }
  .template-index .main-content {
    padding-bottom: 0; }

.full-width {
  padding: 80px 20px;
  background-color: white; }

.full-width--return-link {
  margin-bottom: -40px; }
  @media only screen and (min-width: 750px) {
    .full-width--return-link {
      margin-bottom: -80px; } }
  .content-block + .full-width--return-link {
    margin-top: -20px; }

hr {
  margin: 20px 0;
  border-color: white;
  border-style: solid;
  border-width: 1px 0 0; }

.hr--dark {
  border-color: #d9d9d9; }

/*================ Empty pages (404, cart) ================*/
.page-empty {
  padding: 120px 0;
  margin-bottom: 20px; }

/*================ Index sections ================*/
.index-section {
  margin-bottom: 50px; }

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

.index-section--flush:last-child {
  padding-bottom: 0;
  margin-bottom: 0; }

/*================ Flex class helpers ================*/
.flex--center-vertical .flex__item {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.flex--grid {
  margin: 0 -10px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .flex--grid > .flex__item {
    padding: 10px; }

.flex--grid-center {
  justify-content: center; }

.flex--no-gutter {
  margin: 0;
  background-color: #000000; }
  .flex--no-gutter > .flex__item {
    padding: 0; }

/*===== Adding content class to removing bg-clr on link-block =====*/
.flex--no-gutter-content {
  margin: 0; }
  .flex--no-gutter-content > .flex__item {
    padding: 0; }

/*================ Grid | Half gutters ================*/
.grid--half-gutters {
  margin-left: -10px; }
  .grid--half-gutters > .grid__item {
    padding-left: 10px; }

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

/*================ Grid | Vertically centered items ================*/
.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }

.medium-up--grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .medium-up--grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }
  @media only screen and (max-width: 749px) {
    .medium-up--grid--table {
      display: block; }
      .medium-up--grid--table > .grid__item {
        display: block; } }

body,
input,
textarea,
button,
select {
  font-size: 13px;
  font-family: gotham, sans-serif;
  color: #1c1d1d;
  line-height: 1.375; }

@media only screen and (max-width: 989px) {
  input,
  textarea {
    font-size: 16px; } }
/*================ Headings ================*/
h1, .h1, .h1--mini,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.h5--small,
h6,
.h6 {
  color: #c1a573;
  margin: 0 0 0.76923em; }
  h1 a, .h1 a, .h1--mini a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  .h5--small a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }
  h1:last-child, .h1:last-child, .h1--mini:last-child,
  h2:last-child,
  .h2:last-child,
  h3:last-child,
  .h3:last-child,
  h4:last-child,
  .h4:last-child,
  h5:last-child,
  .h5:last-child,
  .h5--small:last-child,
  h6:last-child,
  .h6:last-child {
    margin-bottom: 0; }

h2, .h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.h5--small,
h6,
.h6 {
  letter-spacing: inherit;
  text-transform: inherit;
  font-family: mrs-eaves, sans-serif;
  font-weight: 700; }

h1, .h1, .h1--mini {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 2.30769em;
  font-family: mrs-eaves, sans-serif; }
  @media only screen and (min-width: 750px) {
    h1, .h1, .h1--mini {
      font-size: 2.46154em; } }

h2, .h2 {
  font-size: 2.30769em; }

h3, .h3 {
  font-size: 1.84615em; }

h4, .h4 {
  font-size: 1.38462em;
  letter-spacing: 1.2px; }

h5, .h5, .h5--small {
  font-size: 1.53846em; }

h6, .h6 {
  font-size: 1.23077em; }

.h1--mini {
  font-size: 2.15385em;
  color: #ffffff; }

.h5--small {
  font-size: 0.92308em; }

/*================ RTE headings ================*/
.rte {
  *zoom: 1;
  margin-bottom: 20px; }
  .rte:after {
    content: '';
    display: table;
    clear: both; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1, .rte .h1, .rte .h1--mini,
  .rte h2,
  .rte .h2,
  .rte h3,
  .rte .h3,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte .h5--small,
  .rte h6,
  .rte .h6 {
    margin-top: 40px; }
    .rte h1:first-child, .rte .h1:first-child, .rte .h1--mini:first-child,
    .rte h2:first-child,
    .rte .h2:first-child,
    .rte h3:first-child,
    .rte .h3:first-child,
    .rte h4:first-child,
    .rte .h4:first-child,
    .rte h5:first-child,
    .rte .h5:first-child,
    .rte .h5--small:first-child,
    .rte h6:first-child,
    .rte .h6:first-child {
      margin-top: 0; }
  .rte p {
    margin: 0 0 20px; }
  .rte li {
    margin-bottom: 10px; }
    .rte li:last-child {
      margin-bottom: 0; }

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

/*================ Paragraph styles ================*/
p {
  margin: 0 0 10px; }
  p:last-child {
    margin-bottom: 0; }

/*================ Blockquote ================*/
blockquote {
  color: #c1a573;
  font-size: 1.53846em;
  font-weight: 700;
  text-align: center; }
  blockquote cite {
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.6;
    font-style: normal; }
  @media only screen and (max-width: 749px) {
    blockquote {
      margin-left: 0;
      margin-right: 0; } }

/*================ Lists ================*/
.list--no-bullets {
  list-style: none; }

.list--bold {
  font-weight: 700;
  font-size: 1.15385em; }

/*================ Form elements ================*/
label {
  font-size: 1.07692em;
  font-weight: 700;
  color: #1c1d1d;
  height: 32px;
  padding-top: 6px;
  width: 75px; }

/*================ Blog styles ================*/
.blog__meta {
  font-size: 1.07692em; }

.blog__rss-link .icon-rss {
  fill: currentColor;
  width: 18px;
  height: 18px;
  vertical-align: baseline; }

#image1 {
  width: 520px;
  height: 350px;
  display: inline-block;
  float: left; }

#iframe1 {
  width: 520px;
  height: 350px; }

#text1 {
  margin-top: -350px;
  margin-left: 550px;
  width: 300px;
  display: inline-block;
  float: left; }

#text2 {
  padding: 20px;
  width: 450px;
  height: 230px;
  display: inline-block;
  float: left;
  clear: both; }

@media screen and (max-width: 480px) {
  #text1 {
    width: 300px;
    margin-top: 10px;
    margin-left: 0px; }

  #text2 {
    width: 300px;
    height: 400px;
    display: inline-block;
    margin-left: -20px; }

  #iframe1 {
    width: 250px;
    height: 300px; } }
/*================ Primary color inline background ================*/
.emphasized-title {
  position: relative;
  display: inline;
  font-size: 2.76923em;
  line-height: 1;
  padding: 0 10px;
  background-color: #c1a573;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }

.emphasized-title--link:hover, .emphasized-title--link:focus {
  background-color: #b18e50;
  color: white; }

@media only screen and (min-width: 750px) {
  .emphasized-title--large {
    font-size: 4.61538em; } }
.emphasized-subtitle {
  display: inline;
  line-height: 2;
  padding: 10px;
  background-color: black;
  color: #8a7551;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-color 0.15s ease-in; }
  @media only screen and (min-width: 750px) {
    .emphasized-subtitle {
      font-size: 1.53846em; } }
  .emphasized-subtitle:hover, .emphasized-subtitle:focus {
    color: #8a7551;
    background-color: #1a1a1a; }

.emphasized-title-wrapper {
  margin-bottom: 8px; }

/*================ Tables ================*/
td,
th {
  padding: 10px;
  border: 1px solid white; }

/*================ Forms and inputs ================*/
::-webkit-input-placeholder {
  color: #1c1d1d;
  opacity: 0.6; }

:-moz-placeholder {
  color: #1c1d1d;
  opacity: 0.6; }

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

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

input,
textarea,
select {
  background-color: #f4f4f4;
  color: #333333;
  max-width: 100%; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    color: rgba(0, 0, 0, 0.4); }
  input.input--error,
  textarea.input--error,
  select.input--error {
    color: white; }
    input.input--error::-webkit-input-placeholder,
    textarea.input--error::-webkit-input-placeholder,
    select.input--error::-webkit-input-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error:-moz-placeholder,
    textarea.input--error:-moz-placeholder,
    select.input--error:-moz-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error:-ms-input-placeholder,
    textarea.input--error:-ms-input-placeholder,
    select.input--error:-ms-input-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error::-ms-input-placeholder,
    textarea.input--error::-ms-input-placeholder,
    select.input--error::-ms-input-placeholder {
      color: white;
      opacity: 0.6;
      opacity: 1; }

.input--content-color {
  background-color: white; }

.input--transparent {
  background-color: transparent;
  color: #c1a573; }

input,
textarea {
  padding: 6px 15px; }

input[type="search"] {
  padding-right: 0; }

select {
  padding-top: 6px;
  padding-left: 15px;
  padding-bottom: 6px; }

.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }
.form-vertical input[type="submit"],
.form-vertical .btn,
.form-vertical .btn--secondary {
  display: inline-block; }

.input--full {
  width: 100%; }

textarea {
  min-height: 100px; }

/*================ Form feedback messages ================*/
.note,
.form-success,
.errors {
  padding: 6px;
  margin: 0 0 10px; }

.note {
  border: 1px solid white; }

.form-success {
  background-color: #59ac6c;
  color: white; }

.errors {
  background-color: #ec523e;
  color: white; }

.errors ul {
  list-style: none;
  padding: 0;
  margin: 0; }

/*============================================================================
  Input groups
  - Align a text input beside a submit button without
    any space between them. The button will size it's parent
    based on the 1% width below while maintaining its
    padding and styles.
==============================================================================*/
.input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 20px; }

.input-group__field,
.input-group__btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group__field,
.input-group__btn .btn,
.input-group__btn .btn--secondary {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0; }

.input-group__field {
  width: 100%; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .icon-arrow-right {
    width: 14px;
    height: 17px; }

/*================ Theme links and buttons ================*/
.btn, .btn--secondary,
.rte .btn--secondary,
.btn--secondary {
  font-size: 0.76923em;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 45px;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }

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

.btn--full {
  display: block;
  width: 100%; }

.btn--half {
  display: block;
  width: 50%; }

/*================ Default link styles ================*/
a,
.link-accent-color {
  color: #c1a573;
  text-decoration: none;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  a:hover, a:focus,
  .link-accent-color:hover,
  .link-accent-color:focus {
    color: #a08047; }

.text-link {
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }

.link-body-color {
  color: #1c1d1d;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  .link-body-color:hover, .link-body-color:focus {
    color: #c1a573; }

/*================ Return link ================*/
.return-link {
  display: block;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.84615em; }
  .return-link .icon {
    fill: currentColor; }

.placeholder-svg {
  fill: rgba(28, 29, 29, 0.35);
  background-color: rgba(28, 29, 29, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(28, 29, 29, 0.2); }

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

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

.featured-card__image .placeholder-svg {
  width: auto; }

.hero__slide .placeholder-background {
  background-color: white; }

/*================ TEMPLATES ================*/
/*============= Templates | Password page =============*/
.template-password {
  height: 100vh;
  background-color: black;
  color: white; }
  .ie9 .template-password {
    height: auto;
    padding: 80px 0; }

.password-page {
  display: table;
  height: 100%;
  width: 100%; }
  .password-page a {
    color: #8a7551; }
  .password-page h1, .password-page .h1, .password-page .h1--mini,
  .password-page h2,
  .password-page .h2,
  .password-page h3,
  .password-page .h3,
  .password-page h4,
  .password-page .h4,
  .password-page h5,
  .password-page .h5,
  .password-page .h5--small,
  .password-page h6,
  .password-page .h6 {
    color: white; }
  .password-page label {
    color: white; }

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

.password-page__content,
.password-modal__content {
  max-width: 450px;
  margin: 0 auto; }

.password-page__content {
  padding: 20px 0; }

.password-logo {
  margin-top: 10px;
  margin-bottom: 20px; }

.password-logo__image {
  max-width: 100%; }

.password-page__title {
  font-size: 3.84615em;
  line-height: 1;
  margin-bottom: 20px; }

.password-page__message {
  font-size: 1.38462em;
  margin-bottom: 40px; }

.password-signup-form {
  margin-bottom: 80px; }

.password-social-sharing {
  margin-bottom: 80px; }

/*================ Login link ================*/
.password-login-link {
  display: block;
  padding: 20px;
  text-align: center; }
  @media only screen and (min-width: 750px) {
    .password-login-link {
      position: absolute;
      top: 0;
      right: 0; } }
  .password-login-link .icon {
    width: 12px;
    height: 1em;
    margin-right: 6.66667px;
    fill: currentColor; }

/*================ Login modal ================*/
.password-login-form {
  margin-bottom: 40px; }

/*================ Password svg icons ================*/
.icon-shopify-logo {
  width: 66.85714px;
  height: 19.5px;
  margin-left: 6.66667px;
  fill: currentColor; }

/*============= Templates | Gift card page =============*/
.template-giftcard {
  background-color: black; }

.giftcard__header {
  margin: 80px auto 40px; }

.giftcard__content {
  background-color: white;
  max-width: 540px;
  margin: 0 auto 40px;
  padding: 20px; }

.giftcard__shop-url {
  display: none; }

/*================ Giftcard image, amount, and code ================*/
.giftcard__wrap {
  position: relative; }
  .giftcard__wrap:before, .giftcard__wrap:after {
    content: '';
    display: block;
    position: absolute;
    background-color: white;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1); }
  .giftcard__wrap:before {
    top: -2px;
    left: -2px;
    border-radius: 12px 0 100%;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); }
  .giftcard__wrap:after {
    bottom: -2px;
    right: -2px;
    border-radius: 100% 0 12px;
    box-shadow: -2px -2px 1px rgba(0, 0, 0, 0.05); }

.giftcard__image {
  display: block;
  border-radius: 12px;
  overflow: hidden; }

.giftcard__amount-wrapper {
  position: absolute;
  top: 6.66667px;
  right: 10px; }

.giftcard__amount,
.giftcard__amount-remaining {
  color: white; }

.giftcard__amount {
  font-size: 2.15385em;
  margin-bottom: 0;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1); }
  @media only screen and (min-width: 750px) {
    .giftcard__amount {
      font-size: 3.07692em; } }

.giftcard__code {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px; }

.giftcard__code-bubble {
  position: relative;
  display: inline-block;
  background-color: white;
  color: #1c1d1d;
  padding: 10px 20px;
  font-size: 1.15385em;
  border-radius: 4px; }
  @media only screen and (min-width: 750px) {
    .giftcard__code-bubble {
      font-size: 1.53846em; } }
  .giftcard__code-bubble:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border: 1px dashed #1c1d1d;
    border-radius: 4px;
    opacity: 0.3; }

/*================ Print styles ================*/
@media print {
  .giftcard__shop-url {
    display: block; }

  .giftcard__wrap:before, .giftcard__wrap:after {
    display: none; }

  .giftcard__amount-wrapper {
    background-color: white;
    border-radius: 4px;
    padding: 0 6.66667px; } }
/*================ VENDOR ================*/
/*============================================================================
  Slick Slider 1.5.8

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually
  - All `outline: none;` have been removed for any elements in slideshow
    (buttons, arrows, etc) to preserve a11y
==============================================================================*/
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

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

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

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

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

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

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(//cdn.shopify.com/s/files/1/2236/3995/t/9/assets/ajax-loader.gif?v=4135686330247201572) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 43px;
  width: 46px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: #c1a573;
  color: #c1a573;
  top: calc(100% + 45px);
  margin-top: -10px\9;
  /*lte IE 8*/
  outline: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    /*background: $color-bg-dark-grey;
    color: transparent;
    transition: $button-transition;*/ }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick-icons, sans-serif";
  font-size: 20px;
  line-height: 1;
  color: #000000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: calc(50% - 47px); }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "<"; }
    [dir="rtl"] .slick-prev:before {
      content: ">"; }

.slick-next {
  right: calc(50% - 48px); }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: ">"; }
    [dir="rtl"] .slick-next:before {
      content: "<"; }

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

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

/*================ MODULES ================*/
/*================ Site Header ================*/
.site-header {
  background: black url(header-bg-bar-lg.png) repeat-x 0 75%; }

.site-header__upper {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 750px) {
    .site-header__upper {
      padding-top: 2px;
      padding-bottom: 0; } }

.site-header__logo {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  max-width: 100%; }
  .site-header__logo a {
    display: block;
    color: #8a7551; }
    @media only screen and (min-width: 750px) {
      .site-header__logo a {
        display: block;
        float: left; } }

.site-header__shop-name--small {
  font-size: 20px; }

.template-giftcard .site-header__logo-link {
  display: inline-block;
  float: none; }

/*================ Menu toggle, Cart, and Search icons ================*/
.site-header__link {
  display: inline-block;
  color: #8a7551;
  padding: 10px;
  line-height: 1; }
  .site-header__link .icon {
    width: 22px;
    height: 22px;
    fill: currentColor; }
  .site-header__link .icon-cart {
    position: relative;
    top: -1px; }
  .site-header__link:hover, .site-header__link:focus {
    color: #c1a573; }

.site-header__menu-toggle--close {
  display: none; }

.site-header__link.js-drawer-open .site-header__menu-toggle--open {
  display: none; }
.site-header__link.js-drawer-open .site-header__menu-toggle--close {
  display: block; }

/*================ Cart icon ================*/
.site-header__cart {
  position: relative; }

.site-header__cart-indicator {
  position: absolute;
  bottom: 19px;
  right: 8px;
  background-color: #c1a573;
  height: 10px;
  width: 10px;
  border-radius: 10px; }
  .no-svg .site-header__cart-indicator {
    bottom: auto;
    top: -6px;
    right: -10px; }

/*================ Header search bar ================*/
.site-header__search {
  position: relative;
  display: inline; }

.site-header__search-inner {
  position: absolute;
  right: 0;
  top: -4px;
  bottom: 0;
  display: block;
  width: 200px; }
  @media only screen and (min-width: 990px) {
    .site-header__search-inner {
      width: 250px; } }

.site-header__search-input {
  position: absolute;
  opacity: 1;
  top: -4px;
  right: 8px;
  width: 100%;
  padding-left: 10px;
  padding-right: 30px;
  font-size: 1em;
  color: white;
  background-color: #141414;
  transition: opacity 0.15s ease-in, width 0.15s ease-in;
  z-index: 1;
  /* &:focus,
  &.site-header__search-input--visible {
    width: 100%;
    opacity: 1;
    padding-left: $gutter-site / 2;
    padding-right: $gutter-site * 1.5;
  } */ }
  .site-header__search-input::-webkit-input-placeholder {
    color: #8a7551;
    opacity: 0.6; }
  .site-header__search-input:-moz-placeholder {
    color: #8a7551;
    opacity: 0.6; }
  .site-header__search-input:-ms-input-placeholder {
    color: #8a7551;
    opacity: 0.6; }
  .site-header__search-input::-ms-input-placeholder {
    color: #8a7551;
    opacity: 0.6;
    opacity: 1; }

.site-header__search-submit {
  position: relative;
  z-index: 2; }

/*================ Nav Bar ================*/
.nav-bar {
  position: relative;
  background-color: black;
  z-index: 5; }
  .nav-bar:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: black;
    pointer-events: none;
    z-index: 6; }

/*================ Sticky bar ================*/
.sticky {
  position: relative;
  overflow: visible;
  z-index: 5; }

.sticky--active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.sticky--open {
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }

.sticky--active .sticky-hidden {
  display: none; }

.sticky-only {
  position: relative;
  display: none;
  z-index: 7; }
  .sticky--active .sticky-only {
    display: block; }

/*================ Site Nav ================*/
.site-nav {
  margin-left: -20px;
  white-space: nowrap; }

.site-nav__item--no-columns {
  position: relative; }
  .site-nav__item--no-columns .meganav {
    right: auto;
    min-width: 200px; }
  .site-nav__item--no-columns .meganav__list {
    width: 100%; }

.site-nav__link {
  font-size: 1.07692em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  position: relative;
  color: #8a7551;
  color: rgba(138, 117, 81, 0.6);
  padding: 20px;
  z-index: 7; }
  .site-nav__link .icon {
    position: relative;
    top: -1.5px;
    width: 9px;
    height: 9px;
    fill: currentColor; }
  .site-nav__link:hover, .site-nav__link:focus, .site-nav--active .site-nav__link {
    color: #8a7551; }
  .site-nav__link:focus {
    background-color: #141414; }
  .site-nav--active .site-nav__link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #c1a573; }

.site-nav__link--compressed {
  margin-left: -20px; }
  .site-nav__link--compressed .icon {
    width: 22px;
    height: 22px; }

.site-nav__link-menu-label {
  display: none; }
  @media only screen and (min-width: 750px) {
    .site-nav__link-menu-label {
      display: inline-block; } }

.customer-login-links {
  position: relative;
  display: inline-block;
  margin-right: -10px;
  z-index: 7; }

.customer-login-links a {
  display: inline-block;
  color: #8a7551;
  color: rgba(138, 117, 81, 0.6);
  padding: 20px 10px;
  font-size: 0.76923em; }
  .customer-login-links a:hover, .customer-login-links a:focus {
    color: #8a7551; }

/*============================================================================
  Meganav

  - The meganav is used in three places:
    1. Site nav as a dropdown
    2. Drawer nav as a dropdown
    3. Homepage in accordion links
==============================================================================*/
.meganav {
  display: none;
  /* visibility: hidden; */
  right: 0;
  background-color: white;
  overflow: hidden; }
  .meganav.meganav--active {
    display: block;
    /*visibility: visible;*/
    z-index: 6; }

/*================ Site header animation ================*/
.site-header .meganav {
  opacity: 0;
  -ms-transform: translate3d(0, -15%, 0);
  -webkit-transform: translate3d(0, -15%, 0);
  transform: translate3d(0, -15%, 0);
  transition: none; }
  .site-header .meganav.meganav--active {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .site-header .meganav.meganav--no-animation {
    transition: none; }

/*================ Drawer animation ================*/
.drawer__nav .meganav {
  max-height: 0;
  transition: all 0.2s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .drawer__nav .meganav.meganav--active {
    max-height: 350px;
    transition: all 0.45s cubic-bezier(0.33, 0.59, 0.14, 1); }

/*================ Meganav elements ================*/
.meganav__nav {
  position: relative;
  list-style: none; }

.meganav__list {
  padding: 20px 0; }

.meganav__list--has-title {
  padding-top: 70px; }

.meganav__title {
  position: absolute;
  top: 30px;
  font-size: 1.84615em;
  margin-bottom: 0; }

.meganav__link {
  display: block;
  color: #1c1d1d;
  padding: 5px 10px;
  margin-left: -10px; }
  .meganav__link:hover, .meganav__link:focus {
    color: #c1a573; }

.meganav__link--active {
  color: black;
  font-weight: 700; }

/*================ Meganav product cards ================*/
.meganav__product .product-card {
  border-bottom-width: 0; }
.meganav__product:last-child .product-card {
  border-right-width: 1px; }

/*================ Site nav specific styles ================*/
.site-nav__dropdown {
  box-shadow: rgba(0, 0, 0, 0.7) 0 0 12px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2); }

/*================ Drawer meganav styles ================*/
.meganav--drawer {
  background-color: white; }
  .meganav--drawer .product-card {
    margin-top: 1px; }
  .meganav--drawer .meganav__product {
    margin-left: -4px; }

.drawer__nav-toggle--open {
  display: block; }
  .meganav--active .drawer__nav-toggle--open {
    display: none; }

.drawer__nav-toggle--close {
  display: none; }
  .meganav--active .drawer__nav-toggle--close {
    display: block; }

/*================ Fixed width meganav columns (for horizontal scrolling) ================*/
.meganav__scroller {
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .drawer__nav--template-index .meganav__scroller {
    background-color: white;
    border-top: 1px solid white; }
  .meganav__scroller .grid__item {
    float: none;
    display: inline-block;
    width: 180px;
    vertical-align: top;
    white-space: normal; }

.drawer__nav .meganav__scroller--has-list {
  padding-left: 20px; }

/*================ Site footer ================*/
html {
  background-color: #030303; }

.site-footer {
  background-color: #030303;
  color: #c1a573;
  color: rgba(193, 165, 115, 0.6);
  padding-top: 20px;
  font-size: 1.07692em; }
  @media only screen and (min-width: 750px) {
    .site-footer {
      padding-top: 60px;
      padding-bottom: 20px; } }
  .site-footer a {
    color: #c1a573; }
    .site-footer a:hover, .site-footer a:focus {
      color: #c1a573; }
  .site-footer p {
    margin-bottom: 10px; }
  @media only screen and (max-width: 749px) {
    .site-footer .page-width {
      padding: 0 20px; } }
  .site-footer h4, .site-footer .h4 {
    font-size: 16px; }

.flex-footer {
  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;
  margin: 0 -10px; }
  .flex-footer .flex__item {
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 0 10px; }
  @media only screen and (min-width: 750px) {
    .flex-footer .flex__item {
      -webkit-flex: 1 1 20%;
      -moz-flex: 1 1 20%;
      -ms-flex: 1 1 20%;
      flex: 1 1 20%; } }

.site-footer__section {
  padding-bottom: 20px; }
  @media only screen and (min-width: 750px) {
    .site-footer__section {
      padding-bottom: 40px; } }

.site-footer__copyright {
  padding: 10px 0;
  color: #f4f4f4; }
  .site-footer__copyright a {
    color: #f4f4f4; }

/*================ Adjust width of containers in footer ====================*/
@media only screen and (max-width: 749px) {
  .site-footer {
    padding-top: 50px; } }
.site-footer .link-columns {
  margin-bottom: 75px;
  width: 65%; }
  @media only screen and (max-width: 749px) {
    .site-footer .link-columns {
      width: 100%; }
      .site-footer .link-columns h4, .site-footer .link-columns .h4, .site-footer .link-columns .h4 {
        margin-top: 25px; } }
  @media only screen and (min-width: 750px) and (max-width: 989px) {
    .site-footer .link-columns {
      width: 100%; } }
.site-footer .newsletter {
  width: 35%;
  max-width: 420px; }
  @media only screen and (max-width: 749px) {
    .site-footer .newsletter {
      width: 100%; } }
  @media only screen and (min-width: 750px) and (max-width: 989px) {
    .site-footer .newsletter {
      width: 100%; } }

/*================ Linklists and page content ================*/
.site-footer__section-title {
  color: #c1a573; }

.site-footer__list {
  list-style: none; }

.site-footer__list-item {
  margin-bottom: 10px; }

/*================ Newsletter field ================*/
.site-footer__newsletter-label {
  display: block;
  color: #c1a573;
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  font-size: inherit;
  font-weight: 400;
  text-transform: inherit;
  width: auto;
  padding-bottom: 45px; }

/*================ Icons ================*/
.site-footer .social-icons .icon,
.site-footer .payment-icons .icon {
  fill: currentColor; }
.site-footer .social-icons .icon {
  margin-right: 10px; }
.site-footer .social-icons a {
  display: block;
  margin-bottom: 10px; }
.site-footer .payment-icons {
  padding: 5px 0; }
  .site-footer .payment-icons li {
    padding: 5px 0; }

/*================ Content blocks ================*/
.content-block {
  background-color: white;
  padding: 40px;
  margin-bottom: 20px; }
  .content-block:last-child {
    margin-bottom: 0; }
  .content-block .list--no-bullets {
    padding-bottom: 5px; }

.content-block--small {
  padding: 20px; }

.content-block--no-bottom-padding {
  padding-bottom: 0; }

.content-block--no-padding {
  padding: 0; }

.content-block--transparent {
  background: transparent; }

.content-block__item {
  margin-bottom: 20px; }

.content-block__full-image {
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 40px; }
  .content-block__full-image img {
    display: block;
    margin: 0 auto; }
  .content-block__full-image:first-child {
    margin-top: -40px; }

/*================ Product cards ================*/
.product-card {
  position: relative;
  display: block;
  background-color: white;
  text-align: center;
  padding: 12.5px;
  color: #1c1d1d;
  z-index: 1; }
  .grid--no-gutters .product-card {
    border-left-width: 1px; }
  .collection__card--first .product-card {
    border-left-width: 0; }
  .product-card:hover, .product-card:focus {
    color: #1c1d1d; }
  .product-card:focus {
    z-index: 2; }
  @media only screen and (min-width: 750px) {
    .product-card {
      padding: 25px; } }

.collection__card {
  border-color: white;
  border-style: solid;
  border-width: 0 0 0 1px;
  padding-bottom: 20px; }
  .collection__card .product-card__info {
    font-size: 1.23077em; }
  .collection__card .product-card__price {
    font-size: 1.61538em; }
  .collection__card .product-tag--absolute {
    left: calc(50% - 27px); }

/*================ Product Template ===========================*/
/* Float the product details right to allow fixed position of tabbed area */
.template-product .page-container,
.template-product .full-width--return-link {
  background-color: #f9f9f9; }
.template-product .grid__item.product-details {
  float: right; }
.template-product .product-single__description {
  margin-top: 25px; }
.template-product .product-form__cart-submit {
  width: 100%;
  margin-bottom: 12px; }
  .template-product .product-form__cart-submit + .swym-button-bar {
    width: 100%; }
.template-product .tabs {
  margin-top: 90px; }
  @media only screen and (max-width: 749px) {
    .template-product .tabs {
      margin-top: 45px; } }
.template-product .tabs-content {
  margin-bottom: 50px; }
  .template-product .tabs-content form {
    display: none; }
  .template-product .tabs-content .slick-prev,
  .template-product .tabs-content .slick-next {
    top: calc(50% + 22px); }
  .template-product .tabs-content .slick-prev {
    left: -50px; }
  .template-product .tabs-content .slick-next {
    right: -50px; }
.template-product .accordion th, .template-product .accordion td {
  background: #fff;
  border: 1px solid #c1a573; }
.template-product .photos {
  margin-top: 30px;
  margin-bottom: 30px; }
  @media only screen and (max-width: 749px) {
    .template-product .photos {
      margin-bottom: 40px; } }
  @media only screen and (min-width: 750px) and (max-width: 989px) {
    .template-product .photos {
      flex-direction: column; }
      .template-product .photos .photos__item--main {
        order: 0; }
      .template-product .photos .photos__item--thumbs {
        order: 1;
        width: 100%; }
        .template-product .photos .photos__item--thumbs .product-single__thumbnail-item {
          display: inline-block; } }
  @media only screen and (max-width: 749px) {
    .template-product .photos .product-single__thumbnails {
      margin-right: 30px;
      margin-left: 30px; } }
  .template-product .photos + div {
    margin-bottom: 20px; }
@media only screen and (min-width: 543px) and (max-width: 750px) {
  .template-product .evm_grid .evm_row .evm_column.evm_three {
    width: 49.96%; } }
.template-product .product-featured-recepies .section-block--padding {
  padding: 0;
  background: transparent; }

/*================ Product hover/focus overlay ================*/
.product-card__overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.06);
  transition: all 0.15s ease-in; }
  .product-card:hover .product-card__overlay, .product-card:focus .product-card__overlay {
    visibility: visible;
    opacity: 1; }

.product-card__overlay-btn {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-45%);
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  transition: all 0.15s ease-in; }
  .product-card:hover .product-card__overlay-btn {
    -ms-transform: translateY(-85%);
    -webkit-transform: translateY(-85%);
    transform: translateY(-85%); }
  .no-csstransforms .product-card__overlay-btn {
    top: 35%; }

/*================ Product image and wrapper ================*/
.product-card__image-wrapper {
  height: 235px;
  margin-bottom: 77px; }

.product-card__image {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  max-height: 100%; }
  .no-csstransforms .product-card__image {
    top: 0; }

/*================ Product meta info ================*/
.product-card__info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  padding: 10px 12.5px; }
  @media only screen and (min-width: 750px) {
    .product-card__info {
      padding: 10px 12.5px 20px; } }

.product-card__name,
.product-card__availability {
  position: relative;
  z-index: 3; }

.product-card__name {
  font-weight: 700;
  white-space: normal; }

/*    display:none to hide   SOLD OUT           */
.product-card__availability {
  font-size: 1.07692em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 1.07692em;
  display: none; }

.product-card__brand,
.product-card__price {
  font-size: 1.07692em; }

.product-card__regular-price {
  color: #e32727;
  text-decoration: line-through; }

.product-single {
  margin-bottom: 40px; }
  @media only screen and (min-width: 750px) {
    .product-single {
      margin-bottom: 80px; } }

@media only screen and (max-width: 749px) {
  .product-single__info-wrapper {
    padding: 0 10px; } }
/*================ Product meta ================*/
.product-single__meta {
  margin-bottom: 14px; }

.product-single__meta-list {
  line-height: 1; }
  .product-single__meta-list li {
    padding-right: 10px;
    vertical-align: middle; }
    .product-single__meta-list li:last-child {
      padding-right: 0; }

.product-single__meta-sub-title {
  font-size: 15px; }
  .product-single__meta-sub-title + p {
    font-size: 15px; }

.product-single__vendor {
  margin-bottom: 5px; }

.product-single__title {
  color: #1c1d1d;
  font-size: 36px;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 16px; }
  @media only screen and (max-width: 749px) {
    .product-single__title {
      font-size: 36px;
      line-height: 1; } }

.product-single__price {
  font-size: 2.46154em;
  font-weight: 700; }

.product-single__price--compare {
  color: #c9b085; }

.product-single__stock {
  display: inline-block;
  padding: 20px 0;
  font-size: 1em;
  text-transform: uppercase; }

/*================== Review stars on PDP ====================*/
.reviews-block {
  margin-bottom: 20px;
  display: inline-block; }
  .reviews-block .spr-summary {
    margin-right: 12px; }
  .reviews-block .spr-summary-actions-newreview {
    display: none; }

.reviews-link {
  display: inline-block;
  margin-bottom: 20px; }

[class^="spr-icon-"]::before,
[class*=" spr-icon-"]::before {
  color: #c1a573; }

/*================== Swatches ================*/
.swatch-element input {
  display: none; }
.swatch-element label {
  background: transparent;
  display: block;
  min-width: 70px; }
.swatch-element input[type="radio"]:checked + label {
  background: #c1a573;
  color: white; }

/* 
   Swatches Styles
*/
.swatch {
  display: inline-flex;
  margin: 8px 0; }

/* Label */
.swatch .header {
  /* margin-right: 40px; */ }

/* Hide radio buttons.*/
.swatch input {
  display: none; }

.swatch-element label {
  /* To give width and height */
  float: left;
  /* Color swatches contain no text so they need to have a width. */
  min-width: 50px !important;
  width: auto;
  /*50px !important; */
  height: auto;
  /*25px !important; */
  /* No extra spacing between them */
  margin: 0;
  /* The border when the button is not selected */
  border: 1px solid #c1a573;
  /* Styling text */
  color: #c1a573;
  padding: 5px 10px;
  text-align: center;
  line-height: 25px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.84615em; }

.color.swatch-element label {
  padding: 0; }

/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  border-color: transparent; }

.swatch .swatch-element {
  float: left;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  /* To position the sold out graphic and tooltip */
  position: relative; }

/* Image with the cross in it */
.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.swatch .swatch-element .crossed-out {
  display: none; }

.swatch .swatch-element.soldout .crossed-out {
  display: block; }

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60);
  /* internet explorer */
  -khtml-opacity: 0.6;
  /* khtml, old safari */
  -moz-opacity: 0.6;
  /* mozilla, netscape */
  opacity: 0.6;
  /* fx, safari, opera */ }

/* Tooltips */
.swatch .tooltip {
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: -23px;
  margin-bottom: 15px;
  /* Make it invisible by default */
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.swatch .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%; }

/* CSS triangle */
.swatch .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid gray 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0; }

#AddToCartForm .swatch .tooltip {
  padding-bottom: 25px; }

.swatch .swatch-element:hover .tooltip {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

.swatch.error {
  background-color: #e8d2d2 !important;
  color: #333333 !important;
  padding: 1em;
  border-radius: 5px; }

.swatch.error p {
  margin: 0.7em 0; }

.swatch.error p:first-child {
  margin-top: 0; }

.swatch.error p:last-child {
  margin-bottom: 0; }

.swatch.error code {
  font-family: monospace; }

/*================== Product description tabs =====================*/
ul.tabs {
  border-bottom: 1px solid #c1a573;
  display: block;
  padding: 0;
  margin-top: 40px; }
  ul.tabs li {
    display: block;
    float: left;
    height: auto;
    margin-bottom: -1px;
    padding: 0;
    width: auto; }
    @media only screen and (max-width: 543px) {
      ul.tabs li {
        width: 100%;
        margin-bottom: 0; } }
    ul.tabs li:first-child {
      border-width: 1px 1px 0; }
      ul.tabs li:first-child a.active {
        margin-left: 0; }
    ul.tabs li:last-child a.active {
      border-bottom: none !important; }
  ul.tabs:before, ul.tabs:after {
    content: " ";
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0; }
  ul.tabs:after {
    clear: both; }

ul.tabs-content {
  background: #f9f9f9;
  list-style: none;
  border: 1px solid #c1a573;
  border-top: none;
  overflow: hidden; }
  ul.tabs-content li {
    padding: 20px 60px; }
  ul.tabs-content .product-card {
    background: transparent;
    border: none;
    padding: 0 20px 25px; }
  ul.tabs-content .product-card__info {
    background: transparent;
    border: none;
    color: #1c1d1d; }
  ul.tabs-content .slick-prev,
  ul.tabs-content .slick-next {
    background: #f9f9f9;
    border: 1px solid #c1a573; }
    ul.tabs-content .slick-prev:hover,
    ul.tabs-content .slick-next:hover {
      background: #c1a573; }
      ul.tabs-content .slick-prev:hover:before,
      ul.tabs-content .slick-next:hover:before {
        color: #f9f9f9; }
  ul.tabs-content .slick-slider {
    margin-bottom: 0; }
  ul.tabs-content .section-block {
    background: #f9f9f9; }

ul.tabs a {
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  background: none;
  display: block;
  font-family: gotham-medium, sans-serif;
  font-size: 13px;
  height: 50px;
  line-height: 30px;
  margin: 0;
  padding: 10px 20px 0 20px;
  text-decoration: none;
  text-transform: uppercase;
  width: auto;
  color: #c1a573;
  border-bottom: none !important;
  position: relative; }
  @media only screen and (max-width: 543px) {
    ul.tabs a {
      background: #f9f9f9; } }
  ul.tabs a.active {
    background: #f9f9f9;
    border: 1px solid #c1a573;
    color: black;
    position: relative; }
    @media only screen and (max-width: 543px) {
      ul.tabs a.active {
        border-bottom: 1px solid #c1a573 !important; } }

/*============== Add To Wishlist Link ===========*/
.swym-button-bar {
  clear: left;
  float: left;
  font-weight: 700;
  margin: 0 !important;
  width: 50%; }

.swym-btn-container {
  text-align: center;
  width: 100%; }
  .swym-btn-container .swym-button:after {
    top: 6px !important; }
  .swym-btn-container .swym-fave-count {
    background: transparent !important; }
  .swym-btn-container .swym-add-to-wishlist.swym-iconbtnlink,
  .swym-btn-container .swym-fave-count {
    font-size: 0.76923em !important; }

/*============== Staff Tip section ===============*/
.staff-tip {
  font-size: 14px;
  padding: 5px 20px 5px 76px;
  margin-bottom: 22px;
  background: url("https://cdn.shopify.com/s/files/1/2236/3995/t/9/assets/maille_staff_tip2.png") 0 0 no-repeat;
  background-color: #f9f9f9 !important; }
  .staff-tip h5, .staff-tip .h5, .staff-tip .h5--small {
    text-transform: uppercase; }

/*================ Accordion ===================*/
.accordion {
  background-color: #f9f9f9;
  color: #c1a573;
  cursor: pointer;
  padding: 18px 30px 18px 18px;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0 !important;
  border-top: 1px solid  #c1a573;
  border-radius: 1px;
  text-align: left;
  outline: none;
  font-family: gotham, sans-serif;
  font-size: 1em;
  font-weight: normal;
  transition: 0.8s;
  text-transform: uppercase; }

.accordion:after {
  content: '\002B';
  color: #c1a573;
  font-weight: normal;
  font-size: 18px;
  float: right;
  margin-top: -5px;
  display: block;
  position: relative;
  right: -15px; }

.accordion.active:after {
  content: "\2212"; }

div.panel {
  background-color: #f9f9f9;
  border-bottom: 1px solid #c1a573;
  border-top: none;
  color: #1c1d1d;
  max-height: 0;
  overflow: hidden;
  transition: 0.8s;
  padding: 0 18px;
  margin-bottom: -1px;
  font-size: 14px; }
  div.panel.is-open {
    max-height: 100%; }
  div.panel p:last-child {
    margin-bottom: 20px; }

/*================ Recently Viewed Products on PDP ====================*/
/* #evm_recent_products {
  h2 {
    display: none;
  }
} */
#evm_recent_products.evm_grid {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  float: none; }

.evm_grid .row {
  display: block;
  clear: both; }

.evm_grid .evm_row .evm_column {
  float: left; }

.evm_grid .evm_row .evm_column.evm_one {
  width: 8.3%; }

.evm_grid .evm_row .evm_column.evm_two {
  width: 16.66%; }

.evm_grid .evm_row .evm_column.evm_three {
  width: 24.96%; }

.evm_grid .evm_row .evm_column.evm_four {
  width: 33.2%; }

.evm_grid .evm_row .evm_column.evm_five {
  width: 41.5%; }

.evm_grid .evm_row .evm_column.evm_six {
  width: 49.8%; }

.evm_grid .evm_row .evm_column.evm_seven {
  width: 58.1%; }

.evm_grid .evm_row .evm_column.evm_eight {
  width: 66.4%; }

.evm_grid .evm_row .evm_column.evm_nine {
  width: 77.4%; }

.evm_grid .evm_row .evm_column.evm_ten {
  width: 83%; }

.evm_grid .evm_row .evm_column.evm_eleven {
  width: 91.3%; }

.evm_grid .evm_row .evm_column.evm_twelve {
  width: 100%; }

.evm_grid .evm_row .evm_column > div {
  margin: 1em; }

.evm_clearfix {
  clear: both; }

.evm_grid img.evm_responsive {
  max-width: 80% !important; }

.evm_grid h2, .evm_grid .h2 {
  font-family: gotham-medium, sans-serif;
  font-size: 13px;
  color: #1c1d1d; }
  .evm_grid h2 a, .evm_grid .h2 a {
    font-weight: normal; }
  .evm_grid h2 + .rv__price, .evm_grid .h2 + .rv__price {
    font-size: 14px; }

.evm_center {
  text-align: center; }

@media screen and (max-width: 568px) {
  .evm_sm_twelve {
    width: 100% !important;
    clear: both; } }
/*================ Product form ================*/
.product-form {
  /* @include display-flexbox(); 
  @include flex-wrap(wrap); 
  @include align-items(flex-end);  */
  margin: 0;
  overflow: hidden; }
  .product-form .btn, .product-form .btn--secondary {
    height: 44px;
    padding-top: 9px;
    padding-bottom: 9px; }
  .product-form .btn, .product-form .btn--secondary,
  .product-form select,
  .product-form input[type="text"] {
    min-height: 32px; }
  .product-form + hr {
    border-color: transparent; }

.no-js .product-form__variants {
  display: block;
  margin-bottom: 10px; }

.product-form__item {
  -webkit-flex: 1 0 160px;
  -moz-flex: 1 0 160px;
  -ms-flex: 1 0 160px;
  flex: 1 0 160px;
  margin-bottom: 10px;
  padding: 0 5px;
  display: flex;
  clear: left; }
  .product-form__item label {
    display: block; }

.product-form__item--quantity,
.product-form__item--social {
  float: left;
  clear: none; }

.product-form__item--quantity {
  margin-bottom: 25px; }

.product-form__item--social {
  border-left: 1px solid #c1a573; }

.product-form__item--submit {
  padding-top: 15px; }

.product-form__input {
  display: block;
  width: 100%; }

.btn--sold-out[disabled] {
  background-color: #ec523e;
  color: white; }

.product-form__cart-submit {
  clear: left;
  float: left;
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal; }

/*================ Product image and thumbnail layout ================*/
.photos__item--main {
  text-align: center;
  min-width: 0; }

.photos__item--thumbs {
  max-width: 100%; }

@media only screen and (min-width: 750px) {
  .photos {
    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;
    flex-direction: row; }

  .photos__item--main {
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    order: 2; }

  .photos__item--thumbs {
    order: 1;
    -webkit-flex: 0 0 15%;
    -moz-flex: 0 0 15%;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%; } }
.product-single__photo {
  margin-bottom: 20px; }
  @media only screen and (max-width: 749px) {
    .product-single__photo {
      max-height: 340px; }
      .product-single__photo img {
        max-height: 340px; } }

/*================ Product thumbnail layout ================*/
.product-single__thumbnails.slick-vertical .slick-slide {
  border: 0;
  padding: 2px 0; }

.product-single__thumbnails {
  display: none;
  margin: 0 40px 20px; }
  .product-single__thumbnails.slick-initialized {
    display: block; }
  @media only screen and (min-width: 750px) {
    .product-single__thumbnails {
      margin: 0; } }

.product-single__thumbnails--static {
  display: block;
  text-align: center; }
  @media only screen and (max-width: 749px) {
    .product-single__thumbnails--static .product-single__thumbnail-item {
      display: inline-block;
      width: 45%;
      max-width: 150px; } }

.product-single__thumbnail {
  position: relative;
  display: block;
  height: 130px;
  padding: 10px;
  max-width: 200px;
  margin: 0 auto; }
  .product-single__thumbnail img {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    max-height: 110px;
    margin: 0 auto; }
    .no-csstransforms .product-single__thumbnail img {
      top: 0; }
  .is-active .product-single__thumbnail:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #c1a573; }

/*================ Slider arrows ================*/
.product-single__thumbnails.slick-initialized .slick-prev,
.product-single__thumbnails.slick-initialized .slick-next {
  background: transparent;
  color: #000;
  opacity: 0.2;
  transition: opacity 0.15s ease-in;
  width: 30px;
  height: 30px; }
  .product-single__thumbnails.slick-initialized .slick-prev:before,
  .product-single__thumbnails.slick-initialized .slick-next:before {
    display: none; }
  .product-single__thumbnails.slick-initialized .slick-prev:hover, .product-single__thumbnails.slick-initialized .slick-prev:focus,
  .product-single__thumbnails.slick-initialized .slick-next:hover,
  .product-single__thumbnails.slick-initialized .slick-next:focus {
    opacity: 0.7; }
  .product-single__thumbnails.slick-initialized .slick-prev .icon,
  .product-single__thumbnails.slick-initialized .slick-next .icon {
    fill: #1c1d1d;
    width: 30px;
    height: 30px; }
.product-single__thumbnails.slick-initialized .slick-disabled {
  opacity: 0;
  visibility: hidden; }

.product-single__thumbnails.slick-vertical .slick-prev,
.product-single__thumbnails.slick-vertical .slick-next {
  left: 0;
  right: 0;
  margin-top: 0;
  width: 100%;
  height: auto; }
.product-single__thumbnails.slick-vertical .slick-prev {
  top: -20px; }
.product-single__thumbnails.slick-vertical .slick-next {
  top: auto;
  bottom: -40px; }

/*================ Product image modal ================*/
.product-modal__image {
  display: block;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  max-height: 95%;
  max-width: 95%;
  margin: 0 auto; }
  .no-csstransforms .product-modal__image {
    top: 2.5%; }

.js-modal-open-product-modal {
  cursor: zoom-in; }

.product-tag {
  font-size: 1.07692em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.92308em;
  background-color: #c1a573;
  color: white;
  padding: 4px 10px; }

.product-tag--absolute {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  display: none; }

/*============================================================================
  Reviews Section
==============================================================================*/
/* Reviews in Product Information Section - hiding all but stars and rating */
/* .product-single__meta {
  .spr-summary-actions,
  .spr-reviews,
  .spr-form {
    display: none!important;
  }
  
  .reviews-block {
    display: flex;
  }

  .reviews-link {
    margin: 10px;
  }
} */
p.spr-review-content-body {
  font-size: 15px; }

/*=================== PDP Bottom reviews ===================*/
.grid__item--reviews {
  margin-top: 30px; }
  .grid__item--reviews h2, .grid__item--reviews .h2 {
    text-align: center; }
  .grid__item--reviews span.spr-summary-actions {
    display: block;
    float: right;
    text-transform: none;
    background: #c1a573;
    padding: 10px; }
    .grid__item--reviews span.spr-summary-actions a {
      color: #FFF; }
  .grid__item--reviews .spr-container {
    border: none !important;
    padding: 0 !important; }
    .grid__item--reviews .spr-container h2, .grid__item--reviews .spr-container .h2 {
      display: none; }
    .grid__item--reviews .spr-container .spr-icon {
      color: #74613c;
      font-size: 100%; }
  .grid__item--reviews .spr-summary {
    font-weight: 700 !important;
    text-transform: uppercase !important; }
  .grid__item--reviews .spr-summary-actions-newreview {
    float: none !important; }
  @media only screen and (max-width: 480px) {
    .grid__item--reviews span.spr-summary-actions {
      float: none;
      margin: 18px auto 0;
      max-width: 240px; } }

/*===========================*/
/*===================Home Page Elements=======================*/
.template-index {
  /* Link blocks on home page    color: $color-accent;    */ }
  .template-index .custom-content {
    background-color: #e2d6bf; }
  .template-index .tip {
    margin: -30px; }
  .template-index .flex__item img {
    float: right; }
  .template-index .link-block {
    padding: 185px 50px;
    margin-bottom: 50px; }
    .template-index .link-block .flex__item {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%; }
    .template-index .link-block .emphasized-title {
      background-color: rgba(0, 0, 0, 0.75);
      color: #ffffff;
      display: block;
      font-size: 24px;
      padding: 25px 10px; }

/* Reviews section on home page */
.review-stars {
  display: block;
  width: 100px;
  height: 20px;
  /*background: url(5-starsUK.png) no-repeat 0 0;*/ }

.section-block--dark-gold .rte-setting {
  font-size: 1.38462em;
  color: #ffffff; }
.section-block--dark-gold .h5 {
  margin-bottom: 10px;
  color: #ffffff; }

/* Recipes from blog on home page */
.recipes-wrapper {
  background-image: url(bg-home-recipes-wrapper.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  /* Margin above for when shown on the recipe detail page */ }
  .recipes-wrapper .page-width {
    /* Padding for the heading */
    padding-top: 50px;
    padding-bottom: 100px; }
  .recipe-detail .recipes-wrapper {
    margin-top: 20px; }
  .recipes-wrapper .section-block {
    background: none; }

.section-block.recipes {
  background: transparent; }
  .section-block.recipes .article-block__info {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0;
    position: relative;
    height: 80px;
    line-height: 80px;
    width: 100%;
    margin-top: -80px; }
  .section-block.recipes .article-block__title {
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    font-size: 20px; }
  .section-block.recipes .article-block__date,
  .section-block.recipes p {
    display: none; }

.newsletter-wrapper {
  background: #1e1e1e;
  margin-top: -51px; }
  .newsletter-wrapper .section-block {
    background-color: #1e1e1e;
    padding-bottom: 40px;
    padding-top: 50px; }
  .newsletter-wrapper h4, .newsletter-wrapper .h4 {
    margin-bottom: 5px; }
  .newsletter-wrapper .section-block__subtext {
    color: #FFF;
    font-size: 1.23077em; }

/* Links block after header */
.header-links {
  background: #2e2e2e;
  margin: 0;
  padding: 10px 0; }
  @media only screen and (max-width: 63.9375em) {
    .header-links {
      display: none; } }

.header-links__flex {
  display: flex;
  justify-content: space-around; }
  @media only screen and (max-width: 544px) {
    .header-links__flex {
      flex-direction: column; } }

.header-links__item {
  flex: 1 1 33.333%;
  text-align: center;
  padding: 5px 15px; }
  @media only screen and (max-width: 544px) {
    .header-links__item {
      border-bottom: 1px solid #c1a573;
      flex: 0 0 100%;
      padding: 10px;
      width: 100%; } }
  @media only screen and (min-width: 545px) {
    .header-links__item {
      border-right: 1px solid #c1a573;
      align-self: center; } }
  .header-links__item:last-child {
    border: none; }
  .header-links__item a span {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  .header-links__item a:hover span, .header-links__item a:focus span {
    color: #dddddd; }

/*=================== Recipes Blog ========================*/
/* ================CLYDES CODE ======================= */
.recipe_left_col {
  float: left;
  padding: 20px;
  width: 50%; }

.recipe_right_col {
  float: left;
  padding: 20px;
  width: 50%;
  border: solid;
  border-width: 0 0 0 1px;
  border-color: #000000; }

@media screen and (max-width: 480px) {
  .recipe_left_col {
    width: 100%;
    padding: 0px 0px 60px 0px; }

  .recipe_right_col {
    width: 100%;
    border: none;
    padding: 0px; } }
/* ================ END CLYDES CODE ======================= */
.recipes .recipes__header {
  margin-bottom: 40px; }
.recipes .content-block {
  float: left;
  position: relative;
  height: 20vw;
  max-height: 240px;
  min-height: 200px; }
  .recipes .content-block:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 5px;
    background-color: black;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1; }
  .recipes .content-block:hover:after, .recipes .content-block:hover:focus {
    opacity: 0.6; }
.recipes .blog__meta {
  display: none; }
.recipes .blog__title-link {
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: #ffffff;
  font-size: 1.5em;
  margin: 0;
  padding: 20px 5%;
  position: absolute;
  text-align: center;
  width: 100%; }
.recipes .blog__img-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%; }
.recipes .tabs-content li {
  padding: 0; }

.recipes__filters {
  display: flex;
  list-style: none;
  margin-bottom: 20px; }
  .recipes__filters li:first-child {
    padding-left: 0; }

#shopify-section-featured-recipe {
  margin-top: 40px; }

.new-recipes .article-block__date {
  display: none; }

/*=================== Recipe Detail Page ======================*/
.recipe-detail .blog__meta {
  display: none; }
.recipe-detail .content-block__full-image--large {
  margin-bottom: 20px; }
.recipe-detail .page-width {
  margin: 0 auto;
  padding: 20px 20px 70px;
  max-width: 95%; }
.recipe-detail .section-block--padding {
  padding: 20px 20px 0; }
.recipe-detail .slick-slider {
  margin-bottom: 0; }
.recipe-detail .slick-prev, .recipe-detail .slick-next {
  top: calc(100% + 35px); }

/*============================================================================
  Pagination
  - Markup build by liquid tag,
    so nesting and element selectors are necessary
==============================================================================*/
.pagination {
  text-align: center;
  margin: 40px 40px 0; }
  .pagination a {
    color: #1c1d1d; }
    .pagination a:hover, .pagination a:focus {
      color: #c1a573; }
  .pagination .current {
    font-weight: 700;
    color: #c1a573; }
  .pagination a,
  .pagination .current {
    display: inline-block;
    padding: 5px 10px; }

/*================ Article comments ================*/
.comment {
  margin-bottom: 20px; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment + .comment {
    padding-top: 20px;
    border-top: 1px solid white; }

/*================ Indented article/page images ================*/
.rte--indented-images .rte__image-indent {
  position: relative;
  margin-left: -20px;
  margin-right: -20px; }
  @media only screen and (min-width: 750px) {
    .rte--indented-images .rte__image-indent {
      margin-left: -40px;
      margin-right: -40px; } }

/*================ Section header ================*/
.section-header {
  margin-bottom: 40px; }

@media only screen and (max-width: 749px) {
  .section-header__item + .section-header__item {
    margin-top: 20px; } }
.section-header__title,
.section-header__subtext {
  margin-bottom: 0; }

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

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
.hero-wrapper {
  position: relative;
  margin-top: -30px; }
  @media only screen and (min-width: 750px) {
    .hero-wrapper {
      margin-top: -60px; } }

.hero {
  background-color: #1a1a1a;
  height: 330px;
  margin-bottom: -30px;
  overflow: hidden; }
  @media only screen and (min-width: 750px) {
    .hero {
      height: 600px;
      margin-bottom: -60px; } }
  .hero .hero__slide,
  .hero .slick-list,
  .hero .slick-track {
    height: 100%; }
  .ie9 .hero {
    margin-bottom: 60px; }

.hero__pause:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #c1a573;
  padding: 10px;
  z-index: 10000;
  transition: none; }
  .hero__pause:focus .icon {
    fill: currentColor; }

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

.hero__pause-play {
  display: none; }
  .is-paused .hero__pause-play {
    display: block; }

/*================ Dots and prev/next pagination ================*/
.hero .slick-dots {
  margin: 0;
  bottom: 10px; }
  .hero .slick-dots li {
    margin: 0;
    vertical-align: middle; }
    .hero .slick-dots li button {
      position: relative; }
    .hero .slick-dots li button:before {
      text-indent: -9999px;
      background-color: white;
      border-radius: 100%;
      border: 2px solid transparent;
      width: 10px;
      height: 10px;
      margin: 5px 0 0 5px;
      opacity: 1;
      transition: all 0.2s; }
    .hero .slick-dots li.slick-active button:before {
      background-color: transparent;
      border-color: white;
      opacity: 1;
      width: 12px;
      height: 12px;
      margin: 4px 0 0 4px; }
    .hero .slick-dots li button:active:before {
      opacity: 0.5; }
.hero .slick-prev,
.hero .slick-next {
  top: 0;
  height: 100%;
  margin-top: 0;
  width: 40px; }
.hero .slick-prev {
  left: 0; }
.hero .slick-next {
  right: 0; }

/*================ General slide styles ================*/
.hero__slide {
  position: relative; }

.hero__image {
  position: fixed 80px;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center; }
  .slick-initialized .hero__image, .no-js .hero__image {
    opacity: 1; }
  .hero__image img {
    display: block;
    width: 100%; }

.ie9 .hero__slide {
  z-index: 1 !important; }
.ie9 .slick-dots {
  z-index: 2; }

/*================ Hero text ================*/
.hero__text-wrap {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 10px; }
  @media only screen and (min-width: 750px) {
    .hero__text-wrap {
      bottom: 90px; } }

.hero__text-content {
  opacity: 0;
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition-delay: 0.3s; }
  .slick-active .hero__text-content {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }

.hero__title-wrap {
  margin-bottom: 8px; }

.hero__title {
  display: inline;
  font-size: 2.46154em;
  letter-spacing: 0px;
  line-height: 1.2;
  font-family: mrs-eaves, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 15px 20px 8px;
  background-color: #c1a573;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 750px) {
    .hero__title {
      font-size: 4.61538em; } }

@media screen and (max-width: 400px) {
  .hero__title {
    display: inline;
    font-size: 1.69231em;
    letter-spacing: 0px;
    line-height: 0;
    margin: 0;
    padding: 7px 10px 4px;
    background-color: #c1a573;
    color: white;
    -webkit-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone; } }
  @media only screen and (max-width: 400px) and (min-width: 750px) {
    .hero__title {
      font-size: 2.76923em; } }

.hero__title--has-link {
  transition: background-color 0.15s ease-in; }
  .hero__title--has-link:hover, .hero__title--has-link:focus {
    background-color: #b18e50; }

.hero__link {
  color: inherit; }
  .hero__link:hover, .hero__link:focus {
    color: inherit; }

/*================ Subtext and custom arrows share style ================*/
.hero__subtitle,
.hero__arrow {
  display: inline;
  line-height: 2;
  padding: 10px 30px;
  background-color: black;
  color: #8a7551;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 750px) {
    .hero__subtitle,
    .hero__arrow {
      font-size: 1.53846em; } }

@media screen and (max-width: 400px) {
  .hero__subtitle,
  .hero__arrow {
    font-size: 1.15385em;
    line-height: 2.2 !important; } }
.hero__subtitle.hero__link,
.hero__arrow {
  transition: background-color 0.15s ease-in; }
  .hero__subtitle.hero__link:hover, .hero__subtitle.hero__link:focus,
  .hero__arrow:hover,
  .hero__arrow:focus {
    color: #8a7551;
    background-color: #141414; }

/*================ Custom navigation arrows ================*/
.hero__arrows {
  display: inline;
  color: #8a7551;
  margin-right: 1px;
  position: absolute;
  top: 0;
  bottom: 0; }
  .no-js .hero__arrows {
    display: none; }

.hero__arrow {
  cursor: pointer;
  padding-right: 15px;
  padding-left: 15px;
  position: absolute;
  top: 45%;
  z-index: 5;
  display: inline-block; }
  .hero__arrow .icon {
    position: relative;
    top: -3px;
    left: 3px;
    width: 11px;
    height: 11px;
    fill: currentColor; }

.hero__arrow--next {
  border-left: 1px solid #0d0d0d;
  position: absolute;
  right: 0; }

/*================ Drawer Skeleton Styles ================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.page-container {
  overflow: hidden; }

.js-drawer-open .page-container:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10; }

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

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  max-width: 95%;
  z-index: 1;
  background-color: white;
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }

.drawer--left {
  width: 300px;
  left: -300px; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
    .no-csstransforms .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 300px;
  right: -300px; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .no-csstransforms .js-drawer-open-right .drawer--right {
      right: 0; }

.is-moved-by-drawer {
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
    .no-csstransforms .js-drawer-open-left .is-moved-by-drawer {
      left: 300px; }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .no-csstransforms .js-drawer-open-right .is-moved-by-drawer {
      left: -300px; }

/*================ Drawer theme styles ================*/
.page-element {
  position: relative; }
  .page-element.is-transitioning {
    z-index: 2; }

.page-container {
  background-color: white; }

.is-moved-by-drawer {
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open .is-moved-by-drawer {
    transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px; }
  .js-drawer-open-right .is-moved-by-drawer {
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 -5px; }

.drawer--left {
  left: -75px; }
  .js-drawer-open-left .drawer--left {
    -ms-transform: translateX(75px);
    -webkit-transform: translateX(75px);
    transform: translateX(75px); }

.drawer {
  overflow: visible;
  color: black; }

.drawer__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden; }

/*================ Drawer search field ================*/
.drawer__search {
  position: relative;
  background-color: white;
  padding: 10px; }

.drawer__search-input {
  display: block;
  width: 100%;
  padding-left: 15px;
  background-color: white; }
  .drawer__search-input[type="search"] {
    padding-right: 60px; }
  .drawer__search-input::-webkit-search-decoration {
    display: none; }

.drawer__search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 20px; }
  .drawer__search-submit .icon {
    width: 25px;
    height: 25px;
    fill: black; }

/*================ Drawer linklist ================*/
.drawer__nav {
  list-style: none; }

.drawer__nav--template-index {
  position: relative;
  margin-bottom: -10px;
  background-color: white; }

.drawer__nav--margin {
  margin-bottom: 30px; }

.drawer__nav-item {
  display: block;
  border-bottom: 1px solid white; }

.drawer__nav-link {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  display: block;
  padding: 13.33333px 20px;
  font-size: 2em;
  color: black; }
  .drawer__nav-link:hover, .drawer__nav-link:focus {
    color: black;
    background-color: #fafafa; }

/*================ Sublist expand/collapse trigger ================*/
.drawer__nav-has-sublist {
  display: table;
  width: 100%; }
  .drawer__nav-has-sublist .drawer__nav-link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.drawer__nav-toggle {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.drawer__nav-toggle-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  color: black;
  line-height: 1; }
  .drawer__nav-toggle-btn .icon {
    width: 18px;
    height: 18px;
    fill: currentColor; }
  .drawer__nav-toggle-btn:hover, .drawer__nav-toggle-btn:focus {
    opacity: 0.6;
    border-left: 1px solid white; }

.drawer__nav-toggle--open {
  display: block; }

.drawer__nav-toggle--close {
  display: none; }

/*================ Collection sorting select menus ================*/
.collection-sort {
  display: inline-block;
  text-align: left;
  max-width: 150px; }
  .collection-sort + .collection-sort {
    margin-left: 20px; }
  @media only screen and (max-width: 749px) {
    .collection-sort {
      width: 80%; }
      .collection-sort + .collection-sort {
        margin: 20px 0 0; } }

.collection-sort__label {
  display: block;
  text-align: center; }
  @media only screen and (min-width: 750px) {
    .collection-sort__label {
      text-align: left;
      padding-left: 6.66667px;
      margin-bottom: 0; } }

.collection-sort__input {
  background-color: transparent;
  font-weight: 700;
  padding-top: 6.66667px;
  padding-bottom: 6.66667px;
  padding-left: 6.66667px; }
  @media only screen and (max-width: 749px) {
    .collection-sort__input {
      width: 100%;
      border: 1px solid #e6e6e6; } }

/*================ Collection card and grid ================*/
.collection {
  margin-bottom: 30px; }
  .collection:last-child {
    margin-bottom: 0; }

.template-index .collection {
  padding-top: 0; }

/*================ Collection card ================*/
.collection-card {
  position: relative;
  box-sizing: content-box;
  display: block;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 12.5px;
  height: 312px;
  z-index: 1; }
  .collection-card:focus {
    z-index: 2; }
  @media only screen and (min-width: 750px) {
    .collection-card {
      padding: 25px; } }
  .collection-card:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.4;
    z-index: 1;
    transition: opacity 0.2s ease; }
  .collection-card:hover:after, .collection-card:focus:after {
    opacity: 0.6; }

#shopify-section-featured-collections {
  margin-top: 30px; }
  @media only screen and (min-width: 750px) {
    #shopify-section-featured-collections .grid__item:first-child {
      width: 66.66666%; } }

.collection-card__meta {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  margin-right: 10px;
  z-index: 2; }
  @media only screen and (min-width: 750px) {
    .collection-card__meta {
      bottom: 40px; } }

.collection-card__title {
  display: inline;
  background-color: #c1a573;
  color: white;
  margin-bottom: 10px;
  padding: 2px 10px;
  letter-spacing: 0;
  font-size: 2em;
  line-height: 1.2;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 990px) {
    .collection-card__title {
      font-size: 2.46154em; } }

.collection-card__subtext {
  font-size: 1.07692em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 10px 0 0 10px;
  font-size: 1em;
  color: white; }

/*================ Social sharing icons ================*/
.social-sharing {
  text-align: center; }
  .social-sharing .icon {
    width: 24px;
    height: 24px;
    fill: currentColor; }

@media only screen and (max-width: 749px) {
  .social-sharing__title {
    display: inline-block;
    margin-bottom: 10px; } }
.social-sharing__link {
  color: #1c1d1d;
  opacity: 0.7; }
  .social-sharing__link:hover, .social-sharing__link:focus {
    opacity: 1;
    color: #c1a573; }
  .social-sharing__link + .social-sharing__link {
    margin-left: 10px; }

/*================ Cart ================*/
.cart-table {
  background-color: white;
  border: 0;
  margin-bottom: 20px; }
  .cart-table td,
  .cart-table th {
    border: 0; }
    @media only screen and (min-width: 750px) {
      .cart-table td,
      .cart-table th {
        padding: 20px; } }

/*================ Cart cells ================*/
@media only screen and (min-width: 750px) {
  .cart__cell--image {
    width: 180px; }

  .cart__cell--quantity {
    width: 130px; }

  .cart__cell--total {
    width: 200px;
    text-align: right; } }
/*================ Cart cell responsive labels ================*/
@media only screen and (max-width: 749px) {
  .cart-table th,
  .cart-table td {
    text-align: center; }
  .cart-table td:before {
    display: none; } }
/*================ Cart items ================*/
.cart__image {
  display: inline-block;
  max-width: 120px;
  margin: 10px auto; }
  @media only screen and (max-width: 749px) {
    .cart__image img {
      max-height: 120px; } }

.cart__quantity-label {
  display: block;
  text-align: center; }

.cart__cell--quantity .js-qty {
  max-width: 120px;
  margin: 0 auto; }

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

.cart__item-total {
  font-size: 1.2em; }
  @media only screen and (min-width: 750px) {
    .cart__item-total {
      padding-right: 20px; } }

.cart__subtotal {
  margin: 30px 0 0; }
  @media only screen and (min-width: 750px) {
    .cart__subtotal {
      margin-top: 20px; } }

.cart__taxes {
  margin-bottom: 40px; }

.cart__note {
  width: 100%;
  background-color: white;
  border: 1px solid #e6e6e6; }
  @media only screen and (max-width: 749px) {
    .cart__note {
      min-height: 50px; } }

.cart__buttons .btn, .cart__buttons .btn--secondary {
  margin-bottom: 10px; }
  @media only screen and (max-width: 749px) {
    .cart__buttons .btn, .cart__buttons .btn--secondary {
      display: block;
      width: 100%; } }

.update-cart {
  display: none; }
  .no-js .update-cart {
    display: inline-block; }

/*================ Cart discounts ================*/
.cart-item__original-price,
.cart-item__discount {
  font-size: 80% !important;
  margin-bottom: 0 !important; }

/*================ Empty cart ================*/
.cart--no-cookies .cart--empty-message {
  display: none; }

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

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

/*================ Quantity selector ================*/
.js-qty {
  position: relative; }

.js-qty--is-loading {
  opacity: 0.6; }

.js-qty__input {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center; }

.js-qty__adjust {
  position: absolute;
  top: 0;
  bottom: 0;
  text-align: center;
  width: 30px;
  padding: 0;
  background: none;
  border-style: solid;
  border-color: #e7e7e7;
  border-width: 0;
  transition: background-color 0.03s ease-in; }
  .js-qty__adjust:hover, .js-qty__adjust:focus {
    background-color: #e7e7e7;
    transition-duration: 0.08s; }
  .js-qty__adjust .icon {
    width: 8px;
    height: 8px;
    fill: currentColor; }

.js-qty__adjust--minus {
  left: 0;
  border-right-width: 1px; }

.js-qty__adjust--plus {
  right: 0;
  border-left-width: 1px; }

/*================ Notification bar ================*/
.notification {
  visibility: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0;
  transition: top 0.25s, visibility 0.25s, opacity 0.15s;
  transition-timing-function: cubic-bezier(0.33, 0.59, 0.14, 1);
  z-index: 4; }

.notification--promo {
  position: static;
  display: none; }

.notification--active {
  display: block;
  visibility: visible;
  top: 100%;
  opacity: 1; }

.notification__link {
  display: block;
  padding: 10px 0; }
  .notification__link:hover u {
    text-decoration: none; }

.notification__inner {
  position: relative;
  overflow: visible;
  padding: 10px 0; }

.notification__inner--has-link {
  padding: 0; }

.notification__message {
  display: block;
  padding: 0 60px;
  text-align: center;
  font-weight: 600;
  /*   text-transform: uppercase; */ }
  .notification__message span {
    text-decoration: underline;
    white-space: nowrap; }

span.notification__message {
  font-size: 15px; }

.notification--success,
.notification--promo {
  background-color: #c1a573;
  color: white;
  z-index: 99999; }
  .notification--success a,
  .notification--promo a {
    color: white; }

.notification--error {
  background-color: #ec523e;
  color: white; }
  .notification--error a {
    color: white; }

.notification__close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  padding: 0 10px;
  color: inherit; }
  .notification__close .icon {
    fill: currentColor; }

/*================ Modals ================*/
.modal {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  color: #1c1d1d;
  z-index: 15;
  transition: all ease-in-out 0.2s; }
  .modal.modal--is-active {
    display: block;
    opacity: 1; }

body.modal--is-active {
  overflow: hidden; }

.modal__inner {
  height: 100%;
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all ease-in-out 0.2s; }
  .modal--is-active .modal__inner {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }

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

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px; }
  .modal__close .icon {
    font-size: 1.53846em; }

/*================ Featured collection card ================*/
.featured-card {
  display: block;
  position: relative;
  height: 375px;
  text-align: center;
  border-color: white;
  border-style: solid;
  border-width: 0 0 1px 1px;
  background-color: white; }
  .featured-card:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: opacity 0.15s ease-in;
    z-index: 1; }
  .featured-card:hover:before {
    opacity: 1; }

.featured-card--cover {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-width: 0; }

.featured-card__image-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 62%; }

.featured-card__image {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  height: 100%; }

.featured-card__header {
  position: absolute;
  display: inline-block;
  padding: 30px 5% 10px;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%; }

.featured-card__header--background {
  background: url(bg_collection_header.png) repeat 0 0; }

.featured-card__title {
  font-size: 2.15385em;
  margin-bottom: 0;
  color: #c1a573; }

.featured-card__action {
  font-size: 1.07692em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 1em;
  color: #c1a573; }
  .featured-card:hover .featured-card__action {
    color: inherit; }

.section-block {
  position: relative;
  background-color: white; }

.section-block--padding {
  padding: 30px; }

.section-block--dark-gold {
  background-color: #e2d6bf; }

.section-block__header {
  margin-bottom: 30px; }

.section-block__header--padded {
  padding-top: 30px; }

.section-block__title,
.section-block__subtext {
  margin-bottom: 0; }

/*================ Maps ================*/
.map-section {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 750px) {
    .map-section {
      height: 500px; } }

.map-section__page-width {
  position: relative;
  text-align: center;
  height: 100%; }

.map-section__overlay {
  position: relative;
  display: inline-block;
  background-color: white;
  padding: 40px;
  margin: 0 20px;
  text-align: center;
  z-index: 3; }
  @media only screen and (min-width: 750px) {
    .map-section__overlay {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%); }
      .ie9 .map-section__overlay {
        top: 10%; } }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

.map-section__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  margin-bottom: -50%; }
  @media only screen and (min-width: 750px) {
    .map-section__container {
      width: 130%;
      height: 100%;
      margin: 0 -30% 0 0; } }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

/*================ Link block CTA ================*/
.link-block {
  position: relative;
  display: block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  flex: 1;
  background-size: cover;
  background-position: top center; }
  .link-block:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1; }
  .link-block:hover:after, .link-block:hover:focus {
    opacity: 0.5; }

.link-block__cta {
  word-break: break-word;
  z-index: 2; }

.link-block--transparent:after {
  opacity: 0; }

/*================ Quote slider ================*/
.quote-icon {
  display: block;
  margin: 0 auto 20px; }

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 30px; }
  .quotes-wrapper .slick-dots li,
  .quotes-wrapper .slick-dots button {
    width: auto;
    height: auto; }
  .quotes-wrapper .slick-dots button {
    line-height: 1;
    font-size: 1em;
    opacity: 0.6;
    color: currentColor; }
    .quotes-wrapper .slick-dots button:before {
      display: none; }
  .quotes-wrapper .slick-dots .slick-active button {
    font-weight: 700;
    opacity: 1; }

.quotes-wrapper .slick-slide[tabindex="0"] {
  outline: none; }

/*================ Image content section ================*/
.image-content__image {
  display: block;
  margin: 0 auto; }

.image-content__text {
  padding: 40px 80px; }

/*================ Featured product section ================*/
@media only screen and (max-width: 749px) {
  .featured-product__text {
    text-align: center;
    position: relative;
    top: -50px;
    margin-bottom: -50px; } }

@media only screen and (max-width: 749px) {
  .featured-product__image {
    text-align: center; } }

.grid__item--heading {
  border-color: #efe8db;
  border-style: solid;
  border-width: 0 0 0 1px;
  padding: 55px 0 30px;
  text-align: center;
  text-transform: uppercase; }
  .grid__item--heading h2, .grid__item--heading .h2 {
    margin-bottom: 0; }
  .grid__item--heading a {
    font-size: 1em; }

/*================ Featured articles ================*/
.article-block {
  display: block;
  text-align: center; }
  @media only screen and (max-width: 749px) {
    .article-block {
      padding: 20px 0; } }

.article-block__image {
  height: 0;
  padding-bottom: 75%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }
  @media only screen and (max-width: 749px) {
    .article-block__image {
      padding-bottom: 50%; } }

.article-block__image--short {
  padding-bottom: 25%; }

/*======== Our Story Page ===========*/
.our-story .section-block {
  padding: 0; }
.our-story .slick-track {
  display: flex;
  align-items: stretch; }
.our-story .slick-slide {
  height: auto;
  display: flex; }
  @media only screen and (min-width: 990px) {
    .our-story .slick-slide {
      min-height: 25vw; } }
.our-story .slick-slider {
  border-bottom: 2px solid #c1a573;
  margin-bottom: 0; }
.our-story .slick-next,
.our-story .slick-prev {
  top: calc(50% + 10px);
  z-index: 1; }
.our-story .slick-prev {
  left: calc(50% + 10px); }
  @media only screen and (max-width: 749px) {
    .our-story .slick-prev {
      left: 0; } }
.our-story .slick-next {
  right: 10px; }
  @media only screen and (max-width: 749px) {
    .our-story .slick-next {
      right: 0; } }
.our-story .article-block__image {
  height: auto; }
  @media only screen and (max-width: 749px) {
    .our-story .article-block__image {
      display: none; } }
.our-story .slick-disabled {
  display: none !important; }
.our-story .article-block {
  padding: 0; }
.our-story .article-block__content {
  color: #FFF;
  font-size: 1.1em;
  font-weight: 700;
  text-align: left; }
.our-story .article-block__title {
  font-size: 2em;
  margin-bottom: 20px; }

/*============================*/
.article-block__info {
  padding: 20px 10px; }

.article-block__image--left {
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 0;
  width: 100%; }
  @media only screen and (min-width: 990px) {
    .article-block__image--left {
      float: left;
      width: 50%; } }

.article-block__info--left {
  background-image: url(//cdn.shopify.com/s/files/1/2236/3995/t/9/assets/texture1.jpg?v=4840793857624112900);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 80px 30px;
  width: 100%; }
  @media only screen and (max-width: 480px) {
    .article-block__info--left {
      padding: 20px 60px; } }
  @media only screen and (min-width: 990px) {
    .article-block__info--left {
      float: left;
      width: 50%; } }

.article-block__date {
  display: block;
  font-size: 0.875em;
  color: #1c1d1d; }

.article-block__date,
.article-block__title {
  margin-bottom: 5px; }

/*================ Featured content ================*/
.featured-content {
  position: relative;
  padding: 120px 20px 40px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat; }
  @media only screen and (min-width: 750px) {
    .featured-content {
      padding: 80px; } }

/*============================================================================
  Styles columns.liquid and gallery.liquid
    - Background images and positioning are handled with theme settings
==============================================================================*/
@media only screen and (max-width: 749px) {
  .column-flex {
    -webkit-flex-direction: column;
    flex-direction: column; } }

.column-flex__image {
  position: relative;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center; }
  @media only screen and (min-width: 750px) {
    .column-flex__image {
      height: 380px; } }

.column-flex__image--tall {
  height: 300px; }
  @media only screen and (min-width: 750px) {
    .column-flex__image--tall {
      height: 520px; } }

.column-flex__content {
  padding: 20px; }

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

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

.filter-group .selected a {
  font-weight: bold; }

.filter-group {
  position: relative; }

.filter-group .filter-clear {
  position: absolute;
  top: 0;
  right: 10px;
  border-radius: 10px;
  padding: 0 5px;
  background-color: #EEE;
  text-decoration: none;
  font-size: 12px;
  line-height: 18px; }

.filter-group .filter-clear:hover {
  background-color: #DDD; }

.filter-group .collection-container {
  overflow: hidden;
  position: relative; }

.filter-group .collection-count {
  position: absolute;
  right: 0px; }

.filter-group h2, .filter-group .h2, .filter-group h3, .filter-group .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px solid #DDD;
  padding-bottom: 5px;
  padding-right: 45px; }

.filter-group ul {
  display: block;
  margin: 0;
  padding: 0; }

.filter-group ul li {
  display: block;
  margin-bottom: 8px; }

.filter-group li a {
  display: inline-block;
  margin-left: 6px;
  text-decoration: none;
  padding: 0;
  font-size: 13px;
  margin-right: 20px; }

.sort-selector {
  margin: 0 10px; }

i.check-icon {
  background-image: url(//cdn.shopify.com/s/files/1/2236/3995/t/9/assets/checkbox-black-retina.png?v=8044539172106281223);
  background-position: 0px -176px;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  line-height: 16px;
  margin-top: 0px;
  vertical-align: text-top;
  width: 16px; }

.selected i.check-icon {
  background-position: 0px -144px; }

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  i.check-icon {
    /* Translate the @2x sprite's dimensions back to 1x */
    background-size: 16px 96px;
    background-position: 0px -30px; }

  .selected i.check-icon {
    background-position: 0px 0px; } }
.filter-menu .has_group_selected {
  display: inherit; }

.filter-menu {
  margin-bottom: 20px; }

.filter-group li.inactive {
  opacity: 0.6; }

.filter-group-not-shown {
  display: none !important; }

.filter-group .scroll-content {
  max-height: 400px;
  overflow: auto; }

.filter-group h2, .filter-group .h2, .filter-group h3, .filter-group .h3 {
  color: #c1a573;
  border-bottom-color: #535353;
  font-size: 18px; }

.filter-group li a, .filter-group .collection-count {
  color: #c1a573;
  font-size: 12px; }

.filter-group li div {
  line-height: 12px; }

.filter-group li:hover a {
  color: #000000; }

i.check-icon {
  display: none !important; }

.filter-group li a {
  margin-left: 0px; }

.filter-group .filter-clear {
  background-color: #c1a573;
  color: #000000; }

.filter-group .filter-clear:hover {
  background-color: #ddd;
  color: #222222; }

.filter-menu .pt-mobile-header {
  display: none; }

.filter-menu .pt-mobile-header a {
  font-size: 25px;
  position: relative;
  top: 0;
  text-align: center; }

.filter-menu .pt-mobile-header span {
  letter-spacing: 1.5px;
  padding-bottom: 8px;
  padding-left: 10px; }

@media only screen and (max-width: 767px) {
  .filter-menu .pt-mobile-header {
    display: block;
    position: relative;
    height: 50px; }

  .filter-menu .filter-group h2, .filter-menu .filter-group .h2, .filter-group h3, .filter-group .h3, .filter-menu .filter-group ul, .filter-menu .filter-group .filter-clear {
    display: none; }

  .filter-menu .has_group_selected h2, .filter-menu .has_group_selected .h2, .has_group_selected h3, .has_group_selected .h3, .filter-menu .has_group_selected ul {
    display: block; }

  .filter-menu .has_group_selected .filter-clear {
    display: inline; }

  .filter-menu {
    margin-bottom: 20px; } }
/* This is for a CSS hamburger */
#nav-toggle {
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translate(-40%, 0px);
  -webkit-transform: translate(-40%, 0px); }

#nav-toggle {
  cursor: pointer;
  padding: 10px 35px 16px 0px; }

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #c1a573;
  position: absolute;
  display: block;
  content: '';
  padding: 0; }

#nav-toggle span:before {
  top: -10px; }

#nav-toggle span:after {
  bottom: -10px; }

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all 200ms ease-in-out; }

#nav-toggle.active span {
  background-color: transparent; }

#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0; }

#nav-toggle.active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

#nav-toggle.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

#nav-toggle p {
  display: inline;
  margin-left: 50px;
  font-size: 30px;
  position: relative;
  top: -18px;
  color: #c1a573;
  text-decoration: none; }

#nav-toggle {
  text-decoration: none; }

.side-filter-menu {
  float: left;
  width: 20%; }

.main-filter-content {
  float: right;
  width: 80%; }
  @media only screen and (max-width: 480px) {
    .main-filter-content .grid__item {
      padding-left: 0; } }
  @media only screen and (min-width: 750px) and (max-width: 992px) {
    .main-filter-content .grid__item {
      flex-basis: 50%;
      width: 50%; }
      .main-filter-content .grid__item:nth-child(3n+1) {
        clear: none; } }

@media only screen and (max-width: 1060px) {
  .side-filter-menu {
    width: 25%;
    float: left; }

  .main-filter-content {
    width: 75%;
    float: right; } }
@media only screen and (max-width: 767px) {
  .side-filter-menu {
    width: 100%;
    float: left; }

  .main-filter-content {
    width: 100%;
    float: left; } }
.filter-group {
  text-align: left;
  padding: 0 10px; }

.filter-group ul {
  padding-left: 0; }

.pt-sort-selector {
  float: right; }

.pt-sort-selector select {
  display: inline;
  margin-left: 10px; }

.pt-sort-selector label {
  display: inline;
  margin-left: 100px;
  position: relative;
  top: 2px; }

/* Header and Footer */
.site-nav__link {
  color: #ffffff;
  font-family: mrs-eaves,serif;
  font-size: 16px;
  font-weight: 400; }

.site-nav--active .site-nav__link {
  color: #ffffff; }

.site-nav--active .site-nav__link::after {
  bottom: -2px;
  height: 3px; }

.site-header__search-input {
  background-color: #ffffff;
  color: #000000;
  border: none; }

.site-header__search-submit {
  top: -2px; }

.site-header__link .icon-cart {
  top: -5px;
  fill: #ffffff;
  height: 30px;
  width: 30px; }

/*.site-header__cart-indicator {
    background-color: #fff;
    bottom: 30px;
    right: 14px;
}*/
.customer-login-links a {
  color: #ffffff;
  font-family: mrs-eaves,serif;
  font-size: 13px;
  font-weight: 700; }

.site-footer {
  color: #ffffff; }
  .site-footer a {
    color: #ffffff; }

.drawer__nav-link {
  font-family: mrs-eaves, serif;
  font-size: 20px; }

.drawer__nav-toggle-btn .icon {
  height: 14px;
  width: 14px; }

.site-footer__newsletter-label {
  color: #ffffff;
  margin-bottom: 5px; }

.site-footer .input-group__field {
  border: none;
  background: #ffffff;
  color: #000000; }

.link-accent-color {
  font-family: gotham-medium, sans-serif; }

.template-index .site-footer {
  margin-top: -50px; }

.link-block:hover::after,
.link-block:hover:focus {
  opacity: 0.7; }

.featured-card::before {
  background-color: rgba(0, 0, 0, 0.6); }

.featured-card__title {
  color: #ffffff; }

.hero {
  margin-bottom: 50px; }

.hero__subtitle, .hero__arrow {
  color: #fff; }

.hero__link {
  line-height: 1.3; }

.hero__subtitle {
  line-height: 2; }

.accordion {
  font-family: gotham-medium,sans-serif; }

.home-collection .home-collection__head:first-child {
  border: none; }
.home-collection .collection__card {
  border-left: 1px solid #efe8db; }
  .home-collection .collection__card:first-child {
    border: none; }
  .home-collection .collection__card.collection__card--first {
    border: none; }

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

  .home-collection__head {
    border: none; }

  .home-collection__head--trending {
    order: 0; }

  .home-collection__head--new {
    order: 2; }

  .home-collection__head--best {
    order: 4; }

  .home-collection .collection__card--first {
    order: 1; }
    .home-collection .collection__card--first + .collection__card {
      order: 3; }
      .home-collection .collection__card--first + .collection__card + .collection__card {
        order: 5; } }
/* .template-index {
  .hero__slide {
    &:nth-child(3) {
      .hero__image  {
      	background-size: 100% auto;
        background-position: center center;
        
        @media only screen and (min-width: 1400px) {
          background-size: auto 100%;
        }
      }
    }
  }
} */
.home-collection-banner {
  background-color: #ad8c4d;
  padding: 15px 100px;
  position: relative; }
  @media only screen and (max-width: 1014px) {
    .home-collection-banner {
      padding: 15px 30px; } }
  @media only screen and (max-width: 39.9375em) {
    .home-collection-banner {
      display: none; } }
  .home-collection-banner:after, .home-collection-banner:before {
    dispay: block;
    content: '';
    width: 130px;
    height: 100%;
    background-image: url(home-banner-bg.svg);
    background-size: 150% auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    top: 0; }
  .home-collection-banner:after {
    left: 0; }
  .home-collection-banner:before {
    right: 0;
    transform: scaleX(-1); }
  .home-collection-banner h2, .home-collection-banner .h2 {
    color: #ffffff;
    font-size: 19px;
    font-weight: normal;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: 10px; }
  .home-collection-banner .svg-270 {
    margin: 0 5px;
    max-width: 80px;
    position: relative;
    top: 10px;
    max-height: 35px; }

.template-index .page-container {
  background-color: #efe8db; }

#swym-anchor {
  display: none; }

.modal__inner .js-ingredients-content {
  align-items: flex-start;
  display: flex;
  height: 100%;
  padding: 60px 0 0 0;
  overflow: scroll; }
  .modal__inner .js-ingredients-content img {
    margin: 0 auto;
    display: block; }

.js-modal-open-ingredients-modal {
  font-family: gotham-medium, serif;
  color: #c1a573;
  cursor: pointer;
  display: block; }
  .js-modal-open-ingredients-modal:hover, .js-modal-open-ingredients-modal:focus {
    color: #a08047; }
  .js-modal-open-ingredients-modal + .js-ingredients-content {
    width: 1px;
    height: 1px;
    opacity: 0; }

.modal__close {
  background: #c1a573;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  right: 8px;
  top: 8px; }

/* Style for the exit intent modal and overlay*/
.container {
  background: #007e89;
  min-height: 100%; }

.ffb-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 630px;
  min-width: 320px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.ffb-show {
  visibility: visible; }

.ffb-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(143, 27, 15, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.ffb-show ~ .ffb-overlay {
  opacity: 1;
  visibility: visible; }

.ffb-modal .ffb-close-icon:hover {
  background: url("pop_close_hover.png") no-repeat; }

.ffb-modal .ffb-close-icon {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background: url("pop_close.png") no-repeat;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 999;
  cursor: pointer;
  border: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none; }

/* Content styles */
.ffb-content {
  color: #fff;
  background: #000;
  position: relative;
  border-radius: 3px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px 5px #666; }

.ffb-content span {
  margin: 0;
  padding: 0.4em;
  text-align: center;
  display: block;
  font-size: 2.0em;
  letter-spacing: 0.1em;
  font-family: mrs-eaves, sans-serif;
  font-weight: 700;
  color: #c1a573;
  background: #31373d63;
  border-radius: 3px 3px 0 0; }

.ffb-content > div {
  padding: 15px 40px 30px;
  margin: 0;
  font-weight: 300;
  font-size: 1.15em; }

.ffb-content > div p {
  margin: 0;
  padding: 10px 0; }

.ffb-content > div ul {
  margin: 0;
  padding: 0 0 30px 20px; }

.ffb-content > div ul li {
  padding: 5px 0; }

.ffb-content button {
  display: block;
  margin: 10px auto;
  font-size: 0.8em;
  font-size: 0.76923em;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 45px;
  transition: color 0.1s ease-in,background-color 0.1s ease-in;
  background: #c1a573;
  border: none;
  color: #fff; }

/* Blur background */
.ffb-show.ffb-effect ~ .ffb-overlay {
  background: rgba(78, 46, 32, 0.5); }

.ffb-show.ffb-effect ~ .container {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  filter: blur(3px); }

/* Effect: Fade in and scale up */
.ffb-effect .ffb-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.ffb-show.ffb-effect .ffb-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.swym-wishlist-cta {
  font-family: gotham-bold, serif !important; }

@media only screen and (max-width: 749px) {
  .site-header {
    position: fixed;
    z-index: 9 !important;
    width: 100vw; }

  .site-header__logo {
    height: auto;
    width: 80px;
    text-align: center; }

  .mobil-nav-is-open .site-header__logo {
    display: none; }

  body > .page-container {
    padding-top: 95px; }
    body > .page-container.has-promo-bar {
      padding-top: 150px; } }
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .drawer {
    z-index: 99; }

  /* IE11 */ }
em, i {
  font-family: gotham-italic,sans-serif; }

b, strong {
  font-family: gotham-bold,sans-serif; }

@media only screen and (max-width: 749px) {
  .template-index .main-content {
    display: flex;
    flex-direction: column; }
    .template-index .main-content .shopify-section {
      order: 9; }
    .template-index .main-content #shopify-section-slideshow {
      order: 0; }
    .template-index .main-content #shopify-section-featured-collections {
      order: 2; }
      .template-index .main-content #shopify-section-featured-collections + div {
        order: 1; } }
.no-recipes {
  font-family: gotham-medium,sans-serif;
  font-size: 16px;
  margin-top: 10px; }

.select-country {
  position: relative;
  display: inline-block;
  color: #ffffff;
  padding: 10px 0;
  font-family: mrs-eaves,serif;
  font-width: 700; }
  #StickyNav .select-country {
    display: none; }

.select-country__current {
  font-size: 18px;
  width: 50px; }
  .select-country__current span {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
    font-size: 2px;
    height: 0;
    margin-left: 5px;
    width: 0; }
  .select-country__current:hover {
    color: #c1a573; }
    .select-country__current:hover span {
      border-top: 8px solid #c1a573; }

.select-country__dropdown {
  display: none;
  position: absolute;
  border: 1px solid #c1a573;
  background: #000000;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  top: 45px;
  right: 0;
  list-style: outside none none;
  min-width: 80px;
  padding: 5px 10px;
  z-index: 6;
  text-align: left; }
  .select-country__dropdown li {
    margin: 8px 0; }
    .select-country__dropdown li a {
      display: block; }
  .select-country__dropdown span {
    display: block;
    float: left;
    margin-right: 10px;
    height: 17px;
    width: 25px;
    background-repeat: no-repeat;
    background-size: 100% auto; }
    .select-country__dropdown span.uk {
      background-image: url("uk.png"); }
    .select-country__dropdown span.us {
      background-image: url("us.png"); }
    .select-country__dropdown span.fr {
      background-image: url("fr.png"); }
    .select-country__dropdown span.ca {
      background-image: url("ca.png"); }
    .select-country__dropdown span.jp {
      background-image: url("jp.png"); }
    .select-country__dropdown span.de {
      background-image: url("gr.png"); }
    .select-country__dropdown span.sp {
      background-image: url("sp.png"); }

.select-country.is-open .select-country__dropdown {
  display: block; }

@media only screen and (max-width: 480px) {
  .site-header__upper .small--one-quarter {
    flex-basis: 35%;
    width: 35%; }
  .site-header__upper .small--one-half {
    flex-basis: 30%;
    width: 30%; } }
@media only screen and (min-width: 750px) and (max-width: 1024px) {
  .template-search .btn, .template-search .btn--secondary {
    padding-left: 15px;
    padding-right: 15px; } }
@media only screen and (max-width: 480px) {
  .main-filter-content .btn, .main-filter-content .btn--secondary,
  .template-search .btn,
  .template-search .btn--secondary {
    padding-left: 15px;
    padding-right: 15px; } }
/* ================= CLYDES LANDING PAGE CSS ================= */
.ILN-button {
  border: solid 1px #ddbb61;
  padding: 20px; }

.ILN-button:hover {
  background-color: #ddbb61;
  color: #000000; }

.image2 {
  display: none; }

#headingH1 {
  text-align: center;
  color: #c1a572;
  font-size: 36pt !important;
  margin: 100px 0px 20px 0px; }

#headingH2 {
  text-align: center;
  color: #c1a572;
  font-size: 36pt !important;
  margin: 30px 0px 20px 0px; }

#price {
  font-size: 14pt; }

/* --------- Mobile ----------*/
@media screen and (max-width: 430px) {
  #para {
    font-size: 15px; }

  #headingH1 {
    text-align: center;
    color: #c1a572;
    font-size: 24pt !important;
    margin: 30px 0px 10px 0px; }

  #headingH2 {
    text-align: center;
    color: #c1a572;
    font-size: 24pt !important;
    margin: 10px 0px 10px 0px; }

  #imgMob {
    width: 75%;
    margin: 0 0 0 -80px; }

  #divProdBox {
    display: inline-block;
    text-align: center;
    border-style: solid;
    border-width: 0px;
    border-color: #ddbb61;
    width: 280px;
    padding: 10px 0px 10px 0px !important; }

  #price {
    font-size: 14pt;
    display: block;
    margin-left: auto;
    margin-right: auto; }

  .ILN-button {
    text-align: center;
    margin: 0 0 0 30px !important; }

  .image1 {
    width: 150%  !important;
    height: 30px;
    margin: 0 200px 0 -50px !important;
    padding-bottom: 50px; } }
/* ---------  End  Mobile ----------*/
#h2Brand {
  text-transform: lowercase;
  font-size: 25px !important; }

/* ================= WHITE TRUFFLE LANDING PAGE ================= */
#aLink {
  color: #c1a267; }

#aLink:hover {
  opacity: 0.5; }

#rule {
  color: #c1a267; }

@media screen and (max-width: 430px) {
  #div2 {
    margin-top: 80px; } }
@media screen and (max-width: 720px) {
  #div2 {
    margin-top: 80px; } }
.section-block__subtext2 {
  font-size: 20px; }

/* ================= END WHITE TRUFFLE LANDING PAGE =================padding-bottom: 54%; height: 0; position: relative; overflow: hidden;       */
/* =================START iFrame Video style ============= */
.embed-container {
  max-width: 100%;
  text-align: center; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%; }

#divWrapper {
  margin: 0 auto !important;
  width: 100%;
  clear: both;
  display: inline-block;
  text-align: center !important; }

#container {
  width: 280px;
  height: 280px;
  display: inline-block; }

#container:hover {
  opacity: 0.5; }

#VideoiFrame {
  margin-left: auto 0;
  margin-right: auto 0; }

/* =================== END iFrame video style ============ */
/* ================= END CLYDES PRODUCT PAGE CSS ================= */
/* ================= Remove the Paypal Express Button from checkout and cart ================= */
.extra-checkout-buttons {
  display: none; }

.additional-checkout-buttons {
  display: none; }

/* ========================== Clydes Wine LP ================= */
/* ========================= Clydes Campaign Landing Page ====================== */
.divCampaign {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: block;
  text-align: center;
  padding: 0; }

.CampaignSq {
  width: 350px;
  height: 250px;
  display: inline-block; }

.CampaignSq:hover {
  opacity: 0.5; }

.CampaignName {
  width: 350px;
  height: 55px;
  position: relative;
  background-color: #000000;
  color: #ffffff;
  opacity: 0.75;
  display: block;
  z-index: 10;
  bottom: 58px; }

.newsPara2 {
  padding: 5px 0 0 0; }

/* ========== SHOP NOW Button ========== */
.prodButton {
  margin: auto;
  width: 100px;
  height: 25px;
  color: #000000;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #c1a576;
  padding: 4px 0 0 0; }

.prodButton:hover {
  color: #000000;
  background-color: #ddbb61; }

.prodContainer {
  display: inline-block;
  text-align: center;
  border-style: solid;
  border-width: 0px;
  border-color: #ddbb61;
  background-color: #ffffff;
  width: 320px;
  padding: 20px;
  margin-bottom: 0px !important; }

.prodContainer:hover {
  opacity: 0.75; }

/* Added by Lokesh at Shopify on Oct 24 2017 */
.site-header__cart-indicator {
  background-color: #f8631a;
  bottom: 30px;
  right: 5px;
  text-align: center;
  line-height: 19px;
  height: 20px;
  width: 20px;
  color: #ffffff; }

.article-block-center__content {
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

/* Cookie banner */
.cc_banner-wrapper .cc_banner {
  background: #c1a573;
  border: none; }
.cc_banner-wrapper .cc_message {
  color: white !important; }
.cc_banner-wrapper .cc_container a.cc_more_info, .cc_banner-wrapper .cc_container a.cc_more_info:visited {
  text-decoration: underline;
  color: #fff;
  transition: 200ms color;
  font-weight: bold; }
.cc_banner-wrapper .cc_container .cc_btn, .cc_banner-wrapper .cc_container .cc_btn:active, .cc_banner-wrapper .cc_container .cc_btn:hover {
  background-color: #c1a573;
  color: #fff;
  border: 2px solid #fff;
  border-radius: initial;
  font-weight: bold; }

/* ========================= Clydes Campaign Landing Page ====================== */
.newsPara2 {
  padding: 5px 0 0 0; }

/* ========== SHOP NOW Button ========== */
.prodButton {
  margin: auto;
  width: 100px;
  height: 25px;
  color: #000000;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #c1a576;
  padding: 4px 0 0 0; }

.prodButton:hover {
  color: #000000;
  background-color: #ddbb61; }

.prodContainer {
  display: inline-block;
  text-align: center;
  border-style: solid;
  border-width: 0px;
  border-color: #ddbb61;
  background-color: #ffffff;
  width: 320px;
  padding: 20px;
  margin-bottom: 0px !important; }

.prodContainer:hover {
  opacity: 0.75; }

/* Martinique competiton page POC Site */
/* START OF CUSTOM CSS*/
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
.containerMartinique input[type="text"],
.containerMartinique input[type="email"],
.containerMartinique input[type="password"],
.containerMartinique textarea {
  float: none;
  background-color: #ffffff;
  border: 1px solid #c6a474 !important;
  width: 100% !important;
  font-size: 15px !important;
  padding: 10px !important;
  color: #000000 !important;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

label.caption {
  color: #000000 !important; }

.containerMartinique input[type="submit"] {
  padding: 10px;
  font-size: 18px;
  background-color: #ffffff;
  border: 1px solid #c6a474 !important;
  color: #000000;
  border: 0;
  text-transform: uppercase; }

.containerMartinique input[type="submit"]:hover {
  background-color: #c6a474;
  color: black;
  cursor: pointer; }

body form {
  width: 100% !important;
  padding: 0 0 0 0 !important;
  border: 0 !important;
  color: #000000;
  font-family: 'Helvetica';
  font-size: 15px; }

body form .containerMartinique {
  width: 100% !important;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body form .section {
  overflow: auto;
  padding-left: 0;
  padding-right: 0; }

body form .field_block .caption {
  color: #000000;
  font-weight: normal;
  font-size: 15px;
  margin-bottom: 6px !important; }

body form .field_block .caption span.required {
  color: #000000; }

body form #row_10210 .containerMartinique,
body form #row_10211 .containerMartinique {
  width: 50% !important;
  display: inline-block;
  padding-bottom: 20px !important; }

.disclaimer-container {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px; }

.disclaimer-container p {
  width: 80%;
  margin: 0 auto;
  font-size: 14px; }

#column_12465 {
  float: left;
  padding-right: 10px;
  padding-left: 150px; }

#column_12466 {
  float: right;
  padding-left: 10px;
  padding-right: 150px; }

#column_12467 {
  float: left;
  padding-right: 10px;
  padding-left: 150px; }

#column_12468 {
  float: right;
  padding-left: 10px;
  padding-left: 10px;
  padding-right: 150px; }

#row_10207 .containerMartinique {
  margin-bottom: 25px;
  text-align: center !important; }

.field_block .field .field_error {
  color: #c6a474 !important;
  font-size: 15px !important;
  font-weight: normal !important; }

#row_10210 div:last-child,
#row_10211 div:last-child,
#row_10207 div:last-child {
  display: none;
  /* uncomment (and comment the above) to see what these blocks are doing */
  /* background-color: red; */ }

#row_10210 div.containerMartinique div:last-child,
#row_10211 div.containerMartinique div:last-child,
#row_10207 div.containerMartinique div:last-child {
  display: block;
  /* uncomment (and comment the above) to see what these blocks are doing */
  /* background-color: green; */ }

@media (max-width: 690px) {
  body form #row_10210 .containerMartinique,
  body form #row_10211 .containerMartinique {
    width: 100% !important;
    display: block;
    padding-top: 20px; }

  p {
    width: 100%; }

  h2, .h2 {
    line-height: 30px; }

  body form .section {
    padding: 0 !important; }

  #column_12465,
  #column_12467 {
    float: left;
    padding-right: 0;
    padding-left: 0; }

  #column_12466,
  #column_12468 {
    float: right;
    padding-left: 0;
    padding-right: 0; } }
/* END OF CUSTOM CSS */
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
/* /////////// /////////// /////////// /////////// /////////// */
/* ====== MARTINUQUE BG banner =========== */
.bannermartinique {
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Martinique_banner1200.jpg?14937650387615074989");
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px; }

@media screen and (max-width: 580px) {
  .bannermartinique {
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Banner_mob_181017.jpg?1181521141321328260");
    width: 580px;
    height: 300px;
    background-repeat: no-repeat;
    margin-left: -130px;
    margin-top: 0;
    padding: 300px 0 200px 0;
    background-position: center; } }
@media screen and (max-width: 380px) {
  .bannermartinique {
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Banner_mob_181017.jpg?1181521141321328260");
    width: 380px;
    height: 300px;
    background-repeat: no-repeat;
    margin-left: -50px;
    margin-top: 0;
    padding: 300px 0 200px 0;
    background-position: center; } }
@media screen and (max-width: 350px) {
  .bannermartinique {
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Banner_mob_181017.jpg?1181521141321328260");
    width: 350px;
    height: 300px;
    background-repeat: no-repeat;
    margin-left: -60px;
    margin-top: 0;
    padding: 300px 0 200px 0;
    background-position: center; } }
/* ====== END MARTINUQUE BG banner =========== */
/* ==========================GIFT GUIDE ======================== */
.prodButtonGift {
  margin: auto;
  width: 120px;
  height: 30px;
  color: #ffffff;
  background-color: #c1a576;
  border-style: solid;
  border-width: 1px;
  border-color: #c1a576;
  padding: 6px 0 0 0;
  font-size: 12px; }

.prodButtonGift:hover {
  color: #000000;
  background-color: #ffffff; }

#GGBanner {
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Wk44_2017_GiftGuide_Banner_US.jpg?7397299066633174023");
  background-repeat: no-repeat;
  background-position: center;
  width: 116% !important;
  height: 440px;
  display: block;
  left: -8%;
  top: -100px;
  position: relative;
  text-align: left; }

#GGBlackBanner {
  opacity: 0.8;
  display: block;
  background-color: #000000;
  width: 100%;
  clear: both;
  text-align: center;
  padding: 20px 0 20px 0;
  position: relative;
  bottom: -270px;
  z-index: 0; }

#FeaturedGiftBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/FeaturedGift.jpg?13943302981351298554");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px; }

#GGinspirationBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Inspiration.jpg?18007236561958452232");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px; }

#ShopGiftsBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/ShopGifts.jpg?5126385363279000349");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px; }

#GiftMenu {
  font-weight: bold;
  color: #ffffff; }

#BannerText {
  color: #ffffff;
  width: 70%;
  margin: 0 auto; }

#GGFeaturedGiftContainer {
  width: 100%;
  height: 300px;
  background-color: #ffffff;
  display: block;
  text-align: center; }

#GGprod1 {
  width: 445px;
  height: 200px;
  display: inline-block;
  background-color: #ffffff;
  margin: 0 0 0 0;
  border-right: 1px solid #c1a756;
  padding: 0 0 0 0;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center;
  top: 0; }

#GGprod1def {
  width: 450px;
  height: 450px;
  display: inline-block;
  background-color: #ffffff;
  margin: 0 0 0 0;
  padding: 10px;
  vertical-align: top;
  color: #000000; }

#GGinspirationContainer {
  width: 100%;
  height: 500px;
  background-color: #ffffff;
  display: block;
  text-align: center;
  clear: both; }

#GGinspirationProd1Container {
  width: 350px;
  display: inline-block;
  background-color: #ffffff;
  vertical-align: top;
  border-right: 1px solid #c1a756; }

#GGGiftsContainer {
  width: 100%;
  height: 550px;
  background-color: #ffffff;
  display: block;
  text-align: center;
  padding: 0; }

#GGGiftsProd1Container {
  width: 350px;
  display: inline-block;
  background-color: #ffffff;
  vertical-align: top;
  padding: 0;
  border-right: 1px solid #c1a756; }

#GGSeasonalBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/SeasonalInspiration.jpg?18007236561958452232");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px; }

#GGSeasonalContainer {
  width: 100%;
  height: 300px;
  background-color: #ffffff;
  display: block;
  text-align: center; }

#GGSeasonalProd1Container {
  width: 450px;
  display: inline-block;
  background-color: #ffffff; }

#GGCountdownContainer {
  width: 100%;
  background-color: #ffffff;
  display: block;
  height: 149px;
  text-align: center; }

#GGCountdownProd1Container {
  width: 450px;
  display: inline-block;
  background-color: #ffffff; }

#GGCountdownProd2Container {
  width: 450px;
  height: 149px;
  display: inline-block;
  background-color: white;
  margin: 0 0 0 0;
  vertical-align: top;
  border: 1px solid #c1a756; }

/*===================== Mobile Gift Guide ================== */
@media screen and (max-width: 450px) {
  /*#GGBanner {
   width:120%; 
    height:100px; 
  background-color:blue;
    margin-left:0px;  margin-top:0; 
    padding: 150px 0 0 0;
  background-position: center; 
   
  }
  */
  #GGBanner {
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/wk44_GiftGuide_MobBanner.jpg?5053687098256507234");
    background-repeat: no-repeat;
    background-position: center;
    width: 140% !important;
    height: 300px;
    display: block;
    margin: 20px 0px 0 -35px;
    padding: 0 0 0 0;
    position: relative;
    text-align: left; }

  #GGBlackBanner {
    visibility: hidden; }

  /*#GGBlackBanner {
    background-color:rgba(0,0,0,0.5);
    display: block; 
    width: 100%; 
        height:90px;
    clear: both; 
    text-align: center; 
   padding: 210 90 90 90; 
     margin: 0 0 0 0;
    position: relative; 
    bottom:0px;
    z-index: 100;
  }*/
  #BannerTextH2Head {
    width: 95%;
    padding: 0 0 0 0; }

  /*#BannerText {width:95%; padding: 0 80 0 80;}*/
  #BannerText {
    visibility: hidden; }

  #GiftMenu {
    visibility: hidden; }

  #FeaturedGiftBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/FeaturedGiftmob.jpg?8257656073045778801");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    position: relative;
    top: -70px;
    margin: 0 0 -50px 0; }

  #GGinspirationBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Inspirationmob.jpg?3037354646663096382");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 230px 0 0 0; }

  #ShopGiftsBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/ShopGiftsmob.jpg?17141021269811385355");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 100px 0 0 0; }

  #GGSeasonalBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/SeasonalInspirationmob.jpg?355080815800520438");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 830px 0 0 0; }

  #GGprod1 {
    width: 300px;
    height: 250px;
    display: block;
    background-color: #ffffff;
    margin: -80px 0 0 0;
    border-right: 0px solid #c1a756;
    padding: 0 0 200 0;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    clear: both; }

  #GGprod1def {
    width: 300px;
    height: 200px;
    display: block;
    background-color: #ffffff;
    margin: 0 auto;
    padding: 5px 0 0px 0;
    vertical-align: top;
    clear: both; }

  #GGinspirationContainer {
    width: 100%;
    height: 1300px;
    background-color: yellow;
    display: block;
    text-align: center;
    clear: both; }

  #GGinspirationProd1Container {
    width: 100%;
    height: 500px;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0;
    clear: both; }

  #GGGiftsProd1Container {
    width: 100%;
    height: 450px;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -20px 0 0 0; }

  #GGSeasonalProd1Container {
    width: 450px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: -10px 0 0 -70px; }

  #GGSeasonalContainer {
    width: 100%;
    height: 400px;
    background-color: #ffffff;
    display: block;
    text-align: center; }

  #GGCountdownContainer {
    width: 100%;
    background-color: #ffffff;
    display: block;
    height: 300px;
    text-align: center;
    clear: both;
    margin: 230px 0 0 0; }

  #GGCountdownProd1Container {
    width: 450px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: 0 0 0 -70px; }

  #GGCountdownProd2Container {
    width: 450px;
    height: 149px;
    display: block;
    background-color: white;
    margin: 0 0 0 -70px;
    vertical-align: top;
    border: 1px solid #c1a756; } }
@media screen and (max-width: 380px) {
  #GGSeasonalBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/SeasonalInspirationmob.jpg?355080815800520438");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 630px 0 0 0; }

  #GGGiftsContainer {
    width: 100%;
    height: 650px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    padding: 0; }

  #GGGiftsProd1Container {
    width: 100%;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0; }

  #GGCountdownContainer {
    width: 100%;
    background-color: #ffffff;
    display: block;
    height: 300px;
    text-align: center;
    clear: both;
    margin: 230px 0 0 -20px; }

  #GGCountdownProd1Container {
    width: 450px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: 0 0 0 -70px; }

  #GGCountdownProd2Container {
    width: 450px;
    height: 149px;
    display: block;
    background-color: white;
    margin: 0 0 0 -70px;
    vertical-align: top;
    border: 1px solid #c1a756; }

  #GGSeasonalProd1Container {
    width: 400px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: -10px 0 0 -70px; } }
@media screen and (max-width: 320px) {
  #GGBanner {
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/wk44_GiftGuide_MobBanner.jpg?5053687098256507234");
    background-repeat: no-repeat;
    background-position: center;
    width: 150% !important;
    height: 300px;
    display: block;
    margin: 20px 0px 0 -40px;
    padding: 0 0 0 0;
    position: relative;
    text-align: left; }

  #GGFeaturedGiftContainer {
    width: 100%;
    height: 300px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    margin: 0 0 0 -30px; }

  #GGGiftsProd1Container {
    width: 100%;
    height: 420px;
    display: inline-block;
    background-color: #ffffff;
    vertical-align: top;
    padding: 0;
    border-right: 0px solid #c1a756; }

  #GGprod1def {
    width: 290px; }

  #ShopGiftsBanner {
    margin: 190px 0 -30 0px; }

  #GGSeasonalBanner {
    margin: 470px 0 -30px 0; }

  #GGSeasonalProd1Container {
    width: 320px;
    margin: 0px 0 0 -50px; }

  #GGinspirationProd1Container {
    width: 250px;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    background-size: 10%;
    margin: -50px 0 0 0; }

  #GGCountdownContainer {
    width: 100%;
    margin: 90px 0 0 0;
    background-color: #ffffff; }

  #GGCountdownProd1Container {
    width: 320px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: 0 0px  0 -50px; }

  #GGCountdownProd2Container {
    width: 320px;
    height: 149px;
    display: block;
    background-color: white;
    margin: 0 0 0 -50px;
    vertical-align: top;
    border: 1px solid #c1a756; } }
/* ============================== iPAD GIFT GUIDE ================================= */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #GGFeaturedGiftContainer {
    width: 100%;
    height: 400px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    margin: -50px 0 0 0px; }

  #GGprod1 {
    width: 250px;
    height: 250px;
    display: inline-block;
    background-color: #ffffff;
    margin: 0 0 0 0;
    border-right: 0px solid #c1a756;
    padding: 0 0 200 0;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    clear: both; }

  #GGprod1def {
    width: 250px; }

  #GGinspirationProd1Container {
    width: 100%;
    height: 500px;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0;
    clear: both; }

  #GGinspirationContainer {
    width: 100%;
    height: 1400px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    clear: both; }

  #GGGiftsContainer {
    width: 100%;
    height: 1500px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    padding: 0;
    margin-top: -50px; }

  #GGGiftsProd1Container {
    width: 100%;
    height: 530px;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0; }

  #GGSeasonalContainer {
    width: 100%;
    height: 500px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    margin-top: -30px; } }
/* ============================== end iPad ============================= */
/* =================================== END GIFT GUIDE ===================== */
/* ============================SUBSCRIPTION PAGE START ================= */
#SubscriptionBanner {
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Sketchbanner3.jpg?5882832991024478628");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 116% !important;
  height: 500px;
  display: block;
  left: -8%;
  top: -100px;
  position: relative;
  text-align: left; }

#SubscriptionH2 {
  text-align: center;
  margin: -5% 5% 0 5%; }

#SubscriptionBody {
  font-size: 14pt !important;
  line-height: 2; }

#SubMainContainer {
  clear: both;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #ffffff;
  display: block; }

.SubscriptionBox1 {
  background-color: #eae1d0; }

.SubscriptionBox2 {
  background-color: #d7c4a3; }

.SubscriptionBox3 {
  background-color: #c1a573; }

#SubscriptionBoxTxt {
  font-size: 12pt !important; }

#SubscriptionMonthBox {
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 25px;
  background-color: #ffffff;
  vertical-align: top; }

#SubscriptionStepBox {
  width: 200px;
  height: 25px;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto; }

#SubscriptionBox {
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  vertical-align: top;
  position: relative;
  text-align: center;
  width: 300px;
  height: 200px;
  display: inline-block; }

#SubBoxHeader {
  font-size: 14pt !important;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px !important; }

#SubBoxUL {
  text-align: left !important;
  width: 250px;
  padding-left: 20px;
  font-size: 12pt !important;
  letter-spacing: -1px; }

#SubscriptionBoxLine {
  padding-top: 20px;
  vertical-align: top;
  position: relative;
  text-align: center;
  width: 300px;
  height: 700px;
  display: inline-block;
  background-color: #ffffff;
  border: thin solid #c1a573; }

#SubscriptionContainer {
  padding-top: 0px;
  vertical-align: top;
  position: relative;
  text-align: center;
  width: 300px;
  height: 650px;
  display: inline-block;
  background-color: #ffffff;
  margin-bottom: 80px; }

/* ============================ MOBILE SUBSCRIPTION PAGE START ================= */
@media screen and (max-width: 450px) {
  #SubscriptionBanner {
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/SketchbannerMob2.jpg?4352009611871922064");
    background-repeat: no-repeat;
    background-position: center;
    width: 150% !important;
    height: 300px;
    display: block;
    position: relative;
    top: -80px;
    left: -80px; }

  #SubscriptionBox {
    margin-left: auto; } }
@media screen and (max-width: 380px) {
  #SubscriptionBanner {
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/SketchbannerMob2.jpg?4352009611871922064");
    background-repeat: no-repeat;
    background-position: center;
    width: 150% !important;
    height: 300px;
    display: block;
    position: relative;
    top: -70px;
    left: -65px; } }
@media screen and (max-width: 320px) {
  #SubscriptionBanner {
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/SketchbannerMob2.jpg?14150772127337115994");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 320px !important;
    height: 300px;
    display: block;
    position: relative;
    top: -120px;
    left: -50px;
    margin-bottom: -130px; }

  #SubscriptionBox {
    margin-left: -40px; }

  #SubscriptionContainer {
    margin-left: -40px; } }
/* =========== iPad Subscription ==============*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #SubscriptionBanner {
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Sketchbanner3.jpg?5882832991024478628 ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 150% !important;
    left: -60px;
    top: -185px;
    margin-bottom: -180px;
    position: relative; } }
/* =========== End Subscription iPad ==============*/
/* ============================SUBSCRIPTION PAGE END ==================== */
/* ============================== Valentine 2018 Gift Guide =================== */
.prodButtonGift {
  margin: auto;
  width: 120px;
  height: 30px;
  color: #ffffff;
  background-color: #c1a576;
  border-style: solid;
  border-width: 1px;
  border-color: #c1a576;
  padding: 6px 0 0 0;
  font-size: 12px; }

.prodButtonGift:hover {
  color: #000000;
  background-color: #ffffff; }

#VGGBanner {
  /*background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Wk05_2018_ValentineGG_Banner_US.jpg?13135272318088634777");*/
  /*background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Wk05_2018_ValentineGG_Bannerv2_US.jpg?14067435324334247209");*/
  background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/Wk05_2018_ValentineGG_Banner_US.jpg?952135293529812605");
  background-repeat: no-repeat;
  background-position: center;
  width: 116% !important;
  height: 440px;
  display: block;
  left: -8%;
  top: -100px;
  position: relative;
  text-align: left; }

#VGGBlackBanner {
  opacity: 0.8;
  display: block;
  background-color: #000000;
  width: 100%;
  clear: both;
  text-align: center;
  padding: 20px 0 20px 0;
  position: relative;
  bottom: -270px;
  z-index: 100; }

#FeaturedVGiftBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/FeaturedGift.jpg?13943302981351298554");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px;
  background-size: 80%; }

#VGGinspirationBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Inspiration.jpg?18007236561958452232");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px; }

#ShopVGiftsBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/ShopGifts.jpg?5126385363279000349");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px; }

#BannerText {
  color: #ffffff;
  width: 70%;
  margin: 0 auto; }

#VGGFeaturedGiftContainer {
  width: 100%;
  height: 300px;
  background-color: #ffffff;
  display: block;
  text-align: center; }

#VGGprod1 {
  width: 445px;
  height: 200px;
  display: inline-block;
  background-color: #ffffff;
  margin: 0 0 0 0;
  border-right: 1px solid #c1a756;
  padding: 0 0 0 0;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center;
  top: 0; }

#VGGprod1def {
  width: 450px;
  height: 450px;
  display: inline-block;
  background-color: #ffffff;
  margin: 0 0 0 0;
  padding: 10px;
  vertical-align: top; }

#VGGinspirationContainer {
  width: 100%;
  height: 500px;
  background-color: #ffffff;
  display: block;
  text-align: center;
  clear: both; }

#VGGinspirationProd1Container {
  width: 350px;
  display: inline-block;
  background-color: #ffffff;
  vertical-align: top;
  border-right: 1px solid #c1a756; }

#VGGGiftsContain {
  width: 100%;
  height: 600px;
  background-color: #ffffff;
  display: block;
  text-align: center;
  padding: 0; }

#VGGGiftsProd1Contain {
  width: 350px;
  display: inline-block;
  background-color: #ffffff;
  vertical-align: top;
  padding: 0;
  border-right: 1px solid #c1a756; }

#VGGGiftsProd1Contain2 {
  width: 350px;
  display: inline-block;
  background-color: #ffffff;
  vertical-align: top;
  padding: 0;
  border-right: 0px solid #c1a756; }

#VGGSeasonalBanner {
  clear: both;
  background-color: #ffffff;
  text-align: center;
  background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/SeasonalInspiration.jpg?18007236561958452232");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  width: 100%;
  height: 50px;
  position: relative;
  top: -50px; }

#VGGSeasonalContainer {
  width: 100%;
  height: 300px;
  background-color: #ffffff;
  display: block;
  text-align: center; }

#VGGSeasonalProd1Container {
  width: 450px;
  display: inline-block;
  background-color: #ffffff;
  vertical-align: text-top; }

#VGGCountdownContainer {
  width: 100%;
  background-color: #ffffff;
  display: block;
  height: 12px;
  text-align: center; }

#VGGCountdownProd1Container {
  width: 450px;
  display: inline-block;
  background-color: #ffffff; }

#VGGCountdownProd2Container {
  width: 450px;
  height: 149px;
  display: inline-block;
  background-color: white;
  margin: 0 0 0 0;
  vertical-align: top;
  border: 1px solid #c1a756; }

/*===================== Mobile Valentines Gift Guide ================== */
@media screen and (max-width: 450px) {
  /*#GGBanner {
   width:120%; 
    height:100px; 
  background-color:blue;
    margin-left:0px;  margin-top:0; 
    padding: 150px 0 0 0;
  background-position: center; 
   
  }
  */
  #VGGBanner {
    /*background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Wk05_2018_Valentine_US.jpg?16420180165064685354");*/
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/Wk05_2018_ValentineMob_US.jpg?952135293529812605");
    background-repeat: no-repeat;
    background-position: center;
    width: 140% !important;
    height: 300px;
    display: block;
    margin: 20px 0px 0 -35px;
    padding: 0 0 0 0;
    position: relative;
    text-align: left; }

  #VGGBlackBanner {
    visibility: hidden; }

  /*#GGBlackBanner {
    background-color:rgba(0,0,0,0.5);
    display: block; 
    width: 100%; 
        height:90px;
    clear: both; 
    text-align: center; 
   padding: 210 90 90 90; 
     margin: 0 0 0 0;
    position: relative; 
    bottom:0px;
    z-index: 100;
  }*/
  #BannerTextH2Head {
    width: 95%;
    padding: 0 0 0 0; }

  /*#BannerText {width:95%; padding: 0 80 0 80;}*/
  #BannerText {
    visibility: hidden; }

  #GiftMenu {
    visibility: hidden; }

  #FeaturedVGiftBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/FeaturedGiftmob.jpg?8257656073045778801");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    position: relative;
    top: -70px;
    margin: 0 0 -50px 0; }

  #VGGinspirationBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Inspirationmob.jpg?3037354646663096382");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 230px 0 0 0; }

  #ShopVGiftsBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/ShopGiftsmob.jpg?17141021269811385355");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 250px 0 0 0; }

  #VGGSeasonalBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/SeasonalInspirationmob.jpg?355080815800520438");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 830px 0 0 0; }

  #VGGprod1 {
    width: 300px;
    height: 250px;
    display: block;
    background-color: #ffffff;
    margin: 0 0 0 0;
    border-right: 0px solid #c1a756;
    padding: 0 0 200 0;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    clear: both; }

  #VGGprod1def {
    width: 300px;
    height: 200px;
    display: block;
    background-color: #ffffff;
    margin: 0 auto;
    padding: 5px 0 0px 0;
    vertical-align: top;
    clear: both; }

  #VGGinspirationContainer {
    width: 100%;
    height: 1000px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    clear: both; }

  #VGGinspirationProd1Container {
    width: 100%;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0;
    clear: both; }

  #VGGGiftsContain {
    width: 100%;
    height: 600px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    padding: 0; }

  #VGGGiftsProd1Contain2 {
    width: 100%;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -20px 0 0 0; }

  #VGGGiftsProd1Contain {
    width: 100%;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -20px 0 0 0; }

  #VGGSeasonalContainer {
    width: 100%;
    height: 450px;
    background-color: #ffffff;
    display: block;
    text-align: center; }

  #VGGSeasonalProd1Container {
    width: 450px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: -10px 0 0 -70px; }

  #VGGCountdownContainer {
    width: 100%;
    background-color: #ffffff;
    display: block;
    height: 300px;
    text-align: center;
    clear: both;
    margin: 230px 0 0 0; }

  #VGGCountdownProd1Container {
    width: 450px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: 0 0 0 -70px; }

  #VGGCountdownProd2Container {
    width: 450px;
    height: 149px;
    display: block;
    background-color: white;
    margin: 0 0 0 -70px;
    vertical-align: top;
    border: 1px solid #c1a756; } }
@media screen and (max-width: 380px) {
  #VGGSeasonalBanner {
    clear: both;
    background-color: #ffffff;
    text-align: center;
    background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/SeasonalInspirationmob.jpg?355080815800520438");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 50px;
    display: block;
    margin: 630px 0 0 0; }

  #VGGGiftsContain {
    width: 100%;
    height: 650px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    padding: 0; }

  #VGGGiftsProd1Contain {
    width: 100%;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0; }

  #VGGGiftsProd1Contain2 {
    width: 100%;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0; }

  #VGGCountdownContainer {
    width: 100%;
    background-color: #ffffff;
    display: block;
    height: 300px;
    text-align: center;
    clear: both;
    margin: 230px 0 0 -20px; }

  #VGGCountdownProd1Container {
    width: 450px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: 0 0 0 -70px; }

  #VGGCountdownProd2Container {
    width: 450px;
    height: 149px;
    display: block;
    background-color: white;
    margin: 0 0 0 -70px;
    vertical-align: top;
    border: 1px solid #c1a756; }

  #VGGSeasonalProd1Container {
    width: 400px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: -10px 0 0 -70px; } }
@media screen and (max-width: 320px) {
  #VGGBanner {
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/Wk05_2018_ValentineMob_US.jpg?952135293529812605");
    background-repeat: no-repeat;
    background-position: center;
    width: 150% !important;
    height: 300px;
    display: block;
    margin: 20px 0px 0 -40px;
    padding: 0 0 0 0;
    position: relative;
    text-align: left; }

  #VGGFeaturedGiftContainer {
    width: 100%;
    height: 300px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    margin: 0 0 0 -30px; }

  #VGGprod1def {
    width: 290px; }

  #ShopVGiftsBanner {
    margin: 190px 0 -30 0px; }

  #VGGSeasonalBanner {
    margin: 470px 0 -30px 0; }

  #VGGSeasonalProd1Container {
    width: 320px;
    margin: 0px 0 0 -50px; }

  #VGGinspirationProd1Container {
    width: 250px;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    background-size: 10%;
    margin: -50px 0 0 0; }

  #VGGGiftsContain {
    width: 100%;
    height: 650px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    padding: 0; }

  #VGGSeasonalContainer {
    width: 100%;
    height: 350px;
    background-color: #ffffff;
    display: block;
    text-align: center; }

  #VGGCountdownContainer {
    width: 100%;
    margin: 90px 0 0 0;
    background-color: #ffffff; }

  #VGGCountdownProd1Container {
    width: 320px;
    display: block;
    background-color: #ffffff;
    clear: both;
    margin: 0 0px  0 -50px; }

  #VGGCountdownProd2Container {
    width: 320px;
    height: 149px;
    display: block;
    background-color: white;
    margin: 0 0 0 -50px;
    vertical-align: top;
    border: 1px solid #c1a756; } }
/* ============================== iPAD Valentines GIFT GUIDE ================================= */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #VGGBanner {
    /*background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Wk05_2018_ValentineGG_Banner_US.jpg?13135272318088634777");*/
    /*background-image: url("https://cdn.shopify.com/s/files/1/1950/7653/files/Wk05_2018_ValentineGG_Bannerv2_US.jpg?14067435324334247209");*/
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/Wk05_2018_ValentineGG_Banner_US.jpg?952135293529812605");
    background-repeat: no-repeat;
    background-position: center;
    width: 120% !important;
    height: 440px;
    display: block;
    left: -10%;
    top: -100px;
    position: relative;
    text-align: left; }

  #VGGFeaturedGiftContainer {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: block;
    text-align: center;
    margin: -50px 0 0 0px; }

  #VGGprod1 {
    width: 250px;
    height: 250px;
    display: inline-block;
    background-color: #ffffff;
    margin: 0 0 0 0;
    border-right: 0px solid #c1a756;
    padding: 0 0 200 0;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    clear: both; }

  #VGGprod1def {
    width: 250px;
    height: 350px; }

  #VGGinspirationProd1Container {
    width: 100%;
    height: 500px;
    display: block;
    background-color: #ffffff;
    vertical-align: top;
    border-right: 0px solid #c1a756;
    margin: -50px 0 0 0;
    clear: both; }

  #VGGinspirationContainer {
    width: 100%;
    height: 1400px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    clear: both; }

  #VGGGiftsContain {
    width: 100%;
    height: 1550px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    padding: 0;
    margin-top: -50px; }

  #VGGGiftsProd1Contain {
    border-right: 0px solid #c1a756;
    display: block;
    margin-left: auto;
    margin-right: auto; }

  #VGGSeasonalContainer {
    width: 100%;
    height: 400px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    margin-top: -30px; }

  #VGGSeasonalProd1Container {
    width: 400px;
    display: inline-block;
    background-color: #ffffff;
    clear: both;
    /*margin: -10px 0 0 -70px;*/
    margin-left: auto;
    margin-right: auto; } }
/* ============================== end Valentines iPad ============================= */
/* =================================== END Valentines GIFT GUIDE 2018 ===================== */
/* =============================== Sign Up and Save Banner ======================= */
.SignUpSave {
  background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/SignUpandSave_banner1200.jpg?11732626273684502177");
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px; }

@media screen and (max-width: 580px) {
  .SignUpSave {
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/SignUpandSaveBanner_mob.jpg?11732626273684502177");
    width: 580px;
    height: 300px;
    background-repeat: no-repeat;
    margin-left: -130px;
    margin-top: 0;
    padding: 300px 0 200px 0;
    background-position: center;
    background-size: 70%; } }
@media screen and (max-width: 380px) {
  .SignUpSave {
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/SignUpandSaveBanner_mob.jpg?11732626273684502177");
    width: 380px;
    height: 300px;
    background-repeat: no-repeat;
    margin-left: -50px;
    margin-top: 0;
    padding: 300px 0 200px 0;
    background-position: center;
    background-size: 90%; } }
@media screen and (max-width: 350px) {
  .SignUpSave {
    background-image: url("https://cdn.shopify.com/s/files/1/2236/3995/files/SignUpandSaveBanner_mob.jpg?11732626273684502177");
    width: 350px;
    height: 300px;
    background-repeat: no-repeat;
    margin-left: -60px;
    margin-top: 0;
    padding: 0px 0 0px 0;
    background-position: center;
    background-size: 90%; } }
/* =============================== End Sign Up and Save Banner =================== */
/* =================================== Start Contact Form Section ===================== */
#contactForm {
  max-width: 960px;
  margin: 0 auto; }

#contactForm label.error {
  color: red;
  padding: 0 5px;
  margin-top: -7px;
  display: block;
  width: 100%;
  font-size: 13px;
  margin-bottom: 10px;
  height: auto; }

#contactForm .error {
  border-color: red; }

@media only screen and (max-width: 989px) {
  #contactForm select {
    font-size: 16px; } }
.hide-element {
  display: none !important; }

.form-hint {
  font-style: italic;
  line-height: 1.2;
  display: inline-block;
  color: #777777; }

.tooltip {
  position: absolute;
  right: 7px;
  top: 1px; }

.tooltip__anchor {
  position: relative; }
  .tooltip__anchor input {
    width: calc(100% - 20px); }

.tooltip__ico {
  width: 15px;
  height: 15px;
  position: absolute;
  left: -8px;
  top: 8px;
  cursor: help;
  display: inline-block;
  background: url(icon-info.png) no-repeat;
  background-size: auto auto;
  background-size: 15px 15px; }
  .tooltip__ico:hover + .tooltip__content {
    display: block; }

.tooltip__content {
  display: none;
  position: absolute;
  border: 1px solid #c1a573;
  right: 13px;
  top: -1px;
  background: #f9f9f9;
  padding: 10px;
  box-shadow: 0 0 5px #999999;
  width: 200px; }

/* .section-block--dark-gold-anc-span {
  font-size: 0;
} */
/* =================================== End of Contact Form ===================== */
/* ============================ Country Pop up css ================= */
.country-select-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 45px;
  width: 300px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border: 2px;
  border-style: solid;
  border-color: #9a832d;
  color: white; }

@media only screen and (min-width: 750px) {
  .country-select-box {
    width: auto; } }
.country-select-box .country-select-box__logo {
  margin-top: 20px; }

.country-select-box h3, .country-select-box .h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: white; }

.country-select-box h4, .country-select-box .h4 {
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 40px; }

.country-select-ui, .country-select-ui-ajax-error {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  background-size: cover;
  background-position: center;
  z-index: 1999;
  top: 0;
  left: 0;
  display: none; }

.country-select-ui h3, .country-select-ui .h3, .country-select-ui-ajax-error h3 .country-select-ui .country-select-box__lower, .country-select-ui-ajax-error .h3 .country-select-ui .country-select-box__lower, .country-select-ui-ajax-error .country-select-box__lower {
  padding-top: 10px;
  padding-bottom: 10px; }

.country-select-ui .country-select-box__lower ul, .country-select-ui-ajax-error .country-select-box__lower ul {
  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;
  list-style: none; }

.country-select-ui .country-select-box__lower ul li, .country-select-ui-ajax-error .country-select-box__lower ul li {
  padding: 10px 0;
  -webkit-flex: 1 0 25%;
  -moz-flex: 1 0 25%;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%; }

@media only screen and (min-width: 750px) {
  .country-select-ui .country-select-box__lower ul li, .country-select-ui-ajax-error .country-select-box__lower ul li {
    -webkit-flex: 1 0 20%;
    -moz-flex: 1 0 20%;
    -ms-flex: 1 0 20%;
    flex: 1 0 20%; } }
.country-select-ui .country-select-box__lower a, .country-select-ui-ajax-error .country-select-box__lower a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #9a832d; }

.country-select-ui .country-select-box__lower a span, .country-select-ui-ajax-error .country-select-box__lower a span {
  border: 1px solid white;
  width: 60px;
  display: block;
  margin: 0 auto 15px; }

.country-select-ui-geoip {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999999;
  display: none; }

.country-select-ui-geoip .country-select-box__lower {
  border-top: 1px solid white;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.country-select-ui-geoip .country-select-box__lower .country-select-column {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%; }

.country-select-ui-geoip .country-select-box__lower .country-select-column:first-child {
  border-right: 1px solid white; }

.country-select-ui-geoip .country-select-box__lower .country-select-column ul {
  list-style: none; }

.country-select-ui-geoip .country-select-box__lower .country-select-column ul li {
  padding: 40px 0 36px; }

.country-select-ui-geoip .country-select-box__lower .country-select-column a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-size: 1.1rem;
  font-weight: 500; }

.country-select-ui-geoip .country-select-box__lower .country-select-column a span {
  border: 1px solid white;
  width: 100px;
  display: block;
  margin: 0 auto 15px; }

.country-select-ui-ajax-error .country-select-box {
  padding: 30px 50px; }

.country-select-ui-ajax-error h3, .country-select-ui-ajax-error .h3 {
  margin: 0;
  padding: 0;
  text-transform: none;
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Roboto",Helvetica,Arial,sans-serif; }

.country-select-ui-ajax-error button {
  margin: 20px auto 0 auto;
  display: block;
  font-size: 1.3rem !important;
  height: 3rem;
  line-height: 3rem; }

/*========================= Style for WCAG fixing  remove add to cart - display: none   CJA  ==============================*/
.shopify-product-reviews-badge, .add-to-cart-pro {
  text-align: center;
  display: none; }

span.lowecasetitle {
  text-transform: uppercase; }

/*******WCAG CSS*******/
div#latest-viewed-products h4, div#latest-viewed-products .h4 {
  font-size: 2.30769em; }

.pages-title {
  font-size: 2.46154em;
  letter-spacing: 0.1em;
  font-weight: 400; }

.shopify-product-reviews-badge, .add-to-cart-pro {
  text-align: center; }

.content-block h2, .content-block .h2 {
  font-size: 1.38462em;
  letter-spacing: 1.2px; }

.content-block h3, .content-block .h3 {
  font-size: 1.53846em; }

.terroir-heading {
  font-size: 2.30769em !important; }

.evm_title {
  color: #c1a573 !important;
  margin: 0 0 0.76923em !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  font-family: mrs-eaves, sans-serif !important; }
  @media only screen and (min-width: 750px) {
    .evm_title {
      font-size: 2.46154em !important; } }

.try-these-intro {
  color: #c1a573;
  display: block;
  font-size: 1.53846em;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: inherit;
  text-transform: inherit;
  font-family: mrs-eaves, sans-serif;
  font-weight: 700; }

.subscription-title {
  font-size: 2.46154em !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: mrs-eaves, sans-serif; }

.article-block__title {
  font-size: 1.23077em !important; }

.country-heading {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  font-weight: 700;
  font-family: mrs-eaves, sans-serif;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: white; }

/* bronto pop-up */
[id^="popup-subcription-preferences-checkbox-"] {
  width: auto; }

@media only screen and (min-width: 750px) {
  #SiteNavParent {
    width: 90%; }

  .site-nav__link {
    padding: 14px !important; } }
/*================ Boutique styles ================*/
#USiframe1 {
  width: 400px;
  height: 400px;
  padding: 0 0 20 0;
  display: block; }

#UStext1 {
  margin-top: -350px;
  margin-left: 550px;
  width: 250px;
  display: inline-block;
  float: left; }

#UStext2 {
  padding: 0px 20px;
  width: 400px;
  height: 300px;
  display: inline-block;
  float: left;
  clear: both; }

@media screen and (max-width: 480px) {
  #UStext1 {
    width: 300px;
    margin-top: 10px;
    margin-left: 0px; }

  #UStext2 {
    height: 100%;
    width: 100%;
    clear: both;
    display: block;
    background-color: #ffffff;
    padding: 0px 0px 200px 0px;
    position: relative;
    margin: 550px 0px 0px 0px; }

  #mapFrame {
    position: absolute;
    top: 780px;
    left: 0px;
    right: 0px; }

  #USiframe1 {
    height: 500px;
    width: 100%;
    clear: both; } }
/*================ End Boutique styles ================*/
#copyright {
  font-size: 65%; }

.legal-disclamer {
  padding: 0 15%;
  margin: 30px 0 3px;
  font-size: 16px; }

@media only screen and (max-width: 1160px) {
  .legal-disclamer {
    padding: 0 1%;
    margin: 22px 0 1px;
    font-size: 15px;
    text-align: center; } }
.product-single__price--compare {
  text-decoration: line-through; }

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px; }

/* AdChoice */
.ad-choices {
  padding-left: 20px;
  background-image: url(https://cdn.shopify.com/s/files/1/2236/3995/files/ad-choices.png?v=1575993249);
  background-repeat: no-repeat; }

/* Mobile Usability Issues */
@media only screen and (max-width: 767px) {
  body, input, textarea, button, select {
    font-size: 16px; }

  small {
    font-size: 90%; }

  .filter-group li a, .filter-group .collection-count, .content-block a {
    font-size: 16px;
    padding: 2px; }

  .content-block h3, .content-block .h3, .content-block .h3 {
    font-size: 1.63846em; }

  .content-block h1, .content-block .h1, .content-block .h1--mini {
    font-size: 2.1769em; }

  #copyright {
    font-size: 75%; }

  .popup-dialog label {
    font-size: 16px !important; } }
