@charset "UTF-8";
/*============================================================================
  Pipeline Theme   )`-....._,.-'``'-.,_,.='``'-.,   |  Built with Slate
==============================================================================*/
/*================ TOOLS ================*/
/*================ Mixins ================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
.gillsans-300 {
  font-family: "Gill Sans Nova W07", sans-serif;
  font-weight: 300; }

.gillsans-600 {
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600; }

.adobe-caslon {
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600; }

/*================ SETTINGS ================*/
/*================ Color Variables ================*/
.title, h1, .h1, .h1--body, h2, .h2, .h2--body, h3, .h3, .h3--body, h4, .h4, .h4--body, h5, .h5, .h5--body, h6, .h6, .h6--body, .btn--large, .btn--xlarge, .home__title, .title--flex, .product-form label {
  font-family: "Adobe Caslon W08", serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  letter-spacing: .02em;
  color: #000; }

.uppercase, h1.underline, .underline.h1, .underline.h1--body, h1.collection__title.underline, h2.underline, .underline.h2, .underline.h2--body, h2.collection__title.underline, h3.underline, .underline.h3, .underline.h3--body, h3.collection__title.underline, h4.underline, .underline.h4, .underline.h4--body, h4.collection__title.underline, h5.underline, .underline.h5, .underline.h5--body, h5.collection__title.underline, h6.underline, .underline.h6, .underline.h6--body, h6.collection__title.underline, p.underline, p.collection__title.underline, .collection__sidebar__item.parent > a, .collection__sidebar__item.parent > span {
  font-family: "Gill Sans Nova W07";
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9em; }

@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icons.eot?v=3364567537052764893");
  src: url("//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icons.eot?v=3364567537052764893#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icons.woff?v=371582728864620814") format("woff"), url("//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icons.ttf?v=10529776329753831131") format("truetype"), url("//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icons.svg?v=8022031131045997127#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*================ COMMON ================*/
@keyframes slideDown {
  0% {
    transform: translateY(-100%); }

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

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%); }

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

@keyframes slideUp {
  0% {
    transform: translateY(0%); }

  100% {
    transform: translateY(-100%); } }

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0%); }

  100% {
    -webkit-transform: translateY(-100%); } }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0; }

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*============================================================================
  #Grid
    - Based on csswizardry grid, but with floated columns, a fixed gutter size, and BEM classes
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid items
==============================================================================*/
/*================ Breakpoint and Grid Variables ================*/
/*================ The following are dependencies of csswizardry grid ================*/
/* Force clearfix on grids */
.grid, .grid--rev, .grid--full,
.grid-uniform,
.grid-condensed {
  *zoom: 1; }
  .grid::after, .grid--rev::after, .grid--full::after,
  .grid-uniform::after,
  .grid-condensed::after {
    content: '';
    display: table;
    clear: both; }

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  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, .grid--rev, .grid--full,
.grid-condensed,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: -15px;
  margin-left: -15px; }

.grid__item {
  float: left;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.grid-condensed {
  margin-right: -7.5px;
  margin-left: -7.5px; }
  .grid-condensed > .grid__item {
    padding-right: 7.5px;
    padding-left: 7.5px; }

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

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-right: 0;
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-right: 0;
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small--left {
    float: left !important; }

  .small--right {
    float: right !important; }

  .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; } }
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium--left {
    float: left !important; }

  .medium--right {
    float: right !important; }

  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--left {
    float: left !important; }

  .medium-down--right {
    float: right !important; }

  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

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

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

  .large--two-thirds {
    width: 66.666%; }

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

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

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

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

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

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

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

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

  .large--two-sixths {
    width: 33.333%; }

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

  .large--four-sixths {
    width: 66.666%; }

  .large--five-sixths {
    width: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--two-twelfths {
    width: 16.666%; }

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

  .large--four-twelfths {
    width: 33.333%; }

  .large--five-twelfths {
    width: 41.666%; }

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

  .large--seven-twelfths {
    width: 58.333%; }

  .large--eight-twelfths {
    width: 66.666%; }

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

  .large--ten-twelfths {
    width: 83.333%; }

  .large--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .large--left {
    float: left !important; }

  .large--right {
    float: right !important; }

  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*================ CSS3 Vertical Align Helper ================*/
.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

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

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

.push--two-thirds {
  left: 66.666%; }

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

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

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

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

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

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

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

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

.push--two-sixths {
  left: 33.333%; }

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

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.push--two-twelfths {
  left: 16.666%; }

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

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

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

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

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

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--medium--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 769px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
body:not(.template-index) {
  background-color: white; }

body.no-topbar .info-bar {
  display: none;
  pointer-events: none; }

body.no-header .site-header {
  display: none;
  pointer-events: none; }

body.no-footer .main-content {
  padding-bottom: 0; }
body.no-footer .site-footer-wrapper {
  display: none;
  pointer-events: none; }

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

.wrapper, .wrapper--wide, .wrapper--full {
  *zoom: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px; }
  .wrapper::after, .wrapper--wide::after, .wrapper--full::after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 480px) {
    .wrapper, .wrapper--wide, .wrapper--full {
      padding: 0 30px; } }

.wrapper--wide {
  max-width: 1280px;
  max-width: 1440px;
  padding: 0 15px; }
  @media screen and (min-width: 480px) {
    .wrapper--wide {
      padding: 0 30px; } }
  .wrapper--wide > .homepage-double {
    max-width: 100% !important; }

.wrapper--full {
  max-width: 100%;
  padding: 0;
  overflow: hidden; }
  .wrapper--full > .homepage-double {
    max-width: 100% !important; }

.main-content {
  display: block; }

/*================ Section Headers ================*/
@media screen and (min-width: 769px) {
  .section-header {
    display: table;
    width: 100%; }

  .section-header__title {
    margin-bottom: 12px; }

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1, .section-header__left .h1--body, .section-header__left h2, .section-header__left .h2, .section-header__left .h2--body, .section-header__left h3, .section-header__left .h3, .section-header__left .h3--body, .section-header__left h4, .section-header__left .h4, .section-header__left .h4--body,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .h3, .section-header__left .h4 {
      margin-bottom: 0; }

  .section-header__right {
    display: table-cell;
    vertical-align: middle;
    text-align: right; } }
  @media screen and (min-width: 769px) and (max-width: 768px) {
    .section-header__right {
      margin-bottom: 30px; } }

.section-header__right .btn, .section-header__right .btn--secondary, .section-header__right input[type="submit"], .section-header__right .spr-summary-actions-newreview {
  margin-top: 3px !important; }
.section-header__right .form-horizontal,
.section-header__right .collection-view {
  display: inline-block;
  vertical-align: middle; }
@media screen and (min-width: 481px) {
  .section-header__right label + select,
  .section-header__right .collection-view {
    margin-left: 15px; } }

.collection-view {
  display: inline-block;
  border: 1px solid #dddddd;
  border-radius: 2px;
  padding: 0 5px;
  height: 37px;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  @media screen and (min-width: 769px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 8px;
  color: #dddddd;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: #666666; }

.change-view--active {
  cursor: default;
  color: #666666; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.6;
  font-family: "Gill Sans Nova W07";
  color: #666666;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, .h1--body, h2, .h2, .h2--body, h3, .h3, .h3--body, h4, .h4, .h4--body, h5, .h5, .h5--body, h6, .h6, .h6--body {
  font-weight: normal;
  margin: 0 0 0.75em;
  line-height: 1.4; }
  h1 a, .h1 a, .h1--body a, h2 a, .h2 a, .h2--body a, h3 a, .h3 a, .h3--body a, h4 a, .h4 a, .h4--body a, h5 a, .h5 a, .h5--body a, h6 a, .h6 a, .h6--body a {
    text-decoration: none;
    font-weight: inherit; }
  h1.underline, .underline.h1, .underline.h1--body, h1.collection__title.underline, h2.underline, .underline.h2, .underline.h2--body, h2.collection__title.underline, h3.underline, .underline.h3, .underline.h3--body, h3.collection__title.underline, h4.underline, .underline.h4, .underline.h4--body, h4.collection__title.underline, h5.underline, .underline.h5, .underline.h5--body, h5.collection__title.underline, h6.underline, .underline.h6, .underline.h6--body, h6.collection__title.underline {
    margin-bottom: 2em;
    padding-bottom: 2px;
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .08rem;
    border-bottom: 2px solid; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1, .h1--body {
  font-size: 2.57143em; }
  @media screen and (max-width: 480px) {
    h1, .h1, .h1--body {
      font-size: 2em; } }

h2, .h2, .h2--body {
  font-size: 2em; }
  @media screen and (max-width: 480px) {
    h2, .h2, .h2--body {
      font-size: 1.57143em; } }

h3, .h3, .h3--body {
  font-size: 1.57143em; }
  @media screen and (max-width: 480px) {
    h3, .h3, .h3--body {
      font-size: 1.42857em; } }

h4, .h4, .h4--body {
  font-size: 1.42857em; }
  @media screen and (max-width: 480px) {
    h4, .h4, .h4--body {
      font-size: 1.28571em; } }

h5, .h5, .h5--body {
  font-size: 1.14286em; }

h6, .h6, .h6--body {
  font-size: 1em; }

.h1--body,
.h2--body,
.h3--body,
.h4--body,
.h5--body,
.h6--body {
  text-transform: none;
  letter-spacing: 0px;
  font-family: "Gill Sans Nova W07"; }

p {
  margin: 0 0 15px 0;
  margin: 0 0 1rem 0;
  font-size: .95rem;
  letter-spacing: .015rem; }
  p img {
    margin: 0; }
  p.underline, p.collection__title.underline {
    margin-bottom: 2em;
    padding-bottom: 2px;
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: .9em;
    border-bottom: 1px solid; }

em,
.em {
  font-style: italic; }

b, strong, .strong {
  font-weight: bold; }

small,
.small,
.item__price p {
  font-size: 0.9em; }

sup, sub, .sup, .sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup, .sup {
  top: -0.5em; }

sub, .sub {
  bottom: -0.5em; }

s, .s {
  text-decoration: line-through;
  opacity: 0.5; }

/*================ Blockquotes ================*/
blockquote {
  padding: 15px 30px;
  font-family: "Adobe Caslon W08", serif;
  font-size: 1.48em;
  font-weight: 400 !important;
  font-style: italic;
  line-height: 1.71;
  color: #000; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

/*================ Code ================*/
code, pre {
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  border-left: 1px solid #dddddd;
  padding: 0 2px; }

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

.unicode {
  font-family: "Lucida Sans Unicode", "Arial Unicode MS, Arial"; }

.lt-ie9 .unicode {
  display: none; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #dddddd;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--double {
    margin: 60px 0; }
  hr.hr--clear {
    border-top-color: transparent; }
  hr.hr--dash {
    margin: 30px auto;
    width: 80px; }
  hr.hr--thick {
    border-width: 2px 0 0; }
  hr.hr--underline {
    margin-top: 10px;
    margin-bottom: 20px; }

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

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: .2rem;
  line-height: 1.6; }

ol, ul.square, ul.disc, .rte ul {
  margin-left: 20px; }

ul.square {
  list-style: square outside; }

ul.disc, .rte ul {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

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

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

.icon-arrow-down:before {
  content: "\e607"; }

.icon-arrow-left:before {
  content: "\e901"; }

.icon-arrow-right:before {
  content: "\e902"; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin: 0 7.5px 7.5px;
    color: #a9a9a9;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 20px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons li {
  margin: 0 15px 15px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
.social-icons a {
  color: #a9a9a9; }
  .social-icons a:hover {
    color: #8f8f8f; }
.social-icons svg {
  width: 24px;
  height: 24px; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px;
  word-wrap: break-word; }
  .rte h1, .rte .h1, .rte .h1--body, .rte h2, .rte .h2, .rte .h2--body, .rte h3, .rte .h3, .rte .h3--body, .rte h4, .rte .h4, .rte .h4--body, .rte h5, .rte .h5, .rte .h5--body, .rte h6, .rte .h6, .rte .h6--body {
    margin-top: 1.5em; }
    .rte h1:first-child, .rte .h1:first-child, .rte .h1--body:first-child, .rte h2:first-child, .rte .h2:first-child, .rte .h2--body:first-child, .rte h3:first-child, .rte .h3:first-child, .rte .h3--body:first-child, .rte h4:first-child, .rte .h4:first-child, .rte .h4--body:first-child, .rte h5:first-child, .rte .h5:first-child, .rte .h5--body:first-child, .rte h6:first-child, .rte .h6:first-child, .rte .h6--body:first-child {
      margin-top: 0; }
  .rte h6, .rte .h6, .rte .h6--body {
    font-family: "Gill Sans Nova W07", sans-serif;
    font-weight: 300;
    font-weight: bold;
    color: #000; }
  .rte > div {
    margin-bottom: 15px; }
  .rte ul, .rte ol {
    margin-left: 35px; }
  .rte ul {
    font-size: .95rem;
    letter-spacing: .015rem; }
  .rte ul ul, .rte ol ul {
    list-style-type: circle; }
  .rte ol ol ul, .rte ol ul ul, .rte ul ol ul, .rte ul ul ul {
    list-style-type: square; }
  .rte li {
    margin-bottom: 0; }
  .rte img {
    max-width: 100%;
    height: auto; }
  .rte img[style*="float: left"],
  .rte img[style*="float:left"] {
    margin-right: 15px; }
  .rte img[style*="float: right"],
  .rte img[style*="float:right"] {
    margin-left: 15px; }

.rte--header {
  margin-bottom: 0; }

.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none; }
  .rte__table-wrapper table {
    overflow: hidden; }

.columns {
  -webkit-column-gap: 45px;
  -moz-column-gap: 45px;
  column-gap: 45px;
  -webkit-columns: 2 240px;
  -moz-columns: 2 240px;
  columns: 2 240px; }

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

table.full {
  width: 100%;
  margin-bottom: 1em; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

tr {
  border-bottom: 1px solid #dddddd; }

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px; }

/* Responsive tables for IE9+ */
@media screen and (max-width: 480px) {
  html:not(.lt-ie9) .table--responsive thead {
    display: none; }
  html:not(.lt-ie9) .table--responsive tr {
    display: block; }
  html:not(.lt-ie9) .table--responsive tbody {
    border-top: 1px solid #dddddd; }
  html:not(.lt-ie9) .table--responsive tbody td:not(:first-child) {
    border-top: 1px solid rgba(221, 221, 221, 0.2); }
  html:not(.lt-ie9) .table--responsive tfoot {
    border-top: 1px solid #dddddd;
    border-bottom: 2px solid #dddddd; }
  html:not(.lt-ie9) .table--responsive tr,
  html:not(.lt-ie9) .table--responsive td {
    float: left;
    clear: both;
    width: 100%;
    border-bottom: none; }
  html:not(.lt-ie9) .table--responsive th,
  html:not(.lt-ie9) .table--responsive td {
    display: block;
    text-align: right;
    padding: 10px; }
  html:not(.lt-ie9) .table--responsive td:before {
    content: attr(data-label);
    float: left;
    font-family: "Gill Sans Nova W07";
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8em;
    font-size: 12px;
    padding-right: 10px; } }
@media screen and (max-width: 480px) {
  html:not(.lt-ie9) .table--small-hide {
    display: none !important; }
  html:not(.lt-ie9) .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    html:not(.lt-ie9) .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #dddddd; } }

/*============================================================================
  #Links and Buttons
==============================================================================*/
a,
.text-link {
  color: #666666;
  text-decoration: underline;
  background: transparent; }

a:hover,
a:focus {
  color: #8c8c8c; }

button {
  overflow: visible; }

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

.btn, .btn--secondary,
input.btn--secondary, input[type="submit"], .spr-summary-actions-newreview {
  display: inline-block;
  padding: .8em;
  margin: 0;
  line-height: 1.42;
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  font-size: .9em;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #666666;
  color: white; }
  .btn:hover, .btn--secondary:hover, input[type="submit"]:hover, .spr-summary-actions-newreview:hover {
    background-color: #4d4d4d;
    color: white; }
  .btn:active, .btn--secondary:active, input[type="submit"]:active, .spr-summary-actions-newreview:active, .btn:focus, .btn--secondary:focus, input[type="submit"]:focus, .spr-summary-actions-newreview:focus {
    background-color: #595959;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, input[disabled][type="submit"], [disabled].spr-summary-actions-newreview, .btn.disabled, .disabled.btn--secondary, input.disabled[type="submit"], .disabled.spr-summary-actions-newreview {
    cursor: default;
    color: rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.3); }
    .btn[disabled]:hover, [disabled].btn--secondary:hover, input[disabled][type="submit"]:hover, [disabled].spr-summary-actions-newreview:hover, .btn.disabled:hover, .disabled.btn--secondary:hover, input.disabled[type="submit"]:hover, .disabled.spr-summary-actions-newreview:hover {
      color: rgba(0, 0, 0, 0.3) !important;
      background-color: rgba(0, 0, 0, 0.3) !important; }

.btn--secondary,
input.btn--secondary {
  background-color: white;
  border: 1px solid #666666;
  color: #666666; }
  .btn--secondary:hover,
  input.btn--secondary:hover {
    background-color: #1a1a1a;
    color: #666666; }
  .btn--secondary:focus, .btn--secondary:active,
  input.btn--secondary:focus,
  input.btn--secondary:active {
    background-color: #0d0d0d;
    color: #666666; }

.btn--small {
  padding: 6px 7px;
  font-size: 0.71429em; }

.btn--large {
  padding: 12px 20px;
  font-size: 1em; }

.btn--xlarge {
  padding: 12px 40px;
  font-size: 1.42857em; }

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

.btn--clear {
  background-color: transparent;
  color: #111;
  border: 1px solid #111; }
  .btn--clear:hover, .btn--clear:focus, .btn--clear:active {
    color: #fff;
    background-color: #111;
    border-color: #111; }
  .btn--clear.disabled {
    border: 1px solid rgba(0, 0, 0, 0.3); }

.lt-ie9 .btn--clear:hover {
  background-color: black; }

.btn--splash {
  background-color: black; }
  .btn--splash:hover, .btn--splash:focus, .btn--splash:active {
    background-color: black; }

.btn--square {
  border-radius: 0px !important; }

.btn--outline {
  background-color: #FFFFFF;
  border: 1px solid #2e3438;
  box-shadow: 0 0 0 8px #FFFFFF;
  color: #2e3438;
  margin: 8px; }
  .btn--outline:hover, .btn--outline:focus, .btn--outline:active {
    color: black;
    background-color: #FFFFFF; }

.btn--black {
  background-color: #000;
  color: #fff; }
  .btn--black:active, .btn--black:focus, .btn--black:hover {
    background-color: #222;
    color: #fff; }

.btn--white {
  background-color: #fff;
  color: #000;
  border: 1px solid #dddddd; }
  .btn--white:active, .btn--white:focus, .btn--white:hover {
    background-color: #f2f2f2;
    color: #000; }

.btn--green {
  background-color: #59c400;
  border: 1px solid #59c400;
  color: white; }
  .btn--green:active, .btn--green:focus, .btn--green:hover {
    background-color: #429100;
    border: 1px solid #429100;
    color: white; }

span.btn, span.btn--secondary, span.spr-summary-actions-newreview {
  pointer-events: none;
  cursor: auto; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }
  .text-link.uppercase, h1.text-link.underline, .text-link.underline.h1, .text-link.underline.h1--body, h2.text-link.underline, .text-link.underline.h2, .text-link.underline.h2--body, h3.text-link.underline, .text-link.underline.h3, .text-link.underline.h3--body, h4.text-link.underline, .text-link.underline.h4, .text-link.underline.h4--body, h5.text-link.underline, .text-link.underline.h5, .text-link.underline.h5--body, h6.text-link.underline, .text-link.underline.h6, .text-link.underline.h6--body, p.text-link.underline, .collection__sidebar__item.parent > a.text-link, .collection__sidebar__item.parent > span.text-link {
    font-size: 1em; }

.text-link--black {
  color: black; }

/*============================================================================
  #Forms
==============================================================================*/
form {
  margin-bottom: 30px; }

input,
textarea,
button,
select {
  font-size: 1em; }

@media screen and (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px; } }
button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

input,
textarea,
select,
fieldset {
  border-radius: 2px;
  max-width: 100%; }
  input.input-full,
  textarea.input-full,
  select.input-full,
  fieldset.input-full {
    width: 100%; }

input,
select,
textarea {
  padding: 8px 10px;
  line-height: 1.42; }

fieldset {
  border: 1px solid #dddddd;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

optgroup {
  font-weight: bold; }

input {
  display: inline-block;
  width: auto; }

button,
input[type="submit"] {
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.hidden-label {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
  border: 1px solid #dddddd;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 1em;
  background-color: transparent;
  outline: none; }
  input[type="text"]:focus,
  input[type="search"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="file"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  input[type="url"]:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #c4c4c4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); }
  input[type="text"][disabled], input[type="text"].disabled,
  input[type="search"][disabled],
  input[type="search"].disabled,
  input[type="password"][disabled],
  input[type="password"].disabled,
  input[type="email"][disabled],
  input[type="email"].disabled,
  input[type="file"][disabled],
  input[type="file"].disabled,
  input[type="number"][disabled],
  input[type="number"].disabled,
  input[type="tel"][disabled],
  input[type="tel"].disabled,
  input[type="url"][disabled],
  input[type="url"].disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.3); }

textarea {
  min-height: 100px; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/ico-select.svg?v=4109696053332987470");
  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 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

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

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

/*================ Form labels ================*/
label,
legend {
  display: block;
  margin-bottom: 2px;
  font-weight: bold; }
  label.inline,
  legend.inline {
    display: inline; }
  .form-horizontal label.label--hidden, label.label--hidden, .form-horizontal
  legend.label--hidden,
  legend.label--hidden {
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden; }
    .ie9 .form-horizontal label.label--hidden, .lt-ie9 .form-horizontal label.label--hidden, .ie9 label.label--hidden, .lt-ie9 label.label--hidden, .ie9 .form-horizontal
    legend.label--hidden, .lt-ie9 .form-horizontal
    legend.label--hidden, .ie9
    legend.label--hidden, .lt-ie9
    legend.label--hidden {
      height: auto;
      width: auto;
      margin-bottom: 2px;
      overflow: visible; }

/*================ We don't want the same label treatment for checkboxes/radios ================*/
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-weight: normal; }

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

/*================ Horizontal Form ================*/
form.form-horizontal,
.form-horizontal {
  margin-bottom: 0; }
  form.form-horizontal input[type="text"],
  form.form-horizontal input[type="search"],
  form.form-horizontal input[type="password"],
  form.form-horizontal input[type="email"],
  form.form-horizontal input[type="file"],
  form.form-horizontal input[type="number"],
  form.form-horizontal input[type="tel"],
  form.form-horizontal input[type="url"],
  form.form-horizontal textarea,
  form.form-horizontal select,
  form.form-horizontal label,
  .form-horizontal input[type="text"],
  .form-horizontal input[type="search"],
  .form-horizontal input[type="password"],
  .form-horizontal input[type="email"],
  .form-horizontal input[type="file"],
  .form-horizontal input[type="number"],
  .form-horizontal input[type="tel"],
  .form-horizontal input[type="url"],
  .form-horizontal textarea,
  .form-horizontal select,
  .form-horizontal label {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }

/*================ Error styles ================*/
input[type="text"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="file"].error,
input[type="number"].error,
input[type="tel"].error,
input[type="url"].error,
textarea.error {
  border-color: #d02e2e;
  background-color: #fff6f6;
  color: #d02e2e; }

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group .input-group-btn:first-child > input[type="submit"],
  .input-group .input-group-btn:first-child > .spr-summary-actions-newreview,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-btn > input[type="submit"],
  .input-group input[type="hidden"]:first-child + .input-group-btn > .spr-summary-actions-newreview {
    border-radius: 2px 0 0 2px; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary,
  .input-group .input-group-btn:last-child > input[type="submit"],
  .input-group .input-group-btn:last-child > .spr-summary-actions-newreview {
    border-radius: 0 2px 2px 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary, .input-group input[type="submit"], .input-group .spr-summary-actions-newreview,
.input-group .input-group-field {
  height: 37px; }

.input-group .input-group-field {
  width: 100%;
  margin-bottom: 0; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 2px;
  padding: 6px 12px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: #dddddd; }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #56ad6a;
  background-color: #ecfef0;
  border-color: #56ad6a; }
  .form-success a {
    color: #56ad6a;
    text-decoration: underline; }
    .form-success a:hover {
      text-decoration: none; }

.form-error,
.errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

/* Custom */
.form-klaviyo {
  position: relative; }

.form__heading {
  margin-top: 0;
  font-family: "Gill Sans Nova W01", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase; }

.form__success__heading {
  margin-bottom: .25em; }

.form__content {
  color: #000; }

.form__radio {
  display: inline-block; }
  .form__radio + .form__radio {
    margin-left: 15px; }

.form__radio__label {
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  color: #555; }

.form__inputs input {
  border-right: none; }
  .form__inputs input:active, .form__inputs input:focus {
    border-right: none;
    box-shadow: none; }
.form__inputs .input-group-btn .btn, .form__inputs .input-group-btn .btn--secondary, .form__inputs .input-group-btn input[type="submit"], .form__inputs .input-group-btn .spr-summary-actions-newreview {
  border-radius: 0;
  background-color: #000; }

.form__radios {
  margin: 15px 0; }

.form__success {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  background: #fff; }

.form__success__body {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  .form__success__body .form__success__heading {
    margin-top: 0; }
  .form__success__body .form__success__message {
    margin-bottom: 0; }

.form__group {
  margin-bottom: 1em; }
  .form__group .form__field,
  .form__group .form__submit {
    display: block;
    margin-bottom: 0;
    float: left; }
  .form__group .form__field {
    width: 70%;
    padding-top: 9px;
    padding-bottom: 9px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: -1px; }
  .form__group .form__submit {
    width: 30%; }
    .form__group .form__submit:focus {
      outline: 0; }
  .form__group:after {
    display: block;
    clear: both;
    content: ""; }

[klaviyo-bis] [klaviyo-bis-btn] {
  pointer-events: auto !important;
  cursor: pointer !important; }
  [klaviyo-bis] [klaviyo-bis-btn].disabled {
    border-color: #b2b2b2;
    pointer-events: none !important; }
[klaviyo-bis] [klaviyo-bis-error],
[klaviyo-bis] [klaviyo-bis-success] {
  margin: 10px 0 0; }

/*============================================================================
  #Images and Iframes
==============================================================================*/
img {
  border: 0 none; }

svg:not(:root) {
  overflow: hidden; }

img.auto,
.grid__item img,
.grid__item iframe {
  max-width: 100%; }

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

/* Bootstrap Responsive helpers */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive embed,
  .embed-responsive iframe,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }
  .embed-responsive::before {
    display: block;
    content: ""; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

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

.left {
  float: left; }

.right {
  float: right; }

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

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

.hidden {
  display: none; }

.lighten {
  opacity: 0.5; }

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

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }

@media screen and (min-width: 769px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.page-margin {
  padding-top: 60px; }

@media screen and (max-width: 480px) {
  .hidden-sm {
    display: none; } }
@media screen and (max-width: 768px) {
  .hidden-md-down {
    display: none; } }
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .hidden-md {
    display: none; } }
@media screen and (min-width: 768px) {
  .hidden-md-up {
    display: none; } }
@media screen and (min-width: 769px) {
  .hidden-lg {
    display: none; } }
.visually-hidden {
  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; }

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

.visually-shown {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

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

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

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

.lazywide {
  display: block;
  width: 100%; }

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

html.supports-no-cookies .supports-cookies {
  display: none; }

/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 30px; }

.media-img-right {
  float: right;
  margin-left: 30px; }

.media-img img,
.media-img-right img {
  display: block; }

.align-items-center {
  display: flex;
  align-items: center;
  justify-content: center; }

@media screen and (max-width: 480px) {
  .small--align-items-center {
    display: flex;
    align-items: center;
    justify-content: center; } }
@media only screen and (max-width: 768px) and (min-width: 481px) {
  .medium--align-items-center {
    display: flex;
    align-items: center;
    justify-content: center; } }
@media screen and (min-width: 769px) {
  .large--align-items-center {
    display: flex;
    align-items: center;
    justify-content: center; } }
/*============================================================================
  This file is build around onboarding markup loaded in Shopify-built themes and Timber
    - Handles empty state hover styles with specific markup
==============================================================================*/
.helper-note {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -80px;
  margin-left: -255px;
  max-width: 510px;
  font-size: 14px;
  background: #000;
  border: none;
  color: #fff;
  text-align: left;
  padding: 30px;
  z-index: 99999;
  opacity: 0;
  -webkit-font-smoothing: initial;
  filter: alpha(opacity=0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  box-sizing: border-box;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1), transform 0.5s cubic-bezier(0.45, 0, 0, 0.95);
  -moz-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1), transform 0.5s cubic-bezier(0.45, 0, 0, 0.95);
  -ms-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1), transform 0.5s cubic-bezier(0.45, 0, 0, 0.95);
  -o-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1), transform 0.5s cubic-bezier(0.45, 0, 0, 0.95);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1), transform 0.5s cubic-bezier(0.45, 0, 0, 0.95); }

@media only screen and (max-width: 509px) {
  .helper-note {
    width: 95%;
    margin-top: 10%;
    margin-left: 2.5%;
    top: 0;
    left: 0; } }
.helper-note p {
  margin-bottom: 15px;
  margin-left: 40px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300; }

.helper-note p:last-child {
  margin-bottom: 0; }

.helper-note h3, .helper-note .h3, .helper-note .h3--body {
  font-size: 19px;
  font-weight: normal;
  color: #fff;
  margin-left: 40px;
  text-transform: none; }

.helper-note a {
  color: #fff;
  text-decoration: underline; }

.helper-note a:hover,
.helper-note a:active {
  color: #ccc; }

.helper-note a.secondary-action {
  display: inline-block;
  line-height: 30px;
  color: #ccc;
  text-decoration: none; }

.helper-note a.secondary-action:hover,
.helper-note a.secondary-action:focus {
  opacity: 0.7; }

.helper-note a.admin-btn-primary {
  margin-right: 15px;
  cursor: pointer;
  display: inline-block;
  white-space: normal;
  min-height: 32px;
  line-height: 30px;
  padding: 0 9px;
  font-size: 14px;
  border-radius: 0px;
  text-decoration: none;
  white-space: nowrap;
  text-transform: none;
  vertical-align: middle;
  background-color: #d86353;
  border: 1px solid #b74737;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.helper-note a.admin-btn-primary:hover,
.helper-note a.admin-btn-primary:focus {
  opacity: 0.7; }

.helper-note a.admin-btn-primary:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  background-color: #b74737;
  border-color: #b74737; }

.helper-note .helper-icon {
  float: left;
  margin-top: 4px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48c3R5bGUgdHlwZT0idGV4dC9jc3MiPmNpcmNsZSwgZWxsaXBzZSwgbGluZSwgcGF0aCwgcG9seWdvbiwgcG9seWxpbmUsIHJlY3QsIHRleHQgeyBmaWxsOiAjOThhN2I1ICFpbXBvcnRhbnQ7IH08L3N0eWxlPjxwYXRoIGZpbGw9IiM1MjYwNjYiIGQ9Ik01IDloLTN2MWgzdi0xem0xLTJoLTR2MWg0di0xem0tNCA1aDN2LTFoLTN2MXptOCAyLjA0NmwtOS4wMDItLjA0Ni0uMDA0LTloMy4wMDZ2LTNoNnYyaDF2LTEuOTU0bC0xLjA4LTEuMDQ2aC02LjkybC0yLjk5OCAyLjk4Ni0uMDAyIDExLjAxNGgxMXYtNGwtMSAxLjA0NnYyem0tNi45OTYtMTEuNjA1djEuNTg2aC0xLjYwOGwxLjYwOC0xLjU4NnptMi45ODcgOS4wNThsMi4yMDYtLjA1OSA2LjgwNS01LjU1NC0xLjY4OS0yLjEwNC02LjgwNSA1LjU1NC0uNTE3IDIuMTYzem0xLjE2OS0xLjcxNWwuODMxLS4xNTYuMTU1LjgzNS0xLjIwMS41NjUuMjE1LTEuMjQ0eiIvPjwvc3ZnPg==");
  display: inline-block;
  vertical-align: top; }

.helper-section {
  position: relative;
  clear: both; }

.helper-section:hover .helper-note {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px); }

.helper-section .helper-content {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: opacity 0.25s cubic-bezier(0.67, 0, 1, 1);
  -moz-transition: opacity 0.25s cubic-bezier(0.67, 0, 1, 1);
  -ms-transition: opacity 0.25s cubic-bezier(0.67, 0, 1, 1);
  -o-transition: opacity 0.25s cubic-bezier(0.67, 0, 1, 1);
  transition: opacity 0.25s cubic-bezier(0.67, 0, 1, 1); }

.helper-section:hover .helper-content {
  opacity: 0.2;
  filter: alpha(opacity=20);
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1);
  -o-transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.33, 1); }

.horizontal-scroll-container {
  position: relative; }
  .horizontal-scroll-container > * {
    position: relative;
    overflow: auto;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; }
    .horizontal-scroll-container > *::-webkit-scrollbar {
      width: 0;
      /* remove scrollbar space */
      background: transparent;
      /* optional: just make scrollbar invisible */ }
  .horizontal-scroll-container:before, .horizontal-scroll-container:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 11;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 100%;
    transition: .1s opacity ease-in-out;
    opacity: 1;
    pointer-events: none; }
  .horizontal-scroll-container:before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0)); }
  .horizontal-scroll-container:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white); }
  .horizontal-scroll-container.left-end:before {
    opacity: 0; }
  .horizontal-scroll-container.right-end:after {
    opacity: 0; }

@media screen and (min-width: 769px) {
  .horizontal-scroll-container--small-only > * {
    overflow: auto;
    white-space: normal; }
  .horizontal-scroll-container--small-only:before, .horizontal-scroll-container--small-only:after {
    display: none; }
  .horizontal-scroll-container--small-only .product__thumbs .slick-dots li {
    margin-bottom: 10px; } }

.select2-dropdown .select2-search--dropdown {
  display: none; }

.select2-container.select2-container--linjer {
  max-width: 100%; }
  .select2-container.select2-container--linjer .select2-selection--single {
    height: auto;
    border-radius: 0;
    border: 1px solid #000;
    color: #000; }
    .grid__form .select2-container.select2-container--linjer .select2-selection--single {
      background-color: #000;
      color: #fff; }
    .select2-container.select2-container--linjer .select2-selection--single .select2-selection__rendered {
      padding-top: .8em;
      padding-bottom: .8em;
      font-family: "Gill Sans Nova W01", sans-serif;
      font-weight: 600;
      font-size: .9em;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.7' height='5.5' viewBox='0 0 9.7 5.5'%3E%3Cpath d='M9 0L4.9 4.1.7 0 0 .7l4.9 4.8L9.7.7'/%3E%3C/svg%3E");
      background-size: 9.7px auto;
      background-repeat: no-repeat;
      background-position: center right 10px;
      line-height: 1.42;
      letter-spacing: 1px;
      text-transform: uppercase; }
      .grid__form .select2-container.select2-container--linjer .select2-selection--single .select2-selection__rendered {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.7' height='5.5' fill='white' stroke='white' viewBox='0 0 9.7 5.5'%3E%3Cpath d='M9 0L4.9 4.1.7 0 0 .7l4.9 4.8L9.7.7'/%3E%3C/svg%3E"); }
  .select2-container.select2-container--linjer .select2-selection__image {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 .25em;
    border-radius: 50%; }
  .select2-container.select2-container--linjer .select2-dropdown {
    border-color: #000;
    border-radius: 0; }
  .select2-container.select2-container--linjer .select2-results__option {
    display: block;
    margin: 0;
    padding: .6em;
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: .9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000; }
    .select2-container.select2-container--linjer .select2-results__option:hover {
      background-color: #f3f3f3; }
    .select2-container.select2-container--linjer .select2-results__option + .select2-results__option {
      border-top: 1px solid #f3f3f3; }

.at-share-btn-elements .at-svc-reddit {
  background-color: #6f91a7 !important; }

/*================ VENDOR ================*/
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

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

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none; }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

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

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

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

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

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

/*============================================================================
  #Slick Theme
==============================================================================*/
/* Slider */
.slick-loading .slick-list {
  background: white; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  margin-top: -124px;
  z-index: 500;
  cursor: pointer;
  background: transparent;
  color: transparent;
  border: none;
  outline: none;
  opacity: 1;
  -webkit-text-size-adjust: none;
  font-size: 1px;
  letter-spacing: -1px;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }
  .slick-prev:before,
  .slick-next:before {
    font-size: 46px;
    font-size: 3rem;
    letter-spacing: normal;
    color: #000; }
  .slick-prev:hover,
  .slick-next:hover {
    outline: none;
    opacity: 0.75; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 1; }

.slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px 0 rgba(232, 232, 232, 0.5); }
  .slick-arrow:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-arrow-left.svg?v=15815435750929069085);
    font-size: 0; }

.slick-next {
  right: 0; }
  .slick-next:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }

.slick-prev {
  left: 0; }

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

@media screen and (max-width: 768px) {
  .horizontal-scroll-container > * {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%; }
    .horizontal-scroll-container > *::-webkit-scrollbar {
      display: none; } }

.slick-dots li {
  position: relative;
  display: inline-block; }
  .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer; }
    .slick-dots li button:hover, .slick-dots li button:focus {
      outline: none; }
      .slick-dots li button:hover:before, .slick-dots li button:focus:before {
        opacity: 0.75; }
    .slick-dots li button:before {
      position: absolute;
      top: 0;
      left: 0;
      content: "•";
      width: 20px;
      height: 20px;
      font-size: 30px;
      line-height: 20px;
      text-align: center;
      color: #dddddd;
      opacity: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
  .slick-dots li.slick-active button:before {
    color: #dddddd;
    opacity: 0.75; }

/*============================================================================
  #Magnific Popup CSS (used on password page)
==============================================================================*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10420;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10430;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 10450; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom,
.product__slides__item img[data-mfp-src] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

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

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 10440; }
  .mfp-preloader:after {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 0.25rem solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    animation: spin 1s infinite linear; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 10460;
  -webkit-box-shadow: none;
  box-shadow: none; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

button.mfp-close {
  margin: 30px;
  font-size: 2.85714em;
  font-weight: 300px;
  opacity: 1;
  filter: alpha(opacity=100);
  color: #fff; }

/*============ Theme Specific MFP ==================*/
.mfp-bg {
  background-color: rgba(0, 0, 0, 0.75); }

.template-password .mfp-bg {
  background-color: black; }

/* Wider images for zoom */
.mfp-figure figure {
  overflow-y: scroll; }

img.mfp-img {
  max-height: none !important; }

button.mfp-close {
  margin: 0px; }

/* Size chart popup for product page */
.mfp-content .modal,
.mfp-content .page-modal,
.mfp-content .product-modal {
  position: relative;
  background: #fff;
  padding: 45px 30px;
  width: auto;
  margin: 20px auto;
  max-width: 680px; }
  @media screen and (max-width: 480px) {
    .mfp-content .modal,
    .mfp-content .page-modal,
    .mfp-content .product-modal {
      padding: 45px 15px; } }
  .mfp-content .modal p,
  .mfp-content .page-modal p,
  .mfp-content .product-modal p {
    letter-spacing: .015rem;
    line-height: 1.5; }
  .mfp-content .modal .mfp-close-wrap,
  .mfp-content .page-modal .mfp-close-wrap,
  .mfp-content .product-modal .mfp-close-wrap {
    position: fixed;
    width: 680px;
    height: 44px;
    max-width: 100%;
    top: 20px;
    right: 0;
    bottom: auto;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    pointer-events: none; }
    .mfp-content .modal .mfp-close-wrap button,
    .mfp-content .page-modal .mfp-close-wrap button,
    .mfp-content .product-modal .mfp-close-wrap button {
      pointer-events: auto;
      color: #000; }

.mfp-bg.mfp-fade {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  .mfp-bg.mfp-fade.mfp-ready {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-bg.mfp-fade.mfp-removing {
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    opacity: 0;
    filter: alpha(opacity=0); }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }
.mfp-fade.mfp-wrap.mfp-removing {
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out; }
  .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0; }
  .mfp-fade.mfp-wrap.mfp-removing button {
    opacity: 0; }

.mfp-preloader:after {
  display: block;
  margin: 0 auto; }

html.supports-touch body {
  -webkit-overflow-scrolling: touch; }
  html.supports-touch body.mfp-active {
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
    width: 100%;
    position: fixed;
    overflow: auto; }
  html.supports-touch body .mfp-wrap {
    position: fixed;
    overflow: auto;
    top: 0 !important; }

body .drophint-area .drophint-popup {
  height: auto;
  padding: 0; }
  body .drophint-area .drophint-popup .form-drophint {
    opacity: 1; }
    body .drophint-area .drophint-popup .form-drophint .img {
      border-right: 0;
      border-left: 1px solid #ddd; }
      @media (min-width: 576px) {
        body .drophint-area .drophint-popup .form-drophint .img {
          width: 60%;
          padding-right: 0;
          float: right;
          border: 0; } }
      body .drophint-area .drophint-popup .form-drophint .img > iframe {
        max-width: 100%; }
    body .drophint-area .drophint-popup .form-drophint .form {
      position: relative; }
      @media (min-width: 576px) {
        body .drophint-area .drophint-popup .form-drophint .form {
          width: 40%;
          padding-top: 0 !important;
          padding-left: 0;
          float: left;
          border-right: 1px solid black;
          box-sizing: border-box !important; } }
      body .drophint-area .drophint-popup .form-drophint .form:before {
        font-family: "Gill Sans Nova W07", sans-serif !important;
        line-height: normal !important;
        height: auto; }
      body .drophint-area .drophint-popup .form-drophint .form:before {
        display: block;
        content: "Let somebody know you have your eye on this item!";
        padding: 25px;
        padding-top: 60px;
        background: #ccc; }
      body .drophint-area .drophint-popup .form-drophint .form:after {
        font-family: "Adobe Caslon W08", serif;
        content: "Send a Hint";
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 26px; }
      body .drophint-area .drophint-popup .form-drophint .form #dropaform {
        padding: 0 15px 5px 15px !important;
          /*
          input[type="submit"].preview {
            background-color: transparent !important;
            text-transform: none !important;
            color: $colorTextBody !important;
          }

          input[type="submit"].send {
            background-color: $colorBlack;
            font-weight: bold !important;
          }
          */ }
        @media (min-width: 576px) {
          body .drophint-area .drophint-popup .form-drophint .form #dropaform {
            padding: 10px 25px !important; } }
        body .drophint-area .drophint-popup .form-drophint .form #dropaform hr {
          display: none !important; }
        body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp {
          margin: 15px 0; }
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp.bts {
            margin-top: 20px; }
            body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp.bts:after {
              content: "";
              display: block;
              clear: both; }
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp input[type="text"],
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp input[type="email"] {
            width: 100% !important; }
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp label:nth-of-type(1),
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp label:nth-of-type(2),
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp label:nth-of-type(3),
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp label:nth-of-type(4) {
            font-family: "Gill Sans Nova W07", sans-serif !important;
            line-height: normal !important;
            height: auto !important; }
          body .drophint-area .drophint-popup .form-drophint .form #dropaform .inp input[type="submit"].send {
            float: right; }
        body .drophint-area .drophint-popup .form-drophint .form #dropaform input[type="submit"].preview {
          text-decoration: underline !important; }
        body .drophint-area .drophint-popup .form-drophint .form #dropaform input[type="submit"].send {
          font-family: "Gill Sans Nova W01", sans-serif !important;
          font-weight: 600 !important;
          letter-spacing: 1px !important; }
    body .drophint-area .drophint-popup .form-drophint .other-lab.success {
      padding: 150px 0 !important;
      font-family: "Gill Sans Nova W07", sans-serif !important;
      line-height: normal !important;
      font-size: 1.1em !important; }
      body .drophint-area .drophint-popup .form-drophint .other-lab.success img {
        display: none !important; }
      body .drophint-area .drophint-popup .form-drophint .other-lab.success .btn-bottm {
        position: relative !important; }
        body .drophint-area .drophint-popup .form-drophint .other-lab.success .btn-bottm input[type="submit"].send {
          font-family: "Gill Sans Nova W01", sans-serif !important;
          font-weight: 600 !important;
          height: auto !important;
          padding: 12px 20px !important;
          letter-spacing: 1px !important; }

html body div .product__offer .dp_hint_button {
  position: relative;
  margin-top: 0 !important; }
  html body div .product__offer .dp_hint_button:before {
    content: "";
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 25px;
    background-position: 50% 70%;
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-drop-a-hint.png?v=16343354053075550561);
    background-repeat: no-repeat; }
  html body div .product__offer .dp_hint_button img {
    opacity: 0; }

#privy-container #privy-inner-container .privy h1, #privy-container #privy-inner-container .privy .h1, #privy-container #privy-inner-container .privy .h1--body,
#privy-container #privy-inner-container .privy h2,
#privy-container #privy-inner-container .privy .h2,
#privy-container #privy-inner-container .privy .h2--body,
#privy-container #privy-inner-container .privy h3,
#privy-container #privy-inner-container .privy .h3,
#privy-container #privy-inner-container .privy .h3--body,
#privy-container #privy-inner-container .privy h4,
#privy-container #privy-inner-container .privy .h4,
#privy-container #privy-inner-container .privy .h4--body,
#privy-container #privy-inner-container .privy h5,
#privy-container #privy-inner-container .privy .h5,
#privy-container #privy-inner-container .privy .h5--body,
#privy-container #privy-inner-container .privy h6,
#privy-container #privy-inner-container .privy .h6,
#privy-container #privy-inner-container .privy .h6--body {
  font-family: "Adobe Caslon W08", serif !important;
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  letter-spacing: 1px;
  -webkit-font-smoothing: auto; }
#privy-container #privy-inner-container .privy p {
  font-family: "Gill Sans Nova W07" !important;
  font-size: 18px !important;
  line-height: 22px;
  text-align: center; }
#privy-container #privy-inner-container .privy .new-privy-linjer-header {
  margin-top: 0;
  font-family: "Gill Sans Nova W01" !important;
  font-weight: normal !important; }
  .supports-touch #privy-container #privy-inner-container .privy .new-privy-linjer-header {
    margin-top: -30px;
    font-size: 40px; }
.supports-touch #privy-container #privy-inner-container .privy .new-privy-linjer-body {
  font-size: 25px !important;
  text-align: left;
  line-height: 1.2; }
.supports-no-touch #privy-container #privy-inner-container .privy .new-privy-linjer-body {
  width: 270px;
  max-width: 100%;
  text-align: left;
  margin-right: auto;
  margin-left: auto; }
#privy-container #privy-inner-container .privy .new-privy-linjer-footer {
  margin-bottom: 0;
  font-size: 14px !important;
  text-align: center; }
#privy-container #privy-inner-container .privy .privy-dismiss-content {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-close.svg?v=17770966008901757088) !important;
  background-color: transparent !important; }
  #privy-container #privy-inner-container .privy .privy-dismiss-content > img {
    visibility: hidden !important; }
#privy-container #privy-inner-container .privy .privy-element.privy-button-element.privy-button-flat {
  height: 44px;
  font-family: "Gill Sans Nova W07" !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  margin-top: 5px !important; }
#privy-container #privy-inner-container .privy-form label {
  font-family: "Gill Sans Nova W07" !important; }
#privy-container #privy-inner-container .privy-form input {
  border: 1px solid black !important;
  font-family: "Gill Sans Nova W07" !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: normal !important;
  text-align: center !important; }
#privy-container #privy-inner-container .privy-form .privy-form-group.privy-Gender-group {
  margin-top: 15px;
  text-align: center; }
#privy-container #privy-inner-container .privy-form .privy-form-group .privy-form-radio-container {
  display: inline-block;
  margin: 0; }
  #privy-container #privy-inner-container .privy-form .privy-form-group .privy-form-radio-container input[type="radio"]:checked + label span:after {
    top: 4px !important;
    right: 4px !important;
    width: 16px !important;
    height: 16px !important; }
  #privy-container #privy-inner-container .privy-form .privy-form-group .privy-form-radio-container input[type="radio"] + label span {
    border: 1px solid #121212 !important; }
  #privy-container #privy-inner-container .privy-form .privy-form-group .privy-form-radio-container + .privy-form-radio-container {
    margin-left: 20px !important; }
@media (max-width: 374px) {
  #privy-container #privy-inner-container .privy-popup-container .privy-popup-content-wrap {
    margin-top: 0 !important; } }

#latest-viewed-products {
  *zoom: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 0; }
  #latest-viewed-products::after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 480px) {
    #latest-viewed-products {
      padding-right: 30px;
      padding-left: 30px; } }
  #latest-viewed-products h2, #latest-viewed-products .h2, #latest-viewed-products .h2--body {
    margin: 0;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center; }
    @media screen and (min-width: 480px) {
      #latest-viewed-products h2, #latest-viewed-products .h2, #latest-viewed-products .h2--body {
        padding-right: 0;
        padding-left: 0; } }
  @media screen and (max-width: 481px) {
    #latest-viewed-products .product {
      width: 50%;
      margin-right: 0;
      padding: 0 5px; } }
  #latest-viewed-products .product a {
    text-decoration: none; }
  #latest-viewed-products .product .details > a > span:first-of-type {
    margin-bottom: 10px;
    font-family: "Gill Sans Nova W07", sans-serif;
    font-weight: 300;
    font-size: 1.05em;
    letter-spacing: .02em; }
  #latest-viewed-products .product .details > a > .price {
    margin-bottom: 0;
    letter-spacing: .02em;
    color: #666;
    font-size: 1em; }
  .template-collection-men #latest-viewed-products, .template-collection-women #latest-viewed-products {
    max-width: 100%; }
    .template-collection-men #latest-viewed-products h2, .template-collection-men #latest-viewed-products .h2, .template-collection-men #latest-viewed-products .h2--body, .template-collection-women #latest-viewed-products h2, .template-collection-women #latest-viewed-products .h2, .template-collection-women #latest-viewed-products .h2--body {
      text-align: left; }

/*================ MODULES ================*/
.accordion {
  border-bottom: 1px solid #dddddd; }

.accordion__toggle {
  cursor: pointer;
  margin-bottom: auto;
  padding: 1rem 0;
  border-top: 1px solid #dddddd;
  color: black; }

.accordion__icon {
  -webkit-transition: 0.15s transform ease-in-out;
  -moz-transition: 0.15s transform ease-in-out;
  -ms-transition: 0.15s transform ease-in-out;
  -o-transition: 0.15s transform ease-in-out;
  transition: 0.15s transform ease-in-out;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  float: right; }
  .accordion__icon .icon-close {
    width: 12px;
    height: 12px; }
  .accordion__item.in .accordion__icon {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }

.accordion__content {
  display: none;
  color: #4d4d4d; }
  .accordion__item.in .accordion__content {
    display: block; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin: 0;
  padding: 7.5px 0;
  font-size: 0.7em;
  font-family: "Gill Sans Nova W07";
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8em;
  letter-spacing: 0.04rem; }
  .breadcrumb a,
  .breadcrumb span {
    font-family: "Gill Sans Nova W07", sans-serif;
    font-weight: 300;
    display: inline-block;
    padding: 0;
    margin-right: 0;
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: normal;
    color: #666; }
  .breadcrumb a:hover {
    text-decoration: underline; }

.hero {
  position: relative; }

.hero--short {
  padding-bottom: 100%; }
  @media screen and (min-width: 480px) {
    .hero--short {
      padding-bottom: 80%; } }
  @media screen and (min-width: 769px) {
    .hero--short {
      padding-bottom: 50%; } }
  @media screen and (min-width: 1200px) {
    .hero--short {
      padding-bottom: 30%; } }

.hero--tall {
  padding-bottom: 150%; }
  @media screen and (min-width: 480px) {
    .hero--tall {
      padding-bottom: 130%; } }
  @media screen and (min-width: 769px) {
    .hero--tall {
      padding-bottom: 60%; } }
  @media screen and (min-width: 1200px) {
    .hero--tall {
      padding-bottom: 45%; } }

.hero--inverse .hero__body,
.hero--inverse .hero__heading {
  color: #fff; }

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.hero__body {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(-50%); }
  @media screen and (min-width: 769px) {
    .hero__body {
      max-width: 700px; } }

.hero__body--top,
.hero__body--bottom {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center; }

.hero__body--top {
  top: 5%;
  bottom: auto; }
  @media screen and (min-width: 769px) {
    .hero__body--top {
      top: 15%; } }

.hero__body--bottom {
  top: auto;
  bottom: 5%; }
  @media screen and (min-width: 769px) {
    .hero__body--bottom {
      bottom: 15%; } }

.hero__heading {
  margin: 0;
  font-size: 2em;
  line-height: 1.25em; }
  @media screen and (min-width: 769px) {
    .hero__heading {
      font-size: 2.6em; } }

.hero__body--top .hero__heading {
  max-width: 300px;
  margin: 0 auto; }
  @media screen and (min-width: 769px) {
    .hero__body--top .hero__heading {
      max-width: 70%; } }

.hero__content__icon {
  margin-right: 10px;
  vertical-align: middle; }
  .hero__content__icon + p {
    display: inline-block; }

.flag {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 6px;
  width: 16px;
  height: 11px;
  background: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/flags_400x.png?v=2002234917143482386) no-repeat; }

.flag.flag-ad {
  background-position: 0 0; }

.flag.flag-ae {
  background-position: -16px 0; }

.flag.flag-af {
  background-position: -32px 0; }

.flag.flag-ag {
  background-position: -48px 0; }

.flag.flag-ai {
  background-position: -64px 0; }

.flag.flag-al {
  background-position: -80px 0; }

.flag.flag-am {
  background-position: -96px 0; }

.flag.flag-an {
  background-position: -112px 0; }

.flag.flag-ao {
  background-position: -128px 0; }

.flag.flag-ar {
  background-position: -144px 0; }

.flag.flag-as {
  background-position: -160px 0; }

.flag.flag-at {
  background-position: -176px 0; }

.flag.flag-au {
  background-position: -192px 0; }

.flag.flag-aw {
  background-position: -208px 0; }

.flag.flag-ax {
  background-position: -224px 0; }

.flag.flag-az {
  background-position: -240px 0; }

.flag.flag-ba {
  background-position: -256px 0; }

.flag.flag-bb {
  background-position: 0 -11px; }

.flag.flag-bd {
  background-position: -16px -11px; }

.flag.flag-be {
  background-position: -32px -11px; }

.flag.flag-bf {
  background-position: -48px -11px; }

.flag.flag-bg {
  background-position: -64px -11px; }

.flag.flag-bh {
  background-position: -80px -11px; }

.flag.flag-bi {
  background-position: -96px -11px; }

.flag.flag-bj {
  background-position: -112px -11px; }

.flag.flag-bm {
  background-position: -128px -11px; }

.flag.flag-bn {
  background-position: -144px -11px; }

.flag.flag-bo {
  background-position: -160px -11px; }

.flag.flag-br {
  background-position: -176px -11px; }

.flag.flag-bs {
  background-position: -192px -11px; }

.flag.flag-bt {
  background-position: -208px -11px; }

.flag.flag-bv {
  background-position: -224px -11px; }

.flag.flag-bw {
  background-position: -240px -11px; }

.flag.flag-by {
  background-position: -256px -11px; }

.flag.flag-bz {
  background-position: 0 -22px; }

.flag.flag-ca {
  background-position: -16px -22px; }

.flag.flag-catalonia {
  background-position: -32px -22px; }

.flag.flag-cd {
  background-position: -48px -22px; }

.flag.flag-cf {
  background-position: -64px -22px; }

.flag.flag-cg {
  background-position: -80px -22px; }

.flag.flag-ch {
  background-position: -96px -22px; }

.flag.flag-ci {
  background-position: -112px -22px; }

.flag.flag-ck {
  background-position: -128px -22px; }

.flag.flag-cl {
  background-position: -144px -22px; }

.flag.flag-cm {
  background-position: -160px -22px; }

.flag.flag-cn {
  background-position: -176px -22px; }

.flag.flag-co {
  background-position: -192px -22px; }

.flag.flag-cr {
  background-position: -208px -22px; }

.flag.flag-cu {
  background-position: -224px -22px; }

.flag.flag-cv {
  background-position: -240px -22px; }

.flag.flag-cw {
  background-position: -256px -22px; }

.flag.flag-cy {
  background-position: 0 -33px; }

.flag.flag-cz {
  background-position: -16px -33px; }

.flag.flag-de {
  background-position: -32px -33px; }

.flag.flag-dj {
  background-position: -48px -33px; }

.flag.flag-dk {
  background-position: -64px -33px; }

.flag.flag-dm {
  background-position: -80px -33px; }

.flag.flag-do {
  background-position: -96px -33px; }

.flag.flag-dz {
  background-position: -112px -33px; }

.flag.flag-ec {
  background-position: -128px -33px; }

.flag.flag-ee {
  background-position: -144px -33px; }

.flag.flag-eg {
  background-position: -160px -33px; }

.flag.flag-eh {
  background-position: -176px -33px; }

.flag.flag-england {
  background-position: -192px -33px; }

.flag.flag-er {
  background-position: -208px -33px; }

.flag.flag-es {
  background-position: -224px -33px; }

.flag.flag-et {
  background-position: -240px -33px; }

.flag.flag-eu {
  background-position: -256px -33px; }

.flag.flag-fi {
  background-position: 0 -44px; }

.flag.flag-fj {
  background-position: -16px -44px; }

.flag.flag-fk {
  background-position: -32px -44px; }

.flag.flag-fm {
  background-position: -48px -44px; }

.flag.flag-fo {
  background-position: -64px -44px; }

.flag.flag-fr {
  background-position: -80px -44px; }

.flag.flag-ga {
  background-position: -96px -44px; }

.flag.flag-gb {
  background-position: -112px -44px; }

.flag.flag-gd {
  background-position: -128px -44px; }

.flag.flag-ge {
  background-position: -144px -44px; }

.flag.flag-gf {
  background-position: -160px -44px; }

.flag.flag-gg {
  background-position: -192px -44px; }

.flag.flag-gh {
  background-position: -208px -44px; }

.flag.flag-gi {
  background-position: -224px -44px; }

.flag.flag-gl {
  background-position: -240px -44px; }

.flag.flag-gm {
  background-position: -256px -44px; }

.flag.flag-gn {
  background-position: 0 -55px; }

.flag.flag-gp {
  background-position: -16px -55px; }

.flag.flag-gq {
  background-position: -32px -55px; }

.flag.flag-gr {
  background-position: -48px -55px; }

.flag.flag-gs {
  background-position: -64px -55px; }

.flag.flag-gt {
  background-position: -80px -55px; }

.flag.flag-gu {
  background-position: -96px -55px; }

.flag.flag-gw {
  background-position: -112px -55px; }

.flag.flag-gy {
  background-position: -128px -55px; }

.flag.flag-hk {
  background-position: -144px -55px; }

.flag.flag-hm {
  background-position: -160px -55px; }

.flag.flag-hn {
  background-position: -176px -55px; }

.flag.flag-hr {
  background-position: -192px -55px; }

.flag.flag-ht {
  background-position: -208px -55px; }

.flag.flag-hu {
  background-position: -224px -55px; }

.flag.flag-ic {
  background-position: -240px -55px; }

.flag.flag-id {
  background-position: -256px -55px; }

.flag.flag-ie {
  background-position: 0 -66px; }

.flag.flag-il {
  background-position: -16px -66px; }

.flag.flag-im {
  background-position: -48px -66px; }

.flag.flag-in {
  background-position: -64px -66px; }

.flag.flag-io {
  background-position: -80px -66px; }

.flag.flag-iq {
  background-position: -96px -66px; }

.flag.flag-ir {
  background-position: -112px -66px; }

.flag.flag-is {
  background-position: -128px -66px; }

.flag.flag-it {
  background-position: -144px -66px; }

.flag.flag-je {
  background-position: -176px -66px; }

.flag.flag-jm {
  background-position: -192px -66px; }

.flag.flag-jo {
  background-position: -208px -66px; }

.flag.flag-jp {
  background-position: -224px -66px; }

.flag.flag-ke {
  background-position: -240px -66px; }

.flag.flag-kg {
  background-position: -256px -66px; }

.flag.flag-kh {
  background-position: 0 -77px; }

.flag.flag-ki {
  background-position: -16px -77px; }

.flag.flag-km {
  background-position: -32px -77px; }

.flag.flag-kn {
  background-position: -48px -77px; }

.flag.flag-kp {
  background-position: -64px -77px; }

.flag.flag-kr {
  background-position: -80px -77px; }

.flag.flag-kurdistan {
  background-position: -96px -77px; }

.flag.flag-kw {
  background-position: -112px -77px; }

.flag.flag-ky {
  background-position: -128px -77px; }

.flag.flag-kz {
  background-position: -144px -77px; }

.flag.flag-la {
  background-position: -160px -77px; }

.flag.flag-lb {
  background-position: -176px -77px; }

.flag.flag-lc {
  background-position: -192px -77px; }

.flag.flag-li {
  background-position: -208px -77px; }

.flag.flag-lk {
  background-position: -224px -77px; }

.flag.flag-lr {
  background-position: -240px -77px; }

.flag.flag-ls {
  background-position: -256px -77px; }

.flag.flag-lt {
  background-position: 0 -88px; }

.flag.flag-lu {
  background-position: -16px -88px; }

.flag.flag-lv {
  background-position: -32px -88px; }

.flag.flag-ly {
  background-position: -48px -88px; }

.flag.flag-ma {
  background-position: -64px -88px; }

.flag.flag-mc {
  background-position: -80px -88px; }

.flag.flag-md {
  background-position: -96px -88px; }

.flag.flag-me {
  background-position: -112px -88px; }

.flag.flag-mg {
  background-position: -128px -88px; }

.flag.flag-mh {
  background-position: -144px -88px; }

.flag.flag-mk {
  background-position: -160px -88px; }

.flag.flag-ml {
  background-position: -176px -88px; }

.flag.flag-mm {
  background-position: -192px -88px; }

.flag.flag-mn {
  background-position: -208px -88px; }

.flag.flag-mo {
  background-position: -224px -88px; }

.flag.flag-mp {
  background-position: -240px -88px; }

.flag.flag-mq {
  background-position: -256px -88px; }

.flag.flag-mr {
  background-position: 0 -99px; }

.flag.flag-ms {
  background-position: -16px -99px; }

.flag.flag-mt {
  background-position: -32px -99px; }

.flag.flag-mu {
  background-position: -48px -99px; }

.flag.flag-mv {
  background-position: -64px -99px; }

.flag.flag-mw {
  background-position: -80px -99px; }

.flag.flag-mx {
  background-position: -96px -99px; }

.flag.flag-my {
  background-position: -112px -99px; }

.flag.flag-mz {
  background-position: -128px -99px; }

.flag.flag-na {
  background-position: -144px -99px; }

.flag.flag-nc {
  background-position: -160px -99px; }

.flag.flag-ne {
  background-position: -176px -99px; }

.flag.flag-nf {
  background-position: -192px -99px; }

.flag.flag-ng {
  background-position: -208px -99px; }

.flag.flag-ni {
  background-position: -224px -99px; }

.flag.flag-nl {
  background-position: -240px -99px; }

.flag.flag-no {
  background-position: -256px -99px; }

.flag.flag-np {
  background-position: 0 -110px; }

.flag.flag-nr {
  background-position: -16px -110px; }

.flag.flag-nu {
  background-position: -32px -110px; }

.flag.flag-nz {
  background-position: -48px -110px; }

.flag.flag-om {
  background-position: -64px -110px; }

.flag.flag-pa {
  background-position: -80px -110px; }

.flag.flag-pe {
  background-position: -96px -110px; }

.flag.flag-pf {
  background-position: -112px -110px; }

.flag.flag-pg {
  background-position: -128px -110px; }

.flag.flag-ph {
  background-position: -144px -110px; }

.flag.flag-pk {
  background-position: -160px -110px; }

.flag.flag-pl {
  background-position: -176px -110px; }

.flag.flag-pm {
  background-position: -192px -110px; }

.flag.flag-pn {
  background-position: -208px -110px; }

.flag.flag-pr {
  background-position: -224px -110px; }

.flag.flag-ps {
  background-position: -240px -110px; }

.flag.flag-pt {
  background-position: -256px -110px; }

.flag.flag-pw {
  background-position: 0 -121px; }

.flag.flag-py {
  background-position: -16px -121px; }

.flag.flag-qa {
  background-position: -32px -121px; }

.flag.flag-re {
  background-position: -48px -121px; }

.flag.flag-ro {
  background-position: -64px -121px; }

.flag.flag-rs {
  background-position: -80px -121px; }

.flag.flag-ru {
  background-position: -96px -121px; }

.flag.flag-rw {
  background-position: -112px -121px; }

.flag.flag-sa {
  background-position: -128px -121px; }

.flag.flag-sb {
  background-position: -144px -121px; }

.flag.flag-sc {
  background-position: -160px -121px; }

.flag.flag-scotland {
  background-position: -176px -121px; }

.flag.flag-sd {
  background-position: -192px -121px; }

.flag.flag-se {
  background-position: -208px -121px; }

.flag.flag-sg {
  background-position: -224px -121px; }

.flag.flag-sh {
  background-position: -240px -121px; }

.flag.flag-si {
  background-position: -256px -121px; }

.flag.flag-sj {
  background-position: 0 -132px; }

.flag.flag-sk {
  background-position: -16px -132px; }

.flag.flag-sl {
  background-position: -32px -132px; }

.flag.flag-sm {
  background-position: -48px -132px; }

.flag.flag-sn {
  background-position: -64px -132px; }

.flag.flag-so {
  background-position: -80px -132px; }

.flag.flag-somaliland {
  background-position: -96px -132px; }

.flag.flag-sr {
  background-position: -112px -132px; }

.flag.flag-ss {
  background-position: -128px -132px; }

.flag.flag-st {
  background-position: -144px -132px; }

.flag.flag-sv {
  background-position: -160px -132px; }

.flag.flag-sx {
  background-position: -176px -132px; }

.flag.flag-sy {
  background-position: -192px -132px; }

.flag.flag-sz {
  background-position: -208px -132px; }

.flag.flag-tc {
  background-position: -224px -132px; }

.flag.flag-td {
  background-position: -240px -132px; }

.flag.flag-tf {
  background-position: -256px -132px; }

.flag.flag-tg {
  background-position: 0 -143px; }

.flag.flag-th {
  background-position: -16px -143px; }

.flag.flag-tibet {
  background-position: -32px -143px; }

.flag.flag-tj {
  background-position: -48px -143px; }

.flag.flag-tk {
  background-position: -64px -143px; }

.flag.flag-tl {
  background-position: -80px -143px; }

.flag.flag-tm {
  background-position: -96px -143px; }

.flag.flag-tn {
  background-position: -112px -143px; }

.flag.flag-to {
  background-position: -128px -143px; }

.flag.flag-tr {
  background-position: -144px -143px; }

.flag.flag-tt {
  background-position: -160px -143px; }

.flag.flag-tv {
  background-position: -176px -143px; }

.flag.flag-tw {
  background-position: -192px -143px; }

.flag.flag-tz {
  background-position: -208px -143px; }

.flag.flag-ua {
  background-position: -224px -143px; }

.flag.flag-ug {
  background-position: -240px -143px; }

.flag.flag-um {
  background-position: -256px -143px; }

.flag.flag-us {
  background-position: 0 -154px; }

.flag.flag-uy {
  background-position: -16px -154px; }

.flag.flag-uz {
  background-position: -32px -154px; }

.flag.flag-va {
  background-position: -48px -154px; }

.flag.flag-vc {
  background-position: -64px -154px; }

.flag.flag-ve {
  background-position: -80px -154px; }

.flag.flag-vg {
  background-position: -96px -154px; }

.flag.flag-vi {
  background-position: -112px -154px; }

.flag.flag-vn {
  background-position: -128px -154px; }

.flag.flag-vu {
  background-position: -144px -154px; }

.flag.flag-wales {
  background-position: -160px -154px; }

.flag.flag-wf {
  background-position: -176px -154px; }

.flag.flag-ws {
  background-position: -192px -154px; }

.flag.flag-xk {
  background-position: -208px -154px; }

.flag.flag-ye {
  background-position: -224px -154px; }

.flag.flag-yt {
  background-position: -240px -154px; }

.flag.flag-za {
  background-position: -256px -154px; }

.flag.flag-zanzibar {
  background-position: 0 -165px; }

.flag.flag-zm {
  background-position: -16px -165px; }

.flag.flag-zw {
  background-position: -32px -165px; }

.logo--business-insider {
  display: inline-block;
  width: 145px;
  height: 50px;
  background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/automatic-intro-as-seen-in-logos_800x.png?v=6611529781435129627);
  background-size: 650px;
  background-position: 100% 50%;
  background-repeat: no-repeat; }

[data-currency-selector] {
  display: none;
  width: 80px;
  visibility: hidden;
  position: fixed;
  left: 30px;
  bottom: 30px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  z-index: 1; }
  [data-currency-selector].in {
    display: inline-block;
    visibility: visible; }
  [data-currency-selector] form {
    margin: 0; }
  [data-currency-selector] .nice-select {
    width: 80px;
    padding: 0;
    height: auto;
    float: none;
    border: 0;
    border-radius: 0; }
    [data-currency-selector] .nice-select > .current,
    [data-currency-selector] .nice-select .option {
      width: 80px;
      min-height: 22px;
      line-height: 22px;
      margin-bottom: 0;
      padding: 2px 5px 2px 40px;
      font-size: .9em; }
    [data-currency-selector] .nice-select > .current {
      display: block; }
    [data-currency-selector] .nice-select > .list {
      border-radius: 0;
      margin: 0;
      top: auto;
      bottom: 100%; }
    [data-currency-selector] .nice-select > .current,
    [data-currency-selector] .nice-select > .list > li {
      position: relative; }
      [data-currency-selector] .nice-select > .current:after,
      [data-currency-selector] .nice-select > .list > li:after {
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        display: block;
        position: absolute;
        width: 20px;
        height: 11px;
        top: 50%;
        right: auto;
        left: 10px;
        background-size: 500%;
        background-position: 0 0;
        background-repeat: no-repeat;
        background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/flags_400x.jpg?v=7620049672104118417);
        color: transparent; }
      [data-currency-selector] .nice-select > .current[data-value="AUD"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="AUD"]:after {
        background-position: 75% 0; }
      [data-currency-selector] .nice-select > .current[data-value="AED"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="AED"]:after {
        background-position: 75% 50%; }
      [data-currency-selector] .nice-select > .current[data-value="CAD"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="CAD"]:after {
        background-position: 25% 0; }
      [data-currency-selector] .nice-select > .current[data-value="CHF"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="CHF"]:after {
        background-position: 100% 25%; }
      [data-currency-selector] .nice-select > .current[data-value="DKK"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="DKK"]:after {
        background-position: 25% 50%; }
      [data-currency-selector] .nice-select > .current[data-value="ILS"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="ILS"]:after {
        background-position: 50% 50%; }
      [data-currency-selector] .nice-select > .current[data-value="MXN"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="MXN"]:after {
        background-position: 0% 50%; }
      [data-currency-selector] .nice-select > .current[data-value="GBP"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="GBP"]:after {
        background-position: 75% 25%; }
      [data-currency-selector] .nice-select > .current[data-value="EUR"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="EUR"]:after {
        background-position: 100% 0; }
      [data-currency-selector] .nice-select > .current[data-value="JPY"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="JPY"]:after {
        background-position: 50% 0; }
      [data-currency-selector] .nice-select > .current[data-value="MOP"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="MOP"]:after {
        background-position: 100% 50%; }
      [data-currency-selector] .nice-select > .current[data-value="MYR"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="MYR"]:after {
        background-position: 0% 75%; }
      [data-currency-selector] .nice-select > .current[data-value="KHR"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="KHR"]:after {
        background-position: 25% 75%; }
      [data-currency-selector] .nice-select > .current[data-value="KRW"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="KRW"]:after {
        background-position: 50% 75%; }
      [data-currency-selector] .nice-select > .current[data-value="NOK"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="NOK"]:after {
        background-position: 75% 75%; }
      [data-currency-selector] .nice-select > .current[data-value="THB"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="THB"]:after {
        background-position: 100% 75%; }
      [data-currency-selector] .nice-select > .current[data-value="TWD"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="TWD"]:after {
        background-position: 0% 100%; }
      [data-currency-selector] .nice-select > .current[data-value="VND"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="VND"]:after {
        background-position: 25% 100%; }
      [data-currency-selector] .nice-select > .current[data-value="NZD"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="NZD"]:after {
        background-position: 0 25%; }
      [data-currency-selector] .nice-select > .current[data-value="HKD"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="HKD"]:after {
        background-position: 50% 25%; }
      [data-currency-selector] .nice-select > .current[data-value="USD"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="USD"]:after {
        background-position: 0 0; }
      [data-currency-selector] .nice-select > .current[data-value="SGD"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="SGD"]:after {
        background-position: 25% 25%; }
      [data-currency-selector] .nice-select > .current[data-value="SEK"]:after,
      [data-currency-selector] .nice-select > .list > li[data-value="SEK"]:after {
        background-position: 50% 100%; }
    [data-currency-selector] .nice-select:after {
      width: 6px;
      height: 6px;
      right: 6px;
      margin-top: -3px;
      border: 1px solid transparent;
      border-bottom: 1px solid #666;
      border-right: 1px solid #666; }
  [data-currency-selector].disabled {
    pointer-events: none; }
    [data-currency-selector].disabled .nice-select:after {
      display: none; }

.mfp-content .modal-klaviyo {
  padding: 0 !important; }
  .mfp-content .modal-klaviyo .modal-klaviyo__header__bg {
    padding-bottom: 50%;
    background-position: center;
    background-size: cover; }
  .mfp-content .modal-klaviyo .modal-klaviyo__body {
    padding: 15px 30px; }
  .mfp-content .modal-klaviyo .modal-klaviyo__image {
    max-width: 100%; }
  .mfp-content .modal-klaviyo .modal-klaviyo__heading {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    font-family: "Gill Sans Nova W07"; }
  .mfp-content .modal-klaviyo .modal-klaviyo__form {
    width: 300px;
    max-width: 100%;
    margin: 1em auto; }
  .mfp-content .modal-klaviyo .modal-klaviyo__content {
    margin-top: 30px; }
  .mfp-content .modal-klaviyo .form-klaviyo-prelaunch {
    margin: 0;
    background: transparent; }
    .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__radios {
      display: none; }
      #gift-card .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__radios, #gift-card-women .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__radios, #gift-card-subscribe .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__radios {
        display: block; }
    .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__group {
      max-width: 300px; }
      .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__group .form__field,
      .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__group .form__submit {
        display: block;
        width: 100% !important;
        float: none; }
      .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__group .form__submit {
        margin-top: 10px;
        padding-top: .5em;
        padding-bottom: .5em;
        font-size: 1.4em; }
    .mfp-content .modal-klaviyo .form-klaviyo-prelaunch .form__success {
      background: #fff; }

.mfp-content .modal-klaviyo .mfp-close-wrap {
  position: absolute;
  top: 0;
  right: 0; }

.mfp-close-btn-in .modal-klaviyo .mfp-close {
  color: #fff; }

/*============================================================================
  #Pagination (Including Shopify Product Reviews)
==============================================================================*/
.pagination {
  margin-bottom: 1em; }

/*================ Custom Pagination ================*/
.pagination-custom, .sky-pilot-pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0 30px;
  border-radius: 2px; }

.pagination-custom > li, .sky-pilot-pagination span {
  display: inline; }

.spr-pagination > div {
  display: inline-block; }

.spr-pagination .spr-pagination-page,
.spr-pagination .spr-pagination-next,
.spr-pagination .spr-pagination-prev {
  display: inline;
  position: relative; }

.pagination-custom > li > a,
.pagination-custom > li > span,
.spr-pagination-page > a,
.spr-pagination-page.is-active,
.spr-pagination .spr-pagination-deco,
.spr-pagination-next > a,
.spr-pagination-prev > a,
.sky-pilot-pagination > span > a {
  position: relative;
  float: left;
  padding: 5px 10px;
  margin-left: -1px;
  line-height: 1.42;
  text-decoration: none;
  border: 1px solid #dddddd; }

.pagination-custom > li:first-child > a,
.pagination-custom > li:first-child > span,
.spr-pagination > div > span:first-child > a,
.spr-pagination > div > span:first-child.is-active,
.sky-pilot-pagination > span:first-child > a {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px; }

.pagination-custom > li:last-child > a,
.pagination-custom > li:last-child > span,
.spr-pagination > div > span:last-child > a,
.spr-pagination > div > span:last-child.is-active,
.sky-pilot-pagination > span:last-child > a {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.pagination-custom > li > a:hover,
.pagination-custom > li > span:hover,
.pagination-custom > li > a:focus,
.pagination-custom > li > span:focus,
.sky-pilot-pagination > span > a:hover {
  color: black; }

.pagination-custom > .active > a,
.pagination-custom > .active > span,
.pagination-custom > .active > a:hover,
.pagination-custom > .active > span:hover,
.pagination-custom > .active > a:focus,
.pagination-custom > .active > span:focus {
  z-index: 2;
  cursor: default;
  color: black; }

.pagination-custom > .disabled > span,
.pagination-custom > .disabled > a,
.pagination-custom > .disabled > a:hover,
.pagination-custom > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed; }

.pagination-custom-lg > li > a,
.pagination-custom-lg > li > span {
  padding: 10px 16px;
  font-size: 1.28571em; }

.pagination-custom-lg > li:first-child > a,
.pagination-custom-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-custom-lg > li:last-child > a,
.pagination-custom-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.pagination-custom-sm > li > a,
.pagination-custom-sm > li > span {
  padding: 5px 10px;
  font-size: 0.85714em; }

.pagination-custom-sm > li:first-child > a,
.pagination-custom-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-custom-sm > li:last-child > a,
.pagination-custom-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

@media screen and (max-width: 480px) {
  .section-value-props {
    margin-bottom: 15px; } }
@media screen and (min-width: 769px) {
  .section-value-props {
    padding: 2.5rem 0; } }
@media screen and (min-width: 769px) {
  .section-value-props .section-heading {
    font-size: 2.5rem; } }

.value-props__item {
  margin: 15px 0;
  text-align: center; }
  @media screen and (min-width: 769px) {
    .value-props__item {
      margin: 0; } }
  .value-props__item .value-props__icon,
  .value-props__item .value-props__text {
    display: block;
    vertical-align: middle; }
  .value-props__item .value-props__icon {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 20px;
    margin: 0 auto; }
    @media screen and (min-width: 769px) {
      .value-props__item .value-props__icon {
        max-width: 35px;
        min-height: 40px;
        margin-bottom: 10px; } }
    .value-props__item .value-props__icon svg {
      display: block;
      width: 100%;
      height: auto; }
  .value-props__item .value-props__text {
    line-height: 25px;
    letter-spacing: .01em;
    font-size: 16px;
    color: #000; }
    @media screen and (min-width: 769px) {
      .value-props__item .value-props__text {
        font-size: 1.1em; } }

.info-bar {
  position: relative;
  z-index: 111;
  min-height: 35px;
  background-color: black;
  color: white; }
  .info-bar a:link {
    color: white; }
  .info-bar a:visited,
  .info-bar a:focus,
  .info-bar a:active,
  .info-bar a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline; }
  .info-bar .info-bar__body {
    margin-bottom: 0;
    padding: 7.5px 0;
    line-height: 20px; }
    .info-bar .info-bar__body p,
    .info-bar .info-bar__body span {
      display: inline;
      margin-bottom: 0;
      font-size: 1em; }
    .info-bar .info-bar__body a {
      text-decoration: underline; }
  .info-bar .info-bar__message {
    display: inline-block;
    margin: 0; }
  .info-bar .info-bar__message__inner {
    margin-bottom: 0; }
  @media screen and (max-width: 481px) {
    .info-bar .info-bar__countdown {
      display: block !important; } }
  @media screen and (min-width: 480px) {
    .info-bar .info-bar__countdown {
      display: inline-block;
      margin-left: .25em; }
      .info-bar .info-bar__countdown:before {
        content: " | "; } }

.header-wrapper.fixed .info-bar {
  -webkit-transition: 0.15s all ease-in-out;
  -moz-transition: 0.15s all ease-in-out;
  -ms-transition: 0.15s all ease-in-out;
  -o-transition: 0.15s all ease-in-out;
  transition: 0.15s all ease-in-out; }
.header-wrapper.compressed .info-bar:not([data-fixed="true"]) {
  -webkit-transition: 0.15s all ease-in-out;
  -moz-transition: 0.15s all ease-in-out;
  -ms-transition: 0.15s all ease-in-out;
  -o-transition: 0.15s all ease-in-out;
  transition: 0.15s all ease-in-out;
  min-height: 0;
  max-height: 0;
  padding: 0;
  visibility: hidden; }
.header-wrapper[data-location-based-message="true"] .info-bar__body {
  opacity: 0; }
.header-wrapper[data-location-based-message="true"].loaded .info-bar__body {
  opacity: 1; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  position: relative;
  z-index: 111;
  background-color: white; }
  .site-header .logo-wrapper svg {
    width: 100%;
    height: auto; }

.header-wrapper .wrapper, .header-wrapper .wrapper--wide, .header-wrapper .wrapper--full {
  max-width: 100%; }
.header-wrapper.fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 1111; }
.header-wrapper.compressed .site-header {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); }
  .header-wrapper.compressed .site-header .nav--desktop .header__menu > ul > li > a,
  .header-wrapper.compressed .site-header .nav--desktop .mobile-wrapper .header-logo a {
    padding-top: 15px;
    padding-bottom: 15px; }

.header-logo a,
.header-logo img,
.header-logo svg,
.header-logo .svg-wrapper {
  display: block; }
.header-logo .header-logo-svg {
  display: block;
  width: 80px;
  margin: 0 auto; }

.header-hamburger {
  cursor: pointer; }
  .header-hamburger .hamburger-bar {
    display: block;
    position: absolute;
    width: 100%;
    width: 15px;
    height: 2px;
    background-color: black;
    pointer-events: none;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out; }
    .header-hamburger .hamburger-bar:nth-of-type(1) {
      top: 35%; }
    .header-hamburger .hamburger-bar:nth-of-type(2) {
      bottom: 35%; }
  .header-hamburger[aria-expanded="true"] .hamburger-bar {
    width: 20px; }
    .header-hamburger[aria-expanded="true"] .hamburger-bar:nth-of-type(1), .header-hamburger[aria-expanded="true"] .hamburger-bar:nth-of-type(2) {
      top: 50%;
      bottom: auto;
      left: 0; }
    .header-hamburger[aria-expanded="true"] .hamburger-bar:nth-of-type(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    .header-hamburger[aria-expanded="true"] .hamburger-bar:nth-of-type(2) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }

.header-search {
  vertical-align: middle; }
  .header-search .header-search__icon {
    display: block; }
    .header-search .header-search__icon svg {
      width: 18px;
      height: auto; }
  .header-search .header-search__text {
    display: none; }
  .nav--mobile .header-search {
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .nav--mobile .header-search .header-search__toggle {
      display: block;
      padding: 5px; }
    .nav--mobile .header-search svg {
      display: block;
      fill: #231F20; }

.header__menu--mobile {
  -webkit-transition: 0.15s opacity ease-in-out;
  -moz-transition: 0.15s opacity ease-in-out;
  -ms-transition: 0.15s opacity ease-in-out;
  -o-transition: 0.15s opacity ease-in-out;
  transition: 0.15s opacity ease-in-out;
  display: none;
  position: fixed;
  width: 300px;
  max-width: 80%;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
  background-color: white;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  animation-duration: .2s;
  animation-fill-mode: both; }
  .header__menu--mobile.in, .header__menu--mobile.slide-in {
    display: block;
    opacity: 1;
    pointer-events: auto; }
  .header__menu--mobile.slide-out {
    animation-name: slideOutLeft; }
  .header__menu--mobile.slide-in {
    animation-name: slideInLeft; }
  .header__menu--mobile .header__menu__logo {
    display: block;
    width: 80px;
    margin: 0 auto 30px; }
    .header__menu--mobile .header__menu__logo svg {
      display: block;
      width: 100%;
      height: auto; }
  .header__menu--mobile .header__menu__list {
    position: relative;
    height: 95%;
    padding-top: 38px;
    padding-bottom: 30px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    .header__menu--mobile .header__menu__list::-webkit-scrollbar {
      display: none; }
  .header__menu--mobile .nav__list--primary > .nav__item > .nav__dropdown > .nav__dropdown__list > .nav__item.parent > .nav__link {
    text-transform: uppercase; }
    .header__menu--mobile .nav__list--primary > .nav__item > .nav__dropdown > .nav__dropdown__list > .nav__item.parent > .nav__link[href="#"] {
      pointer-events: none; }
  .header__menu--mobile .nav__list--primary > .nav__item > .nav__dropdown > .nav__dropdown__list > .nav__item.parent + .nav__item.parent {
    padding-top: 15px; }
  .header__menu--mobile .nav__list--primary > .nav__item.slide-in > .nav__dropdown,
  .header__menu--mobile .nav__list--primary > .nav__item--expanded > .nav__dropdown {
    display: block;
    position: absolute;
    min-height: 100%;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    padding-bottom: 30px;
    background: white;
    overflow: scroll;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    .header__menu--mobile .nav__list--primary > .nav__item.slide-in > .nav__dropdown::-webkit-scrollbar,
    .header__menu--mobile .nav__list--primary > .nav__item--expanded > .nav__dropdown::-webkit-scrollbar {
      display: none; }
    .header__menu--mobile .nav__list--primary > .nav__item.slide-in > .nav__dropdown .nav__dropdown,
    .header__menu--mobile .nav__list--primary > .nav__item--expanded > .nav__dropdown .nav__dropdown {
      display: block; }
    .header__menu--mobile .nav__list--primary > .nav__item.slide-in > .nav__dropdown .nav__arrow,
    .header__menu--mobile .nav__list--primary > .nav__item--expanded > .nav__dropdown .nav__arrow {
      display: none; }
  .header__menu--mobile .nav__list--primary > .nav__item.slide-in > .nav__dropdown,
  .header__menu--mobile .nav__list--primary > .nav__item--expanded > .nav__dropdown {
    display: block; }
  .header__menu--mobile .nav__list--primary > .nav__item.slide-in > .nav__dropdown {
    animation-name: slideInLeft; }
  .header__menu--mobile .nav__list--primary > .nav__item.slide-out > .nav__dropdown {
    animation-name: slideOutLeft; }
  .header__menu--mobile .nav__list--primary > .nav__item > .nav__dropdown > .nav__dropdown__list > .nav__item.parent > .nav__link,
  .header__menu--mobile .nav__item--title > .nav__link {
    margin-bottom: 5px;
    padding-top: 6px;
    font-size: .8rem !important;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    color: green;
    color: #000; }
    .header__menu--mobile .nav__list--primary > .nav__item > .nav__dropdown > .nav__dropdown__list > .nav__item.parent > .nav__link[href="#"],
    .header__menu--mobile .nav__item--title > .nav__link[href="#"] {
      pointer-events: none;
      opacity: 1; }
  .header__menu--mobile .nav__item--back {
    cursor: pointer;
    margin: 0 0 9px 0;
    padding: 0 0 13px 0;
    border-bottom: 1px solid #666666;
    text-transform: uppercase;
    color: #666666; }
    .header__menu--mobile .nav__item--back .nav__item__back {
      letter-spacing: .5px; }
      .header__menu--mobile .nav__item--back .nav__item__back > * {
        display: inline-block;
        vertical-align: middle; }
      .header__menu--mobile .nav__item--back .nav__item__back > svg {
        margin-top: 2px;
        margin-right: 8px; }
  .header__menu--mobile .nav__item--mens-bags .nav__dropdown__cta {
    display: none; }
  .header__menu--mobile .nav__list > .nav__item {
    display: block;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
    line-height: 1.3; }
    .header__menu--mobile .nav__list > .nav__item + .nav__item {
      border-top: 0; }
  .header__menu--mobile .nav__link {
    display: block;
    width: 100%;
    font-size: .8rem;
    letter-spacing: 0.5px;
    line-height: 1.3; }
    .header__menu--mobile .nav__link > .nav__arrow {
      float: right; }
  .header__menu--mobile .nav__list--primary > .nav__item > .nav__link {
    padding-top: 15px;
    padding-bottom: 13px;
    text-transform: uppercase; }
  .header__menu--mobile .nav__dropdown {
    display: none;
    animation-duration: .2s;
    animation-fill-mode: both; }
    .header__menu--mobile .nav__dropdown .nav__link {
      padding-top: 4px;
      padding-bottom: 4px;
      font-size: .88rem; }
    .header__menu--mobile .nav__dropdown > .nav__dropdown__list > .nav__item--shop-all {
      padding-top: 0;
      margin-top: -4px; }
  .header__menu--mobile .nav__dropdown__cta {
    margin-top: 10px; }
    .header__menu--mobile .nav__dropdown__cta .btn--black {
      color: white; }

.header__overlay,
.header__close {
  display: none;
  z-index: 1000; }
  .site-header.showMobile.main-menu--expanded .header__overlay, .site-header.showMobile.main-menu--expanded
  .header__close {
    display: block; }

.header__close {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer; }
  .header__close svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #fff; }

.header__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  animation-duration: .2s;
  animation-fill-mode: both; }
  .header__overlay.fade-in {
    animation-name: fadeIn; }
  .header__overlay.fade-out {
    animation-name: fadeOut; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }

  100% {
    transform: translate3d(0, 0, 0); } }

@keyframes slideOutLeft {
  from {
    display: block;
    transform: translate3d(0, 0, 0);
    visibility: visible; }

  100% {
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: visible; }

  100% {
    opacity: 1; } }

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible; }

  100% {
    opacity: 0; } }

.dropdown-image__item {
  display: inline-block;
  position: relative;
  margin: 0 7.5px 15px;
  vertical-align: top; }
  @media only screen and (min-width: 1200px) {
    .dropdown-image__item {
      margin: 0 15px 30px; } }

.dropdown-image__link {
  display: block;
  text-decoration: none; }

.dropdown-image__image {
  width: 208px;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .dropdown-image__image[data-size="2x3"] {
    width: 160px;
    padding-bottom: 130%; }
  .dropdown-image__image[data-size="3x2"] {
    width: 297px;
    padding-bottom: 70%; }

.dropdown-image__title {
  position: absolute;
  bottom: 5px;
  left: 5px;
  margin: 0;
  font-size: .8em;
  font-style: italic;
  border-bottom: 1px solid;
  line-height: 1;
  transition: .15s bottom ease-in-out; }
  .dropdown-image__link:active .dropdown-image__title, .dropdown-image__link:focus .dropdown-image__title, .dropdown-image__link:hover .dropdown-image__title {
    bottom: 7px; }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav__list {
  cursor: default;
  margin-bottom: 0px; }
  .nav__list ul {
    margin: 0; }
  .nav__list li {
    margin: 0;
    display: block; }
  .nav__list a {
    text-decoration: none;
    color: #666666; }
    .nav__list a:hover, .nav__list a:active, .nav__list a:focus, .nav__list a.nav-focus {
      color: black; }
    .nav__list a:focus:active {
      transform: translate(0px, 1px); }
  .nav__list .nav__item__back svg,
  .nav__list .nav__link__icon svg {
    fill: #666666; }
  .nav--desktop .nav__list > li > a.nav__link .nav__link__text {
    position: relative;
    display: inline-block; }
    .nav--desktop .nav__list > li > a.nav__link .nav__link__text:after {
      content: "";
      position: absolute;
      top: 100%;
      right: auto;
      bottom: auto;
      left: 50%;
      width: 15px;
      height: 1px;
      background: #000;
      -webkit-transform: translateX(-50%) translateY(7.5px);
      transform: translateX(-50%) translateY(7.5px);
      -webkit-transition: .2s opacity ease-in-out;
      transition: .2s opacity ease-in-out;
      opacity: 0; }
  .nav--desktop .nav__list > li.hover > a .nav__link__text:after,
  .nav--desktop .nav__list > li:hover > a .nav__link__text:after,
  .nav--desktop .nav__list > li > a:hover .nav__link__text:after {
    opacity: 1; }

.nav__item--shop-all {
  padding-top: 4px; }
  .nav__item--shop-all > .nav__link > span {
    display: inline-block;
    vertical-align: middle; }
  .nav__item--shop-all > .nav__link .nav__link__icon {
    transition: .2s transform ease-in-out;
    transform: translateX(0);
    margin-left: 5px;
    padding-top: 1px; }
  .nav__item--shop-all > .nav__link svg {
    display: block; }
  .nav__item--shop-all > .nav__link:active .nav__link__icon, .nav__item--shop-all > .nav__link:focus .nav__link__icon, .nav__item--shop-all > .nav__link:hover .nav__link__icon {
    transform: translateX(2px); }
  .nav__item--shop-all > .nav__link:active svg, .nav__item--shop-all > .nav__link:focus svg, .nav__item--shop-all > .nav__link:hover svg {
    fill: #000; }

.nav__dropdown {
  background-color: white; }

/*================ Large / Small Display Logic ================*/
@media screen and (max-width: 768px) {
  .nav--mobile {
    display: block; }

  .nav--desktop {
    position: absolute;
    left: -9999px; } }
@media screen and (min-width: 768px) {
  .nav--desktop {
    position: static; }

  .nav--mobile {
    display: none; } }
.showMobile .nav--mobile {
  display: block; }
.showMobile .nav--desktop {
  position: absolute;
  left: -9999px; }

.showDesktop .nav--desktop {
  position: relative;
  position: static; }
.showDesktop .nav--mobile {
  display: none; }

/*============================================================================
  #Small Meganav
==============================================================================*/
.nav--mobile .logo-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 120px; }
.nav--mobile .header-logo {
  margin: 0;
  text-align: center; }
  .nav--mobile .header-logo a {
    display: block;
    height: auto;
    padding: 15px 0;
    line-height: normal;
    text-align: center; }
.nav--mobile .mobile-wrapper {
  *zoom: 1;
  position: relative; }
  .nav--mobile .mobile-wrapper::after {
    content: '';
    display: table;
    clear: both; }
.nav--mobile .header-hamburger,
.nav--mobile .header-cart {
  position: absolute;
  top: 50%;
  z-index: 1000; }
.nav--mobile .header-hamburger {
  width: 20px;
  height: 25px;
  margin-top: -12px; }
.nav--mobile .header-cart {
  width: auto;
  height: auto;
  right: 0;
  margin-top: -12px; }
  .nav--mobile .header-cart .CartToggle {
    display: block; }
  .nav--mobile .header-cart .cartIcon {
    display: block;
    width: 18px; }
    .nav--mobile .header-cart .cartIcon svg {
      display: block;
      width: 100%;
      height: auto; }
  .nav--mobile .header-cart .cartCount {
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: .76em;
    font-weight: 700;
    text-align: center;
    color: #666666;
    pointer-events: none; }

/*============================================================================
  #Large Meganav
==============================================================================*/
.nav--desktop {
  display: block;
  width: 100%;
  /*================ Large Dropdown w/ images ================*/
  /*================ Large Dropdown ================*/ }
  .nav--desktop .header-logo {
    margin-bottom: 0; }
  .nav--desktop .header-logo-svg {
    width: 100px; }
  .nav--desktop .logo-wrapper,
  .nav--desktop .mobile-wrapper {
    float: none;
    display: table-cell;
    vertical-align: middle; }
  .nav--desktop .header-search .header-search__icon svg {
    margin-top: -8px; }
  .nav--desktop .nav__arrow {
    display: none !important; }
  .nav--desktop .header__menu,
  .nav--desktop .mobile-wrapper {
    display: block;
    width: 33.33%;
    float: left; }
  .nav--desktop .header__menu,
  .nav--desktop .header__menu--right {
    text-align: right; }
  .nav--desktop .header__menu--left {
    text-align: left; }
  .nav--desktop .header__menu > ul > li > a {
    padding-top: 27px;
    padding-bottom: 27px; }
  .nav--desktop .nav__list {
    font-size: 1.1em;
    display: inline-block; }
    .nav--desktop .nav__list > li {
      display: inline-block; }
      .nav--desktop .nav__list > li > a {
        display: block;
        margin-right: 15px;
        margin-left: 15px;
        white-space: nowrap;
        font-family: "Gill Sans Nova W07";
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.8em;
        font-family: "Gill Sans Nova W01", sans-serif;
        font-weight: 600;
        font-size: .8rem;
        letter-spacing: .08rem; }
  .nav--desktop .nav__list--right {
    margin-right: -15px; }
  .nav--desktop .nav__list--left {
    margin-left: -15px; }
  .nav--desktop .nav__item--womens-handbags {
    width: 66.66% !important; }
    .nav--desktop .nav__item--womens-handbags .nav__dropdown__list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      width: 100%; }
      .nav--desktop .nav__item--womens-handbags .nav__dropdown__list > .nav__item {
        width: 50%; }
  .nav--desktop .nav__item--mens-bags,
  .nav--desktop .nav__item--mens-handbags {
    width: 33.33% !important; }
  .nav--desktop .nav__dropdown {
    text-align: left; }
    .nav--desktop .nav__dropdown li {
      padding-top: 7.5px; }
  .nav--desktop .mobile-wrapper .logo-wrapper {
    display: block;
    max-width: 100%; }
  .nav--desktop .mobile-wrapper .header-logo {
    text-align: center; }
    .nav--desktop .mobile-wrapper .header-logo a {
      display: block;
      padding: 27px 0; }
    .nav--desktop .mobile-wrapper .header-logo img {
      display: block;
      margin: 0 auto; }
  .nav--desktop .grandparent {
    /* catch the cast where a grandparent has a child */ }
    .nav--desktop .grandparent > .nav__dropdown {
      display: none;
      position: absolute;
      width: 100%;
      left: 0;
      margin: 0;
      z-index: 5000;
      background-color: white;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); }
    .nav--desktop .grandparent.hover > .nav__dropdown {
      display: block; }
    .nav--desktop .grandparent > .nav__dropdown > .nav__dropdown__list {
      max-width: 1180px;
      margin: 0 auto;
      padding: 10px 30px 20px 30px;
      *zoom: 1; }
      .nav--desktop .grandparent > .nav__dropdown > .nav__dropdown__list::after {
        content: '';
        display: table;
        clear: both; }
    .nav--desktop .grandparent > .nav__dropdown > .nav__dropdown__list > .parent > a {
      display: inline-block;
      position: relative;
      padding-top: 5px;
      padding-bottom: 5px; }
      .nav--desktop .grandparent > .nav__dropdown > .nav__dropdown__list > .parent > a[href="#"] {
        pointer-events: none;
        opacity: 1; }
    .nav--desktop .grandparent .parent .child a {
      letter-spacing: .01em; }
    .nav--desktop .grandparent > .nav__dropdown > ul > .parent,
    .nav--desktop .grandparent > .nav__dropdown > ul > .child {
      float: left;
      min-height: 1px;
      padding-top: 0px;
      vertical-align: top;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      .nav--desktop .grandparent > .nav__dropdown > ul > .parent > a,
      .nav--desktop .grandparent > .nav__dropdown > ul > .child > a {
        font-family: "Gill Sans Nova W07";
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.8em;
        font-family: "Gill Sans Nova W01", sans-serif;
        font-weight: 600;
        letter-spacing: .08rem; }
    .nav--desktop .grandparent.kids-2 > .nav__dropdown > ul > li, .nav--desktop .grandparent.kids-1 > .nav__dropdown > ul > li {
      width: 50%; }
      .nav--desktop .grandparent.kids-2 > .nav__dropdown > ul > li:nth-child(2n+1), .nav--desktop .grandparent.kids-1 > .nav__dropdown > ul > li:nth-child(2n+1) {
        clear: both; }
    .nav--desktop .grandparent.kids-3 > .nav__dropdown > ul > li, .nav--desktop .grandparent.kids-6 > .nav__dropdown > ul > li, .nav--desktop .grandparent.kids-9 > .nav__dropdown > ul > li {
      width: 33.333%; }
      .nav--desktop .grandparent.kids-3 > .nav__dropdown > ul > li:nth-child(3n+1), .nav--desktop .grandparent.kids-6 > .nav__dropdown > ul > li:nth-child(3n+1), .nav--desktop .grandparent.kids-9 > .nav__dropdown > ul > li:nth-child(3n+1) {
        clear: both; }
    .nav--desktop .grandparent.kids-4 > .nav__dropdown > ul > li, .nav--desktop .grandparent.kids-7 > .nav__dropdown > ul > li, .nav--desktop .grandparent.kids-8 > .nav__dropdown > ul > li {
      width: 25%; }
      .nav--desktop .grandparent.kids-4 > .nav__dropdown > ul > li:nth-child(4n+1), .nav--desktop .grandparent.kids-7 > .nav__dropdown > ul > li:nth-child(4n+1), .nav--desktop .grandparent.kids-8 > .nav__dropdown > ul > li:nth-child(4n+1) {
        clear: both; }
    .nav--desktop .grandparent.kids-5 > .nav__dropdown > ul > li, .nav--desktop .grandparent.kids-10 > .nav__dropdown > ul > li {
      width: 20%; }
      .nav--desktop .grandparent.kids-5 > .nav__dropdown > ul > li:nth-child(5n+1), .nav--desktop .grandparent.kids-10 > .nav__dropdown > ul > li:nth-child(5n+1) {
        clear: both; }
  .nav--desktop .grandparent > .nav__dropdown[data-has-images="true"] > .nav__dropdown__list {
    width: 50%;
    max-width: 590px;
    margin: 0 auto;
    padding: 10px 30px 20px 30px;
    float: left; }
  .nav--desktop .grandparent > .nav__dropdown[data-has-images="true"] > .nav__dropdown__images {
    width: 50%;
    max-width: 50%;
    margin: 0 auto;
    padding: 10px 25px 20px 0;
    float: right; }
  .nav--desktop .grandparent > .nav__dropdown[data-has-images="true"] > .nav__dropdown__cta {
    width: 100%;
    max-width: 100%;
    margin: -20px auto 0;
    padding: 0 30px 30px 30px;
    clear: both;
    float: left; }
    .nav--desktop .grandparent > .nav__dropdown[data-has-images="true"] > .nav__dropdown__cta .btn--black {
      color: white; }
  .nav--desktop .nav__list > .parent > .nav__dropdown {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 5000;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    font-family: "Gill Sans Nova W07";
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8em; }
    .nav--desktop .nav__list > .parent > .nav__dropdown > ul > li {
      padding: 0;
      text-align: center; }
      .nav--desktop .nav__list > .parent > .nav__dropdown > ul > li > a {
        font-family: "Gill Sans Nova W01", sans-serif;
        font-weight: 600;
        display: inline-block;
        padding: 1em 2em; }
  .nav--desktop .nav__list > .parent:hover > .nav__dropdown, .nav--desktop .nav__list > .parent.hover > .nav__dropdown {
    display: block; }
  .nav--desktop .nav__list > .parent:first-child > .nav__dropdown {
    margin-left: -30px; }

.cart-text-link .cartCount {
  display: inline-block;
  padding: 0 .18em;
  line-height: 1.4em;
  border-radius: 3px;
  background: #000;
  color: #fff; }
  .cart-text-link .cartCount.hidden-count {
    display: none; }

/* Header overlay */
.header-wrapper.showOverlay:before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  content: "";
  z-index: 111;
  pointer-events: none; }

.rte-block {
  padding: 5rem 0; }

.rte-block--text .card {
  border: 0;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .rte-block--text .card {
      border: 1px solid #dddddd; } }
.article__content .rte-block--text .card {
  border: 0;
  text-align: left; }
.article__content .rte-block--text .card__body {
  padding: 0; }

.rte-block--images {
  padding: 0; }
  .rte-block--images img {
    display: block;
    margin: 0 auto; }

.article__content .rte-block--text, .article__content
.rte-block--double {
  padding: 1rem 0; }
  @media screen and (min-width: 768px) {
    .article__content .rte-block--text .grid__item--left, .article__content
    .rte-block--double .grid__item--left {
      text-align: right; } }

.rte-block--quote {
  padding: 2.5rem 0; }

.rte-block--product-upsell .rte {
  margin-bottom: 3rem; }

.rte-block--shoppable-image {
  padding: 2.5rem 0; }
  .rte-block--shoppable-image .rte ul {
    display: none; }

/*============================================================================
 Gift Cards
==============================================================================*/
/*============================================================================
  #Base Styles
==============================================================================*/
.template-giftcard,
.template-giftcard body {
  background: white; }
  .template-giftcard a,
  .template-giftcard body a {
    text-decoration: none; }

.template-giftcard .wrapper, .template-giftcard .wrapper--wide, .template-giftcard .wrapper--full {
  max-width: 588px; }
  .template-giftcard .wrapper img, .template-giftcard .wrapper--wide img, .template-giftcard .wrapper--full img, .template-giftcard .wrapper object, .template-giftcard .wrapper--wide object, .template-giftcard .wrapper--full object, .template-giftcard .wrapper iframe, .template-giftcard .wrapper--wide iframe, .template-giftcard .wrapper--full iframe {
    max-width: 100%; }

.giftcard-header {
  padding: 60px 0;
  font-size: 1em;
  text-align: center;
  -webkit-animation: fadein 0.5s ease-in-out both 0.4s;
  animation: fadein 0.5s ease-in-out both 0.4s; }

.shop-url {
  display: none; }

.giftcard {
  -webkit-animation: slideup 0.8s ease-in-out;
  animation: slideup 0.8s ease-in-out; }

.giftcard__border {
  background-color: #666666;
  border-radius: 4px;
  border: 1px solid #595959;
  padding: 1em;
  -webkit-animation: container-slide 0.8s ease-in-out;
  animation: container-slide 0.8s ease-in-out; }

.giftcard__content {
  *zoom: 1;
  background-color: #fff;
  color: #999999;
  border: 1px solid #595959;
  border-radius: 3px;
  -webkit-animation: cardslide 0.8s ease-in-out;
  animation: cardslide 0.8s ease-in-out; }
  .giftcard__content::after {
    content: '';
    display: table;
    clear: both; }

.giftcard__header {
  *zoom: 1;
  border-bottom: 1px solid #666666;
  padding: 15px; }
  .giftcard__header::after {
    content: '';
    display: table;
    clear: both; }

.giftcard__title {
  float: left;
  margin-bottom: 0; }

.giftcard__tag {
  display: block;
  float: right;
  background-color: #b3b3b3;
  border: 1px solid transparent;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1; }

.giftcard__tag--active {
  background: transparent;
  color: #999999;
  border: 1px solid #cccccc; }

.giftcard__wrap {
  position: relative;
  margin: 15px 15px 30px; }
  .giftcard__wrap img {
    position: relative;
    display: block;
    border-radius: 10px;
    z-index: 2; }
  .giftcard__wrap:before, .giftcard__wrap:after {
    content: "";
    position: absolute;
    width: 47px;
    height: 47px;
    z-index: 3; }
  .giftcard__wrap:before {
    background: url("//cdn.shopify.com/s/assets/gift-card/corner-top-left-2ba3edcd9e97ba146cd01a8161365c5e.svg") 0 0 no-repeat;
    top: -1px;
    left: -1px; }
  .giftcard__wrap:after {
    background: url("//cdn.shopify.com/s/assets/gift-card/corner-bottom-right-1fb9bf49ff9564325e6b7c0fb0a7ff45.svg") 0 0 no-repeat;
    bottom: -1px;
    right: -1px; }
  .lt-ie9 .giftcard__wrap:before, .lt-ie9 .giftcard__wrap:after {
    display: none; }

.giftcard__code {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
  z-index: 50; }

.giftcard__code--medium {
  font-size: .875em; }

.giftcard__code--small {
  font-size: .75em; }

.giftcard__code__inner {
  display: inline-block;
  vertical-align: baseline;
  background-color: #fff;
  padding: .5em;
  border-radius: 4px;
  max-width: 450px;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); }
  .giftcard__code--small .giftcard__code__inner {
    overflow: auto; }

.giftcard__code__text {
  font-weight: 400;
  font-size: 1.875em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px dashed #666666;
  padding: .4em .5em;
  display: inline-block;
  vertical-align: baseline;
  color: #777;
  line-height: 1; }
  .disabled .giftcard__code__text {
    color: #999;
    text-decoration: line-through; }

.giftcard__amount {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 2.75em;
  line-height: 1.2;
  padding: 15px;
  z-index: 50; }
  .giftcard__amount strong {
    display: block;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1); }

.giftcard__amount--medium {
  font-size: 2em; }

.tooltip {
  display: block;
  position: absolute;
  top: -50%;
  right: 50%;
  margin-top: 16px;
  z-index: 3;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  -webkit-animation: popup 0.5s ease-in-out both 0.7s;
  animation: popup 0.5s ease-in-out both 0.7s; }
  .tooltip:before {
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    bottom: 0;
    width: 0;
    height: 0;
    margin-left: -5px;
    margin-bottom: -5px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 5px solid #333;
    border-top: 5px solid rgba(51, 51, 51, 0.9); }

.tooltip__label {
  display: block;
  position: relative;
  right: -50%;
  border: none;
  border-radius: 4px;
  background: #333;
  background: rgba(51, 51, 51, 0.9);
  min-height: 14px;
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
  line-height: 16px;
  text-shadow: none;
  padding: .5em .75em;
  margin-left: .25em; }
  .tooltip__label small {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #b3b3b3;
    font-size: .875em; }

.giftcard__instructions {
  text-align: center;
  margin: 0 15px 30px; }

.giftcard__actions {
  position: relative;
  border-top: 1px solid #666666;
  padding: 30px 15px;
  text-align: center;
  overflow: hidden; }

.action-link {
  position: absolute;
  left: 15px;
  top: 50%;
  font-size: 0.875em;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #b3b3b3;
  margin-top: -10px; }
  .action-link:hover, .action-link:focus {
    color: #999999; }

.action-link__print {
  display: inline-block;
  vertical-align: baseline;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  margin-right: 5px;
  opacity: 0.25;
  background-image: url("//cdn.shopify.com/s/assets/gift-card/icon-print-164daa1ae32d10d1f9b83ac21b6f2c70.png");
  background-repeat: no-repeat;
  background-position: 0 0; }
  .svg .action-link__print {
    background-image: url("//cdn.shopify.com/s/assets/gift-card/icon-print-6a10b2fb86d223b8c783c9696eaf4c31.svg"); }
  .action-link:hover .action-link__print {
    opacity: 0.4; }

.giftcard__footer {
  text-align: center;
  padding: 60px 0;
  -webkit-animation: fadein 0.5s ease-in-out both 0.4s;
  animation: fadein 0.5s ease-in-out both 0.4s; }

.giftcard__icon {
  width: 45px;
  display: inline-block;
  vertical-align: baseline; }

#QrCode img {
  padding: 30px;
  border: 1px solid #666666;
  border-radius: 4px;
  margin: 0 auto 30px; }

/*============================================================================
  #Media Queries
==============================================================================*/
/*================ Medium-down width ================*/
@media screen and (max-width: 580px) {
  .giftcard {
    font-size: 12px; }

  .giftcard-header {
    padding: 30px 0; }

  .header-logo {
    font-size: 2em; }

  .giftcard__border {
    padding: 15px; }

  .giftcard__actions {
    padding: 15px; }

  .giftcard__actions .btn, .giftcard__actions .btn--secondary, .giftcard__actions input[type="submit"], .giftcard__actions .spr-summary-actions-newreview {
    width: 100%;
    padding-left: 0;
    padding-right: 0; }

  .action-link {
    display: none; } }
/*================ Small width ================*/
@media screen and (max-width: 400px) {
  .giftcard__amount strong {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1); }

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

  .giftcard__code {
    font-size: .75em; }

  .giftcard__code--medium {
    font-size: .65em; }

  .giftcard__code--small {
    font-size: .55em; } }
/*================ Small height ================*/
@media screen and (max-height: 800px) {
  .header-logo img {
    max-height: 90px; } }
/*============================================================================
  #Print Styles
==============================================================================*/
@media print {
  @page {
    margin: 0.5cm; }

  p, h2, .h2, .h2--body, h3, .h3, .h3--body {
    orphans: 3;
    widows: 3; }

  h2, .h2, .h2--body, h3, .h3, .h3--body {
    page-break-after: avoid; }

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

  .giftcard-header {
    padding: 10px 0; }

  .giftcard__content,
  .giftcard__border {
    border: 0 none; }

  .giftcard__actions,
  .giftcard__wrap:before,
  .giftcard__wrap:after,
  .tooltip,
  .add-to-apple-wallet {
    display: none; }

  .giftcard__title {
    float: none;
    text-align: center; }

  .giftcard__code__text {
    color: #555; }

  .shop-url {
    display: block; }

  .logo {
    color: #58686F; } }
/*============================================================================
  #Keyframe Animations
==============================================================================*/
@-webkit-keyframes slideup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px) rotate(10deg); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px); }

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

  100% {
    -webkit-transform: translateY(0) rotate(0deg); } }

@-ms-keyframes slideup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px) rotate(10deg); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px); }

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

  100% {
    -webkit-transform: translateY(0) rotate(0deg); } }

@keyframes slideup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px) rotate(10deg); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px); }

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

  100% {
    -webkit-transform: translateY(0) rotate(0deg); } }

@-webkit-keyframes popup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-10px); }

  80% {
    -webkit-transform: translateY(2px); }

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

@-ms-keyframes popup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-10px); }

  80% {
    -webkit-transform: translateY(2px); }

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

@keyframes popup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-10px); }

  80% {
    -webkit-transform: translateY(2px); }

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

@-webkit-keyframes container-slide {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg); }

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

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

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

@keyframes container-slide {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg); }

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

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

  100% {
    opacity: 100; } }

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

  100% {
    opacity: 100; } }

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

  100% {
    opacity: 100; } }

.card {
  position: relative;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  box-shadow: 0 2px 7px 0 rgba(232, 232, 232, 0.5);
  border: 0; }
  .card:after {
    display: block;
    clear: both;
    content: ""; }

.card__header,
.card__body {
  padding: 15px; }

.card__header__image {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center; }

.card__user-image {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #ccc; }

.card__user-name {
  font-weight: bold;
  color: #000; }

.card__heading {
  margin-bottom: .25em;
  line-height: 1.2em; }
  @media screen and (max-width: 480px) {
    .card__heading {
      font-size: 30px;
      line-height: 1.1em; } }

.card__content p {
  color: #000; }
  .card__content p:last-of-type {
    margin-bottom: 0; }

.card--review .card__header + .card__body {
  padding-top: 0; }
.card--review .card__user-star {
  margin: 15px 0 0; }
@media screen and (max-width: 480px) {
  .card--review .card__user-image {
    margin-top: 18px; } }

.card--column .card__content,
.card--selling-point .card__content,
.card--instagram .card__content {
  margin-bottom: .25em; }
  .card--column .card__content p,
  .card--selling-point .card__content p,
  .card--instagram .card__content p {
    font-size: 13px;
    letter-spacing: 0.33px;
    line-height: 15px; }
    @media screen and (max-width: 480px) {
      .card--column .card__content p,
      .card--selling-point .card__content p,
      .card--instagram .card__content p {
        font-size: 16px;
        line-height: 19px; } }
    .card--column .card__content p:last-of-type,
    .card--selling-point .card__content p:last-of-type,
    .card--instagram .card__content p:last-of-type {
      margin-bottom: 0; }

.card--selling-point {
  /* Tablet only */ }
  @media screen and (min-width: 481px) {
    .card--selling-point {
      background-color: #f8f8f8;
      border-radius: 0;
      box-shadow: none; } }
  .card--selling-point .card__nav {
    margin-top: 2rem; }
  .card--selling-point .card__nav__item + .card__nav__item {
    margin-left: 1em; }
  .card--selling-point .card__nav__btn {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #d8d8d8; }
  .card--selling-point .active .card__nav__btn {
    background-color: #404040; }
  .card--selling-point .card__nav__item {
    display: inline-block; }
  @media screen and (min-width: 481px) {
    .card--selling-point .card__header {
      width: 50%;
      padding: 0;
      float: left; } }
  @media screen and (min-width: 481px) {
    .card--selling-point .card__body {
      position: absolute;
      top: 50%;
      right: 0;
      bottom: auto;
      left: 50%;
      padding: 0 50px;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); } }
  @media screen and (min-width: 481px) {
    .card--selling-point .card__content p {
      font-size: 20px;
      letter-spacing: 0.5px;
      line-height: 1.2em; } }
  @media only screen and (max-width: 768px) and (min-width: 481px) {
    .card--selling-point .card__heading {
      font-size: 24px; }
    .card--selling-point .card__content p {
      font-size: 14px; } }

.card--instagram .card__body {
  min-height: 90px;
  padding-top: 0; }
  @media screen and (min-width: 769px) {
    .card--instagram .card__body {
      min-height: 60px; } }
@media screen and (max-width: 480px) {
  .card--instagram .card__content p {
    font-size: 13px;
    line-height: 15px; } }
.card--instagram .card__link {
  text-decoration: none; }
.card--instagram .card__user-image,
.card--instagram .card__user-name {
  display: inline-block;
  vertical-align: middle; }
.card--instagram .card__user-image {
  width: 25px;
  height: 25px; }
  .card--instagram .card__user-image + .card__user-name {
    margin-left: 5px; }

.card--column .card__header + .card__body {
  padding-top: 10px;
  padding-bottom: 23px; }
@media screen and (min-width: 769px) {
  .card--column {
    box-shadow: none; }
    .card--column .card__content {
      margin-bottom: 15px; }
      .card--column .card__content p {
        font-size: 1.1rem;
        line-height: 1.6; }
    .card--column .text-link {
      font-size: 1.1rem; } }

.card-slider.slick-slider {
  margin-bottom: 0; }
@media screen and (max-width: 768px) {
  .card-slider[data-reveal-next="true"].slick-slider {
    margin-right: -30px;
    margin-left: -30px;
    padding-left: 45px; } }
@media screen and (max-width: 480px) {
  .card-slider[data-reveal-next="true"].slick-slider {
    margin-right: -15px;
    margin-left: -15px;
    padding-left: 30px; } }
@media screen and (max-width: 768px) {
  .card-slider[data-reveal-next="true"] .slick-list {
    padding: 0 10% 0 0; } }
.card-slider .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px 0 rgba(232, 232, 232, 0.5); }
  @media screen and (max-width: 768px) {
    .card-slider .slick-arrow {
      display: none; } }
  .card-slider .slick-arrow:before {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-arrow-left.svg?v=15815435750929069085);
    font-size: 0; }
  .card-slider .slick-arrow.slick-next:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
.card-slider .slick-slide {
  padding: 0 15px; }
.card-slider .slick-dots {
  margin-bottom: 0;
  text-align: center; }
  .card-slider .slick-dots li.slick-active button:before {
    color: #aaa; }
.card-slider[data-slider-type="reviews"].slick-slider, .card-slider[data-slider-type="columns"].slick-slider {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }
@media screen and (min-width: 769px) {
  .card-slider[data-slider-type="product-social-proof"].slick-slider {
    margin-left: -15px;
    margin-right: -15px; } }
@media screen and (min-width: 769px) {
  .card-slider[data-slider-type="product-social-proof"] .slick-slide {
    padding: 15px; } }
@media screen and (min-width: 1280px) {
  .card-slider[data-slider-type="product-social-proof"] .slick-prev {
    left: -40px; } }
@media screen and (min-width: 1280px) {
  .card-slider[data-slider-type="product-social-proof"] .slick-next {
    right: -40px; } }
@media screen and (min-width: 481px) {
  .card-slider[data-slider-type="product-selling-points"].slick-slider {
    margin-left: -30px;
    margin-right: -30px;
    padding: 0; } }
@media screen and (min-width: 769px) {
  .card-slider[data-slider-type="product-selling-points"].slick-slider {
    margin: 0;
    padding: 0; } }
@media screen and (min-width: 481px) {
  .card-slider[data-slider-type="product-selling-points"] .slick-list {
    padding: 0; } }
@media screen and (min-width: 481px) {
  .card-slider[data-slider-type="product-selling-points"] .slick-slide {
    padding: 0; } }
@media screen and (min-width: 481px) {
  .card-slider[data-slider-type="product-selling-points"] .slick-next {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); } }
@media screen and (max-width: 480px) {
  .card-slider[data-slider-type="reviews"] {
    background: white; }
    .card-slider[data-slider-type="reviews"] .card {
      box-shadow: none; } }
.card-slider[data-slider-type="reviews"] .slick-arrow {
  background-color: #f6f3ec; }
.card-slider[data-slider-type="lookbook-block"] .slick-slide {
  padding-right: 0;
  padding-left: 0; }
.card-slider[data-slider-type="lookbook-block"] .slick-prev,
.card-slider[data-slider-type="lookbook-block"] .slick-next {
  margin-top: -70px; }
.card-slider[data-slider-type="lookbook-block"] .slick-prev {
  left: 15px; }
.card-slider[data-slider-type="lookbook-block"] .slick-next {
  right: 15px; }
.card-slider[data-slider-type="lookbook-block"] img {
  width: 100%; }

.product__related .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px 0 rgba(232, 232, 232, 0.5); }
  @media screen and (max-width: 768px) {
    .product__related .slick-arrow {
      display: none; } }
  .product__related .slick-arrow:before {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-arrow-left.svg?v=15815435750929069085);
    font-size: 0; }
  .product__related .slick-arrow.slick-next:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }

/*============================================================================
  #Site Homepage
==============================================================================*/
.template-index .product__related {
  display: none; }

.template-index .main-content {
  padding-bottom: 0px; }

/*================ Spacing ================*/
.homepage-blog,
.homepage-product,
.homepage-instagram,
.homepage-newsletter,
.homepage-collection {
  padding-top: 60px;
  padding-bottom: 60px; }

.homepage-logos {
  padding-top: 30px;
  padding-bottom: 20px; }

.homepage-logos.homepage-logos--tall {
  padding-top: 60px;
  padding-bottom: 60px; }

.homepage-image-block {
  margin-bottom: 10px; }
  .homepage-image-block .image-block-link {
    display: block; }

.adjust--white + .adjust--white .homepage-blog,
.adjust--white + .adjust--white .homepage-logos,
.adjust--white + .adjust--white .homepage-product,
.adjust--white + .adjust--white .homepage-newsletter,
.adjust--white + .adjust--white .homepage-collection,
.adjust--white + .adjust--white .homepage-instagram,
.adjust--light + .adjust--light .homepage-blog,
.adjust--light + .adjust--light .homepage-logos,
.adjust--light + .adjust--light .homepage-product,
.adjust--light + .adjust--light .homepage-newsletter,
.adjust--light + .adjust--light .homepage-collection,
.adjust--light + .adjust--light .homepage-instagram,
.adjust--splash + .adjust--splash .homepage-blog,
.adjust--splash + .adjust--splash .homepage-logos,
.adjust--splash + .adjust--splash .homepage-product,
.adjust--splash + .adjust--splash .homepage-newsletter,
.adjust--splash + .adjust--splash .homepage-collection,
.adjust--splash + .adjust--splash .homepage-instagram,
.adjust--dark + .adjust--dark .homepage-blog,
.adjust--dark + .adjust--dark .homepage-logos,
.adjust--dark + .adjust--dark .homepage-product,
.adjust--dark + .adjust--dark .homepage-newsletter,
.adjust--dark + .adjust--dark .homepage-collection,
.adjust--dark + .adjust--dark .homepage-instagram {
  padding-top: 0px; }

@media screen and (max-width: 480px) {
  .homepage-collection {
    padding-bottom: 15px; } }
.homepage-collection .product-grid-item {
  margin-bottom: 0; }
  .homepage-collection .product-grid-item.slick-slide {
    margin-bottom: 45px; }

/*================ Titles ================*/
.home__title {
  margin-bottom: 15px; }
  @media screen and (max-width: 480px) {
    .home__title {
      font-size: 2em; } }

a .home__title {
  text-decoration: none; }

.homepage-image.homepage--white a .home__title,
.homepage-image.homepage--white a .section-heading,
.homepage-image.homepage--white a .title--flex,
.homepage-image.homepage--white a .content--flex {
  color: #ffffff; }

.homepage-image.homepage--light a .home__title,
.homepage-image.homepage--light a .section-heading,
.homepage-image.homepage--light a .title--flex,
.homepage-image.homepage--light a .content--flex {
  color: #fbfbfb; }

.homepage-image.homepage--splash a .home__title,
.homepage-image.homepage--splash a .section-heading,
.homepage-image.homepage--splash a .title--flex,
.homepage-image.homepage--splash a .content--flex {
  color: black; }

.homepage-image.homepage--dark a .home__title,
.homepage-image.homepage--dark a .section-heading,
.homepage-image.homepage--dark a .title--flex,
.homepage-image.homepage--dark a .content--flex {
  color: #2e3438; }

.homepage--dark .section-heading::after {
  background: #fff; }

/*================ Colors ================*/
.homepage--white {
  background-color: #fff; }

.homepage--light {
  background-color: #fbfbfb; }

.homepage--splash {
  background-color: black; }

.homepage--dark {
  background-color: #2e3438; }

.homepage-product .product-page {
  background-color: transparent; }

.homepage-image.homepage--splash, .color-text.homepage--splash {
  color: black;
  background-color: transparent; }

.homepage-image.homepage--dark, .color-text.homepage--dark {
  color: #2e3438;
  background-color: transparent; }

.homepage-image.homepage--white {
  color: #ffffff;
  background-color: transparent; }

.homepage-image.homepage--light {
  color: #fbfbfb;
  background-color: transparent; }

.color-text.homepage--white, .color-text.homepage--light {
  color: #666666;
  background-color: transparent; }

.homepage--splash,
.homepage--dark {
  color: #fff; }
  .homepage--splash .on-sale,
  .homepage--splash .figcaption a,
  .homepage--splash .js-qty__adjust,
  .homepage--splash .ajaxcart__qty-adjust,
  .homepage--splash .js-qty input[type="text"],
  .homepage--splash .ajaxcart__qty input[type="text"],
  .homepage--splash input, .homepage--splash textarea, .homepage--splash button, .homepage--splash select,
  .homepage--dark .on-sale,
  .homepage--dark .figcaption a,
  .homepage--dark .js-qty__adjust,
  .homepage--dark .ajaxcart__qty-adjust,
  .homepage--dark .js-qty input[type="text"],
  .homepage--dark .ajaxcart__qty input[type="text"],
  .homepage--dark input,
  .homepage--dark textarea,
  .homepage--dark button,
  .homepage--dark select {
    color: #fff; }
  .homepage--splash .on-sale .compare-at,
  .homepage--dark .on-sale .compare-at {
    color: rgba(255, 255, 255, 0.5); }
  .homepage--splash .btn--clear,
  .homepage--dark .btn--clear {
    color: white;
    border: 1px solid white; }
  .homepage--splash .btn--clear.disabled,
  .homepage--dark .btn--clear.disabled {
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.3); }
  .homepage--splash .blog__article,
  .homepage--dark .blog__article {
    background-color: #fff;
    color: #666666;
    border: none; }

.homepage--splash .blog__article .btn--splash {
  background-color: black; }
  .homepage--splash .blog__article .btn--splash:hover {
    background-color: black; }

.homepage-image.homepage--white .btn--clear {
  color: #fff;
  border: 1px solid #fff; }
  .homepage-image.homepage--white .btn--clear:hover, .homepage-image.homepage--white .btn--clear:focus, .homepage-image.homepage--white .btn--clear:active {
    color: #000;
    background-color: #fff; }

.homepage-image.homepage--light .btn--clear {
  color: #fbfbfb;
  border: 1px solid #fbfbfb; }
  .homepage-image.homepage--light .btn--clear:hover, .homepage-image.homepage--light .btn--clear:focus, .homepage-image.homepage--light .btn--clear:active {
    color: #2e3438;
    background-color: #fbfbfb; }

.homepage-image.homepage--splash .btn--clear {
  color: black;
  border: 1px solid black; }
  .homepage-image.homepage--splash .btn--clear:hover, .homepage-image.homepage--splash .btn--clear:focus, .homepage-image.homepage--splash .btn--clear:active {
    color: #ffffff;
    background-color: black; }

.homepage-image.homepage--dark .btn--clear {
  color: #2e3438;
  border: 1px solid #2e3438; }
  .homepage-image.homepage--dark .btn--clear:hover, .homepage-image.homepage--dark .btn--clear:focus, .homepage-image.homepage--dark .btn--clear:active {
    color: #ffffff;
    background-color: #2e3438; }

/*================ Shared Image Classes ================*/
.homepage-image {
  overflow: hidden;
  position: relative; }

.background-size-cover {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1; }

.responsive-wide-image {
  width: 100%;
  display: block; }

.content--centered {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 100;
  max-width: 1120px; }

.content--bottomed {
  position: absolute;
  width: 90%;
  top: auto;
  right: 0;
  bottom: 30px;
  left: 0;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  z-index: 100; }

.ie9 .content--centered {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.use_screen_full {
  height: 100vh; }

.use_screen_three_quarters {
  height: 75vh; }

.use_screen_two_thirds {
  height: 66vh; }

.use_screen_one_half {
  height: 50vh; }

.use_screen_one_third {
  height: 33vh; }

.use_screen_one_fifth {
  height: 20vh; }

.image--flex {
  display: block;
  width: 50%;
  margin: 0 auto; }

.title--flex {
  margin-bottom: 0.5em;
  margin-bottom: 15px; }

.content--flex {
  margin-bottom: 1.5em; }

@media screen and (max-width: 768px) {
  .title--flex {
    font-size: 2em; }

  .content--flex {
    font-size: 1.3em; }

  .content--centered .btn--large {
    padding: 8px 10px;
    font-size: 0.8em; } }
.image-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10; }

.homepage--white .image-overlay,
.homepage--light .image-overlay {
  background-color: #000; }

.homepage--splash .image-overlay,
.homepage--dark .image-overlay {
  background-color: #FFF; }

.image-overlay-0 {
  opacity: 0; }

.image-overlay-5 {
  opacity: 0.05; }

.image-overlay-10 {
  opacity: 0.10; }

.image-overlay-15 {
  opacity: 0.15; }

.image-overlay-20 {
  opacity: 0.20; }

.image-overlay-25 {
  opacity: 0.35; }

.image-overlay-30 {
  opacity: 0.30; }

.image-overlay-35 {
  opacity: 0.35; }

.image-overlay-40 {
  opacity: 0.40; }

.image-overlay-45 {
  opacity: 0.45; }

.image-overlay-50 {
  opacity: 0.50; }

.image-overlay-55 {
  opacity: 0.55; }

.image-overlay-60 {
  opacity: 0.60; }

.image-overlay-65 {
  opacity: 0.65; }

.image-overlay-70 {
  opacity: 0.70; }

.image-overlay-75 {
  opacity: 0.75; }

.image-overlay-80 {
  opacity: 0.80; }

.image-overlay-85 {
  opacity: 0.85; }

.image-overlay-90 {
  opacity: 0.90; }

.image-overlay-95 {
  opacity: 0.95; }

.image-overlay-100 {
  opacity: 1; }

.placeholder-svg {
  fill: #b4b6b9;
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%; }

.homepage-logos .placeholder-svg {
  background-color: #f7f7f7;
  display: block; }

/*================ Video ================*/
.homepage-video__play {
  margin-top: .5em; }

.homepage-video__play {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }
  @media screen and (max-width: 768px) {
    .homepage-video__play .icon-play {
      height: 80px;
      width: 66px;
      background-size: 66px 66px; } }
  .homepage-video__play:hover {
    opacity: 0.75; }
  .homepage-video__play:focus, .homepage-video__play:active {
    outline: none; }

/*=== Hero Scroll ==*/
.index-sections > .shopify-section:not(:first-child) .scroll_icon_wrap {
  display: none; }

.scroll_icon_wrap {
  text-align: center;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400; }
  @media screen and (max-width: 480px) {
    .scroll_icon_wrap {
      display: none; } }

.scroll_link {
  display: block;
  position: absolute;
  text-align: center;
  left: 50%;
  width: 250px;
  margin-left: -125px;
  bottom: 0px;
  padding-bottom: 20px;
  padding-top: 20px;
  height: 60px; }
  .scroll_link:hover .scroll_icon {
    opacity: 1; }
  .scroll_link:focus {
    outline: none; }

.scroll_icon {
  opacity: 0.7;
  position: absolute;
  left: 50%;
  bottom: 20px;
  margin-left: -25px;
  zoom: 50%;
  -moz-transform: scale(0.5); }

.homepage-image .scroll__link {
  position: absolute;
  bottom: 0; }

.bloop {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  animation: bloop 1.8s infinite;
  -webkit-animation: bloop 1.8s infinite; }

@-webkit-keyframes bloop {
  from, 20%, 30%, 40%, 50%, 60%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  15% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-out;
    -webkit-transform: translate3d(0, -12px, 0);
    transform: translate3d(0, -12px, 0); }

  25% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0); }

  35% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-out;
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0); }

  45% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-in;
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0); } }

@keyframes bloop {
  from, 20%, 30%, 40%, 50%, 60%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  15% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-out;
    -webkit-transform: translate3d(0, -12px, 0);
    transform: translate3d(0, -12px, 0); }

  25% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0); }

  35% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-out;
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0); }

  45% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-in;
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0); } }

/*=============== Image Columns ===============*/
.section-homepage-hero .double__block {
  overflow: visible; }
  .section-homepage-hero .double__block > a,
  .section-homepage-hero .double__block img {
    display: block; }
  .section-homepage-hero .double__block > a {
    box-shadow: 0 20px 40px rgba(218, 220, 222, 0);
    -webkit-transition: .2s box-shadow ease-in-out;
    transition: .2s box-shadow ease-in-out; }
    .section-homepage-hero .double__block > a:hover {
      box-shadow: 0 20px 40px rgba(218, 220, 222, 0.7); }
      .section-homepage-hero .double__block > a:hover .btn--white {
        background-color: #f2f2f2;
        color: #000; }
  .section-homepage-hero .double__block:nth-of-type(1) > a {
    margin-bottom: 10px; }
  @media screen and (min-width: 769px) {
    .section-homepage-hero .double__block:nth-of-type(1) > a {
      margin-right: 5px;
      margin-bottom: 0; }
    .section-homepage-hero .double__block:nth-of-type(2) > a {
      margin-left: 5px; } }
.section-homepage-hero .content--bottomed {
  bottom: 4rem; }
  @media screen and (max-width: 481px) {
    .section-homepage-hero .content--bottomed {
      bottom: 1.9rem; } }
.section-homepage-hero:after {
  content: "";
  display: block;
  clear: both; }

.section-homepage-double {
  background-color: #fbfbfb; }
  .section-homepage-double + .section-homepage-double {
    padding-top: 0; }
  .section-homepage-double .homepage-double {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto; }
  .section-homepage-double .double__block--image .background-size-cover {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    background-color: #fafafa;
    overflow: hidden;
    z-index: 1; }
  @media screen and (max-width: 768px) {
    .section-homepage-double .double__block--text .content--centered {
      position: relative;
      transform: none;
      top: auto;
      right: auto;
      left: auto; }
      .section-homepage-double .double__block--text .content--centered > div {
        padding: 2.4rem 0; } }
  @media screen and (min-width: 769px) {
    .section-homepage-double .double__block--text {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 50%; }
      .section-homepage-double .double__block--text .content--centered {
        width: 370px;
        max-width: 100%; } }
  @media screen and (min-width: 769px) {
    .section-homepage-double .grid--rev > .double__block--text {
      right: 50%;
      left: auto; } }
  @media screen and (min-width: 769px) {
    .section-homepage-double .section-heading {
      font-size: 2.6em; } }
  .section-homepage-double .rte--homepage {
    margin-bottom: 1.8rem; }
  .section-homepage-double:after {
    display: block;
    clear: both;
    content: ""; }

.homepage-double {
  background-color: white; }
  .homepage-double form {
    margin-bottom: 0; }

.double__block {
  position: relative;
  overflow: hidden; }
  .double__block .section-heading {
    text-align: inherit;
    margin-bottom: 0.5rem; }
  .double__block .content--centered {
    max-width: 530px; }
  .double__block .text-left .section-heading::after {
    right: initial; }
  .double__block .text-right .section-heading::after {
    left: initial; }
  .double__block .block__title {
    font-size: 2em; }
    @media screen and (min-width: 769px) {
      .double__block .block__title {
        font-size: 2.2em; } }
  .double__block .rte {
    margin-bottom: 0; }
    .double__block .rte p {
      font-size: 1.2em; }
    .double__block .rte p:last-of-type {
      margin-bottom: 0; }
    .double__block .rte + * {
      margin-top: 30px; }

.homepage-double .double__block {
  height: 100%; }

.rte--homepage {
  font-size: 1.2em;
  margin-bottom: 0; }

@media screen and (max-width: 480px) {
  .homepage-double.use_screen_full {
    height: auto; }
    .homepage-double.use_screen_full .double__block {
      height: 100vh; }
  .homepage-double.use_screen_three_quarters {
    height: auto; }
    .homepage-double.use_screen_three_quarters .double__block {
      height: 66vh; }
  .homepage-double.use_screen_two_thirds {
    height: auto; }
    .homepage-double.use_screen_two_thirds .double__block {
      height: 66vh; }
  .homepage-double.use_screen_one_half {
    height: auto; }
    .homepage-double.use_screen_one_half .double__block {
      height: 50vh; }
  .homepage-double.use_screen_one_third {
    height: auto; }
    .homepage-double.use_screen_one_third .double__block {
      height: 33vh; }
  .homepage-double.use_screen_one_fifth {
    height: auto; }
    .homepage-double.use_screen_one_fifth .double__block {
      height: 20vh; } }
@media screen and (max-width: 768px) {
  .homepage-double.use_screen_full .double__block--text {
    height: auto;
    padding: 2.5rem 0; }
    .homepage-double.use_screen_full .double__block--text .content--centered {
      position: relative;
      top: auto;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; } }

/*================ Newsletter ================*/
.homepage-newsletter .newsletter-form .input-group-field {
  color: #666666; }

/*================ Instagram ================*/
.instagram--square {
  position: absolute;
  display: block;
  border-width: 1px;
  border-style: solid;
  background-size: cover;
  background-position: center center;
  overflow: hidden; }

@media only screen and (max-width: 480px) {
  .instagram--square.small--one-half {
    width: 50%;
    height: 50vw; }

  .instagram--square.small--one-third {
    width: 33.333%;
    height: 33.333vw; }

  .instagram--square.small--one-quarter {
    width: 25%;
    height: 25vw; }

  .instagram--square.small--one-fifth {
    width: 20%;
    height: 20vw; }

  .instagram--square.small--one-sixth {
    width: 16.666%;
    height: 16.666vw; } }
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .instagram--square.medium--one-half {
    width: 50%;
    height: 50vw; }

  .instagram--square.medium--one-third {
    width: 33.333%;
    height: 33.333vw; }

  .instagram--square.medium--one-quarter {
    width: 25%;
    height: 25vw; }

  .instagram--square.medium--one-fifth {
    width: 20%;
    height: 20vw; }

  .instagram--square.medium--one-sixth {
    width: 16.666%;
    height: 16.666vw; } }
@media only screen and (max-width: 768px) {
  .instagram--square.medium-down--one-half {
    width: 50%;
    height: 50vw; }

  .instagram--square.medium-down--one-third {
    width: 33.333%;
    height: 33.333vw; }

  .instagram--square.medium-down--one-quarter {
    width: 25%;
    height: 25vw; }

  .instagram--square.medium-down--one-fifth {
    width: 20%;
    height: 20vw; }

  .instagram--square.medium-down--one-sixth {
    width: 16.666%;
    height: 16.666vw; } }
@media only screen and (min-width: 769px) {
  .instagram--square.large--one-half {
    width: 50%;
    height: 50vw; }

  .instagram--square.large--one-third {
    width: 33.333%;
    height: 33.333vw; }

  .instagram--square.large--one-quarter {
    width: 25%;
    height: 25vw; }

  .instagram--square.large--one-fifth {
    width: 20%;
    height: 20vw; }

  .instagram--square.large--one-sixth {
    width: 16.666%;
    height: 16.666vw; } }
.homepage--dark .instagram--square {
  border-color: #2e3438; }

.homepage--light .instagram--square {
  border-color: #fbfbfb; }

.homepage--splash .instagram--square {
  border-color: black; }

.homepage--white .instagram--square {
  border-color: #fff; }

.homepage-instagram .grid-uniform {
  margin-left: 0; }
.homepage-instagram a {
  position: relative;
  color: white;
  text-align: center;
  font-size: 2em; }
.homepage-instagram a:hover::after {
  content: '';
  background-color: black;
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100; }
.homepage-instagram .icon {
  position: absolute;
  z-index: 200;
  bottom: 5px;
  width: 27px;
  height: 27px;
  left: 50%;
  margin-left: -12px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
.homepage-instagram a:hover .icon {
  opacity: 1;
  bottom: 47%; }
.homepage-instagram a img {
  display: block; }

.homepage-instagram .placeholder-svg {
  vertical-align: middle;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff; }

/*================ Logos ================*/
.logo-bar {
  text-align: center;
  margin-top: -10px; }

.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  margin: 10px 30px; }
  @media screen and (max-width: 480px) {
    .logo-bar__item {
      max-width: 110px;
      margin: 10px 10px; } }

.logo-bar__image {
  display: block;
  margin: 0 auto;
  max-width: 100%; }

.logo-bar__link {
  display: block; }

/*============================================================================
  # Home slideshow
==============================================================================*/
.slideshow__slide {
  position: relative; }

.slideshow__slide img {
  max-width: 100%; }

.use_screen_full .slideshow__slide {
  height: 100vh; }

.use_screen_three_quarters .slideshow__slide {
  height: 75vh; }

.use_screen_two_thirds .slideshow__slide {
  height: 66vh; }

.use_screen_one_half .slideshow__slide {
  height: 50vh; }

.use_screen_one_third .slideshow__slide {
  height: 33vh; }

.use_screen_one_fifth .slideshow__slide {
  height: 20vh; }

.background-size-cover--slide {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1; }

.button-image-slide {
  display: block;
  width: 100%; }
  .button-image-slide:focus {
    outline: 0;
    opacity: 0.8;
    padding-top: 2px; }

.homepage--white.slick-arrow:before {
  color: #ffffff; }

.homepage--light.slick-arrow:before {
  color: #fbfbfb; }

.homepage--splash.slick-arrow:before {
  color: black; }

.homepage--dark.slick-arrow:before {
  color: #2e3438; }

.slideshow__slide .content--centered {
  padding-left: 40px;
  padding-right: 40px; }

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

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer-wrapper {
  position: relative;
  background-color: white;
  color: #666666;
  text-align: left; }
  .site-footer-wrapper hr {
    border-top: 1px solid rgba(102, 102, 102, 0.5); }
  .site-footer-wrapper a {
    color: #666666; }
    .site-footer-wrapper a:hover {
      color: rgba(102, 102, 102, 0.9); }

.site-footer {
  padding-top: 40px;
  padding-bottom: 30px; }

.footer__heading {
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08rem;
  text-transform: uppercase;
  color: #000; }

.footer__heading {
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 20px; }
  .footer__heading:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 15px;
    background: #b2b2b2;
    height: 1px;
    bottom: auto;
    display: block; }

.footer__nav .footer__nav__item {
  margin: 0 0 5px 0;
  font-size: .95rem;
  letter-spacing: .015rem; }
.footer__nav .footer__nav__link {
  text-decoration: none; }
  .footer__nav .footer__nav__link:hover, .footer__nav .footer__nav__link:active, .footer__nav .footer__nav__link:focus {
    text-decoration: underline; }

.footer-grid-item--newsletter {
  position: relative; }
  .footer-grid-item--newsletter p {
    font-style: italic; }

.footer__cf-badge {
  margin-bottom: 0; }

/*============================================================================
  #Product and Article Grid
==============================================================================*/
.grid--products .slick-prev,
.grid--products .slick-next {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px); }
.grid--products .slick-prev {
  left: 15px; }
.grid--products .slick-next {
  right: 15px; }

.grid__header {
  position: relative; }

.grid__header__link {
  display: block; }

.grid__header__image {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center; }

.grid__body {
  position: relative;
  padding: 15px; }
  .grid__body a {
    text-decoration: none; }

.grid__title {
  color: #000; }

.grid__title--product {
  font-family: "Gill Sans Nova W07", sans-serif;
  font-weight: 300;
  font-size: 1.05em;
  letter-spacing: .02em; }

.grid__title--article {
  margin-bottom: .5em; }

.grid__price {
  margin-bottom: 0;
  letter-spacing: .02em;
  color: #666666;
  font-size: 1em; }
  .grid__price .price.on-sale {
    margin-right: .5em;
    color: #ff5b5b;
    font-size: 0.85em; }
    @media screen and (max-width: 481px) {
      .grid__price .price.on-sale {
        display: block; } }
  .grid__price .compare-at + .price.on-sale {
    margin-right: 0;
    margin-left: .5em; }

.grid__link {
  display: block; }

.grid__image-wrap {
  display: block;
  position: relative; }
  .grid__image-wrap img {
    display: block;
    width: 100%;
    height: auto; }

.grid__content {
  margin: 0; }

.grid__review-badges {
  margin: 15px 0 0; }

.grid__reviews-badge {
  padding-top: 5px; }
  .grid__reviews-badge .stamped-badge-caption {
    display: none; }
  .grid__reviews-badge .stamped-badge-caption[data-reviews][data-label][data-version="2"]:before {
    content: "(" !important; }
  .grid__reviews-badge .stamped-badge-caption[data-reviews][data-label][data-version="2"]:after {
    content: ")" !important; }
  .grid__reviews-badge .stamped-badge-caption[data-reviews][data-label][data-version="2"] > span {
    display: none !important; }

.grid__personalization-badge .personalization-badge > * {
  display: inline-block;
  margin: 0;
  vertical-align: middle; }
.grid__personalization-badge .personalization-badge__graphic {
  padding: 3px;
  font-size: 1.1em;
  line-height: 1;
  border: 1px solid black;
  color: black; }
.grid__personalization-badge .personalization-badge__text {
  margin-left: 5px;
  font-size: .9em;
  color: black;
  text-transform: uppercase; }

.grid__form.hide-variant-selectors .product__select {
  display: none; }

.article-grid-item,
.product-grid-item {
  display: block;
  position: relative;
  margin-bottom: 30px; }

.grid__item--card {
  margin-bottom: 30px; }
  .grid__item--card .grid__wrap {
    box-shadow: 1px 1px 30px rgba(0, 0, 0, 0);
    -webkit-transition: .4s box-shadow ease-in-out;
    transition: .4s box-shadow ease-in-out;
    opacity: 1; }
  .grid__item--card .grid__header {
    background-color: #fff; }
  .grid__item--card .grid__body {
    padding: 15px;
    background-color: #fff; }
  .grid__item--card .grid__footer {
    -webkit-transition: .4s opacity ease-in-out;
    transition: .4s opacity ease-in-out;
    opacity: 0; }
    .grid__item--card .grid__footer button[type="submit"] {
      padding-right: 10px;
      padding-left: 10px; }
  .grid__item--card.hover .grid__wrap, .grid__item--card:hover .grid__wrap {
    box-shadow: 0 20px 40px rgba(218, 220, 222, 0.7);
    opacity: 1; }
  .grid__item--card.hover .grid__footer, .grid__item--card:hover .grid__footer {
    opacity: 1; }
  .grid__item--card .sticker {
    display: none;
    top: 15px;
    right: 15px; }

.grid__item--form .select2-container.select2-container--linjer:not(.select2-container--open) {
  width: 100% !important; }
.grid__item--form .selector-wrapper select {
  margin-bottom: 0; }
.grid__item--form .add-to-cart__text,
.grid__item--form .add-to-cart__text--loading {
  font-size: .8em; }

.product-grid-item {
  text-align: center; }
  .product-grid-item .grid__body {
    padding: 15px 0; }
  .product-grid-item.hover .grid__wrap, .product-grid-item:hover .grid__wrap {
    opacity: 0.7; }
  .product-grid-item.grid__item--card .grid__body {
    padding: 15px 0 25px; }
  .product-grid-item.grid__item--card.hover .grid__wrap, .product-grid-item.grid__item--card:hover .grid__wrap {
    opacity: 1; }
  .product-grid-item.grid__item--form .grid__body {
    padding: 15px 0; }
  .product-grid-item.fave .grid__image-wrap:before, .product-grid-item.fave .grid__image-wrap:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    pointer-events: none;
    z-index: 1;
    width: 56px;
    height: 56px; }
  .product-grid-item.fave .grid__image-wrap:before {
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-fave_150x.png?v=13387587035709416665);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent; }
  .product-grid-item.fave .grid__image-wrap:after {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "Fave";
    height: auto;
    top: 24px;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.02143em;
    line-height: normal; }

.product-grid-item--alternate .grid__body {
  padding-top: 0; }
.product-grid-item--alternate .grid__swatch {
  margin: -57px auto 0; }
.product-grid-item--alternate .grid__title {
  padding-bottom: 0; }
.product-grid-item--alternate .grid__price {
  font-family: "Adobe Caslon W08", serif;
  font-size: 1.42857em;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: .02em;
  color: black; }
.product-grid-item--alternate.hover .grid__wrap, .product-grid-item--alternate:hover .grid__wrap {
  opacity: 1; }
.product-grid-item--alternate .swatch-wrapper {
  display: inline-block;
  margin: 0;
  padding: 10px;
  background: white; }
  .product-grid-item--alternate .swatch-wrapper .sticker,
  .product-grid-item--alternate .swatch-wrapper .swatch__label {
    display: none; }
  .product-grid-item--alternate .swatch-wrapper .swatch__list {
    width: 100%;
    margin: 0; }
  .product-grid-item--alternate .swatch-wrapper .swatch__link {
    border: 1px solid #fafafa;
    border-radius: 50%;
    overflow: hidden;
    background: #fafafa; }
    .product-grid-item--alternate .swatch-wrapper .swatch__link[data-value="Black"] {
      background: #33312f; }
    .product-grid-item--alternate .swatch-wrapper .swatch__link[data-value="Mocha"] {
      background: #533f38; }
    .product-grid-item--alternate .swatch-wrapper .swatch__link[data-value="Burgundy"] {
      background: #865862; }
    .product-grid-item--alternate .swatch-wrapper .swatch__link[data-value="Navy"] {
      background: #4c5866; }
    .product-grid-item--alternate .swatch-wrapper .swatch__link[data-value="Desert"] {
      background: #703c1a; }
  .product-grid-item--alternate .swatch-wrapper .swatch__item.active .swatch__link {
    border: 1px solid #000;
    border: 1px solid #fafafa; }
  .product-grid-item--alternate .swatch-wrapper .swatch__image {
    width: 30px;
    height: 30px;
    visibility: hidden; }

.product-grid-item--double .grid__link {
  position: relative; }
@media screen and (min-width: 769px) {
  .product-grid-item--double:hover .grid__wrap, .product-grid-item--double.hover .grid__wrap {
    opacity: 1; }
  .product-grid-item--double:hover .grid__image-wrap--secondary, .product-grid-item--double.hover .grid__image-wrap--secondary {
    opacity: 1; } }

.grid__image-wrap--secondary {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s opacity ease-in-out;
  -moz-transition: 0.2s opacity ease-in-out;
  -ms-transition: 0.2s opacity ease-in-out;
  -o-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  opacity: 0; }

@media screen and (min-width: 480px) {
  .grid__image-wrap--mobile {
    display: none; } }
@media screen and (max-width: 481px) {
  .grid__image-wrap--mobile + .grid__image-wrap {
    display: none; } }

.article-grid-item {
  margin-bottom: 0;
  padding-top: 30px;
  transition: padding .4s ease-in-out; }
  @media screen and (max-width: 769px) {
    .article-grid-item .grid__footer {
      opacity: 1; } }
  @media screen and (min-width: 769px) {
    .article-grid-item {
      padding-top: 50px; } }
  @media screen and (min-width: 769px) {
    .article-grid-item.hover, .article-grid-item:hover {
      padding-top: 10px; } }
  .section-blog-header .article-grid-item {
    padding-top: 0; }
    .section-blog-header .article-grid-item .grid__wrap {
      position: relative; }
    .section-blog-header .article-grid-item .grid__body {
      height: auto !important;
      position: absolute;
      top: auto;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(255, 255, 255, 0.8); }
    .section-blog-header .article-grid-item .grid__footer {
      display: none; }

.article-list-item {
  position: relative;
  margin-bottom: 15px; }
  .article-list-item .grid__header {
    position: absolute;
    top: 0;
    right: 70%;
    bottom: 0;
    left: 0; }
  .article-list-item .grid__header__link {
    width: 100%;
    height: 100%; }
  .article-list-item .grid__header__image {
    width: 100%;
    height: 100%;
    padding: 0; }
  .article-list-item .grid__body {
    width: 70%;
    float: right; }
  .article-list-item .grid__title {
    margin: 0; }
  .article-list-item:after {
    display: block;
    content: "";
    clear: both; }

.on-sale {
  color: black; }
  .on-sale .compare-at {
    margin-top: 15px;
    text-decoration: line-through !important;
    color: rgba(102, 102, 102, 0.5); }

.lazy-image {
  display: block;
  position: relative;
  background-size: cover; }

.lazy-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto; }

.fade-in.lazyloaded {
  opacity: 1; }

.fade-in {
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out; }

@media screen and (min-width: 769px) {
  .product-grid-item.is-active {
    margin-bottom: 0; }
    .product-grid-item.is-active > .grid__wrap {
      height: 100%;
      padding-bottom: 30px; }
    .product-grid-item.is-active:after {
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      transform: translateX(-50%) translateY(-50%) rotate(45deg);
      position: absolute;
      content: "";
      display: block;
      width: 30px;
      height: 30px;
      border-top: 1px solid #dddddd;
      border-left: 1px solid #dddddd;
      left: 50%;
      z-index: 111; } }

.sticker {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  z-index: 1; }
  .sticker .sticker__body {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%); }
  .sticker .sticker__text {
    margin-top: -1px;
    display: block;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    text-transform: uppercase;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 1px; }
  .sticker.sticker--wait-list, .sticker.sticker--pre-order {
    background: #e5e5e5;
    color: #818181; }
  .sticker.sticker--best-seller {
    background: #deeace;
    color: #647054; }
  .sticker.sticker--limited {
    background: #ff4646;
    color: #000; }
  .sticker.sticker--low-stock {
    background: #ffce7e;
    color: #000; }

.sticker.sticker--best-seller {
  position: absolute;
  min-width: 100px;
  top: 100%;
  right: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  height: auto;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: black;
  color: white; }
  .sticker.sticker--best-seller .sticker__body,
  .sticker.sticker--best-seller .sticker__text {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    position: relative; }
  .sticker.sticker--best-seller .sticker__text {
    letter-spacing: normal;
    font-size: .9em;
    letter-spacing: 0.02rem;
    font-weight: 400; }
  .product__images-wrap .sticker.sticker--best-seller {
    width: auto;
    height: auto;
    top: 100%;
    right: auto;
    bottom: auto;
    padding: 6px 20px;
    pointer-events: none; }
    @media screen and (min-width: 769px) {
      .product__images-wrap .sticker.sticker--best-seller {
        left: calc(50% + 50px ); } }
    .product__images-wrap .sticker.sticker--best-seller .sticker__text {
      font-size: 1em; }
  .product-form .sticker.sticker--best-seller {
    display: none; }
  @media screen and (min-width: 769px) {
    [data-ajax-product-section] .product__images-wrap .sticker.sticker--best-seller {
      left: calc(50% + 35px ); } }

.sticker--sale:before, .product-grid-item.on-sale[enable-sale-tag] .grid__header:before, .product__images-wrap.on-sale[enable-sale-tag]:before, .swatch__item.on-sale[enable-sale-tag]:before, .sticker--sale:after, .product-grid-item.on-sale[enable-sale-tag] .grid__header:after, .product__images-wrap.on-sale[enable-sale-tag]:after, .swatch__item.on-sale[enable-sale-tag]:after {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  pointer-events: none;
  z-index: 1; }
.sticker--sale:before, .product-grid-item.on-sale[enable-sale-tag] .grid__header:before, .product__images-wrap.on-sale[enable-sale-tag]:before, .swatch__item.on-sale[enable-sale-tag]:before {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top-color: #f00;
  border-left: 0;
  border-bottom: 0;
  background: transparent; }
.sticker--sale:after, .product-grid-item.on-sale[enable-sale-tag] .grid__header:after, .product__images-wrap.on-sale[enable-sale-tag]:after, .swatch__item.on-sale[enable-sale-tag]:after {
  content: "Sale";
  text-transform: uppercase;
  color: #fff;
  font-size: 0.71429em;
  font-weight: 600;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 2.2em .5em;
  -moz-transform-origin: 2.2em .5em;
  -ms-transform-origin: 2.2em .5em;
  -o-transform-origin: 2.2em .5em;
  transform-origin: 2.2em .5em;
  letter-spacing: 0.02143em; }

.badge {
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1; }
  @media screen and (min-width: 480px) {
    .badge {
      top: 10px;
      right: 10px;
      width: 60px;
      height: 60px; } }
  .swatch__item .badge {
    display: none; }

.badge--14k {
  background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/badge-14k.png?v=5858764610926481277); }

.product__images-wrap .sticker {
  top: 25px;
  right: 25px;
  width: 60px;
  height: 60px; }
  .product__images-wrap .sticker .sticker__text {
    font-size: 11px; }
.product__images-wrap .sticker--wait-list {
  display: none; }

.product-form .sticker {
  top: 2.5px;
  right: 2.5px;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0; }
.product-form .sticker--wait-list {
  display: none; }

.image_autoheight_enable .sticker {
  display: none; }

.product__images-wrap.on-sale[enable-sale-tag]:before {
  border-top-width: 76px;
  border-right-width: 76px; }
.product__images-wrap.on-sale[enable-sale-tag]:after {
  font-size: 15px; }

.swatch__item.on-sale[enable-sale-tag]:before {
  border-top-width: 15px;
  border-right-width: 15px; }
.swatch__item.on-sale[enable-sale-tag]:after {
  font-size: 9px;
  margin-top: 2px;
  font-size: 4px;
  line-height: 0;
  color: #fff; }

/*============================================================================
  #Collections
==============================================================================*/
.collection {
  background: white;
  padding-top: 60px;
  padding-bottom: 60px; }
  .collection .main-content {
    padding-bottom: 0; }
  .collection[data-enable-banner="true"][data-enable-sidebar="false"] {
    padding-top: 0; }

.collection--has-sidebar {
  padding-top: 50px;
  padding-bottom: 0; }
  @media screen and (min-width: 769px) {
    .collection--has-sidebar .collection__sidebar,
    .collection--has-sidebar .collection__body {
      padding-top: 60px; } }
  .collection--has-sidebar .collection__body {
    float: right; }
  .collection--has-sidebar .collection__image {
    margin-top: -50px; }

.template-collection .main-content {
  padding-bottom: 0; }

.collection__sort {
  font-size: 0.85em; }

.collection__title.underline {
  color: #000;
  border-bottom: 2px solid #000; }
.collection__title + .collection__description {
  width: 600px;
  max-width: 100%;
  margin: -15px auto 40px; }
  @media screen and (min-width: 769px) {
    .collection__title + .collection__description {
      margin-bottom: 3rem; } }

.collection__description,
.collection__seo {
  width: 600px;
  max-width: 100%;
  margin: 30px auto;
  color: #000; }

.collection__image + .collection__title {
  margin-top: 1.7rem; }
  @media screen and (min-width: 769px) {
    .collection__image + .collection__title {
      margin-top: 3rem; } }

.collection__footer .section-image-and-text {
  padding: 0; }
  @media screen and (min-width: 769px) {
    .collection__footer .section-image-and-text h2, .collection__footer .section-image-and-text .h2, .collection__footer .section-image-and-text .h2--body {
      font-size: 28px; } }
  @media screen and (min-width: 769px) {
    .collection__footer .section-image-and-text .rte p {
      font-size: 16px; } }

.toggle-filters {
  border-color: #dddddd;
  margin-bottom: 15px; }
  .toggle-filters img {
    display: block; }

/* toggle collection sidebar */
@media screen and (max-width: 768px) {
  .collection__sort select {
    font-size: 16px; }

  .collection__sort label {
    display: none; }

  .collection__sidebar {
    display: none; } }
@media screen and (min-width: 769px) {
  .toggle-filters {
    display: none; } }
/* Collection sidebar navigation */
.collection__sidebar__list {
  margin-bottom: 30px; }

.collection__sidebar__item {
  margin-bottom: 10px;
  padding: 0px; }
  .collection__sidebar__item a {
    text-decoration: none; }
  .collection__sidebar__item.parent > a, .collection__sidebar__item.parent > span {
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    color: #000; }
  .collection__sidebar__item.highlight > a, .collection__sidebar__item.highlight > span {
    display: inline-block;
    padding: 0 .33em;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    line-height: normal;
    background: #000 !important;
    color: #fff !important; }
  .collection__sidebar__item.highlight > a:active, .collection__sidebar__item.highlight > a:hover {
    background: #000 !important;
    color: #fff !important; }

.collection__sidebar__list--child {
  display: none;
  margin-left: 0; }
  .collection__sidebar__list--child .collection__sidebar__item {
    margin: 7.5px 0; }
    .collection__sidebar__list--child .collection__sidebar__item > a,
    .collection__sidebar__list--child .collection__sidebar__item > span {
      font-size: 1.05em;
      letter-spacing: .02em; }
      .collection__sidebar__list--child .collection__sidebar__item > a:hover,
      .collection__sidebar__list--child .collection__sidebar__item > span:hover {
        color: black; }
    .collection__sidebar__list--child .collection__sidebar__item.active > a, .collection__sidebar__list--child .collection__sidebar__item.active > span {
      padding-bottom: 2px;
      color: black;
      border-bottom: 1px solid black; }

.collection__sidebar__item.active .collection__sidebar__list--child {
  display: block; }

.collection-list-item:not(first-child) {
  border-bottom: 1px solid #dddddd;
  padding-top: 60px; }

/* Collection landing page  */
.collection__header {
  position: relative;
  margin-bottom: 25px;
  background: black;
  text-align: center;
  margin-right: -30px;
  margin-left: -30px; }
  @media screen and (max-width: 480px) {
    .collection__header {
      margin-right: -15px;
      margin-left: -15px; } }
  @media screen and (min-width: 769px) {
    .collection__header {
      margin-right: 0;
      margin-left: 0; } }
  .collection__header .collection__header__image img {
    display: inline-block; }
  .collection__header .collection__header__body {
    position: absolute;
    top: auto;
    right: 15px;
    bottom: 15px;
    left: 15px;
    text-align: center; }
  .collection__header ul {
    display: block;
    margin: 0; }
  .collection__header li {
    display: inline-block; }
    @media screen and (max-width: 480px) {
      .collection__header li {
        display: block; } }
    .collection__header li + li {
      margin-left: 2em; }
      @media screen and (max-width: 480px) {
        .collection__header li + li {
          margin-top: .33em;
          margin-left: 0; } }
  .collection__header a {
    display: inline-block;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 0.03571em;
    color: #fff;
    border-bottom: 1px solid #fff; }
    .collection__header a:active, .collection__header a:hover {
      color: #eee; }
  .collection__header .collection__header__learn-more {
    margin: 0;
    float: right; }
    @media screen and (max-width: 768px) {
      .collection__header .collection__header__learn-more {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 40px;
        float: none;
        line-height: normal; } }
    .collection__header .collection__header__learn-more a {
      border-bottom: 0;
      font-size: 0.71429em;
      letter-spacing: 0.01429em;
      text-transform: uppercase; }
      .collection__header .collection__header__learn-more a:active, .collection__header .collection__header__learn-more a:hover {
        text-decoration: underline; }

.collections__collection {
  margin-bottom: 3rem; }
  @media screen and (min-width: 769px) {
    .collections__collection {
      margin-bottom: 5rem; } }

.collections__collection__title {
  margin: 1em 0 0;
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08rem;
  text-transform: uppercase;
  color: #000; }

[data-product-grid] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

[data-ajax-product-section] {
  position: relative; }
  @media screen and (max-width: 768px) {
    [data-ajax-product-section] {
      display: none; } }
  [data-ajax-product-section] [data-ajax-product-section-close] {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 11;
    background: white;
    cursor: pointer;
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-close.svg?v=17770966008901757088);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0); }
    [data-ajax-product-section] [data-ajax-product-section-close]:hover {
      background-color: rgba(255, 255, 255, 0.2); }
    [data-ajax-product-section] [data-ajax-product-section-close] > span {
      display: none; }
    @media screen and (max-width: 768px) {
      [data-ajax-product-section] [data-ajax-product-section-close] {
        display: block; } }
  [data-ajax-product-section].loading:after {
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    content: "";
    z-index: 111;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    pointer-events: none;
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/loading.gif?v=1571974489441092305);
    background-color: transparent;
    background-size: 150px;
    background-repeat: no-repeat; }
  [data-ajax-product-section].loading > * {
    opacity: .2;
    pointer-events: none; }
  [data-ajax-product-section].in {
    min-height: 300px;
    margin-bottom: 30px;
    padding: 30px 10px;
    border: 1px solid #dddddd; }
    @media screen and (max-width: 768px) {
      [data-ajax-product-section].in {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: white;
        z-index: 6000;
        margin: 0;
        padding: 0; }
        [data-ajax-product-section].in .product-section {
          max-height: 100vh;
          overflow-y: scroll;
          -webkit-overflow-scrolling: touch;
          padding: 0 15px 120px 15px; }
          [data-ajax-product-section].in .product-section::-webkit-scrollbar {
            width: 0px;
            background: transparent; }
          [data-ajax-product-section].in .product-section .product__form .shopify-product-form {
            width: 100%; } }
  [data-ajax-product-section] .wrapper, [data-ajax-product-section] .wrapper--wide, [data-ajax-product-section] .wrapper--full {
    padding: 0; }
  [data-ajax-product-section] .product-page {
    padding-top: 0;
    padding-bottom: 0; }
  [data-ajax-product-section] .product-single {
    margin: 0; }
  [data-ajax-product-section] .product-section .product__images-wrap.on-sale:before,
  [data-ajax-product-section] .product-section .product__images-wrap.on-sale:after {
    left: 70px; }
  @media screen and (min-width: 769px) {
    [data-ajax-product-section] .product-section .product__slides {
      margin-left: 70px; } }
  [data-ajax-product-section] .product-section .product__thumbs {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    [data-ajax-product-section] .product-section .product__thumbs::-webkit-scrollbar {
      width: 0px;
      /* Remove scrollbar space */
      background: transparent;
      /* Optional: just make scrollbar invisible */ }
    @media screen and (min-width: 769px) {
      [data-ajax-product-section] .product-section .product__thumbs {
        width: 105px !important;
        width: 75px !important; }
        [data-ajax-product-section] .product-section .product__thumbs .slick-dots li {
          width: 90px;
          height: 90px;
          width: 60px;
          height: 60px; } }
  [data-ajax-product-section] .product__clauses {
    display: none;
    margin-bottom: 0; }
  [data-ajax-product-section] .product__details-link {
    display: block;
    max-width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .5px; }
    @media screen and (min-width: 769px) {
      [data-ajax-product-section] .product__details-link {
        width: 350px; } }
    [data-ajax-product-section] .product__details-link:hover {
      text-decoration: underline; }
  @media screen and (max-width: 768px) {
    [data-ajax-product-section] .add-to-cart__wrapper {
      display: none !important; } }
  [data-ajax-product-section] [data-ajax-product-section-add-to-cart] {
    display: none; }
    @media screen and (max-width: 768px) {
      [data-ajax-product-section] [data-ajax-product-section-add-to-cart] {
        display: block;
        position: fixed;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0; }
        [data-ajax-product-section] [data-ajax-product-section-add-to-cart] > .btn, [data-ajax-product-section] [data-ajax-product-section-add-to-cart] > .btn--secondary, [data-ajax-product-section] [data-ajax-product-section-add-to-cart] > input[type="submit"], [data-ajax-product-section] [data-ajax-product-section-add-to-cart] > .spr-summary-actions-newreview {
          padding-top: 24px;
          padding-bottom: 30px;
          font-size: 18px; } }

.countdown-timer-items {
  display: block;
  margin: 5px 0 10px;
  pointer-events: none; }

.countdown-timer-item {
  display: inline-block;
  position: relative;
  width: 70px;
  margin: 10px 0;
  padding-bottom: 1rem;
  font-size: 2.6rem;
  line-height: 1; }
  @media screen and (max-width: 481px) {
    .countdown-timer-item {
      font-size: 2rem; } }
  .countdown-timer-item + .countdown-timer-item:before {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    content: ":";
    position: absolute;
    top: 0;
    left: 0; }

.countdown-timer-item-label {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 0;
  font-size: .8rem; }

/* Collection countdown */
.collection__countdown {
  margin-bottom: 30px;
  padding: 25px;
  background-color: black; }
  @media screen and (max-width: 481px) {
    .collection__countdown {
      margin-top: 30px;
      margin-bottom: 0;
      padding: 10px; } }
  .collection__countdown * {
    font-family: "Gill Sans Nova W01";
    color: white; }

.collection__countdown__title,
.collection__countdown__text {
  margin: 0;
  font-family: "Adobe Caslon W08", serif;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal; }

.collection__countdown__title {
  margin: 0;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: -10px; }

.collection__countdown__text {
  font-size: 1.2em; }
  @media screen and (max-width: 481px) {
    .collection__countdown__text {
      font-size: 1rem; } }

.collection-benefit-message {
  margin: 20px 0;
  text-align: center; }
  @media screen and (max-width: 481px) {
    [data-section-type="collection-jewelry"] .collection-benefit-message {
      margin: 20px 0 -15px; } }
  .collection-benefit-message a,
  .collection-benefit-message span {
    display: inline-block;
    padding: 0 5px;
    font-size: 0.9rem;
    font-weight: 300;
    background-color: #fff1a1;
    color: black; }
  .collection-benefit-message a {
    text-decoration: underline; }

/*============================================================================
  #Product Page
==============================================================================*/
.template-product .main-content {
  padding-bottom: 0; }
.template-product .product-section > .wrapper:last-of-type, .template-product .product-section > .wrapper--wide:last-of-type, .template-product .product-section > .wrapper--full:last-of-type {
  padding-bottom: 120px; }
.template-product .product__breadcrumb > .wrapper, .template-product .product__breadcrumb > .wrapper--wide, .template-product .product__breadcrumb > .wrapper--full,
.template-product .product-page > .wrapper,
.template-product .product-page > .wrapper--wide,
.template-product .product-page > .wrapper--full {
  max-width: 100%; }
.template-product .product-page {
  padding-top: 0; }
  .template-product .product-page .product-form {
    margin-bottom: .5em; }

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

.product-page {
  padding-top: 0;
  padding-bottom: 30px;
  background-color: white; }
  @media screen and (min-width: 769px) {
    .product-page {
      padding-top: 30px; } }

@media screen and (min-width: 769px) {
  .product-section .grid__item--right.large--one-half {
    width: 545px;
    max-width: 50%; }
  .product-section .product__slides {
    margin-left: 100px; }
  .product-section .product__images-wrap.on-sale:before, .product-section .product__images-wrap.on-sale:after {
    left: 100px; }
  .product-section .product__slides__item,
  .product-section .product__slides__item img {
    width: 100%;
    max-height: 100%; }
  .product-section .product__thumbs {
    position: absolute;
    width: 100px;
    top: 0;
    left: 0; }
    .product-section .product__thumbs .slick-dots {
      text-align: left; }
      .product-section .product__thumbs .slick-dots li + li {
        margin-top: 10px; } }

.product__info,
.product__offer {
  text-align: center; }
  @media screen and (min-width: 769px) {
    .product__info,
    .product__offer {
      text-align: left; } }

@media screen and (min-width: 769px) {
  .product__info {
    max-width: 480px; } }

.product__description,
.rte-block--product-upsell,
.product__size-guide,
.product__reviews {
  letter-spacing: 1px;
  color: #000; }

.product__description {
  margin-bottom: .2rem;
  font-size: .95rem !important;
  letter-spacing: .015rem;
  color: #666; }
  .product__description h6, .product__description .h6, .product__description .h6--body {
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: 0.93721rem;
    letter-spacing: .02em; }

.selector-wrapper select,
.product-form__variants {
  margin: 0 auto 2em auto;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0px;
  text-align-last: center;
  padding-left: 28px; }

.product-form__variants {
  display: none; }

.selector-wrapper label,
.quantity-selector__wrapper label {
  margin-top: 3em;
  text-align: center;
  font-family: "Gill Sans Nova W07";
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8em; }

/* Product single image */
.product__image {
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 480px) {
    .product__image {
      margin-bottom: 3rem; } }
  .product__image img {
    display: block;
    margin: 0 auto; }

.product__more-photos {
  display: inline-block;
  color: #000;
  text-decoration: none; }
  .product__more-photos span {
    display: block; }

/* Product slider */
.product__images-wrap {
  position: relative;
  margin-bottom: 30px; }
  @media screen and (min-width: 768px) {
    .product__images-wrap {
      margin-bottom: 0; } }
  .product__images-wrap[data-allow-zoom="true"] .product__slides__item img {
    cursor: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/cursor-magnific-glass.png?v=4696058895334237066), auto; }

.product__slides {
  overflow-y: hidden; }
  .product__slides.slick-slider {
    margin-bottom: 15px; }
  .product__slides a, .product__slides img {
    display: block;
    margin: 0 auto; }
  .product__slides li {
    margin-bottom: 30px; }
  .product__slides .product__slides__item--additional {
    display: none; }
  .product__slides.slick-initialized .product__slides__item--additional {
    display: block; }
  @media screen and (max-width: 768px) {
    .product__slides .pinch-zoom-container {
      margin: 0 auto; } }

.product__slides__video {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }
  .product__slides__video video {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0; }

.product__slides__item .image-wrapper {
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .product__slides__item .image-wrapper {
      max-width: 480px; } }
  @media screen and (min-width: 768px) {
    .product__slides__item .image-wrapper {
      max-width: 720px; } }

@media screen and (min-width: 769px) {
  .product__thumbs {
    margin-right: -5px;
    margin-left: -5px; } }
.product__thumbs .slick-dots {
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .product__thumbs .slick-dots li {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    vertical-align: middle;
    cursor: pointer; }
    @media screen and (min-width: 769px) {
      .product__thumbs .slick-dots li {
        width: 75px;
        height: 75px;
        margin: 0 5px; } }
    .product__thumbs .slick-dots li.slick-active {
      border: 1px solid #dddddd; }
  @media screen and (max-width: 768px) {
    .product__thumbs .slick-dots li + li {
      margin-left: 10px; } }
.product__thumbs .product__thumbs__image {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  background-size: cover;
  background-position: center; }
.product__thumbs .product__thumbs__image--video {
  position: relative; }
  .product__thumbs .product__thumbs__image--video:after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 0;
    bottom: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30.051 30.051' style='enable-background:new 0 0 30.051 30.051;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23fff' d='M19.982,14.438l-6.24-4.536c-0.229-0.166-0.533-0.191-0.784-0.062c-0.253,0.128-0.411,0.388-0.411,0.669v9.069 c0,0.284,0.158,0.543,0.411,0.671c0.107,0.054,0.224,0.081,0.342,0.081c0.154,0,0.31-0.049,0.442-0.146l6.24-4.532 c0.197-0.145,0.312-0.369,0.312-0.607C20.295,14.803,20.177,14.58,19.982,14.438z'/%3E%3Cpath fill='%23fff' d='M15.026,0.002C6.726,0.002,0,6.728,0,15.028c0,8.297,6.726,15.021,15.026,15.021c8.298,0,15.025-6.725,15.025-15.021 C30.052,6.728,23.324,0.002,15.026,0.002z M15.026,27.542c-6.912,0-12.516-5.601-12.516-12.514c0-6.91,5.604-12.518,12.516-12.518 c6.911,0,12.514,5.607,12.514,12.518C27.541,21.941,21.937,27.542,15.026,27.542z'/%3E%3C/g%3E%3C/svg%3E%0A"); }
@media screen and (max-width: 768px) {
  .product__thumbs {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0; }
    .product__thumbs .product__thumbs__image,
    .product__thumbs img {
      display: none; }
    .product__thumbs .slick-dots li {
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 50%;
      background-color: #d3d3d3; }
    .product__thumbs .slick-dots li.slick-active {
      border: 0;
      background-color: #716f70; } }

.product__review-badges {
  margin: -.5rem 0 .8em 0;
  font-size: 1.1em;
  color: #000; }
  .product__review-badges .stamped-main-badge[data-type="qna"]:empty:before, .product__review-badges .stamped-main-badge[data-type="qna"]:empty:after {
    opacity: 0; }
  .product__review-badges .stamped-badge-caption[data-questions]:before {
    content: "|"; }
  .product__review-badges .stamped-badge-caption[data-questions]:after {
    content: " questions"; }
  .product__review-badges .stamped-badge-caption[data-questions]:before {
    margin-left: 2px;
    padding-right: 6px; }
  .product__review-badges .stamped-badge-caption[data-questions="0"]:before, .product__review-badges .stamped-badge-caption[data-questions="0"]:after {
    content: ""; }
  .product__review-badges .stamped-badge-caption[data-questions="1"]:after {
    content: " question"; }
  .product__review-badges .stamped-main-badge[data-type="qna"]:empty:before {
    font-family: 'stamped-font';
    content: '\f0e6 '; }
  .product__review-badges .stamped-main-badge[data-type="qna"]:empty:after {
    content: ' Ask a question'; }

.product__title-and-price .product__title,
.product__title-and-price .product__price {
  font-family: "Adobe Caslon W08", serif;
  display: inline;
  margin: 0; }
.product__title-and-price .product__title:after {
  content: ", "; }
.product__title-and-price .product__price.on-sale {
  color: #ff5b5b; }
  .product__title-and-price .product__price.on-sale .compare-at {
    color: #000;
    font-style: normal; }
.product__title-and-price + .product__review-badges {
  margin-top: 8px; }

.product__title-and-color .product__title {
  margin-bottom: 0; }
.product__title-and-color + .product__price {
  margin: .33em 0;
  font-size: 1.4em; }
  .product__title-and-color + .product__price.on-sale .compare-at {
    font-style: normal; }
    .product__title-and-color + .product__price.on-sale .compare-at + .money {
      margin-left: 5px;
      color: #ff5b5b; }

.product-form {
  margin-bottom: 1.25rem; }
  .product-form label {
    margin-top: 2em; }

.product-form--inline {
  margin-bottom: 1em; }
  @media screen and (min-width: 480px) {
    .product-form--inline {
      display: flex; } }
  .product-form--inline .product__select,
  .product-form--inline .product__add-to-cart {
    margin: 0; }
    @media screen and (min-width: 480px) {
      .product-form--inline .product__select,
      .product-form--inline .product__add-to-cart {
        flex: 1; } }
  .product-form--inline .product__select {
    display: flex; }
    .product-form--inline .product__select .selector-wrapper label,
    .product-form--inline .product__select .selector-wrapper--color label {
      display: none; }
    .product-form--inline .product__select .selector-wrapper {
      flex: 1; }
    .product-form--inline .product__select .selector-wrapper--color {
      flex: 2; }
    .product-form--inline .product__select .select2-container.select2-container--linjer {
      width: 100% !important; }
  .product-form--inline .product__add-to-cart {
    margin-top: 5px; }
    @media screen and (min-width: 480px) {
      .product-form--inline .product__add-to-cart {
        margin-top: 0; } }
    .product-form--inline .product__add-to-cart .btn--block {
      width: 100%; }

.product__preorder {
  text-align: left; }
  .product__preorder .rte {
    margin: 0; }
  .product__preorder .product__preorder__box {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #666; }
  .product__preorder .product__preorder__heading {
    margin: 0 0 .25em;
    font-size: 0.93721rem;
    text-transform: uppercase;
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600; }
  .product__preorder .product__preorder__content,
  .product__preorder .product__preorder__counter {
    margin: 0; }
  .product__preorder .product__preorder__counter {
    display: inline-block;
    margin-top: .5em;
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    line-height: normal;
    background-color: #faf6c6;
    color: #000; }

.add-to-cart__wrapper {
  margin-top: 1.25rem; }
  @media screen and (min-width: 769px) {
    .add-to-cart__wrapper {
      width: 350px;
      max-width: 100%; } }

.product__size-guide-toggle {
  display: inline-block;
  padding: .2em .75em;
  border: 1px solid transparent;
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  color: #666; }
  .product__size-guide-toggle:active, .product__size-guide-toggle:focus, .product__size-guide-toggle:hover {
    color: #000; }

.product__wait-list .product__wait-list__box {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #666; }
.product__wait-list .product__wait-list__text {
  color: #000; }

.product__bis-trigger > .klaviyo-bis-trigger {
  display: block !important; }

.product__shipping {
  width: 350px;
  max-width: 100%;
  text-align: center;
  text-transform: uppercase; }
  @media screen and (max-width: 768px) {
    .product__shipping {
      margin-right: auto;
      margin-left: auto; } }
  .product__shipping > span {
    position: relative;
    padding-left: 28px; }
    .product__shipping > span[data-country-code="ALL"] {
      padding-left: 0; }
    .product__shipping > span span {
      vertical-align: middle; }
  .product__shipping[data-shipping-popup-trigger] {
    cursor: pointer; }
    .product__shipping[data-shipping-popup-trigger]:hover {
      text-decoration: underline; }

.product__shipping--estimated-delivery {
  text-align: left;
  text-transform: none; }
  @media screen and (max-width: 768px) {
    .product__shipping--estimated-delivery {
      text-align: center; } }
  .product__shipping--estimated-delivery > span {
    padding-left: 0; }
    .product__shipping--estimated-delivery > span > span {
      vertical-align: bottom; }

.product__share {
  padding-bottom: 30px; }

.product__related {
  margin-bottom: 60px; }

.product__clauses {
  font-style: italic;
  letter-spacing: normal;
  color: #666;
  text-align: left; }
  .product__clauses .product__clauses__item {
    display: inline-block; }
    .product__clauses .product__clauses__item + .product__clauses__item:before {
      content: "|"; }
  .product__clauses .product__clauses__link {
    text-decoration: none; }
    .product__clauses .product__clauses__link .product__clauses__text {
      border-bottom: 1px solid #666666; }
    .product__clauses .product__clauses__link:active .product__clauses__text, .product__clauses .product__clauses__link:focus .product__clauses__text, .product__clauses .product__clauses__link:hover .product__clauses__text {
      text-decoration: none;
      border-bottom: 1px solid #8c8c8c; }
  .product__clauses .product__clauses__icon {
    display: none; }

@media screen and (max-width: 768px) {
  .product__clauses--icons {
    margin-bottom: 0;
    text-align: center; } }
.product__clauses--icons .product__clauses__item {
  display: block;
  margin: 0; }
  .product__clauses--icons .product__clauses__item + .product__clauses__item {
    margin-top: 6px; }
    .product__clauses--icons .product__clauses__item + .product__clauses__item:before {
      display: none; }
.product__clauses--icons .product__clauses__icon,
.product__clauses--icons .product__clauses__text {
  display: inline-block;
  font-style: normal;
  vertical-align: middle; }
.product__clauses--icons .product__clauses__icon {
  width: 16px;
  margin-right: 6px; }
  .product__clauses--icons .product__clauses__icon svg {
    display: block; }
.product__clauses--icons .product__clauses__text {
  font-size: .93721rem;
  letter-spacing: .015rem; }

@media screen and (min-width: 769px) {
  .product-single {
    margin-bottom: 2.5rem; } }
@media screen and (max-width: 481px) {
  .product-single .grid__item--left {
    padding-right: 0;
    padding-left: 0; } }

.product__details-link {
  display: none; }

.product-review-section {
  padding: 0; }

.product__size-guide__content {
  text-align: left; }
  .product__size-guide__content tr {
    border-bottom: 1px solid #000; }
  .product__size-guide__content td {
    width: 50%;
    padding: 10px 0; }
    .product__size-guide__content td:nth-of-type(2) {
      padding-left: 10px; }
  .product__size-guide__content tr:nth-of-type(1) td:nth-of-type(1) {
    text-align: left; }
    .product__size-guide__content tr:nth-of-type(1) td:nth-of-type(1) img {
      -webkit-transform: translateX(-10px);
      transform: translateX(-10px); }
  .product__size-guide__content tr:nth-of-type(1) td:nth-of-type(2) {
    padding: 10px 0;
    text-align: right; }
    .product__size-guide__content tr:nth-of-type(1) td:nth-of-type(2) img {
      -webkit-transform: translateX(10px);
      transform: translateX(10px); }

.product__size-guide__btn {
  margin-top: 3rem; }

.product-review-section .stamped-container {
  border: 0; }

.product-section p,
.product-section .rte,
.product-block-section p,
.product-size-guide-section p,
.product-review-section p {
  font-size: 0.93721rem; }

.product__selling-points h2, .product__selling-points .h2, .product__selling-points .h2--body,
.product__social-proof h2,
.product__social-proof .h2,
.product__social-proof .h2--body,
.product__press-quote h2,
.product__press-quote .h2,
.product__press-quote .h2--body,
.product__risk-free .section-image-and-text h2,
.product__risk-free .section-image-and-text .h2,
.product__risk-free .section-image-and-text .h2--body,
.product__video h2,
.product__video .h2,
.product__video .h2--body,
.product__related h2,
.product__related .h2,
.product__related .h2--body {
  font-size: 35px; }
  @media screen and (max-width: 768px) {
    .product__selling-points h2, .product__selling-points .h2, .product__selling-points .h2--body,
    .product__social-proof h2,
    .product__social-proof .h2,
    .product__social-proof .h2--body,
    .product__press-quote h2,
    .product__press-quote .h2,
    .product__press-quote .h2--body,
    .product__risk-free .section-image-and-text h2,
    .product__risk-free .section-image-and-text .h2,
    .product__risk-free .section-image-and-text .h2--body,
    .product__video h2,
    .product__video .h2,
    .product__video .h2--body,
    .product__related h2,
    .product__related .h2,
    .product__related .h2--body {
      width: 260px;
      max-width: 100%;
      margin-right: auto;
      margin-left: auto; } }
.product__selling-points p,
.product__social-proof p,
.product__press-quote p,
.product__risk-free .section-image-and-text p,
.product__video p,
.product__related p {
  color: #000; }

.product__selling-points,
.product__social-proof {
  padding: 2rem 0; }

.product__selling-points {
  background-color: #F8F8F8; }
  @media screen and (min-width: 481px) {
    .product__selling-points {
      padding: 0; } }
  .product__selling-points .slick-prev {
    visibility: hidden;
    pointer-events: none; }

.product__social-proof {
  background-color: #f9f5ee; }
  @media screen and (min-width: 769px) {
    .product__social-proof {
      padding: 4rem 0; } }
  .product__social-proof h2, .product__social-proof .h2, .product__social-proof .h2--body {
    text-align: center; }
    @media screen and (min-width: 769px) {
      .product__social-proof h2, .product__social-proof .h2, .product__social-proof .h2--body {
        text-align: left; } }
  .product__social-proof .product__social-proof__ig {
    text-decoration: none;
    color: #000; }
    .product__social-proof .product__social-proof__ig span {
      display: inline-block;
      margin-left: .25em;
      vertical-align: middle;
      font-family: "Gill Sans Nova W01", sans-serif;
      font-weight: 600;
      font-size: 1.2em;
      line-height: 19px; }
    .product__social-proof .product__social-proof__ig .icon {
      font-size: 1.4em; }
      .product__social-proof .product__social-proof__ig .icon:before {
        display: block; }

.product__press-quote {
  padding: 2rem 0; }
  @media screen and (min-width: 769px) {
    .product__press-quote {
      padding: 5rem 0; } }
  .product__press-quote .product__press-quote__content p {
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    /* Mobile only */ }
    @media screen and (min-width: 769px) {
      .product__press-quote .product__press-quote__content p {
        width: 430px; } }
    @media screen and (max-width: 480px) {
      .product__press-quote .product__press-quote__content p {
        font-size: 25px; } }
  .product__press-quote .product__press-quote__content:before {
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #000;
    line-height: 60px;
    content: "“"; }
  .product__press-quote .product__press-quote__image {
    display: inline-block;
    margin-top: 2rem; }

.product__video {
  position: relative;
  padding: 2rem 0 3rem; }
  @media screen and (min-width: 769px) {
    .product__video {
      padding: 5rem 0; } }
  .product__video h2, .product__video .h2, .product__video .h2--body {
    margin-bottom: .25em; }
  .product__video .produc__video__content {
    margin-bottom: 2rem; }
    @media screen and (max-width: 480px) {
      .product__video .produc__video__content {
        width: 225px;
        margin-right: auto;
        margin-left: auto; } }
    .product__video .produc__video__content p {
      font-size: 16px; }
  .product__video:after {
    display: block;
    position: absolute;
    width: 165px;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #e1e1e1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    content: ""; }

.product__risk-free .section-image-and-text {
  padding-bottom: 0; }
  .product__risk-free .section-image-and-text .block--text .value-props .value-props__text {
    font-family: "Gill Sans Nova W07", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #000; }
.product__risk-free .product__risk-free__disclaimer {
  font-size: 12px;
  color: #000; }
@media screen and (min-width: 769px) {
  .product__risk-free .section-image-and-text .block--image {
    right: auto;
    left: 50%;
    float: right; }
  .product__risk-free .section-image-and-text .block--text {
    right: 50%;
    left: auto; } }

.product__related {
  margin-bottom: 0; }

.product__metafield-data {
  margin-top: 100px;
  padding: 25px 0;
  background: #fafafa; }
  .product__metafield-data h6, .product__metafield-data .h6, .product__metafield-data .h6--body {
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: 1.1em; }
  .product__metafield-data pre {
    margin-bottom: 0;
    font-size: .7rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f2f2f2; }

.loading .add-to-cart__text {
  display: none; }

.add-to-cart__text--loading {
  display: none; }
  .loading .add-to-cart__text--loading {
    display: block; }

.page__password {
  padding: 5rem 0;
  visibility: hidden; }
  .page__password.in {
    visibility: visible; }
  .page__password p {
    margin-bottom: 2rem; }
  .page__password .page__password__form {
    width: 400px;
    max-width: 100%;
    margin: 0 auto; }
  .page__password .page__password__error {
    font-style: italic;
    font-size: .95rem;
    text-align: left;
    letter-spacing: .015rem;
    color: #f00; }
  .page__password + .section-product,
  .page__password + .section-collection {
    visibility: hidden; }
  .page__password.in + .section-product, .page__password.in + .section-collection {
    visibility: visible; }

.product__materials__item {
  display: none;
  margin-bottom: 15px; }
  .product__materials__item.in {
    display: block; }

.product__materials__icon {
  display: block;
  width: 20px;
  height: 20px;
  float: left; }
  .product__materials__icon svg {
    display: block;
    width: 100%;
    height: auto; }

.product__materials__heading {
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: .02em; }

.product__materials__title,
.product__materials__content {
  margin-left: 30px; }

.product__materials__title {
  margin-bottom: 5px;
  font-size: 1em;
  font-size: 0.93721rem;
  letter-spacing: .015rem; }

.product__materials__content,
.product__materials__content p:last-of-type {
  margin-bottom: 0; }

.product__estimated-retail {
  display: none;
  margin-bottom: 0;
  padding: 4px 0 0;
  font-size: .7rem !important;
  line-height: 1.1;
  vertical-align: top;
  background-color: #faf6c6;
  color: #666666; }
  .product__estimated-retail.in {
    display: inline-block; }
    .product__estimated-retail.in + .product__review-badges,
    .product__estimated-retail.in + .product-modal + .product__review-badges {
      margin-top: 2px; }
  .product__estimated-retail > i {
    display: block;
    padding: 0 4px;
    vertical-align: middle; }
  .product__estimated-retail .product__estimated-retail__icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 3px;
    cursor: pointer; }
    .product__estimated-retail .product__estimated-retail__icon svg {
      display: block;
      width: 14px;
      height: 14px;
      fill: #666666; }

.swatch-wrapper {
  margin: 1em 0;
  color: black; }
  .swatch-wrapper .swatch__label,
  .swatch-wrapper .swatch__list {
    display: inline-block;
    margin: 0;
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: 0.93721rem;
    letter-spacing: .02em; }
  .swatch-wrapper .swatch__label {
    padding-right: .75em; }
  .swatch-wrapper .swatch__item {
    display: inline-block;
    position: relative;
    margin-bottom: 0; }
  .swatch-wrapper .swatch__link {
    display: block;
    padding: .06em .5em .2em;
    border: 1px solid transparent;
    text-decoration: none;
    text-transform: uppercase;
    color: #000; }
  .swatch-wrapper .swatch__item.active .swatch__link {
    border: 1px solid #dddddd; }
  .swatch-wrapper .swatch__image {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #fafafa;
    background-size: cover;
    background-position: center; }
  .swatch-wrapper[data-option-name="color"] .swatch__list {
    display: block;
    margin: .5em auto;
    width: 400px;
    max-width: 100%; }
    @media screen and (min-width: 769px) {
      .swatch-wrapper[data-option-name="color"] .swatch__list {
        margin: .5em 0; } }
  .swatch-wrapper[data-option-name="color"] .swatch__link {
    padding: 0; }

.personalization label {
  margin-top: 0;
  font-family: "Gill Sans Nova W07"; }
@media screen and (max-width: 768px) {
  .personalization > .personalization__field {
    display: inline-block;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    text-align: left; } }
.personalization [personalization-info-trigger] {
  margin-left: 5px;
  cursor: pointer; }
  .personalization [personalization-info-trigger] svg {
    width: 20px;
    display: block; }

.mfp-content .modal--personalization {
  max-width: 1280px !important; }
  .mfp-content .modal--personalization label,
  .mfp-content .modal--personalization .personalization__cost {
    font-size: 1.1rem;
    color: black; }
  .mfp-content .modal--personalization p:not(.personalization__stamp-text) {
    font-size: .9em;
    color: black; }
  .mfp-content .modal--personalization .personalization__field-group label {
    padding: 5px 10px; }
  .mfp-content .modal--personalization [personalization-inputs-text] {
    width: 280px;
    margin-top: 10px;
    border-color: black; }
  .mfp-content .modal--personalization [personalization-controls-save] {
    cursor: pointer;
    pointer-events: auto; }
  @media screen and (max-width: 768px) {
    .mfp-content .modal--personalization [personalization-controls-close] {
      display: block;
      margin-top: 10px; } }
  @media screen and (min-width: 769px) {
    .mfp-content .modal--personalization [personalization-controls-close] {
      margin-left: 30px; } }
  .mfp-content .modal--personalization [personalization-info-trigger] {
    margin-left: 30px; }
    @media screen and (min-width: 769px) {
      .mfp-content .modal--personalization [personalization-info-trigger] {
        margin-left: 60px; } }

.mfp-content .modal--personalization-info h1, .mfp-content .modal--personalization-info .h1, .mfp-content .modal--personalization-info .h1--body {
  margin-bottom: 5px; }
.mfp-content .modal--personalization-info p {
  color: black; }

.personalization__modal__body {
  width: 500px;
  max-width: 100%; }

.personalization__image-wrap {
  position: relative;
  margin: 0;
  width: 550px;
  max-width: 100%; }

.personalization__image {
  display: none;
  padding-bottom: 100%;
  border: 1px solid #ccc;
  background-color: #f2f2f2;
  background-size: contain; }
  .personalization__image:first-of-type {
    display: block; }

.personalization__stamp-text {
  position: absolute;
  top: 48%;
  right: 20%;
  bottom: auto;
  left: 20%;
  margin: 0;
  display: block;
  text-transform: uppercase;
  text-align: center;
  color: #fff; }
  .personalization__stamp-text[data-product-handle="the-vertical-wallet"], .personalization__stamp-text[data-product-handle="the-vertical-wallet-dev"] {
    top: 48%;
    right: 10%;
    bottom: auto;
    left: 20%; }
  .personalization__stamp-text[data-stamp-type="Gold foil"] {
    color: #cb7621; }
  .personalization__stamp-text[data-stamp-type="Silver foil"] {
    color: #8f8f8f; }
  .personalization__stamp-text[data-stamp-type="Plain deboss (no colour)"] {
    color: #666;
    opacity: .4; }

@media screen and (min-width: 769px) {
  .personalization__title {
    margin-bottom: 10px; } }

.personalization__required {
  display: none;
  font-style: italic;
  color: #f00; }
  @media screen and (min-width: 769px) {
    .personalization__required {
      margin-left: 15px; } }
  .personalization__required.in {
    display: block; }
    @media screen and (min-width: 769px) {
      .personalization__required.in {
        display: inline-block; } }

.personalization__field > label,
.personalization__cost {
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  font-size: 0.93721rem;
  letter-spacing: .02em; }

.personalization__controls {
  margin-top: 30px;
  margin-bottom: 0; }

.personalization__field__error {
  font-family: "Gill Sans Nova W07", sans-serif;
  font-weight: 300;
  margin-left: 10px;
  color: #f00; }

.personalization__field-group {
  display: block; }
  .personalization__field-group > * {
    display: inline-block;
    vertical-align: middle; }
  .personalization__field-group > input[type="radio"] {
    font-size: .95rem; }
    @media screen and (min-width: 769px) {
      .personalization__field-group > input[type="radio"] {
        margin-left: 15px; } }
  .personalization__field-group > label {
    max-width: 100%;
    margin-top: 0;
    padding: 0 5px; }

.personalization__field--stamp-type {
  margin-bottom: 15px; }
  @media screen and (min-width: 769px) {
    .personalization__field--stamp-type {
      margin-top: 30px; } }
  .personalization__field--stamp-type .personalization__field-group label {
    width: 250px;
    margin-left: 10px;
    font-size: 1.2em;
    background-color: #7d583f; }
  .personalization__field--stamp-type .personalization__field-group + .personalization__field-group {
    margin-top: 10px; }
  .personalization__field--stamp-type .personalization__field-group [value="Gold foil"] + label {
    color: #cb7621; }
  .personalization__field--stamp-type .personalization__field-group [value="Silver foil"] + label {
    color: #eee; }
  .personalization__field--stamp-type .personalization__field-group [value="Plain deboss (no colour)"] + label {
    color: #000; }

.product-bundle .accordion__toggle {
  -webkit-transition: 0.15s padding ease-in-out;
  -moz-transition: 0.15s padding ease-in-out;
  -ms-transition: 0.15s padding ease-in-out;
  -o-transition: 0.15s padding ease-in-out;
  transition: 0.15s padding ease-in-out; }
  .product-bundle .accordion__toggle:before {
    -webkit-transition: 0.15s opacity ease-in-out 0.2s;
    -moz-transition: 0.15s opacity ease-in-out 0.2s;
    -ms-transition: 0.15s opacity ease-in-out 0.2s;
    -o-transition: 0.15s opacity ease-in-out 0.2s;
    transition: 0.15s opacity ease-in-out 0.2s;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    width: 20px;
    height: 20px;
    margin-top: -3px;
    background-image: url("data:image/svg+xml,%3Csvg version='1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' enable-background='new 0 0 48 48'%3E%3Cpolygon fill='%2343A047' points='40.6,12.1 17,35.7 7.4,26.1 4.6,29 17,41.3 43.4,14.9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat; }
.product-bundle .accordion__item.selected .accordion__toggle {
  position: relative;
  padding-left: 40px; }
  .product-bundle .accordion__item.selected .accordion__toggle:before {
    opacity: 1; }
@media screen and (min-width: 769px) {
  .product-bundle .product-section {
    padding-bottom: 30px; } }
.product-bundle .product-section form[action="/cart/add"] button[type="submit"] {
  display: none !important; }
.product-bundle .product-section .product-page {
  padding-bottom: 0; }
.product-bundle .product-section .product-single {
  margin-bottom: 0; }
  @media screen and (min-width: 769px) {
    .product-bundle .product-section .product-single {
      display: flex;
      align-items: center;
      justify-content: center; } }
@media screen and (min-width: 769px) {
  .product-bundle .product-section .product__thumbs {
    max-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    /* Optional: show position indicator in red */ }
    .product-bundle .product-section .product__thumbs::-webkit-scrollbar {
      width: 0px;
      /* Remove scrollbar space */
      background: transparent;
      /* Optional: just make scrollbar invisible */ }
    .product-bundle .product-section .product__thumbs::-webkit-scrollbar-thumb {
      background: #ccc; } }
.product-bundle .product-section .swatch-wrapper .swatch__label {
  display: block;
  margin-bottom: .5em; }
  .product-bundle .product-section .swatch-wrapper .swatch__label:before {
    content: "Select "; }
.product-bundle .product-section .swatch-wrapper .swatch__link {
  padding: .25em .5em;
  font-size: 1.2em;
  line-height: 1.3; }
.product-bundle .product-section .swatch-wrapper[data-option-name="color"] .swatch__item + .swatch__item {
  margin-left: .5em; }
.product-bundle .product-section .swatch-wrapper[data-option-name="color"] .swatch__link {
  padding: 0; }
.product-bundle .product-section .swatch-wrapper[data-option-name="color"] .swatch__image {
  width: 80px;
  height: 80px; }
.product-bundle .product-section .btn--add-to-cart.disabled {
  pointer-events: none; }
.product-bundle .product__price {
  width: 300px;
  max-width: 100%;
  margin-top: 0;
  opacity: 0; }
  .product-bundle .product__price > span {
    display: block; }
.product-bundle.loaded .product__price {
  opacity: 1; }
.product-bundle .highlight {
  display: inline-block;
  line-height: normal;
  background-color: #faf6c6;
  color: black;
  font-style: italic; }

.product__price__bundle > span,
.product__price__separately > span {
  display: block; }
.product__price__bundle .money,
.product__price__separately .money {
  margin: 0;
  font-size: 2rem;
  line-height: 1.4; }
.product__price__bundle .product__price__description,
.product__price__separately .product__price__description {
  font-size: .8em;
  text-transform: uppercase;
  font-family: "Gill Sans Nova W07", sans-serif;
  font-weight: 300; }

.product__price__bundle {
  color: black; }
  .product__price__bundle .product__price__description {
    color: #0c30e3; }

.product__price__separately {
  color: #ccc; }
  .product__price__separately .money {
    color: #ccc !important; }

.product-bundle__summary {
  padding: 30px 0; }

@media screen and (max-width: 768px) {
  .product-bundle__selection__item {
    margin-bottom: 30px; } }

.product-bundle__selection__item__body {
  position: relative;
  padding-bottom: 100%;
  border: 2px solid #ddd; }

.product-bundle__selection__item__title {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 5px;
  text-align: center;
  text-transform: uppercase; }

.product-bundle__selection__item__image {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover; }

.product-bundle__selection__item__variant-title {
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  color: black;
  opacity: 0; }
  @media screen and (min-width: 769px) {
    .product-bundle__selection__item__variant-title {
      font-size: 1.2em; } }

.product-bundle__selection__item.in .product-bundle__selection__item__image,
.product-bundle__selection__item.in .product-bundle__selection__item__variant-title {
  opacity: 1; }

/*============================================================================
  #Blogs and Comments
==============================================================================*/
.section-blog .pagination-custom {
  margin-top: 30px; }
  @media screen and (min-width: 769px) {
    .section-blog .pagination-custom {
      margin-top: 60px; } }
.section-blog .section-title {
  margin-bottom: 30px;
  font-family: "Gill Sans Nova W07";
  font-weight: normal;
  font-weight: bold;
  color: black; }
  @media screen and (min-width: 769px) {
    .section-blog .section-title {
      margin-bottom: 60px; } }

.article-item {
  -webkit-transition: 0.4s box-shadow ease-in-out;
  -moz-transition: 0.4s box-shadow ease-in-out;
  -ms-transition: 0.4s box-shadow ease-in-out;
  -o-transition: 0.4s box-shadow ease-in-out;
  transition: 0.4s box-shadow ease-in-out;
  padding: 15px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0); }
  @media screen and (min-width: 480px) {
    .article-item {
      padding: 30px; } }
  .article-item:hover {
    box-shadow: 0 20px 40px rgba(218, 220, 222, 0.7);
    opacity: 1; }
  .article-item a {
    display: block; }
  .article-item + .article-item {
    margin-top: 15px; }

.article-item--buying-guide {
  padding-bottom: 45px;
  border-bottom: 1px solid #dddddd; }

.article-item__image {
  padding-bottom: 65%;
  background-size: cover;
  background-position: center; }

.article-item__title {
  font-family: "Gill Sans Nova W07";
  font-weight: normal;
  font-weight: bold;
  margin-top: 15px; }
  @media screen and (min-width: 480px) {
    .article-item__title {
      margin-top: 0; } }

.article-item__title,
.article-item__title a,
.article-item__content,
.article-item__content a,
.article-item__read-more,
.article-item__read-more a {
  color: #333; }

.article-item__read-more {
  text-transform: uppercase; }

/*

  .blog{
    padding-bottom: $gutter*4;
  }
  .template-blog .main-content{
    padding-bottom: 0;
  }

  .template-article .background-size-cover,
  .template-article .use_image{
    z-index: -1;
  }

  .article__content {
    p,
    ul,
    li {
      font-size: 1.1rem;
    }
  }

  .blog__link{
    text-decoration: none;
    color: inherit;
    .blog__article--image .blog__article__title,
    .blog__article__title,
    .blog__article__text{
      @include transition(transform .15s ease-out);
    }
    .blog__article__overlay {  @include transition(transform 1.1s ease-out); }
    &:hover{
      color: inherit;
      .blog__article__title{ color: darken($colorSplash, 20%); }
      .blog__article--image .blog__article__title{
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
      }
      .blog__article__overlay{
        @include transform(scale(1.05));
      }
      .blog__article__text{
          -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
          transform: translateY(-2px);
      }
      .blog__article__title{
          -webkit-transform: translateY(2px);
          -ms-transform: translateY(2px);
          transform: translateY(2px);
      }
    }
  }

  .blog__article{
    border: 1px solid  rgba(#000, 0.1);
    box-shadow: 1px 1px 7px rgba(#000, 0.1);
    border-radius: $radius;
    padding: $gutter;
    margin-bottom: $gutter;
    @include at-query ($max, $small) {
      padding-left: $gutter/2;
      padding-right: $gutter/2;
    }
    .btn--full{
      margin-bottom: ($gutter + 5px) * -1;
      border-top-right-radius:0;
      border-top-left-radius:0;
    }
  }

  .blog__article-header-image{
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 0;
    padding: $gutter*6 $gutter $gutter $gutter;
    margin-top: $gutter*-1;
    @extend .banner;
    color: #fff;
    @include at-query ($max, $small) {
      padding: $gutter*3 $gutter/2 $gutter/2 $gutter/2;
    }
    a{ color: #fff; }
    &:after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
      background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
      background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    }
  }

  .blog__article--over-image{
    border: none;
    margin-top: -140px;
    background-color: #fff;
    z-index: 100;
    position: relative;
    @include at-query ($max, $medium) {
      margin-top: -100px;
    }
  }

  .blog__article--card{
    margin-top: $gutter;
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .blog .blog__article--card{
    margin-top: 0;
    margin-bottom: $gutter;
  }
  .blog__article--image{
    position: relative;
    overflow: hidden;
    border: none;
  }
  .blog__article__overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    border: none;
    &:after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
      background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
      background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    }
  }
  .blog__article__content{
    margin-top: $gutter/2;
  }
  .blog__article--card .blog__article__content{
    margin: 0;
    min-height: 200px;
  }
  .blog__article--image .blog__article__content{
    display: table;
    .blog__article__title{
      position: relative;
      display: table-cell;
      vertical-align: bottom;
      color: white;
      a{ color: white; }
    }
  }

  .banner,
  .blog__article .btn--full{
    margin-left: $gutter * -1;
    width: calc(100% + 60px);
    position: relative;
    max-width: none;
    @include at-query ($max, $small) {
      width: calc(100% + 30px);
      margin-left: $gutter / -2;
    }
  }

  .blog__article header{
    text-align: center;
    margin-bottom: $gutter;
    .accent{
      opacity: 0.6;
    }
  }
  .blog__article footer{
    margin-bottom: $gutter;
  }
  .blog__sidebar{
    position: relative;
  }
  .template-article .blog__sidebar{
    position: relative;
    margin-top: 40px;
  }

  .blog__rss{
    position:absolute;
    top:5px;
    right: 0;
  }
  .blog__comments{
    text-decoration: none;
    em{ color: rgba($colorPrimary, 0.5); }
    &:hover{
      text-decoration: underline;
    }
  }
  .blog__tag{
    text-decoration: none;
    position: relative;
    color: $colorBody;
    background-color: $colorSplash;
    border-radius: $radius;
    padding: $gutter/6 $gutter/6 $gutter/6 $gutter/2;
    margin-bottom: $gutter/2;
    margin-bottom: 3px;
    display: inline-block;
    @include uppercase;
    &:before{
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 10px;
      position: absolute;
      top: 11px;
      left: 5px;
      background-color: $colorBody;;
    }
  }
  .comment {
    margin-bottom: $gutter;
    & + & {
      border-top: 1px solid rgba($colorBorder, 0.1);
      padding-top: $gutter;
    }
  }
*/
.article__title {
  margin-bottom: .25em;
  font-family: "Gill Sans Nova W07";
  font-weight: normal;
  font-weight: bold; }

.article__date {
  margin-bottom: .75em;
  padding-bottom: 2px;
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  font-size: .9em;
  text-transform: uppercase; }

.article__content {
  color: #333; }
  @media screen and (min-width: 769px) {
    .article__content .image-wrapper {
      margin-right: -30px;
      margin-left: -30px; } }

.article__share--top {
  margin-bottom: 1rem; }

.article__share--bottom {
  margin: 2.5em 0; }

.article__product-block,
.article__newsletter-block {
  padding: 2.5rem 0; }

.article__product-block h2, .article__product-block .h2, .article__product-block .h2--body,
.section-related-article h2,
.section-related-article .h2,
.section-related-article .h2--body {
  font-family: "Gill Sans Nova W07";
  font-weight: normal;
  font-weight: bold; }

.section-blog-header {
  padding: 3rem 0;
  background-color: #fff; }

.section-article-content {
  padding: 1.5rem 0; }
  .section-article-content .breadcrumb {
    margin-bottom: 1.5rem; }

.section-related-article {
  padding: 3rem 0 0; }
  .section-related-article h2, .section-related-article .h2, .section-related-article .h2--body {
    margin-bottom: 0; }

.section-related-article,
.section-blog-content {
  background-color: #fbfbfb; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart__heading {
  margin: 0;
  color: black; }

.cart__shipping-progress {
  margin-bottom: 13px;
  padding-top: 10px;
  border-top: 1px solid #dddddd; }
  .cart__shipping-progress .cart__shipping-progress__text {
    margin-bottom: .5em;
    font-size: .9em;
    font-weight: bold;
    letter-spacing: .02em;
    color: #59c400; }
  .cart__shipping-progress .cart__shipping-progress__text--light {
    margin-top: .5em;
    font-size: .9em; }
  .cart__shipping-progress .cart__shipping-progress__bar {
    display: block;
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    overflow: hidden; }
  .cart__shipping-progress .cart__shipping-progress__bar__background,
  .cart__shipping-progress .cart__shipping-progress__bar__foreground {
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0; }
  .cart__shipping-progress .cart__shipping-progress__bar__background {
    width: 100%;
    background-color: #dddddd; }
  .cart__shipping-progress .cart__shipping-progress__bar__foreground {
    max-width: 100%;
    background-color: #59c400; }

@media screen and (max-width: 481px) {
  .cart__items .grid-condensed {
    margin-right: -5px;
    margin-left: -5px; }
    .cart__items .grid-condensed > .grid__item {
      padding-right: 5px;
      padding-left: 5px; } }

.cart__item {
  position: relative;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #dddddd; }
  .cart__item:first-child {
    margin-top: 0;
    padding-top: 15px; }
  .cart__item:last-child {
    padding-bottom: 15px; }
  .cart__item > * {
    -webkit-transition: 0.15s opacity ease-in-out;
    -moz-transition: 0.15s opacity ease-in-out;
    -ms-transition: 0.15s opacity ease-in-out;
    -o-transition: 0.15s opacity ease-in-out;
    transition: 0.15s opacity ease-in-out;
    opacity: 1; }
  .cart__item.disabled {
    pointer-events: none; }
    .cart__item.disabled > *:not(.item--loadbar) {
      border-top: 1px solid transition;
      opacity: .2; }
    .cart__item.disabled .item--loadbar {
      display: block !important; }
  .cart__item a {
    text-decoration: none; }
  .cart__item .cart__mini-labels {
    display: none;
    margin: 10px 0;
    font-size: 0.85714em; }
  .cart__item .js-qty {
    margin: 0; }
  .cart__item .cart__image {
    display: block;
    width: 100%; }
    .cart__item .cart__image img {
      max-width: 100%; }
  .cart__item .cart__item__title {
    display: inline-block;
    margin-bottom: 0;
    font-size: 1em;
    letter-spacing: .02em;
    line-height: 1.6;
    color: black; }
  .cart__item .cart__item__variant-title {
    margin-bottom: .25em;
    line-height: 1.3; }
    @media screen and (max-width: 481px) {
      .cart__item .cart__item__variant-title {
        margin-bottom: .45em; } }
  .cart__item .cart__qty {
    display: block; }
  .cart__item .cart__item__compare-price {
    margin-bottom: .25em; }
  .cart__item .cart__item__price,
  .cart__item .cart__item__compare-price {
    display: block;
    margin: 0;
    font-size: 1em; }
  .cart__item .cart__remove {
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/icon-close.svg?v=17770966008901757088);
    opacity: 1; }
    .cart__item .cart__remove small {
      display: none; }

@media screen and (min-width: 769px) {
  .cart__item__right {
    padding-right: 0; } }
.cart__item__right .cart__remove {
  margin: 5px 0 0 auto; }

.cart__summary {
  margin-bottom: 8px;
  border-top: 1px solid #dddddd; }
  .cart__summary tr {
    border: 0; }
  .cart__summary th,
  .cart__summary td {
    padding: 4px 0;
    border: 0; }
  .cart__summary th {
    padding: 8px 0 0 0;
    letter-spacing: .02rem;
    font-size: 1em;
    font-weight: bold; }
  .cart__summary td {
    font-size: .9em; }
    .cart__summary td p {
      margin-bottom: 0;
      font-size: 1em;
      line-height: normal; }

.cart__message {
  color: black; }
  .cart__message .cart__message__saving-amount {
    background-color: #fff1a1; }
  .cart__message,
  .cart__message p:last-of-type {
    margin-bottom: 0; }

.cart__footer {
  margin-top: 10px; }
  .cart__footer input.checkout__button {
    display: block;
    width: 100%;
    padding: 30px;
    line-height: 0;
    background-color: #59C400;
    font-size: 1.2em; }
    .cart__footer input.checkout__button:hover, .cart__footer input.checkout__button:focus, .cart__footer input.checkout__button:active {
      background-color: #429100; }
    @media screen and (max-width: 481px) {
      .cart__footer input.checkout__button {
        width: 100%;
        margin: 10px 0;
        padding: 25px 10px; } }
    .cart__footer input.checkout__button:hover, .cart__footer input.checkout__button:focus, .cart__footer input.checkout__button:active {
      background-color: darken-smart(#59c400, 5%); }
  .cart__footer .cart__update {
    display: none; }
    .no--ajax .cart__footer .cart__update {
      display: inline-block;
      margin-right: 15px; }

.cart__footer__currency-note {
  padding-top: .5em;
  font-size: .9em;
  line-height: 1.6;
  color: black; }

.hidden-count {
  display: none; }

.additional-checkout-buttons {
  margin: 20px 0;
  padding: 8px;
  background-color: #fafafa;
  border: 1px solid #f2f2f2;
  text-align: right; }
  @media screen and (min-width: 480px) {
    .additional-checkout-buttons {
      padding: 18px 18px 8px 18px; } }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart-page {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 30px; }
  .cart-page .cart__close {
    display: none; }

/*============================================================================
  #Cart Modal
==============================================================================*/
.cart-modal .cart__wrapper {
  position: fixed;
  width: 400px;
  max-width: 100%;
  max-height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin-bottom: 0;
  padding: 15px;
  background-color: white;
  z-index: 11111;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: 0.15s all ease-in-out;
  -moz-transition: 0.15s all ease-in-out;
  -ms-transition: 0.15s all ease-in-out;
  -o-transition: 0.15s all ease-in-out;
  transition: 0.15s all ease-in-out;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none; }
.cart-modal.in .cart__wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 0 15px rgba(150, 150, 150, 0.2); }
  @media screen and (min-width: 769px) {
    .cart-modal.in .cart__wrapper {
      transform: translateX(-50%);
      width: 800px;
      height: auto;
      max-width: 80%;
      max-height: none;
      left: 50%;
      bottom: auto;
      max-height: 100vh; } }
@media screen and (min-width: 769px) {
  .cart-modal .cart__header,
  .cart-modal .cart__body,
  .cart-modal .cart__footer {
    width: 500px;
    margin: 0 auto; } }
.cart-modal .cart__overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  z-index: 11111;
  opacity: 0; }
.cart-modal.in .cart__overlay {
  display: block;
  opacity: .8; }
.cart-modal .cart__close {
  display: block;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer; }
  @media screen and (min-width: 769px) {
    .cart-modal .cart__close {
      top: 15px; } }
  .cart-modal .cart__close .cart__close__text,
  .cart-modal .cart__close .cart__close__icon {
    display: inline-block;
    vertical-align: middle; }
  .cart-modal .cart__close .cart__close__text {
    margin-right: -5px;
    margin-top: -2px; }
  .cart-modal .cart__close .cart__close__icon {
    width: 22px;
    height: 22px; }
    .cart-modal .cart__close .cart__close__icon svg {
      display: block;
      width: 100%;
      height: auto; }
.cart-modal .cart__header-labels {
  display: none; }
.cart-modal .cart__body--empty p {
  font-size: 1.4em;
  margin: 30px 0 0; }
.cart-modal .cart__body--empty .btn, .cart-modal .cart__body--empty .btn--secondary, .cart-modal .cart__body--empty input[type="submit"], .cart-modal .cart__body--empty .spr-summary-actions-newreview {
  display: none; }

.cart-modal.cart--sticky {
  overflow: hidden; }
  .cart-modal.cart--sticky .cart__body {
    margin-left: -15px;
    margin-right: -15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
  .cart-modal.cart--sticky .cart__footer {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 15px;
    background: white;
    box-shadow: 0 0 15px rgba(200, 200, 200, 0.5); }
    .cart-modal.cart--sticky .cart__footer input.checkout__button {
      margin-top: 0; }

.cart__upsell {
  margin-top: 30px; }
  @media screen and (max-width: 768px) {
    .cart__upsell {
      margin-bottom: 45px; } }
  .cart__upsell .cart__upsell__title {
    margin-bottom: 8px; }
    @media screen and (max-width: 481px) {
      .cart__upsell .cart__upsell__title {
        font-size: 1.5em; } }
  .cart__upsell .cart__upsell__message {
    font-size: .8em; }
  .cart__upsell .product-grid-item {
    margin-bottom: 0; }
  .cart__upsell .cart__upsell__items.card-slider {
    margin-right: -5px;
    margin-left: -5px; }
    .cart__upsell .cart__upsell__items.card-slider .slick-slide {
      padding: 0 5px; }
    .cart__upsell .cart__upsell__items.card-slider .slick-arrow {
      width: 30px;
      height: 30px;
      top: 20%; }
    .cart__upsell .cart__upsell__items.card-slider .slick-prev {
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%); }
    .cart__upsell .cart__upsell__items.card-slider .slick-next {
      -webkit-transform: translateX(50%);
      -moz-transform: translateX(50%);
      -ms-transform: translateX(50%);
      -o-transform: translateX(50%);
      transform: translateX(50%); }
    .cart__upsell .cart__upsell__items.card-slider.slick-initialized .product-grid-item {
      clear: none; }
    .cart__upsell .cart__upsell__items.card-slider:not(.slick-initialized) .product-grid-item {
      margin-bottom: 15px;
      padding-right: 5px;
      padding-left: 5px; }
  .cart__upsell .product-form--inline .product__select {
    display: block; }

/*============================================================================
  #Quantity Selectors
==============================================================================*/
.js-qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 103px;
  min-width: 75px;
  overflow: visible;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }
  .js-qty .js-qty__num {
    display: block;
    background: none;
    text-align: center;
    border: 1px solid #dddddd;
    width: 100%;
    padding: 5px 30px;
    margin: 0; }

.product-single .js-qty {
  margin-left: auto;
  margin-right: auto; }

.js-qty__adjust {
  cursor: pointer;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  top: 0px;
  bottom: 0px;
  border: 0 none;
  background: none;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
  .js-qty__adjust:hover, .js-qty__adjust:focus {
    color: black;
    outline: none; }
  .js-qty__adjust:active {
    color: black;
    outline: none; }

.js-qty__adjust--plus {
  right: 0; }

.js-qty__adjust--minus {
  left: 0; }

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

.cart__row .js-qty__num {
  display: block;
  background: none;
  text-align: center;
  width: 100%;
  padding: 7px 11px;
  margin: 0; }

.notes--hide .cart__instructions {
  display: none; }

.quantity--hide .cart__qty__th,
.quantity--hide .cart__line__qty {
  visibility: hidden; }
.quantity--hide .quantity-selector {
  display: none; }

@media screen and (min-width: 769px) {
  .cart__qty {
    display: flex;
    align-items: center;
    justify-content: center; } }
.cart__row p {
  margin-bottom: 0.25em;
  margin-top: 0.25em; }

@media screen and (max-width: 481px) {
  .cart__line__totals {
    display: flex;
    align-items: baseline;
    justify-content: flex-end; } }
.cart__line__qty {
  display: flex;
  align-items: baseline;
  justify-content: center; }

.cart__footer__buttons {
  margin: 10px 0; }

/*================ Discounts ================*/
.item__price--sale {
  color: rgba(102, 102, 102, 0.5);
  text-decoration: line-through; }

.line--sale .item__price--aftersale {
  margin-left: 6px; }

.line--discounted .item__price {
  color: #666666; }

.line__discounts {
  color: black; }

.cart__discounts svg {
  width: 0.9em;
  height: 0.9em;
  position: relative; }
  .cart__discounts svg path {
    stroke: rgba(102, 102, 102, 0.4) !important;
    fill: none !important; }

.item__total__savings {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.05);
  color: black;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
  margin-bottom: 0.25em; }

.cart__icon--tags svg {
  width: 0.9em;
  height: 0.9em;
  position: relative; }
  .cart__icon--tags svg path {
    stroke: rgba(0, 0, 0, 0.8) !important;
    fill: none !important; }

/*================ Loading animation ================*/
.item--loadbar {
  position: absolute;
  width: 100%;
  top: -1px;
  height: 2px;
  overflow: hidden;
  background-color: rgba(102, 102, 102, 0.05); }
  .item--loadbar:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -300px;
    width: 300px;
    height: 2px;
    background-color: black;
    animation: loadbar 2s linear infinite; }

@keyframes loadbar {
  from {
    left: -300px;
    width: 30%;
    opacity: 0; }

  1% {
    left: -300px;
    width: 30%;
    opacity: 1; }

  50% {
    width: 33%; }

  70% {
    width: 66%; }

  80% {
    left: 60%; }

  95% {
    left: 120%;
    opacity: 1; }

  99% {
    left: 150%;
    opacity: 0; } }

.cart__image,
.cart__item__title {
  pointer-events: none; }

.select2-container--open {
  z-index: 9999999;
  z-index: 111111 !important; }

.cart__footer__promo-message {
  width: 400px;
  max-width: 100%;
  margin: 30px auto;
  padding: 15px 10px;
  border: 3px dashed #f00; }
  .cart__footer__promo-message p {
    margin: 0;
    line-height: normal; }

.cart__footer__promo-message-title {
  margin-bottom: 5px; }

/*============================================================================
  #Password Page
==============================================================================*/
.template-password {
  height: 100vh;
  text-align: center; }

.password-section {
  width: 100%;
  height: 100%; }

.password__wrapper {
  display: table;
  height: 100%;
  width: 100%;
  color: #666666;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #666666; }
  .password__wrapper .password__footer__inner {
    color: #fff; }
  .password__wrapper a {
    color: inherit; }

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

.password__main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px; }
  @media screen and (max-width: 480px) {
    .password__main__inner {
      padding: 10px 10px; } }
  @media screen and (min-width: 480px) {
    .password__main__inner {
      padding: 10px 30px; } }

.password__box {
  background-color: white;
  max-width: 600px;
  margin: 0 auto; }
  @media screen and (max-width: 480px) {
    .password__box {
      padding: 30px 30px; } }
  @media screen and (min-width: 480px) {
    .password__box {
      padding: 30px 0; } }

.template-password .newsletter-form {
  border: 1px solid rgba(221, 221, 221, 0.5); }

.storefront-password-form {
  margin-top: 30px; }

.password__hero {
  font-family: "Adobe Caslon W08", serif;
  -webkit-font-smoothing: antialiased;
  font-size: 3em;
  line-height: 1.15;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  padding-bottom: 30px;
  padding-top: 30px; }
  @media screen and (min-width: 481px) {
    .password__hero {
      font-size: 3.57143em; } }
  @media screen and (min-width: 769px) {
    .password__hero {
      font-size: 3.92857em; } }
  .password__hero .logo {
    max-width: 100%;
    max-height: 200px; }

.password__message {
  font-size: 120%; }
  .password__message img {
    max-width: 100%; }

.password__hero,
.password__message,
.password__login-form,
.password__signup-form {
  max-width: 500px;
  margin: 0 auto; }

.password__login-form {
  text-align: center;
  padding: 60px 30px; }

.password__login-form,
.password__box {
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 4px; }

.password__login-form,
.password__signup-form {
  background-color: white; }
  @media screen and (min-width: 480px) {
    .password__login-form,
    .password__signup-form {
      padding-left: 30px;
      padding-right: 30px; } }
  .password__login-form .input-group,
  .password__signup-form .input-group {
    width: 100%; }
  .password__login-form .errors ul,
  .password__signup-form .errors ul {
    list-style-type: none;
    margin-left: 0; }

.password__signup-form {
  padding-top: 30px; }

.password__signup-form__heading {
  margin-bottom: 0.8em; }

.password__social-sharing {
  margin-top: 30px; }

.password__social-sharing__heading {
  margin-bottom: 0; }

.admin-login {
  margin-top: 15px;
  margin-bottom: 0; }
  .admin-login a {
    text-decoration: none; }

.admin-login {
  font-size: 95%; }

.password__footer {
  display: table-row;
  height: 1px; }

.password__footer__inner {
  display: table-cell;
  vertical-align: bottom;
  padding: 30px;
  line-height: 21px;
  font-size: 95%;
  color: #666666; }
  .password__footer__inner a {
    text-decoration: none;
    margin: 0 15px; }
    @media screen and (max-width: 768px) {
      .password__footer__inner a {
        display: block;
        margin-top: 15px; } }

.stamped-starrating .fa {
  font-size: 0.7rem;
  letter-spacing: 0.1rem; }
  .stamped-starrating .fa.fa-star:before, .stamped-starrating .fa.fa-star-o:before, .stamped-starrating .fa.fa-star-half-o:before {
    font-size: 18px; }
  .stamped-starrating .fa.fa-star, .stamped-starrating .fa.fa-star-checked, .stamped-starrating .fa.fa-star-half-o, .stamped-starrating .fa.fa-star-o {
    color: gold; }

.stamped-review {
  width: 700px;
  max-width: 100%;
  margin: 0 auto !important; }
  .stamped-review, .stamped-review:first-child {
    padding: 30px 0;
    border-top: 1px solid #dddddd !important; }
  .stamped-review .stamped-review-header {
    text-align: left; }
    @media screen and (min-width: 768px) {
      .stamped-review .stamped-review-header {
        width: 50%;
        float: left; } }
    .stamped-review .stamped-review-header .created {
      float: none; }
  .stamped-review .stamped-review-content {
    margin: 0;
    text-align: left; }
    @media screen and (min-width: 768px) {
      .stamped-review .stamped-review-content {
        width: 50%;
        float: right;
        clear: none; } }
    .stamped-review .stamped-review-content .stamped-review-header-title {
      margin: 0;
      font-family: 'Gill Sans Nova W07' !important; }
    .stamped-review .stamped-review-content .stamped-review-image {
      display: none; }
  .stamped-review .author {
    display: block;
    text-align: left;
    font-style: italic; }
    @media screen and (min-width: 768px) {
      .stamped-review .author {
        display: inline-block;
        float: left; } }
  .stamped-review .verified-badge,
  .stamped-review .stamped-review-product,
  .stamped-review .stamped-review-date {
    display: none; }
  .stamped-review:after {
    display: block;
    clear: both;
    content: ""; }

.stamped-container {
  text-align: center !important; }
  .stamped-container .stamped-header-title {
    font-family: "Adobe Caslon W08", serif;
    font-weight: 400 !important;
    font-size: 1.79259rem !important; }
  .stamped-container .stamped-header .stamped-summary .summary-overview {
    width: 100% !important; }
  .stamped-container .stamped-header .stamped-summary .stamped-summary-ratings {
    display: none; }
  .stamped-container .stamped-header .stamped-summary .stamped-summary-starrating {
    width: 100%; }
  .stamped-container .stamped-header .stamped-summary .stamped-summary-actions {
    display: inline-block; }
    .stamped-container .stamped-header .stamped-summary .stamped-summary-actions .stamped-summary-actions-newreview {
      display: none; }
  .stamped-container .stamped-header .stamped-summary .stamped-summary-caption-2 {
    display: block !important; }
  .stamped-container .stamped-header .stamped-summary .stamped-summary-photos {
    display: none; }
  .stamped-container .stamped-content .stamped-tab-container {
    margin-top: 15px; }
    .stamped-container .stamped-content .stamped-tab-container ul.stamped-tabs li {
      font-size: 13px; }
  .stamped-container .stamped-content .stamped-reviews-filter {
    border-bottom: 0 !important; }
  .stamped-container .stamped-content .stamped-reviews-filter-label {
    display: block;
    margin-top: 50px; }
  .stamped-container .stamped-content ul.stamped-summary-keywords-list {
    margin: 10px auto 0; }
  .stamped-container .stamped-content .new-question-form {
    width: 700px;
    max-width: 100%;
    margin: auto;
    text-align: left; }
    @media only screen and (max-width: 480px) {
      .stamped-container .stamped-content .new-question-form {
        margin: 0 !important; } }
    .stamped-container .stamped-content .new-question-form .stamped-form-title {
      display: none; }
    @media (min-width: 768px) {
      .stamped-container .stamped-content .new-question-form .stamped-form-contact-email,
      .stamped-container .stamped-content .new-question-form .stamped-form-contact-location,
      .stamped-container .stamped-content .new-question-form .stamped-form-contact-name {
        width: 50%;
        max-width: none; } }
    .stamped-container .stamped-content .new-question-form .spr-form-input-textarea {
      height: 60px;
      min-height: 60px; }
    .stamped-container .stamped-content .new-question-form .stamped-button {
      float: left;
      text-transform: uppercase;
      letter-spacing: .05rem; }
  .stamped-container .stamped-questions .stamped-review {
    width: 700px;
    max-width: 100%;
    margin: auto;
    letter-spacing: normal; }
    .stamped-container .stamped-questions .stamped-review:first-child {
      border-top: 0 !important; }
    .stamped-container .stamped-questions .stamped-review:last-child {
      margin-bottom: 30px !important; }
  .stamped-container .stamped-questions .stamped-review-header {
    display: none; }
  .stamped-container .stamped-questions .stamped-review-content {
    width: 100%;
    float: none;
    font-weight: bold; }
    .stamped-container .stamped-questions .stamped-review-content .stamped-review-content-body {
      font-family: 'Gill Sans Nova W07' !important;
      letter-spacing: normal;
      font-size: 16px; }
  .stamped-container .stamped-questions .stamped-icon-comment {
    display: none; }
  .stamped-container .stamped-questions .stamped-review-reply {
    margin: 10px 0 0 !important;
    padding: 0;
    border: 0;
    text-align: left; }
    .stamped-container .stamped-questions .stamped-review-reply .stamped-review-header-byline {
      display: none; }
    .stamped-container .stamped-questions .stamped-review-reply .stamped-review-reply-body {
      letter-spacing: normal;
      font-size: 14px;
      color: #666 !important; }
  @media screen and (min-width: 480px) {
    .stamped-container .stamped-questions .stamped-review-content,
    .stamped-container .stamped-questions .stamped-review-reply {
      position: relative;
      padding-left: 120px; }
      .stamped-container .stamped-questions .stamped-review-content:before,
      .stamped-container .stamped-questions .stamped-review-reply:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        font-weight: bold; }
    .stamped-container .stamped-questions .stamped-review-content:before {
      content: "Question:"; }
    .stamped-container .stamped-questions .stamped-review-reply:before {
      content: "Answer:"; } }
  @media screen and (max-width: 481px) {
    .stamped-container .stamped-questions .stamped-review-reply {
      margin-left: 5px !important;
      padding-left: 10px;
      border-left: 3px solid #dddddd; }
    .stamped-container .stamped-questions .stamped-review-reply-body {
      margin: 0; } }
  .stamped-container li#tab-questions[data-count][data-new-tab]:after,
  .stamped-container li#tab-reviews[data-count]:after {
    padding: 0 5px 2px 5px; }

.stamped-proxy-thankyou .fa-heart {
  font-size: 30px !important; }
.stamped-proxy-thankyou div div div {
  display: none !important; }

.stamped-pagination {
  margin: 25px 0; }

#stamped-review-avatar {
  display: none !important; }

.stamped-sort-select,
.stamped-review-footer {
  display: none !important; }

.stamped-container {
  font-family: inherit !important; }

p.stamped-review-content-body,
span.stamped-summary-text, span.author {
  color: #666 !important; }

.stamped-review-content-body,
.stamped-review-reply-body, .stamped-review-reply-shop {
  line-height: inherit !important; }

#stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-title {
  display: block;
  float: none !important;
  font-size: 2rem !important;
  font-family: "Adobe Caslon W08", serif;
  text-align: center;
  font-weight: normal !important;
  letter-spacing: .02em;
  margin-bottom: 20px !important;
  color: black; }
  @media screen and (min-width: 769px) {
    #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-title {
      font-size: 2.5rem !important; } }
#stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-subtitle {
  float: none !important;
  text-align: center; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-subtitle .stamped-carousel-stars-wrapper {
    vertical-align: middle; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-subtitle .stamped-carousel-subtitle-count {
    font-size: 0;
    color: black; }
    #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-subtitle .stamped-carousel-subtitle-count:after {
      font-size: 1.1rem;
      font-family: "Gill Sans Nova W01";
      content: "3,000+ Reviews" !important; }
#stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .block {
  height: auto !important;
  padding: 0 15px; }
#stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll:before,
#stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-reviews-date {
  display: none !important; }
#stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper > * {
    display: block;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-rating {
    order: 1; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-title {
    order: 2;
    margin-bottom: 15px !important;
    font-family: "Gill Sans Nova W01";
    white-space: normal; }
    #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-title > a {
      color: black; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-message {
    order: 3;
    margin-bottom: 30px; }
    @media screen and (min-width: 769px) {
      #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-message {
        padding: 0 15px !important; } }
    @media screen and (max-width: 690px) {
      #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-message {
        margin-left: 0 !important; } }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-message .stamped-reviews-message-block,
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-author {
    font-style: normal;
    font-weight: normal;
    line-height: 1.33;
    letter-spacing: .01em;
    color: black; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-author {
    order: 4; }
    @media screen and (max-width: 690px) {
      #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-author {
        margin-left: 0 !important; } }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-image {
    order: 5;
    display: block;
    margin: 10px auto 0 !important;
    border-radius: 0;
    width: 120px;
    height: 120px; }
    #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-image a {
      height: 120px; }
    @media screen and (min-width: 769px) {
      #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-image {
        width: 120px;
        height: 120px; }
        #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-image a {
          height: 120px; } }
    #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-image .stamped-reviews-product-title {
      font-size: .8rem;
      text-align: center;
      line-height: normal; }
      #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-ratings-wrapper .stamped-reviews-image .stamped-reviews-product-title > a {
        text-decoration: underline;
        color: black; }
#stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-reviews-image {
  height: auto !important;
  border: 0 !important; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-reviews-image img {
    display: block;
    position: relative !important; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-reviews-image > .stamped-reviews-link {
    height: auto !important;
    min-height: 120px;
    border: 1px solid #ddd; }
  #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-reviews-image .stamped-reviews-product-title {
    position: relative;
    width: auto;
    height: auto; }
    #stamped-reviews-widget[data-widget-type="carousel"] .stamped-carousel-scroll .stamped-reviews-image .stamped-reviews-product-title > .stamped-style-color-link {
      height: auto; }

.star-rating__list {
  margin: 0; }

.star-rating__item {
  display: inline-block; }
  .star-rating__item svg {
    fill: #ffd200; }
  .star-rating__item + .star-rating__item {
    margin-left: .25px; }

.collection-grid-item {
  margin-bottom: 30px; }

.collection-grid-item__img {
  margin-bottom: 8px; }
  @media screen and (min-width: 769px) {
    .collection-grid-item__img {
      margin-bottom: 15px; } }

.collection-grid-item__btn {
  margin-top: .5em;
  font-size: .9rem;
  color: black; }
  @media screen and (min-width: 769px) {
    .collection-grid-item__btn {
      font-size: 1.3rem; } }

/*================ SECTIONS ================*/
.section-search {
  display: none; }
  @media screen and (max-width: 769px) {
    .section-search {
      max-height: 100vh;
      overflow: scroll;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch; } }
  .section-search.in {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1111111;
    background: white;
    box-shadow: 0 0 15px rgba(100, 100, 100, 0.2); }
  .section-search .section-body {
    padding-top: 30px;
    padding-bottom: 30px; }
    @media screen and (min-width: 769px) {
      .section-search .section-body {
        padding-top: 60px;
        padding-bottom: 60px; } }
  .section-search .search-bar {
    display: block;
    width: 100%; }
    .section-search .search-bar [data-search-input] {
      font-size: 1.6em;
      text-align: center;
      border: 0;
      border-bottom: 1px solid #aaa;
      color: black; }
      .section-search .search-bar [data-search-input]:focus {
        box-shadow: none;
        border-bottom: 1px solid black; }
    .section-search .search-bar .input-group-btn {
      display: none; }
  .section-search .grid-search-results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .section-search .grid-search-results > .search-result {
      margin-right: auto;
      margin-left: auto; }
  .section-search .search__content {
    overflow: hidden; }
  .section-search .search-result {
    margin-bottom: 30px;
    text-align: center; }
  .section-search .search-result__title {
    margin-bottom: .25em; }
  .section-search [data-search-close] {
    position: fixed;
    cursor: pointer;
    z-index: 1; }
    @media screen and (min-width: 769px) {
      .section-search [data-search-close] {
        position: relative;
        margin: 15px; } }
    .section-search [data-search-close] svg {
      display: block;
      width: 100%;
      height: auto; }
  .section-search [data-search-result] {
    position: relative;
    padding-bottom: 30px; }
    @media screen and (min-width: 769px) {
      .section-search [data-search-result] {
        max-height: 350px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; } }
    .section-search [data-search-result].loading {
      pointer-events: none; }
      .section-search [data-search-result].loading > * {
        opacity: .2; }
      .section-search [data-search-result].loading:after {
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        position: absolute;
        height: 50px;
        top: 50%;
        right: 0;
        bottom: auto;
        left: 0;
        background-image: url(//cdn.shopify.com/s/files/1/0757/9123/t/135/assets/loading.gif?v=1571974489441092305);
        background-size: 100px;
        background-position: center;
        background-repeat: no-repeat; }

.section-bag-prelaunch .section-image-and-text {
  padding: 0 !important; }
  .section-bag-prelaunch .section-image-and-text .block--text__body h1, .section-bag-prelaunch .section-image-and-text .block--text__body .h1, .section-bag-prelaunch .section-image-and-text .block--text__body .h1--body {
    margin: .75rem 0 0.5rem;
    font-size: 1.8em; }
    @media screen and (min-width: 769px) {
      .section-bag-prelaunch .section-image-and-text .block--text__body h1, .section-bag-prelaunch .section-image-and-text .block--text__body .h1, .section-bag-prelaunch .section-image-and-text .block--text__body .h1--body {
        font-size: 2.5em; } }
    @media screen and (min-width: 992px) {
      .section-bag-prelaunch .section-image-and-text .block--text__body h1, .section-bag-prelaunch .section-image-and-text .block--text__body .h1, .section-bag-prelaunch .section-image-and-text .block--text__body .h1--body {
        font-size: 3.5em; } }
  .section-bag-prelaunch .section-image-and-text .block--text__body h2, .section-bag-prelaunch .section-image-and-text .block--text__body .h2, .section-bag-prelaunch .section-image-and-text .block--text__body .h2--body {
    margin-bottom: 0.5rem;
    font-family: "Gill Sans Nova W07";
    text-transform: uppercase;
    color: #666; }
  .section-bag-prelaunch .section-image-and-text .block--text__body h2, .section-bag-prelaunch .section-image-and-text .block--text__body .h2, .section-bag-prelaunch .section-image-and-text .block--text__body .h2--body,
  .section-bag-prelaunch .section-image-and-text .block--text__body p {
    font-size: 1.2em; }
    @media screen and (min-width: 992px) {
      .section-bag-prelaunch .section-image-and-text .block--text__body h2, .section-bag-prelaunch .section-image-and-text .block--text__body .h2, .section-bag-prelaunch .section-image-and-text .block--text__body .h2--body,
      .section-bag-prelaunch .section-image-and-text .block--text__body p {
        font-size: 1.4em; } }
  .section-bag-prelaunch .section-image-and-text .block--text__body .btn, .section-bag-prelaunch .section-image-and-text .block--text__body .btn--secondary, .section-bag-prelaunch .section-image-and-text .block--text__body input[type="submit"], .section-bag-prelaunch .section-image-and-text .block--text__body .spr-summary-actions-newreview {
    margin-top: 0; }
  .section-bag-prelaunch .section-image-and-text .block--text__body .block--text__cta {
    margin-top: 30px; }
.section-bag-prelaunch .block--image__slider .block--image__bg {
  background-size: contain; }
  @media screen and (min-width: 769px) {
    .section-bag-prelaunch .block--image__slider .block--image__bg {
      min-height: 450px;
      min-height: 80vh; } }
.section-bag-prelaunch .block--image__slider .slick-prev:before,
.section-bag-prelaunch .block--image__slider .slick-next:before {
  font-size: 2rem;
  color: #000; }

.section-featured-in {
  padding: 2.5rem 0; }
  .section-featured-in img {
    /*width: 650px;*/
    max-width: 100%; }

.section-full-image {
  padding: 0; }
  .section-full-image .rte {
    margin-bottom: 0; }
  .section-full-image img {
    display: block;
    width: 100%;
    max-width: 100%; }

.section-image-and-text {
  position: relative; }
  @media screen and (min-width: 769px) {
    .section-image-and-text {
      padding: 2.5rem 0; } }
  .section-image-and-text > .wrapper > .grid, .section-image-and-text > .wrapper--wide > .grid, .section-image-and-text > .wrapper--full > .grid, .section-image-and-text > .wrapper > .grid--rev, .section-image-and-text > .wrapper--wide > .grid--rev, .section-image-and-text > .wrapper--full > .grid--rev, .section-image-and-text > .wrapper > .grid--full, .section-image-and-text > .wrapper--wide > .grid--full, .section-image-and-text > .wrapper--full > .grid--full {
    position: relative; }
  @media screen and (max-width: 480px) {
    .section-image-and-text .block--image {
      padding-right: 0;
      padding-left: 0; } }
  .section-image-and-text .block--image__body {
    width: 500px;
    max-width: 100%;
    margin: 0 auto; }
    @media screen and (min-width: 769px) {
      .section-image-and-text .block--image__body {
        width: 100%; } }
  .section-image-and-text .block--image__bg {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .section-image-and-text .block--image__slider .slick-prev {
    left: 15px; }
  .section-image-and-text .block--image__slider .slick-next {
    right: 15px; }
  .section-image-and-text .block--text {
    overflow: hidden; }
    @media screen and (min-width: 769px) {
      .section-image-and-text .block--text {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 50%; } }
    .section-image-and-text .block--text h2, .section-image-and-text .block--text .h2, .section-image-and-text .block--text .h2--body {
      margin-bottom: .25em; }
    .section-image-and-text .block--text .rte {
      margin-bottom: 0; }
      .section-image-and-text .block--text .rte p:last-of-type {
        margin-bottom: 0; }
    .section-image-and-text .block--text .btn--xlarge {
      font-size: 1.42857rem; }
    .section-image-and-text .block--text .value-props {
      margin: 1.5em 0 0; }
      .section-image-and-text .block--text .value-props .grid__item {
        width: 100%; }
      .section-image-and-text .block--text .value-props .value-props__item {
        text-align: left; }
        @media screen and (min-width: 769px) {
          .section-image-and-text .block--text .value-props .value-props__item {
            margin: 15px 0; } }
      .section-image-and-text .block--text .value-props .value-props__icon {
        display: block;
        margin: 0 auto; }
        @media screen and (min-width: 769px) {
          .section-image-and-text .block--text .value-props .value-props__icon {
            display: inline-block;
            margin-right: 15px;
            width: 30px;
            min-height: 030px; } }
      .section-image-and-text .block--text .value-props .value-props__text {
        display: block;
        text-align: center;
        font-weight: bold;
        letter-spacing: .1em;
        line-height: normal; }
        @media screen and (min-width: 769px) {
          .section-image-and-text .block--text .value-props .value-props__text {
            display: inline-block;
            font-size: 1.2em; } }
  .section-image-and-text .block--text__body {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 2.5rem 0; }
    @media screen and (max-width: 768px) {
      .section-image-and-text .block--text__body {
        text-align: center !important; } }
    @media screen and (min-width: 769px) {
      .section-image-and-text .block--text__body {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 90%;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        z-index: 100;
        max-width: 600px;
        padding: 0; } }
    .section-image-and-text .block--text__body .btn, .section-image-and-text .block--text__body .btn--secondary, .section-image-and-text .block--text__body input[type="submit"], .section-image-and-text .block--text__body .spr-summary-actions-newreview {
      margin-top: .65em; }
      @media screen and (min-width: 769px) {
        .section-image-and-text .block--text__body .btn, .section-image-and-text .block--text__body .btn--secondary, .section-image-and-text .block--text__body input[type="submit"], .section-image-and-text .block--text__body .spr-summary-actions-newreview {
          margin-top: 1em; } }
    .section-image-and-text .block--text__body form {
      width: 300px;
      max-width: 100%;
      margin: 15px auto 0; }
      .section-image-and-text .block--text__body form input[type="email"] {
        text-align: center; }
  .section-image-and-text .block--text__footer {
    text-align: center; }
    @media screen and (min-width: 769px) {
      .section-image-and-text .block--text__footer {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0; } }
    .section-image-and-text .block--text__footer p {
      font-size: 1em; }
  @media screen and (min-width: 769px) {
    .section-image-and-text .grid--rev > .block--text {
      right: 50%;
      left: auto; } }

.section-instagram-blocks {
  padding: 5px 5px;
  overflow: hidden; }
  @media screen and (max-width: 480px) {
    .section-instagram-blocks {
      padding: 5px 15px; } }
  @media screen and (max-width: 768px) {
    .section-instagram-blocks .section-heading {
      margin-top: 20px; } }

.grid--instagram-blocks {
  margin-right: -2.5px;
  margin-left: -2.5px; }
  .grid--instagram-blocks > .grid__item {
    padding-right: 2.5px;
    padding-left: 2.5px;
    padding-bottom: 5px; }

.instagram-block__icon {
  font-size: 1.8rem; }
  @media screen and (min-width: 480px) {
    .instagram-block__icon {
      font-size: 14px; } }

.instagram-block__text {
  font-size: 2rem; }
  @media screen and (min-width: 480px) {
    .instagram-block__text {
      font-size: .95rem; } }

.instagram-block__link {
  display: block;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%; }

.instagram-block__bg,
.instagram-block__body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.instagram-block__bg {
  background-color: #f2f2f2;
  background-position: top center;
  background-size: cover; }
  .instagram-block__bg:before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    pointer-events: none;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out; }
    @media screen and (max-width: 480px) {
      .instagram-block__bg:before {
        opacity: .3; } }
    .instagram-block:hover .instagram-block__bg:before {
      opacity: .7; }

.instagram-block__body {
  top: 50%;
  text-align: center;
  color: #fff; }

.instagram-block__content {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out; }
  @media screen and (max-width: 480px) {
    .instagram-block__content {
      opacity: .7; } }
  .instagram-block:hover .instagram-block__content {
    opacity: .7; }

.instagram-modal__image-wrap {
  position: relative; }
  @media screen and (max-width: 480px) {
    .instagram-modal__image-wrap {
      margin-top: -25px;
      margin-right: -25px;
      margin-left: -25px;
      background: rgba(0, 0, 0, 0.9); } }

.instagram-modal__image {
  display: block;
  max-height: 75vh;
  margin: 0 auto; }
  @media screen and (max-width: 480px) {
    .instagram-modal__image {
      max-height: 50vh; } }

.instagram-modal__caption {
  margin-bottom: 0;
  text-align: center; }
  @media screen and (max-width: 480px) {
    .instagram-modal__caption {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.7);
      font-style: .95em;
      color: #fff; } }

.instagram-modal__product__title {
  margin-bottom: .25em; }

.instagram-modal__copyright {
  margin-top: 2.5em; }
  @media screen and (max-width: 480px) {
    .instagram-modal__copyright {
      font-size: .95em; } }
  .instagram-modal__copyright a {
    text-decoration: none; }
    .instagram-modal__copyright a:active, .instagram-modal__copyright a:focus, .instagram-modal__copyright a:hover {
      text-decoration: underline; }

.small--hide .instagram-modal__close {
  margin: 15px; }
.medium--hide.large--hide .instagram-modal__close {
  display: inline-block;
  position: relative;
  margin: 25px 0; }

.instagram-modal__nav {
  display: block;
  margin: 25px 0; }
  .instagram-modal__nav li {
    display: inline-block; }
  .instagram-modal__nav .instagram-modal__nav__link {
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none; }
    .instagram-modal__nav .instagram-modal__nav__link:before {
      display: inline;
      font-family: "icons";
      text-decoration: none;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 3rem;
      letter-spacing: normal;
      color: #000;
      border: 0; }
  .instagram-modal__nav .instagram-modal__nav__prev:before {
    content: "\e901"; }
  .instagram-modal__nav .instagram-modal__nav__next:before {
    content: "\e902"; }
  .instagram-modal__nav span {
    display: none; }

.mfp-container .mfp-content .instagram-modal {
  max-width: 1000px;
  min-height: 80vh;
  padding: 25px; }
  .mfp-container .mfp-content .instagram-modal .wrapper, .mfp-container .mfp-content .instagram-modal .wrapper--wide, .mfp-container .mfp-content .instagram-modal .wrapper--full {
    padding: 0; }
  @media screen and (min-width: 480px) {
    .mfp-container .mfp-content .instagram-modal .grid--vcenter {
      display: flex;
      align-items: center;
      justify-content: center; } }

.mfp-arrow {
  display: none !important; }

.mfp-arrow.mfp-arrow-left:before,
.mfp-arrow.mfp-arrow-right:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3rem;
  letter-spacing: normal;
  color: #000;
  border: 0; }

.mfp-arrow.mfp-arrow-left:before {
  content: "\e901"; }

.mfp-arrow.mfp-arrow-right:before {
  content: "\e902"; }

.mfp-arrow.mfp-arrow-left:after,
.mfp-arrow.mfp-arrow-right:after {
  display: none; }

.section-page-content {
  padding: 2.5rem 0; }
  .section-page-content img {
    max-width: 100%;
    margin-bottom: 3em; }
    @media screen and (max-width: 480px) {
      .section-page-content img {
        width: auto;
        max-width: calc(100% + 30px);
        margin-right: -15px !important;
        margin-left: -15px !important; } }

.section-video {
  padding: 2.5rem 0; }
  .section-video h2, .section-video .h2, .section-video .h2--body {
    margin-bottom: .25em; }
  .section-video .embed-responsive-wrapper {
    margin-top: 30px; }
    @media screen and (max-width: 480px) {
      .section-video .embed-responsive-wrapper {
        margin-right: -15px !important;
        margin-left: -15px !important; } }

.section-collection-lookbook-banner .section-body {
  display: block;
  text-decoration: none; }
.section-collection-lookbook-banner .section-heading,
.section-collection-lookbook-banner .section-subheading {
  width: 600px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto; }
.section-collection-lookbook-banner .section-heading {
  margin-top: 20px; }
  @media screen and (max-width: 480px) {
    .section-collection-lookbook-banner .section-heading {
      font-size: 2.8em; } }
.section-collection-lookbook-banner .section-subheading a {
  color: black;
  text-decoration: underline; }

.section-collection-lookbook {
  margin: 30px 0; }
  @media screen and (min-width: 481px) {
    .section-collection-lookbook {
      margin: 0; } }
  @media screen and (min-width: 481px) {
    .section-collection-lookbook .wrapper--full {
      padding-right: 30px;
      padding-left: 30px; } }
  @media screen and (min-width: 481px) {
    .section-collection-lookbook .grid__item--left {
      text-align: right; } }
  .section-collection-lookbook .section-collection-lookbook__header .section-heading span {
    display: inline-block;
    vertical-align: middle; }
  .section-collection-lookbook .section-collection-lookbook__header .section-heading__caret {
    padding: 0 10px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.2s transform ease-in-out;
    -moz-transition: 0.2s transform ease-in-out;
    -ms-transition: 0.2s transform ease-in-out;
    -o-transition: 0.2s transform ease-in-out;
    transition: 0.2s transform ease-in-out; }
  .section-collection-lookbook .section-collection-lookbook__header .section-heading__tab {
    margin-bottom: 0;
    font-size: 1.2em;
    text-align: center;
    text-transform: uppercase;
    color: #000; }
    .section-collection-lookbook .section-collection-lookbook__header .section-heading__tab span,
    .section-collection-lookbook .section-collection-lookbook__header .section-heading__tab svg {
      display: inline-block;
      vertical-align: middle; }
    .section-collection-lookbook .section-collection-lookbook__header .section-heading__tab svg {
      width: 30px; }
  @media screen and (min-width: 481px) {
    .section-collection-lookbook .section-collection-lookbook__body {
      display: block !important; } }
  .section-collection-lookbook .section-collection-lookbook__body .section-body {
    padding-top: 30px;
    padding-bottom: 30px; }
  .section-collection-lookbook .section-collection-lookbook__footer {
    padding: 15px;
    text-align: center;
    background-color: #e8e8e8; }
    @media screen and (min-width: 481px) {
      .section-collection-lookbook .section-collection-lookbook__footer {
        display: none !important; } }
    .section-collection-lookbook .section-collection-lookbook__footer p {
      margin-bottom: 0;
      font-size: 1.2em;
      color: black; }
    .section-collection-lookbook .section-collection-lookbook__footer.fixed {
      position: fixed;
      top: 43px;
      right: 0;
      bottom: auto;
      left: 0;
      z-index: 1111;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); }
  .section-collection-lookbook [data-collection-lookbook-collapse],
  .section-collection-lookbook [data-collection-lookbook-toggle] {
    cursor: pointer; }
    @media screen and (min-width: 481px) {
      .section-collection-lookbook [data-collection-lookbook-collapse],
      .section-collection-lookbook [data-collection-lookbook-toggle] {
        cursor: default;
        pointer-events: none; } }
  @media screen and (max-width: 480px) {
    .section-collection-lookbook .section-collection-lookbook__body,
    .section-collection-lookbook .section-collection-lookbook__footer {
      display: none;
      opacity: 0;
      -webkit-transition: 0.2s opacity ease-in-out;
      -moz-transition: 0.2s opacity ease-in-out;
      -ms-transition: 0.2s opacity ease-in-out;
      -o-transition: 0.2s opacity ease-in-out;
      transition: 0.2s opacity ease-in-out; } }
  .section-collection-lookbook.expanded .section-heading__caret {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg); }
  .section-collection-lookbook.expanded .section-collection-lookbook__body,
  .section-collection-lookbook.expanded .section-collection-lookbook__footer {
    display: block;
    opacity: 1; }

.section-collection-lookbook-featured {
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    .section-collection-lookbook-featured h2, .section-collection-lookbook-featured .h2, .section-collection-lookbook-featured .h2--body {
      font-size: 2em; } }
  .section-collection-lookbook-featured p {
    font-size: 1.2em; }
    @media screen and (min-width: 769px) {
      .section-collection-lookbook-featured p {
        font-size: 1.1rem; } }
  @media screen and (min-width: 769px) {
    .section-collection-lookbook-featured .grid, .section-collection-lookbook-featured .grid--rev, .section-collection-lookbook-featured .grid--full {
      display: flex;
      align-items: center;
      justify-content: center; } }
  @media screen and (min-width: 769px) {
    .section-collection-lookbook-featured .grid__item--right {
      padding-right: 60px;
      padding-left: 60px; } }
  .section-collection-lookbook-featured .highlight {
    display: inline-block;
    margin-top: .5em;
    font-family: "Gill Sans Nova W01", sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    line-height: normal;
    background-color: #faf6c6;
    color: black; }
  .section-collection-lookbook-featured h2, .section-collection-lookbook-featured .h2, .section-collection-lookbook-featured .h2--body {
    margin-bottom: 0; }
  @media screen and (max-width: 480px) {
    .section-collection-lookbook-featured .section-body--short {
      padding-bottom: 0; }
    .section-collection-lookbook-featured .wrapper, .section-collection-lookbook-featured .wrapper--wide, .section-collection-lookbook-featured .wrapper--full {
      padding-right: 0;
      padding-left: 0; }
    .section-collection-lookbook-featured .grid__item--right {
      padding-right: 30px;
      padding-left: 30px; } }
  @media screen and (max-width: 768px) {
    .section-collection-lookbook-featured .highlight {
      margin-top: 20px; } }

@media screen and (min-width: 481px) {
  .collection-lookbook-blocks[data-product-count="4"] .grid__item--right {
    margin-top: 10%; }
  .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="2"], .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="3"] {
    width: 63%; }
  .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="3"] {
    margin-right: 0;
    margin-left: auto; }
  .collection-lookbook-blocks[data-product-count="6"] .lookbook-block[data-index="2"], .collection-lookbook-blocks[data-product-count="6"] .lookbook-block[data-index="3"] {
    padding-bottom: 150%; }
  .collection-lookbook-blocks[data-product-count="6"] .lookbook-block[data-index="4"] {
    padding-bottom: 124.5%; }
  .collection-lookbook-blocks[data-product-count="6"] .lookbook-block[data-index="5"], .collection-lookbook-blocks[data-product-count="6"] .lookbook-block[data-index="6"] {
    padding-bottom: 200%; }
  .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="2"], .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="3"] {
    padding-bottom: 150%; }
  .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="4"], .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="5"] {
    padding-bottom: 75%; }
    .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="4"] .lookbook-block__bg, .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="5"] .lookbook-block__bg {
      padding: 0; }
  .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="6"], .collection-lookbook-blocks[data-product-count="7"] .lookbook-block[data-index="7"] {
    padding-bottom: 200%; } }
@media only screen and (max-width: 768px) and (min-width: 481px) {
  .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="2"] {
    padding-bottom: 200%; }
  .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="3"] {
    padding-bottom: 175%; }
  .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="4"] {
    padding-bottom: 150%; }
  .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="2"], .collection-lookbook-blocks[data-product-count="4"] .lookbook-block[data-index="3"] {
    width: 100%; } }

.lookbook-block {
  position: relative;
  margin-bottom: 15px; }
  @media screen and (min-width: 481px) {
    .lookbook-block {
      padding-bottom: 100%; } }

.lookbook-block__bg {
  position: relative;
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fbfbfb;
  opacity: 1;
  -webkit-transition: 0.2s opacity ease-in-out;
  -moz-transition: 0.2s opacity ease-in-out;
  -ms-transition: 0.2s opacity ease-in-out;
  -o-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out; }
  @media screen and (min-width: 481px) {
    .lookbook-block__bg {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; } }

.lookbook-block__link:hover .lookbook-block__bg {
  opacity: 0; }
.lookbook-block__link:hover .lookbook-block__bg--hover {
  opacity: 1; }

.lookbook-block__body {
  text-align: center; }
  @media screen and (min-width: 481px) {
    .lookbook-block__body {
      position: absolute;
      width: 100%;
      bottom: 0;
      z-index: 1;
      text-align: center; } }
  @media screen and (max-width: 480px) {
    .lookbook-block__body {
      position: relative;
      margin-top: -30px;
      background: transparent; } }

.lookbook-block__link {
  display: block;
  text-decoration: none; }

.lookbook-block__heading {
  display: inline-block;
  margin-bottom: 0;
  padding: 10px 10px 0;
  background-color: #fff; }
  @media screen and (max-width: 480px) {
    .lookbook-block__heading {
      width: 300px;
      max-width: 100%;
      font-size: 1.6rem; } }
  @media screen and (min-width: 481px) {
    .lookbook-block__heading {
      margin: 0;
      padding: 15px 15px 7.5px;
      line-height: 1.5em; } }

.lookbook-block__content {
  max-width: 300px;
  margin: 0 auto;
  padding: 10px 0 15px;
  color: black;
  text-decoration: none; }
  @media screen and (max-width: 480px) {
    .lookbook-block__content {
      font-size: 1.2em; } }
  @media screen and (min-width: 481px) {
    .lookbook-block__content {
      display: none; } }

.section-double-dynamic .section-body {
  padding-top: 0; }
.section-double-dynamic .section-title {
  font-family: "Gill Sans Nova W01"; }
.section-double-dynamic .block-content--text {
  margin-top: 30px; }
  @media screen and (min-width: 480px) {
    .section-double-dynamic .block-content--text {
      margin-top: 0; } }
  .section-double-dynamic .block-content--text .rte p {
    color: black; }
@media screen and (min-width: 769px) {
  .section-double-dynamic .section-title {
    font-size: 30px; }
  .section-double-dynamic .rte p {
    font-size: 23px; } }
@media screen and (max-width: 481px) {
  .section-double-dynamic .section-title {
    font-size: 25px; }
  .section-double-dynamic .rte {
    text-align: center; }
    .section-double-dynamic .rte p {
      font-size: 18px; }
  .section-double-dynamic .block-content--image {
    position: relative; }
    .section-double-dynamic .block-content--image .section-title {
      position: absolute;
      width: 300px;
      max-width: 100%;
      top: 0;
      right: 0;
      bottom: auto;
      left: 0;
      margin: 0 auto;
      padding: 30px;
      text-align: center;
      color: white; } }

.section-image-blocks h2, .section-image-blocks .h2, .section-image-blocks .h2--body {
  margin-bottom: 30px;
  padding: 0 15px;
  font-family: "Gill Sans Nova W01"; }
  @media screen and (min-width: 769px) {
    .section-image-blocks h2, .section-image-blocks .h2, .section-image-blocks .h2--body {
      margin-bottom: 60px;
      padding: 0 30px; } }
.section-image-blocks .section-body {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media screen and (min-width: 769px) {
    .section-image-blocks .section-body {
      padding-top: 60px; } }
.section-image-blocks .wrapper, .section-image-blocks .wrapper--wide, .section-image-blocks .wrapper--full {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: hidden; }
.section-image-blocks .image-block {
  margin-bottom: 15px; }
  @media screen and (min-width: 769px) {
    .section-image-blocks .image-block {
      margin-bottom: 30px; } }
.section-image-blocks .image-block__wrapper {
  position: relative;
  padding-bottom: 60%;
  overflow: hidden; }
.section-image-blocks .image-block__bg {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.15s transform ease-in-out;
  -moz-transition: 0.15s transform ease-in-out;
  -ms-transition: 0.15s transform ease-in-out;
  -o-transition: 0.15s transform ease-in-out;
  transition: 0.15s transform ease-in-out; }
.section-image-blocks .image-block:hover .image-block__bg {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02); }
.section-image-blocks .image-block__body {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  padding: 0 30px;
  text-align: center; }
.section-image-blocks .image-block__link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-decoration: none; }
.section-image-blocks .image-block__title {
  margin: 0;
  font-family: "Gill Sans Nova W01";
  font-size: 3em;
  color: white; }
.section-image-blocks .image-block__subtitle {
  margin: .5em 0 0;
  font-size: 2em;
  color: white; }
@media screen and (max-width: 481px) {
  .section-image-blocks .image-block__title {
    font-size: 1.8em; }
  .section-image-blocks .image-block__subtitle {
    font-size: 1.2em; } }
@media only screen and (max-width: 1279px) and (min-width: 769px) {
  .section-image-blocks .image-block__title {
    font-size: 2.2em; }
  .section-image-blocks .image-block__subtitle {
    font-size: 1.4em; } }

.section-collection-gender .section-collection .colletion__header,
.section-image-grid .colletion__header {
  margin-bottom: 15px; }
  .section-collection-gender .section-collection .colletion__header h3, .section-collection-gender .section-collection .colletion__header .h3, .section-collection-gender .section-collection .colletion__header .h3--body,
  .section-image-grid .colletion__header h3,
  .section-image-grid .colletion__header .h3,
  .section-image-grid .colletion__header .h3--body {
    margin: 0;
    line-height: normal; }
    @media screen and (min-width: 769px) {
      .section-collection-gender .section-collection .colletion__header h3, .section-collection-gender .section-collection .colletion__header .h3, .section-collection-gender .section-collection .colletion__header .h3--body,
      .section-image-grid .colletion__header h3,
      .section-image-grid .colletion__header .h3,
      .section-image-grid .colletion__header .h3--body {
        font-size: 1.9em; } }
    @media screen and (max-width: 481px) {
      .section-collection-gender .section-collection .colletion__header h3, .section-collection-gender .section-collection .colletion__header .h3, .section-collection-gender .section-collection .colletion__header .h3--body,
      .section-image-grid .colletion__header h3,
      .section-image-grid .colletion__header .h3,
      .section-image-grid .colletion__header .h3--body {
        font-size: 1.9em; } }
    @media screen and (max-width: 374px) {
      .section-collection-gender .section-collection .colletion__header h3, .section-collection-gender .section-collection .colletion__header .h3, .section-collection-gender .section-collection .colletion__header .h3--body,
      .section-image-grid .colletion__header h3,
      .section-image-grid .colletion__header .h3,
      .section-image-grid .colletion__header .h3--body {
        font-size: 1.7em; } }
  @media screen and (min-width: 769px) {
    .section-collection-gender .section-collection .colletion__header p,
    .section-image-grid .colletion__header p {
      font-size: 1.15rem; } }
.section-collection-gender .section-collection .collection__header__image,
.section-image-grid .collection__header__image {
  margin-bottom: 15px; }
  @media screen and (min-width: 480px) {
    .section-collection-gender .section-collection .collection__header__image,
    .section-image-grid .collection__header__image {
      margin-bottom: 30px; } }
.section-collection-gender .section-collection .colletion__header--with-content,
.section-image-grid .colletion__header--with-content {
  margin-bottom: 30px; }
  @media screen and (max-width: 481px) {
    .section-collection-gender .section-collection .colletion__header--with-content,
    .section-image-grid .colletion__header--with-content {
      margin-bottom: 60px;
      text-align: center; } }
.section-collection-gender .section-collection .slick-initialized .product-grid-item,
.section-image-grid .slick-initialized .product-grid-item {
  clear: none; }
@media screen and (max-width: 481px) {
  .section-collection-gender .section-collection[data-enable-slider-mobile="true"] [data-slider] .grid__body,
  .section-image-grid[data-enable-slider-mobile="true"] [data-slider] .grid__body {
    padding-bottom: 0;
    text-align: left !important; }
  .section-collection-gender .section-collection[data-enable-slider-mobile="true"] [data-slider] .grid__title,
  .section-image-grid[data-enable-slider-mobile="true"] [data-slider] .grid__title {
    margin-bottom: 0; }
  .section-collection-gender .section-collection[data-enable-slider-mobile="true"] [data-slider] .slick-list,
  .section-image-grid[data-enable-slider-mobile="true"] [data-slider] .slick-list {
    padding-right: 25%; } }
@media screen and (max-width: 481px) and (max-width: 481px) {
  .section-collection-gender .section-collection[data-enable-slider-mobile="true"] [data-slider] .grid__title,
  .section-collection-gender .section-collection[data-enable-slider-mobile="true"] [data-slider] .grid__price,
  .section-image-grid[data-enable-slider-mobile="true"] [data-slider] .grid__title,
  .section-image-grid[data-enable-slider-mobile="true"] [data-slider] .grid__price {
    font-size: 1.4em; } }
.section-collection-gender .section-collection .collection__see-all,
.section-collection-gender .section-collection .collection__slick-arrows,
.section-image-grid .collection__see-all,
.section-image-grid .collection__slick-arrows {
  display: inline-block; }
.section-collection-gender .section-collection .collection__see-all,
.section-image-grid .collection__see-all {
  margin-top: -2px; }
  @media screen and (max-width: 481px) {
    .section-collection-gender .section-collection .collection__see-all,
    .section-image-grid .collection__see-all {
      display: block;
      margin-top: -10px; } }
  .section-collection-gender .section-collection .collection__see-all a,
  .section-image-grid .collection__see-all a {
    color: black;
    text-transform: uppercase; }
.section-collection-gender .section-collection .collection__slick-arrows .slick-arrow,
.section-image-grid .collection__slick-arrows .slick-arrow {
  border: 0;
  background-color: transparent; }
  .section-collection-gender .section-collection .collection__slick-arrows .slick-arrow svg,
  .section-image-grid .collection__slick-arrows .slick-arrow svg {
    opacity: .7; }
  .section-collection-gender .section-collection .collection__slick-arrows .slick-arrow.slick-disabled svg,
  .section-image-grid .collection__slick-arrows .slick-arrow.slick-disabled svg {
    opacity: .2; }
  .section-collection-gender .section-collection .collection__slick-arrows .slick-arrow:before,
  .section-image-grid .collection__slick-arrows .slick-arrow:before {
    display: none; }

.section-collection-gender .wrapper, .section-collection-gender .wrapper--wide, .section-collection-gender .wrapper--full {
  max-width: 100%; }
@media screen and (max-width: 481px) {
  .section-collection-gender .section-collection-banner .wrapper, .section-collection-gender .section-collection-banner .wrapper--wide, .section-collection-gender .section-collection-banner .wrapper--full {
    padding-right: 0;
    padding-left: 0; } }
.section-collection-gender .section-collection-banner .section-body {
  position: relative;
  padding: 0; }
.section-collection-gender .section-collection-banner .content-wrapper {
  margin: 0;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0; }
.section-collection-gender .section-collection-banner .section-heading {
  text-transform: uppercase;
  color: white; }
.section-collection-gender .section-collection-banner + .section-collection-banner {
  margin-top: 30px; }
.section-collection-gender .section-collection .section-body {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media screen and (max-width: 481px) {
    .section-collection-gender .section-collection .section-body {
      padding-top: 30px;
      padding-bottom: 15px; } }
.section-collection-gender .section-collection .colletion__header p,
.section-collection-gender .section-collection .product-grid-item .grid__title,
.section-collection-gender .section-collection .product-grid-item .grid__price {
  font-family: "Adobe Caslon W08", serif;
  font-weight: normal;
  color: black; }
.section-collection-gender .section-collection .product-grid-item .grid__title,
.section-collection-gender .section-collection .product-grid-item .grid__price {
  margin-bottom: 0; }

.section-image-grid .slick-slider {
  margin-bottom: 0; }
.section-image-grid .product-grid-item.slick-slide {
  margin-bottom: 0; }
.section-image-grid .grid__body {
  padding-bottom: 0; }
.template-index .section-image-grid .section-body {
  padding-bottom: 0; }

.section-jewelry-value-props .section-body {
  padding-top: 45px;
  padding-bottom: 30px; }
.section-jewelry-value-props .svg-wrapper {
  width: 60px;
  margin-bottom: 10px; }
.section-jewelry-value-props h4, .section-jewelry-value-props .h4, .section-jewelry-value-props .h4--body,
.section-jewelry-value-props p {
  width: 180px;
  max-width: 100%;
  color: black; }
  .section-jewelry-value-props h4, .section-jewelry-value-props .h4, .section-jewelry-value-props .h4--body, .index-sections .section-jewelry-value-props h4, .index-sections .section-jewelry-value-props .h4, .index-sections .section-jewelry-value-props .h4--body,
  .section-jewelry-value-props p, .index-sections
  .section-jewelry-value-props p {
    font-size: 1.14em; }
.section-jewelry-value-props h4, .section-jewelry-value-props .h4, .section-jewelry-value-props .h4--body {
  margin-bottom: 0;
  text-transform: uppercase; }
.section-jewelry-value-props p {
  margin-bottom: 0; }
@media screen and (max-width: 768px) {
  .section-jewelry-value-props .section-body {
    padding-top: 30px;
    padding-bottom: 0; }
  .section-jewelry-value-props .grid__item {
    margin-bottom: 30px; } }

.bg,
.section-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

/*================ Spacing ================*/
.section-body {
  padding-top: 60px;
  padding-bottom: 60px; }

.section-body--short {
  padding-top: 30px;
  padding-bottom: 30px; }

/*================ Titles ================*/
.section-heading {
  font-size: 2rem;
  font-family: "Adobe Caslon W08", serif;
  text-align: center;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 20px;
  position: relative;
  color: black; }
  @media screen and (min-width: 769px) {
    .section-heading {
      font-size: 3rem; } }
  a .section-heading,
  .section-heading a {
    text-decoration: none;
    color: black; }

.section-subheading {
  text-align: center; }
  @media screen and (min-width: 769px) {
    .section-subheading {
      font-size: 1.3rem; } }

.section-content {
  color: black; }

/*================ Colors ================*/
.bg--white {
  background-color: white; }

.bg--light {
  background-color: #fbfbfb; }

.bg--sand {
  background-color: #f6f3ec; }

.bg--black {
  background-color: black; }
  .bg--black .section-heading,
  .bg--black .section-content,
  .bg--black .section-subheading {
    color: white; }

.color--red {
  color: #ff5b5b; }

/*================ Global ================*/
.section-hero {
  text-align: center; }
  @media screen and (min-width: 769px) {
    .section-hero {
      text-align: left; } }
  .section-hero h1, .section-hero .h1, .section-hero .h1--body {
    font-size: 26px; }
    @media screen and (min-width: 769px) {
      .section-hero h1, .section-hero .h1, .section-hero .h1--body {
        font-size: 48px; } }
  .section-hero .rte {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto; }
    @media screen and (min-width: 769px) {
      .section-hero .rte {
        max-width: 430px;
        margin-left: 0; } }
  .section-hero p {
    font-size: 18px; }
    @media screen and (min-width: 769px) {
      .section-hero p {
        font-size: 22px; } }

.section-featured-in h2, .section-featured-in .h2, .section-featured-in .h2--body,
.section-image-and-text h2,
.section-image-and-text .h2,
.section-image-and-text .h2--body,
.section-page-content h2,
.section-page-content .h2,
.section-page-content .h2--body,
.section-products h2,
.section-products .h2,
.section-products .h2--body,
.section-video h2,
.section-video .h2,
.section-video .h2--body {
  margin-top: 0.2em !important;
  font-size: 2em;
  font-size: 26px; }
  @media screen and (min-width: 769px) {
    .section-featured-in h2, .section-featured-in .h2, .section-featured-in .h2--body,
    .section-image-and-text h2,
    .section-image-and-text .h2,
    .section-image-and-text .h2--body,
    .section-page-content h2,
    .section-page-content .h2,
    .section-page-content .h2--body,
    .section-products h2,
    .section-products .h2,
    .section-products .h2--body,
    .section-video h2,
    .section-video .h2,
    .section-video .h2--body {
      font-size: 2.6em;
      font-size: 26px; } }
  @media screen and (min-width: 992px) {
    .section-featured-in h2, .section-featured-in .h2, .section-featured-in .h2--body,
    .section-image-and-text h2,
    .section-image-and-text .h2,
    .section-image-and-text .h2--body,
    .section-page-content h2,
    .section-page-content .h2,
    .section-page-content .h2--body,
    .section-products h2,
    .section-products .h2,
    .section-products .h2--body,
    .section-video h2,
    .section-video .h2,
    .section-video .h2--body {
      font-size: 48px; } }
.section-featured-in p,
.section-image-and-text p,
.section-page-content p,
.section-products p,
.section-video p {
  font-size: 1.6em;
  font-size: 18px; }
  @media screen and (min-width: 769px) {
    .section-featured-in p,
    .section-image-and-text p,
    .section-page-content p,
    .section-products p,
    .section-video p {
      font-size: 18px; } }
  @media screen and (min-width: 992px) {
    .section-featured-in p,
    .section-image-and-text p,
    .section-page-content p,
    .section-products p,
    .section-video p {
      font-size: 20px; } }

.section-featured-in,
.section-page-content,
.section-products,
.section-video {
  padding: 2.5rem 0; }

.section-page-content .rte p,
.section-video .rte p {
  width: 1280px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto; }

@media screen and (max-width: 480px) {
  .section-page-content h2, .section-page-content .h2, .section-page-content .h2--body {
    margin-bottom: 1em; } }

@media screen and (max-width: 480px) {
  .section-featured-in h2, .section-featured-in .h2, .section-featured-in .h2--body {
    margin-bottom: 0; } }

.section-products .grid__price {
  font-weight: bold; }

@media screen and (min-width: 480px) {
  .section-accolades .grid, .section-accolades .grid--rev, .section-accolades .grid--full {
    display: flex;
    align-items: center;
    justify-content: center; } }
@media screen and (max-width: 768px) {
  .section-accolades .accolades__item {
    min-height: 130px;
    position: relative; }
  .section-accolades .accolades__item__body {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); } }
.section-accolades .accolades__item--additional {
  display: none; }
.section-accolades .accolades__item__body {
  width: 200px;
  max-width: 100%;
  margin: 0 auto; }
.section-accolades .accolades__item__content p {
  color: black;
  line-height: normal; }
.section-accolades .star-rating__item svg {
  fill: black; }
.section-accolades .accolades__item__publication {
  margin-bottom: 0;
  font-weight: bold;
  color: black; }

.section-rich-text hr {
  width: 75%;
  margin-left: 12%; }
.section-rich-text .section-heading {
  margin-bottom: 8px; }
  @media screen and (min-width: 769px) {
    .section-rich-text .section-heading {
      margin-bottom: 0; } }
.section-rich-text .section-subheading {
  color: black; }
  @media screen and (min-width: 769px) {
    .section-rich-text .section-subheading {
      font-size: 1.3rem; } }
.section-rich-text .section-content {
  margin-bottom: 0;
  text-align: center;
  font-size: 1.2em; }
  @media screen and (min-width: 769px) {
    .section-rich-text .section-content {
      width: 560px;
      margin-right: auto;
      margin-left: auto; } }
  .section-rich-text .section-content p:last-of-type {
    margin-bottom: 0; }

.section-collection-grid {
  overflow: hidden;
  overflow: visible; }
  @media screen and (max-width: 480px) {
    .section-collection-grid .section-body {
      margin-bottom: 0;
      padding-top: 30px;
      padding-bottom: 30px; } }
  @media screen and (max-width: 480px) {
    .section-collection-grid .grid-collection {
      margin-left: -22.5px;
      margin-right: -22.5px; } }

.section-reviews p {
  font-size: 16px; }
@media screen and (max-width: 480px) {
  .section-reviews .section-heading {
    margin-bottom: 12px; } }
@media screen and (min-width: 769px) {
  .section-reviews .section-heading {
    font-size: 2.6em; } }

@media screen and (max-width: 768px) {
  .section-columns .section-body {
    padding-top: 0;
    padding-bottom: 0; }
    .section-columns .section-body .section-heading {
      margin-top: 30px; }
    .section-columns .section-body .card-slider {
      padding-top: 30px;
      padding-bottom: 30px;
      background-color: #fbfbfb; } }
@media screen and (min-width: 769px) {
  .section-columns .card__heading {
    font-size: 1.6rem; } }

.index-sections p {
  font-size: 1.2rem; }
  @media screen and (min-width: 769px) {
    .index-sections p {
      font-size: 1.1rem; } }

/*================ PAGES ================*/
@media screen and (max-width: 768px) {
  .template-404 .section-body {
    padding-bottom: 0; } }
.template-404 .main-content .grid-uniform {
  margin-top: 90px; }

.list-shop-buttons {
  max-width: 200px;
  margin: 0 auto; }
  @media screen and (min-width: 769px) {
    .list-shop-buttons {
      max-width: 100%;
      margin: 0; } }
  .list-shop-buttons li {
    display: block;
    margin-bottom: 10px; }
    @media screen and (min-width: 769px) {
      .list-shop-buttons li {
        display: inline-block;
        margin-bottom: 0; } }
    .list-shop-buttons li a {
      display: block; }
    @media screen and (min-width: 769px) {
      .list-shop-buttons li + li {
        margin-left: 1em; } }

@media screen and (max-width: 768px) {
  .template-page-our-story .section-our-story .embed-responsive-wrapper {
    margin-right: -15px;
    margin-left: -15px; } }
@media only screen and (max-width: 768px) and (min-width: 481px) {
  .template-page-our-story .section-our-story .embed-responsive-wrapper {
    margin-right: -30px;
    margin-left: -30px; } }
.template-page-our-story .section-our-story .embed-responsive {
  max-width: 560px;
  max-width: 100%;
  margin: 0 auto; }
.template-page-our-story .section-our-story .rte {
  margin-top: 30px;
  margin-bottom: 0; }
  .template-page-our-story .section-our-story .rte p {
    font-size: 1.2em; }
    @media screen and (min-width: 769px) {
      .template-page-our-story .section-our-story .rte p {
        font-size: 1.6em; } }
.template-page-our-story .section-our-story-direct-to-you,
.template-page-our-story .section-our-story-selections {
  padding: 2.5rem 0;
  background-color: #f6f6f6; }
.template-page-our-story .section-our-story-direct-to-you h2, .template-page-our-story .section-our-story-direct-to-you .h2, .template-page-our-story .section-our-story-direct-to-you .h2--body,
.template-page-our-story .section-our-story-selections h2,
.template-page-our-story .section-our-story-selections .h2,
.template-page-our-story .section-our-story-selections .h2--body,
.template-page-our-story .section-products h2,
.template-page-our-story .section-products .h2,
.template-page-our-story .section-products .h2--body {
  font-size: 2em; }
  @media screen and (min-width: 769px) {
    .template-page-our-story .section-our-story-direct-to-you h2, .template-page-our-story .section-our-story-direct-to-you .h2, .template-page-our-story .section-our-story-direct-to-you .h2--body,
    .template-page-our-story .section-our-story-selections h2,
    .template-page-our-story .section-our-story-selections .h2,
    .template-page-our-story .section-our-story-selections .h2--body,
    .template-page-our-story .section-products h2,
    .template-page-our-story .section-products .h2,
    .template-page-our-story .section-products .h2--body {
      font-size: 2.6em; } }
.template-page-our-story .section-our-story-direct-to-you p {
  font-size: 1.2em; }
  @media screen and (min-width: 769px) {
    .template-page-our-story .section-our-story-direct-to-you p {
      font-size: 1.6em; } }
.template-page-our-story .section-our-story-blocks {
  background: #fff; }
  @media screen and (min-width: 769px) {
    .template-page-our-story .section-our-story-blocks > .wrapper--full {
      margin-top: 40px;
      margin-bottom: 40px; } }
  .template-page-our-story .section-our-story-blocks .double__block--image .background-size-cover {
    padding-bottom: 80%; }
    @media only screen and (min-width: 481px) {
      .template-page-our-story .section-our-story-blocks .double__block--image .background-size-cover {
        padding-bottom: 50%; } }
    @media screen and (min-width: 769px) {
      .template-page-our-story .section-our-story-blocks .double__block--image .background-size-cover {
        padding-bottom: 60%; } }
  .template-page-our-story .section-our-story-blocks .double__block--text .content--centered {
    text-align: center; }
    @media screen and (min-width: 769px) {
      .template-page-our-story .section-our-story-blocks .double__block--text .content--centered {
        text-align: left; } }
  .template-page-our-story .section-our-story-blocks .double__block--text .block__title {
    margin-bottom: .5rem; }
    @media screen and (min-width: 769px) {
      .template-page-our-story .section-our-story-blocks .double__block--text .block__title {
        font-size: 2.6em; } }
  .template-page-our-story .section-our-story-blocks .double__block--text .block__rte p {
    font-size: 1.2em; }
    @media screen and (min-width: 769px) {
      .template-page-our-story .section-our-story-blocks .double__block--text .block__rte p {
        font-size: 1.6em; } }
  .template-page-our-story .section-our-story-blocks .double__block--text .form-klaviyo-prelaunch {
    margin: 0;
    margin-top: 1.25rem;
    padding: 0;
    background-color: transparent; }
    .template-page-our-story .section-our-story-blocks .double__block--text .form-klaviyo-prelaunch .form__field {
      font-size: 1em; }
    .template-page-our-story .section-our-story-blocks .double__block--text .form-klaviyo-prelaunch .form__success {
      top: -1px;
      left: -1px;
      background: #fff; }
    .template-page-our-story .section-our-story-blocks .double__block--text .form-klaviyo-prelaunch .form__success__message {
      font-size: 1.2em; }
      @media screen and (min-width: 769px) {
        .template-page-our-story .section-our-story-blocks .double__block--text .form-klaviyo-prelaunch .form__success__message {
          font-size: 1.6em; } }
    @media screen and (min-width: 769px) {
      .template-page-our-story .section-our-story-blocks .double__block--text .form-klaviyo-prelaunch {
        text-align: left !important; } }
.template-page-our-story .section-our-story-direct-to-you p {
  margin-top: 2em;
  margin-bottom: 0; }
.template-page-our-story .section-products {
  padding-top: 30px; }

.page-product-landing .section-value-props {
  background-color: #f6f3ec; }
.page-product-landing .section-hero {
  padding-bottom: 60%; }
  @media screen and (max-width: 480px) {
    .page-product-landing .section-hero {
      padding-bottom: 100%; } }
  @media screen and (min-width: 769px) {
    .page-product-landing .section-hero {
      padding-bottom: 50%; } }
  @media screen and (min-width: 1200px) {
    .page-product-landing .section-hero {
      padding-bottom: 40%; } }
  @media screen and (max-width: 768px) {
    .page-product-landing .section-hero .hero__body {
      padding-top: 50px;
      top: auto;
      bottom: 0;
      transform: none;
      background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)); } }
.page-product-landing .section-image-and-text .rte strong {
  background-color: #fff1a1; }

.page-sections--alternate-bg > section:nth-child(odd) {
  background-color: #f6f6f6; }
  .page-sections--alternate-bg > section:nth-child(odd).section-products {
    background-color: #fff; }
  .page-sections--alternate-bg > section:nth-child(odd).section-value-props {
    background-color: #f6f3ec; }

body.prelaunch-landing-page .section-header.showDesktop + .main-content .block__logo {
  display: block; }

.form-klaviyo-prelaunch {
  position: relative;
  margin-top: 0;
  margin-right: -15px;
  margin-left: -15px;
  padding: .8em .5em;
  font-size: 1em;
  background: #b5dede; }
  @media screen and (min-width: 480px) {
    .form-klaviyo-prelaunch {
      margin-right: -30px;
      margin-left: -30px; } }
  @media screen and (min-width: 769px) {
    .form-klaviyo-prelaunch {
      margin-top: 5rem;
      /*padding: 1.5em .5em;*/
      padding: 1em 1.5em; } }
  .form-klaviyo-prelaunch .form__heading,
  .form-klaviyo-prelaunch .form__group {
    margin-bottom: .8em; }
  .form-klaviyo-prelaunch .form__content {
    display: none; }
  .form-klaviyo-prelaunch .form__field {
    background-color: #fff; }
  .form-klaviyo-prelaunch .form__group {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto; }
  .form-klaviyo-prelaunch .form__success {
    background: #b8dede; }

.section-landing-page-blocks {
  background-color: #fff; }
  .section-landing-page-blocks .block__logo {
    display: none;
    margin: 0 auto 2.5em;
    width: 80px; }
  .section-landing-page-blocks .block__title {
    margin-top: -2px;
    margin-bottom: 0.5rem;
    font-size: 1.8em;
    text-align: inherit; }
    @media screen and (min-width: 769px) {
      .section-landing-page-blocks .block__title {
        font-size: 2.25em; } }
    @media screen and (min-width: 1024px) {
      .section-landing-page-blocks .block__title {
        font-size: 2.5em; } }
  @media screen and (max-width: 768px) {
    .section-landing-page-blocks .block__rte,
    .section-landing-page-blocks .block__rte--large {
      margin-bottom: 0; } }
  .section-landing-page-blocks .block__rte p strong {
    color: #000; }
  .section-landing-page-blocks .block__rte p:last-of-type strong {
    font-size: 1.2em;
    letter-spacing: .05em; }
  .section-landing-page-blocks .block__rte--large p {
    line-height: normal; }
    @media screen and (min-width: 1024px) {
      .section-landing-page-blocks .block__rte--large p {
        font-size: 1.4em; } }
  .section-landing-page-blocks .block__quote {
    position: relative;
    margin-top: 3rem;
    padding-top: 1rem; }
    @media screen and (min-width: 769px) {
      .section-landing-page-blocks .block__quote {
        margin-top: 1.5rem;
        padding-top: 1rem; } }
    @media screen and (min-width: 1024px) {
      .section-landing-page-blocks .block__quote {
        position: absolute; } }
    .section-landing-page-blocks .block__quote .block__quote__logo {
      width: 250px;
      margin-top: 15px; }
      @media screen and (min-width: 1024px) {
        .section-landing-page-blocks .block__quote .block__quote__logo {
          /*width: 300px;*/ } }
    .section-landing-page-blocks .block__quote:before {
      display: block;
      position: absolute;
      top: 0;
      right: auto;
      bottom: auto;
      left: 50%;
      width: 25px;
      height: 2px;
      background-color: #fff;
      content: "";
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      pointer-events: none; }
  .section-landing-page-blocks .double__block .content--centered {
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px; }
    @media screen and (min-width: 769px) {
      .section-landing-page-blocks .double__block .content--centered {
        width: 500px;
        z-index: 1; } }
    @media screen and (max-width: 768px) {
      .section-landing-page-blocks .double__block .content--centered > div {
        padding: 1.8rem 0; }
        .section-landing-page-blocks .double__block .content--centered > div .rte p:last-of-type {
          margin-bottom: 0; } }
  .section-landing-page-blocks .double__block .form-klaviyo-prelaunch {
    margin: 1.8rem -10px 0 -10px;
    font-size: 1rem; }
    @media only screen and (min-width: 992px) {
      .section-landing-page-blocks .double__block .form-klaviyo-prelaunch {
        margin-right: -2.5rem;
        margin-left: -2.5rem; } }
  .section-landing-page-blocks .double__block--image .background-size-cover {
    padding-bottom: 93.75%; }
    @media screen and (max-width: 768px) {
      .section-landing-page-blocks .double__block--image .background-size-cover {
        padding-bottom: 66.66%; } }
  .section-landing-page-blocks .prelaunch-form-toggle {
    padding-right: 40px;
    padding-left: 40px; }
  .section-landing-page-blocks .wrapper--single .double__block--image .background-size-cover {
    min-height: 40vh; }
    @media screen and (min-width: 769px) {
      .section-landing-page-blocks .wrapper--single .double__block--image .background-size-cover {
        min-height: 100vh; } }
  @media screen and (max-width: 768px) {
    .section-landing-page-blocks .wrapper--single .double__block--text {
      min-height: 40vh !important; } }

.section-landing-page-products {
  padding-top: 50px; }
  @media screen and (min-width: 769px) {
    .section-landing-page-products {
      padding-top: 120px; } }

.section-landing-page-footer {
  padding: 15px 0; }
  .section-landing-page-footer ul {
    margin: 0; }
    .section-landing-page-footer ul li + li {
      margin-left: 7.5px; }
  .section-landing-page-footer a {
    text-decoration: none; }
    .section-landing-page-footer a:active, .section-landing-page-footer a:hover {
      text-decoration: underline; }

/*================ TEMPLATES ================*/
.template-index .homepage-image.homepage--white .title--flex, .template-index .homepage-image.homepage--white .content--flex {
  color: white; }
.template-index .homepage-image.homepage--light .title--flex, .template-index .homepage-image.homepage--light .content--flex {
  color: #fbfbfb; }
.template-index .homepage-image.homepage--splash .title--flex, .template-index .homepage-image.homepage--splash .content--flex {
  color: black; }
.template-index .homepage-image.homepage--dark .title--flex, .template-index .homepage-image.homepage--dark .content--flex {
  color: #2e3438; }
@media screen and (max-width: 768px) {
  .template-index .homepage-image .title--flex {
    font-size: 2.6em;
    line-height: 1.3;
    width: 250px;
    margin-right: auto;
    margin-left: auto; } }
@media screen and (min-width: 769px) {
  .template-index .homepage-image .title--flex {
    font-size: 3em; } }

.template-collection-women .product-grid-item .sticker:not(.sticker--best-seller) {
  top: 15px;
  right: 15px; }

.template-collection-shoppable .collection__body,
.template-collection-shoppable-gold-sliver .collection__body,
.template-collection-14k-solid-gold .collection__body,
.template-collection-silver .collection__body,
.template-collection-diamond .collection__body {
  padding-top: 0; }
.template-collection-shoppable .collection__sidebar,
.template-collection-shoppable-gold-sliver .collection__sidebar,
.template-collection-14k-solid-gold .collection__sidebar,
.template-collection-silver .collection__sidebar,
.template-collection-diamond .collection__sidebar {
  display: none; }
.template-collection-shoppable .collection__body,
.template-collection-shoppable-gold-sliver .collection__body,
.template-collection-14k-solid-gold .collection__body,
.template-collection-silver .collection__body,
.template-collection-diamond .collection__body {
  width: 100%; }
@media only screen and (min-width: 1280px) {
  .template-collection-shoppable .collection > .wrapper, .template-collection-shoppable .collection > .wrapper--wide, .template-collection-shoppable .collection > .wrapper--full,
  .template-collection-shoppable-gold-sliver .collection > .wrapper,
  .template-collection-shoppable-gold-sliver .collection > .wrapper--wide,
  .template-collection-shoppable-gold-sliver .collection > .wrapper--full,
  .template-collection-14k-solid-gold .collection > .wrapper,
  .template-collection-14k-solid-gold .collection > .wrapper--wide,
  .template-collection-14k-solid-gold .collection > .wrapper--full,
  .template-collection-silver .collection > .wrapper,
  .template-collection-silver .collection > .wrapper--wide,
  .template-collection-silver .collection > .wrapper--full,
  .template-collection-diamond .collection > .wrapper,
  .template-collection-diamond .collection > .wrapper--wide,
  .template-collection-diamond .collection > .wrapper--full {
    max-width: 100%; }
    .template-collection-shoppable .collection > .wrapper .collection__body, .template-collection-shoppable .collection > .wrapper--wide .collection__body, .template-collection-shoppable .collection > .wrapper--full .collection__body,
    .template-collection-shoppable-gold-sliver .collection > .wrapper .collection__body,
    .template-collection-shoppable-gold-sliver .collection > .wrapper--wide .collection__body,
    .template-collection-shoppable-gold-sliver .collection > .wrapper--full .collection__body,
    .template-collection-14k-solid-gold .collection > .wrapper .collection__body,
    .template-collection-14k-solid-gold .collection > .wrapper--wide .collection__body,
    .template-collection-14k-solid-gold .collection > .wrapper--full .collection__body,
    .template-collection-silver .collection > .wrapper .collection__body,
    .template-collection-silver .collection > .wrapper--wide .collection__body,
    .template-collection-silver .collection > .wrapper--full .collection__body,
    .template-collection-diamond .collection > .wrapper .collection__body,
    .template-collection-diamond .collection > .wrapper--wide .collection__body,
    .template-collection-diamond .collection > .wrapper--full .collection__body {
      width: 70%;
      margin-right: 15%; }
    .template-collection-shoppable .collection > .wrapper .collection__sidebar, .template-collection-shoppable .collection > .wrapper--wide .collection__sidebar, .template-collection-shoppable .collection > .wrapper--full .collection__sidebar,
    .template-collection-shoppable-gold-sliver .collection > .wrapper .collection__sidebar,
    .template-collection-shoppable-gold-sliver .collection > .wrapper--wide .collection__sidebar,
    .template-collection-shoppable-gold-sliver .collection > .wrapper--full .collection__sidebar,
    .template-collection-14k-solid-gold .collection > .wrapper .collection__sidebar,
    .template-collection-14k-solid-gold .collection > .wrapper--wide .collection__sidebar,
    .template-collection-14k-solid-gold .collection > .wrapper--full .collection__sidebar,
    .template-collection-silver .collection > .wrapper .collection__sidebar,
    .template-collection-silver .collection > .wrapper--wide .collection__sidebar,
    .template-collection-silver .collection > .wrapper--full .collection__sidebar,
    .template-collection-diamond .collection > .wrapper .collection__sidebar,
    .template-collection-diamond .collection > .wrapper--wide .collection__sidebar,
    .template-collection-diamond .collection > .wrapper--full .collection__sidebar {
      display: block;
      width: 15%; } }

@media screen and (min-width: 769px) {
  .template-collection-jewelry .collection__countdown,
  .template-collection-jewelry-women .collection__countdown {
    margin: 60px 0 0; } }

.template-collection-ambassador .collection__title {
  margin: 0; }
.template-collection-ambassador .collection__description {
  margin-bottom: 30px;
  color: black; }
.template-collection-ambassador .embed-responsive-wrapper {
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .template-collection-ambassador .embed-responsive-wrapper {
      margin-bottom: 15px;
      margin-right: -15px;
      margin-left: -15px; } }
  @media only screen and (max-width: 768px) and (min-width: 481px) {
    .template-collection-ambassador .embed-responsive-wrapper {
      margin-right: -30px;
      margin-left: -30px; } }
.template-collection-ambassador .embed-responsive {
  max-width: 560px;
  max-width: 100%;
  margin: 0 auto; }

/*================ INFLUENCER LANDING PAGES ================*/
.template-page-mademoiselle .section-page-content h2, .template-page-mademoiselle .section-page-content .h2, .template-page-mademoiselle .section-page-content .h2--body {
  margin-bottom: .25em; }
.template-page-mademoiselle .section-page-content img {
  margin-bottom: 0; }
.template-page-mademoiselle .section-page-content p.signiture {
  margin-bottom: 2em; }
  .template-page-mademoiselle .section-page-content p.signiture img {
    width: 150px; }
    @media screen and (max-width: 480px) {
      .template-page-mademoiselle .section-page-content p.signiture img {
        margin-right: auto !important;
        margin-left: auto !important; } }
.template-page-mademoiselle .section-value-props {
  padding-top: 0;
  padding-bottom: 0;
  background: #f7f3ec; }

/*================ SLG LANDING PAGE ================*/
.template-page-slg-landing #shopify-section-header {
  display: none; }
.template-page-slg-landing .logo-wrapper {
  max-width: 100%; }
  .template-page-slg-landing .logo-wrapper > a {
    display: inline-block;
    width: 125px; }
    .template-page-slg-landing .logo-wrapper > a > img {
      width: 100%; }
    .template-page-slg-landing .logo-wrapper > a > .svg-wrapper,
    .template-page-slg-landing .logo-wrapper > a > .svg-wrapper svg {
      display: block; }
.template-page-slg-landing .logo-wrapper--mobile {
  padding: 15px 0;
  text-align: center; }
  .template-page-slg-landing .logo-wrapper--mobile > a {
    width: 125px; }
.template-page-slg-landing .logo-wrapper--desktop {
  position: absolute;
  top: 0;
  left: 15px; }
@media screen and (min-width: 769px) {
  .template-page-slg-landing .section-image-and-text--hero .block--text__body {
    width: 100%;
    max-width: 100%;
    padding-left: 15px; }
  .template-page-slg-landing .section-image-and-text--hero h2, .template-page-slg-landing .section-image-and-text--hero .h2, .template-page-slg-landing .section-image-and-text--hero .h2--body,
  .template-page-slg-landing .section-image-and-text--hero .rte p {
    text-decoration: underline; }
  .template-page-slg-landing .section-image-and-text--hero .rte p {
    font-family: "Adobe Caslon W08", serif;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: .02em;
    color: black; } }
  @media screen and (min-width: 769px) and (min-width: 992px) {
    .template-page-slg-landing .section-image-and-text--hero .rte p {
      font-size: 48px; } }
@media screen and (max-width: 768px) {
  .template-page-slg-landing .section-image-and-text--hero .block--text {
    position: absolute;
    top: auto;
    right: 15px;
    bottom: 15px;
    left: 15px;
    width: auto;
    padding: 0; }
    .template-page-slg-landing .section-image-and-text--hero .block--text .block--text__body {
      padding: 15px 0;
      background: rgba(255, 255, 255, 0.9);
      width: 470px; }
    .template-page-slg-landing .section-image-and-text--hero .block--text .rte p {
      font-family: "Adobe Caslon W08", serif;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: .02em;
      color: black; } }
.template-page-slg-landing .section-image-and-text .monogram-preview {
  margin-left: 45px; }
  @media screen and (max-width: 768px) {
    .template-page-slg-landing .section-image-and-text .monogram-preview {
      text-align: left;
      width: 200px;
      margin: 15px auto; } }
@media screen and (max-width: 480px) {
  .template-page-slg-landing .section-collection-lookbook .section-collection-lookbook-banner .section-heading {
    font-size: 2rem; } }

.template-collection-jewelry .wrapper, .template-collection-jewelry .wrapper--wide, .template-collection-jewelry .wrapper--full,
.template-collection-jewelry-women .wrapper,
.template-collection-jewelry-women .wrapper--wide,
.template-collection-jewelry-women .wrapper--full {
  max-width: 100%; }
.template-collection-jewelry .wrapper .wrapper, .template-collection-jewelry .wrapper--wide .wrapper, .template-collection-jewelry .wrapper--full .wrapper, .template-collection-jewelry .wrapper .wrapper--wide, .template-collection-jewelry .wrapper--wide .wrapper--wide, .template-collection-jewelry .wrapper--full .wrapper--wide, .template-collection-jewelry .wrapper .wrapper--full, .template-collection-jewelry .wrapper--wide .wrapper--full, .template-collection-jewelry .wrapper--full .wrapper--full,
.template-collection-jewelry-women .wrapper .wrapper,
.template-collection-jewelry-women .wrapper--wide .wrapper,
.template-collection-jewelry-women .wrapper--full .wrapper,
.template-collection-jewelry-women .wrapper .wrapper--wide,
.template-collection-jewelry-women .wrapper--wide .wrapper--wide,
.template-collection-jewelry-women .wrapper--full .wrapper--wide,
.template-collection-jewelry-women .wrapper .wrapper--full,
.template-collection-jewelry-women .wrapper--wide .wrapper--full,
.template-collection-jewelry-women .wrapper--full .wrapper--full {
  width: 100%;
  padding-right: 0;
  padding-left: 0; }
@media screen and (min-width: 769px) {
  .template-collection-jewelry .collection__sidebar,
  .template-collection-jewelry-women .collection__sidebar {
    padding-top: 60px; } }
.template-collection-jewelry .collection__sidebar,
.template-collection-jewelry-women .collection__sidebar {
  display: block; }
  .template-collection-jewelry .collection__sidebar [data-collection-toggle],
  .template-collection-jewelry-women .collection__sidebar [data-collection-toggle] {
    display: block;
    cursor: pointer; }
  @media screen and (max-width: 768px) {
    .template-collection-jewelry .collection__sidebar,
    .template-collection-jewelry-women .collection__sidebar {
      background-color: white;
      z-index: 11; }
      .template-collection-jewelry .collection__sidebar > .collection__sidebar__list,
      .template-collection-jewelry-women .collection__sidebar > .collection__sidebar__list {
        -webkit-transition: 0.2s padding ease-in-out;
        -moz-transition: 0.2s padding ease-in-out;
        -ms-transition: 0.2s padding ease-in-out;
        -o-transition: 0.2s padding ease-in-out;
        transition: 0.2s padding ease-in-out;
        margin: 0;
        padding: 10px 0;
        padding: 0; }
        .template-collection-jewelry .collection__sidebar > .collection__sidebar__list .collection__sidebar__item,
        .template-collection-jewelry-women .collection__sidebar > .collection__sidebar__list .collection__sidebar__item {
          display: inline-block;
          margin: 0; }
          .template-collection-jewelry .collection__sidebar > .collection__sidebar__list .collection__sidebar__item > span,
          .template-collection-jewelry-women .collection__sidebar > .collection__sidebar__list .collection__sidebar__item > span {
            padding: 10px;
            font-size: .9em;
            text-transform: uppercase;
            color: black; }
        .template-collection-jewelry .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item,
        .template-collection-jewelry-women .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item {
          display: none; }
          .template-collection-jewelry .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item.active,
          .template-collection-jewelry-women .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item.active {
            display: block;
            margin-right: -30px;
            margin-bottom: -10px;
            margin-left: -30px;
            padding-right: 30px;
            padding-bottom: 10px;
            padding-bottom: 0;
            padding-left: 30px;
            overflow-x: scroll;
            overflow-y: hidden;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch; }
            .template-collection-jewelry .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item.active > ul,
            .template-collection-jewelry-women .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item.active > ul {
              display: inline-block;
              margin: 0; }
      .template-collection-jewelry .collection__sidebar.is_stuck,
      .template-collection-jewelry-women .collection__sidebar.is_stuck {
        width: 100% !important;
        margin-right: -15px;
        margin-left: -15px;
        box-shadow: 0 0 15px rgba(200, 200, 200, 0.5); }
        .template-collection-jewelry .collection__sidebar.is_stuck > .collection__sidebar__list,
        .template-collection-jewelry-women .collection__sidebar.is_stuck > .collection__sidebar__list {
          padding-top: 52px;
          padding-top: 104px;
          padding-bottom: 10px;
          padding-bottom: 0; }
          .template-collection-jewelry .collection__sidebar.is_stuck > .collection__sidebar__list > .collection__sidebar__item,
          .template-collection-jewelry-women .collection__sidebar.is_stuck > .collection__sidebar__list > .collection__sidebar__item {
            margin-bottom: 10px;
            margin-bottom: 0;
            padding-bottom: 10px; } }
  @media screen and (max-width: 481px) {
    .template-collection-jewelry .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item.active,
    .template-collection-jewelry-women .collection__sidebar > .collection__sidebar__list > .collection__sidebar__item.active {
      margin-right: -15px;
      margin-left: -15px;
      padding-right: 15px;
      padding-left: 15px; }
    .template-collection-jewelry .collection__sidebar.is_stuck,
    .template-collection-jewelry-women .collection__sidebar.is_stuck {
      margin-right: 0;
      margin-left: 0; } }
  @media only screen and (min-width: 1280px) {
    .template-collection-jewelry .collection__sidebar,
    .template-collection-jewelry-women .collection__sidebar {
      width: 14%; } }
@media screen and (min-width: 769px) {
  .template-collection-jewelry .collection__body,
  .template-collection-jewelry-women .collection__body {
    float: right; } }
@media only screen and (min-width: 1280px) {
  .template-collection-jewelry .collection__body,
  .template-collection-jewelry-women .collection__body {
    width: 70%;
    margin-right: 15%; } }
.template-collection-jewelry .section-heading,
.template-collection-jewelry-women .section-heading {
  font-size: 24px; }
  @media screen and (min-width: 769px) {
    .template-collection-jewelry .section-heading,
    .template-collection-jewelry-women .section-heading {
      font-size: 40px; } }
.template-collection-jewelry .section-collection-jewelry .info-bar,
.template-collection-jewelry-women .section-collection-jewelry .info-bar {
  -webkit-transition: 0.15s all ease-in-out;
  -moz-transition: 0.15s all ease-in-out;
  -ms-transition: 0.15s all ease-in-out;
  -o-transition: 0.15s all ease-in-out;
  transition: 0.15s all ease-in-out;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 11111;
  background: white;
  color: black;
  overflow: hidden;
  visibility: hidden; }
  .template-collection-jewelry .section-collection-jewelry .info-bar.in,
  .template-collection-jewelry-women .section-collection-jewelry .info-bar.in {
    -webkit-transition: 0.15s all ease-in-out;
    -moz-transition: 0.15s all ease-in-out;
    -ms-transition: 0.15s all ease-in-out;
    -o-transition: 0.15s all ease-in-out;
    transition: 0.15s all ease-in-out;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    visibility: visible; }
  .template-collection-jewelry .section-collection-jewelry .info-bar [data-section-type="countdown-message"],
  .template-collection-jewelry-women .section-collection-jewelry .info-bar [data-section-type="countdown-message"] {
    text-transform: none; }
    @media screen and (max-width: 481px) {
      .template-collection-jewelry .section-collection-jewelry .info-bar [data-section-type="countdown-message"],
      .template-collection-jewelry-women .section-collection-jewelry .info-bar [data-section-type="countdown-message"] {
        display: block;
        margin: 0; } }
  @media screen and (max-width: 481px) {
    .template-collection-jewelry .section-collection-jewelry .info-bar .info-bar__body,
    .template-collection-jewelry-women .section-collection-jewelry .info-bar .info-bar__body {
      line-height: 1.1; } }
  .template-collection-jewelry .section-collection-jewelry .info-bar .info-bar__body .info-bar__body__icon,
  .template-collection-jewelry-women .section-collection-jewelry .info-bar .info-bar__body .info-bar__body__icon {
    display: inline-block;
    width: 18px;
    vertical-align: middle; }
    @media screen and (min-width: 480px) {
      .template-collection-jewelry .section-collection-jewelry .info-bar .info-bar__body .info-bar__body__icon,
      .template-collection-jewelry-women .section-collection-jewelry .info-bar .info-bar__body .info-bar__body__icon {
        margin-right: 10px; } }
    .template-collection-jewelry .section-collection-jewelry .info-bar .info-bar__body .info-bar__body__icon svg,
    .template-collection-jewelry-women .section-collection-jewelry .info-bar .info-bar__body .info-bar__body__icon svg {
      display: block; }
  .template-collection-jewelry .section-collection-jewelry .info-bar .info-bar__body p + [data-section-type="countdown-message"]:before,
  .template-collection-jewelry-women .section-collection-jewelry .info-bar .info-bar__body p + [data-section-type="countdown-message"]:before {
    content: " "; }
.template-collection-jewelry .section-hero .hero__body,
.template-collection-jewelry-women .section-hero .hero__body {
  background-image: none; }
@media screen and (min-width: 769px) {
  .template-collection-jewelry .section-hero .hero__heading,
  .template-collection-jewelry-women .section-hero .hero__heading {
    font-size: 40px; } }
.template-collection-jewelry .section-hero .hero__content,
.template-collection-jewelry-women .section-hero .hero__content {
  color: black; }
@media screen and (max-width: 768px) {
  .template-collection-jewelry .section-hero .hero__body,
  .template-collection-jewelry-women .section-hero .hero__body {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    top: 0;
    bottom: 0; }
  .template-collection-jewelry .section-hero .hero__heading,
  .template-collection-jewelry-women .section-hero .hero__heading {
    position: absolute;
    top: 30px;
    right: 15px;
    left: 15px;
    width: 300px;
    margin: 0 auto;
    font-size: 2.4em; }
  .template-collection-jewelry .section-hero .hero__content,
  .template-collection-jewelry-women .section-hero .hero__content {
    position: absolute;
    margin-bottom: 0;
    right: 15px;
    bottom: 30px;
    left: 15px; }
    .template-collection-jewelry .section-hero .hero__content p,
    .template-collection-jewelry-women .section-hero .hero__content p {
      font-style: italic;
      font-size: 1.4em; }
      .template-collection-jewelry .section-hero .hero__content p:last-of-type,
      .template-collection-jewelry-women .section-hero .hero__content p:last-of-type {
        margin-bottom: 0; }
  .template-collection-jewelry .section-hero .hero__content__icon,
  .template-collection-jewelry-women .section-hero .hero__content__icon {
    max-width: 20px; }
  .template-collection-jewelry .section-hero.hero--tall,
  .template-collection-jewelry-women .section-hero.hero--tall {
    height: 600px;
    padding: 0; }
    .template-collection-jewelry .section-hero.hero--tall .hero__heading,
    .template-collection-jewelry-women .section-hero.hero--tall .hero__heading {
      top: 50px; }
    .template-collection-jewelry .section-hero.hero--tall .hero__content,
    .template-collection-jewelry-women .section-hero.hero--tall .hero__content {
      bottom: 50px; } }
.template-collection-jewelry .section-columns .section-body,
.template-collection-jewelry-women .section-columns .section-body {
  padding-top: 30px;
  overflow: hidden; }
.template-collection-jewelry .section-columns .section-heading,
.template-collection-jewelry-women .section-columns .section-heading {
  padding: 0 30px; }
.template-collection-jewelry .section-columns .wrapper, .template-collection-jewelry .section-columns .wrapper--wide, .template-collection-jewelry .section-columns .wrapper--full,
.template-collection-jewelry-women .section-columns .wrapper,
.template-collection-jewelry-women .section-columns .wrapper--wide,
.template-collection-jewelry-women .section-columns .wrapper--full {
  padding: 0; }
  @media screen and (min-width: 769px) {
    .template-collection-jewelry .section-columns .wrapper, .template-collection-jewelry .section-columns .wrapper--wide, .template-collection-jewelry .section-columns .wrapper--full,
    .template-collection-jewelry-women .section-columns .wrapper,
    .template-collection-jewelry-women .section-columns .wrapper--wide,
    .template-collection-jewelry-women .section-columns .wrapper--full {
      padding: 15px; } }
@media screen and (min-width: 769px) {
  .template-collection-jewelry .section-columns .card__header, .template-collection-jewelry .section-columns .card__body,
  .template-collection-jewelry-women .section-columns .card__header,
  .template-collection-jewelry-women .section-columns .card__body {
    padding-right: 0;
    padding-left: 0; } }
.template-collection-jewelry .section-columns .slick-next,
.template-collection-jewelry-women .section-columns .slick-next {
  right: 40px; }
@media screen and (min-width: 769px) {
  .template-collection-jewelry .section-image-and-text .block--image,
  .template-collection-jewelry-women .section-image-and-text .block--image {
    width: 40%; }
  .template-collection-jewelry .section-image-and-text .block--text,
  .template-collection-jewelry-women .section-image-and-text .block--text {
    width: 60%;
    left: 40%; }
  .template-collection-jewelry .section-image-and-text .block--text__body,
  .template-collection-jewelry-women .section-image-and-text .block--text__body {
    max-width: 700px; }
  .template-collection-jewelry .section-image-and-text p,
  .template-collection-jewelry-women .section-image-and-text p {
    font-size: 30px; } }
.template-collection-jewelry .section-image-and-text .rte,
.template-collection-jewelry-women .section-image-and-text .rte {
  color: black; }
@media screen and (min-width: 769px) {
  .template-collection-jewelry .section-collection-grid .section-body,
  .template-collection-jewelry-women .section-collection-grid .section-body {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 0; }
  .template-collection-jewelry .section-collection-grid + .section-collection-grid .section-body,
  .template-collection-jewelry-women .section-collection-grid + .section-collection-grid .section-body {
    margin-top: 0; } }
@media screen and (max-width: 481px) {
  .template-collection-jewelry .section-collection-grid .section-body,
  .template-collection-jewelry-women .section-collection-grid .section-body {
    padding-top: 45px;
    padding-bottom: 45px;
    padding-top: 30px;
    padding-bottom: 0; }
  .template-collection-jewelry .section-collection-grid .section-heading,
  .template-collection-jewelry-women .section-collection-grid .section-heading {
    margin-bottom: 25px;
    font-size: 2.4em; }
  .template-collection-jewelry .section-collection-grid .product-grid-item,
  .template-collection-jewelry-women .section-collection-grid .product-grid-item {
    margin-bottom: 12px; } }
.template-collection-jewelry .section-collection-grid .collection__see-more,
.template-collection-jewelry-women .section-collection-grid .collection__see-more {
  display: block;
  font-size: 1.4em;
  text-decoration: none;
  text-transform: uppercase;
  color: black; }
  @media screen and (max-width: 481px) {
    .template-collection-jewelry .section-collection-grid .collection__see-more,
    .template-collection-jewelry-women .section-collection-grid .collection__see-more {
      margin-right: -15px;
      margin-left: -15px;
      padding-top: 10px;
      padding-bottom: 10px; } }
@media screen and (max-width: 768px) {
  .template-collection-jewelry .section-presss-quote .wrapper, .template-collection-jewelry .section-presss-quote .wrapper--wide, .template-collection-jewelry .section-presss-quote .wrapper--full,
  .template-collection-jewelry .section-info-block .wrapper,
  .template-collection-jewelry .section-info-block .wrapper--wide,
  .template-collection-jewelry .section-info-block .wrapper--full,
  .template-collection-jewelry-women .section-presss-quote .wrapper,
  .template-collection-jewelry-women .section-presss-quote .wrapper--wide,
  .template-collection-jewelry-women .section-presss-quote .wrapper--full,
  .template-collection-jewelry-women .section-info-block .wrapper,
  .template-collection-jewelry-women .section-info-block .wrapper--wide,
  .template-collection-jewelry-women .section-info-block .wrapper--full {
    padding-right: 0;
    padding-left: 0; } }
.template-collection-jewelry .section-presss-quote .section-body,
.template-collection-jewelry .section-info-block .section-body,
.template-collection-jewelry-women .section-presss-quote .section-body,
.template-collection-jewelry-women .section-info-block .section-body {
  padding: 0;
  color: black; }
.template-collection-jewelry .section-presss-quote .section__inner,
.template-collection-jewelry .section-info-block .section__inner,
.template-collection-jewelry-women .section-presss-quote .section__inner,
.template-collection-jewelry-women .section-info-block .section__inner {
  padding: 60px 0; }
  .template-collection-jewelry .section-presss-quote .section__inner > *,
  .template-collection-jewelry .section-info-block .section__inner > *,
  .template-collection-jewelry-women .section-presss-quote .section__inner > *,
  .template-collection-jewelry-women .section-info-block .section__inner > * {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto; }
  @media screen and (max-width: 768px) {
    .template-collection-jewelry .section-presss-quote .section__inner,
    .template-collection-jewelry .section-info-block .section__inner,
    .template-collection-jewelry-women .section-presss-quote .section__inner,
    .template-collection-jewelry-women .section-info-block .section__inner {
      padding-right: 60px;
      padding-left: 60px; } }
.template-collection-jewelry .section-presss-quote .section__inner > *,
.template-collection-jewelry-women .section-presss-quote .section__inner > * {
  width: 510px; }
@media screen and (max-width: 481px) {
  .template-collection-jewelry .section-presss-quote .section__inner,
  .template-collection-jewelry-women .section-presss-quote .section__inner {
    padding-right: 30px;
    padding-left: 30px; } }
.template-collection-jewelry .section-presss-quote .section-content.rte p,
.template-collection-jewelry-women .section-presss-quote .section-content.rte p {
  font-size: 1.2em; }
  @media screen and (min-width: 769px) {
    .template-collection-jewelry .section-presss-quote .section-content.rte p,
    .template-collection-jewelry-women .section-presss-quote .section-content.rte p {
      font-size: 1.5rem; } }
.template-collection-jewelry .section-info-block .section__inner,
.template-collection-jewelry-women .section-info-block .section__inner {
  background-color: #f6f3ec; }
  @media screen and (max-width: 481px) {
    .template-collection-jewelry .section-info-block .section__inner,
    .template-collection-jewelry-women .section-info-block .section__inner {
      padding: 45px 30px; } }
  .template-collection-jewelry .section-info-block .section__inner > *,
  .template-collection-jewelry-women .section-info-block .section__inner > * {
    width: 800px; }
  @media screen and (max-width: 768px) {
    .template-collection-jewelry .section-info-block .section__inner .section-heading,
    .template-collection-jewelry-women .section-info-block .section__inner .section-heading {
      font-size: 2em; } }
  .template-collection-jewelry .section-info-block .section__inner .section-content,
  .template-collection-jewelry-women .section-info-block .section__inner .section-content {
    margin-bottom: 0;
    font-size: 1.1rem; }
    @media screen and (min-width: 769px) {
      .template-collection-jewelry .section-info-block .section__inner .section-content,
      .template-collection-jewelry-women .section-info-block .section__inner .section-content {
        font-size: 1.4em; } }

.monogram-preview__list {
  margin: 0;
  list-style: none !important; }

.monogram-preview__item + .monogram-preview__item {
  margin-top: 10px; }

.monogram-preview__swatch {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.3em;
  text-align: center;
  border: 1px solid black;
  border-radius: 50%;
  background: #b15537;
  color: black; }
  .monogram-preview__item[data-title="Blind deboss"] .monogram-preview__swatch {
    color: black; }
  .monogram-preview__item[data-title="Gold foil"] .monogram-preview__swatch {
    color: #f4c21c; }
  .monogram-preview__item[data-title="Silver foil"] .monogram-preview__swatch {
    color: #cdc4c4; }

.monogram-preview__label {
  margin-left: 15px;
  font-family: "Gill Sans Nova W01", sans-serif;
  font-weight: 600;
  font-size: 0.93721rem;
  letter-spacing: .02em;
  color: black; }

/*================ SLG LANDING PAGE ================*/
.template-page-large .main-content p,
.template-page-large .main-content ul,
.template-page-large .main-content ol {
  font-size: 1.2em;
  letter-spacing: .015rem; }
  @media screen and (min-width: 769px) {
    .template-page-large .main-content p,
    .template-page-large .main-content ul,
    .template-page-large .main-content ol {
      font-size: 1.6em; } }

/*============ Add any custom styles below this line ==================*/
@media screen and (max-width: 768px) {
  .template-index .homepage-collection {
    padding-top: 10px; } }
.collections__collection__reviews-rating {
  margin-top: 10px; }

.reviews-rating {
  margin-bottom: 15px; }
  .reviews-rating ul {
    display: block;
    margin-bottom: 0; }
  .reviews-rating li {
    display: inline-block; }
    .reviews-rating li + li {
      margin-left: 1px; }
  .reviews-rating svg {
    width: 16px;
    height: auto;
    fill: #ffd200; }

body:not([data-request-locale="en"]) .site-header .nav__item--blog {
  display: none; }
body:not([data-request-locale="en"]) .product__shipping--estimated-delivery,
body:not([data-request-locale="en"]) .product__review-content,
body:not([data-request-locale="en"]) .product__press-quote,
body:not([data-request-locale="en"]) .product__social-proof,
body:not([data-request-locale="en"]) .product_video,
body:not([data-request-locale="en"]) .product__risk-free,
body:not([data-request-locale="en"]) .collection__description,
body:not([data-request-locale="en"]) .collection__seo {
  display: none; }
body:not([data-request-locale="en"]) .site-footer .footer__nav__item[data-handle="faq"],
body:not([data-request-locale="en"]) .site-footer .footer__nav__item[data-handle="style-concierge"] {
  display: none; }
body:not([data-request-locale="en"]) .index-sections #shopify-section-index-html {
  display: none; }

#trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
  display: none; }
