@charset "UTF-8";
/*============================================================================
  Shopify Timber
  Copyright 2015 Shopify Inc.
  Author Carson Shold @cshold
  Built with Sass - http://sass-lang.com/

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use @imports in this file
        * Use grunt or gulp tasks to enable @imports - https://github.com/Shopify/shopify-css-import
    - Helpers variables, mixins, and starter classes are provided. Change as needed.
    - The file is prepped with a CSS reset
    - The font icons are prepared using https://icomoon.io/app
==============================================================================*/
/*============================================================================
  Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*$medium: 768px;
$large: 769px;*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icons.eot?v=158649767942563180771626026640");
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icons.eot?v=158649767942563180771626026640#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icons.woff?v=58244265803768562731626026643") format("woff"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icons.ttf?v=72382803661918639451626026642") format("truetype"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icons.svg?v=84111114727987197401626026642#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*============================================================================
  Custom Theme Variable Overrides
==============================================================================*/
/*================ vonH Theme Variables ================*/
@media only screen and (max-width: 480px) {
  .push--small--one-quarter {
    left: 25%; } }
/*================ Color Invert Function from http://davidwalsh.name/invert-color-sass ================*/
/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: '';
    display: table;
    clear: both; }

/*============================================================================
  Prefixer mixin for generating vendor prefixes:
    - Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
    - Usage:

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

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/*============================================================================
  Layer promotion mixin for creating smoother animations with higher FPS.
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - Based on http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
    - Usage docs: http://shopify.github.io/Timber/#sass-mixins
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  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 Setup
    - 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
==============================================================================*/
/* Force clearfix on grids */
.grid, .grid--rev, .grid--full, .site-header .message_banner, #aboutTLFeatures,
.grid-uniform {
  *zoom: 1; }
  .grid:after, .grid--rev:after, .grid--full:after, .site-header .message_banner:after, #aboutTLFeatures:after,
  .grid-uniform:after {
    content: '';
    display: table;
    clear: both; }

/* Manual grid__item clearfix */
.grid__item.clear, .clear#shopify-product-reviews, #aboutTLFeatures .clear.header, #aboutTLFeatures .clear.item {
  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, .site-header .message_banner, #aboutTLFeatures,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }

.grid__item, #shopify-product-reviews, #aboutTLFeatures .header, #aboutTLFeatures .item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 30px;
  vertical-align: top;
  width: 100%; }

/*============================================================================
  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, .grid--rev > #shopify-product-reviews, #aboutTLFeatures .grid--rev > .header, #aboutTLFeatures .grid--rev > .item {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full, .site-header .message_banner {
  margin-left: 0; }
  .grid--full > .grid__item, .site-header .message_banner > .grid__item, .grid--full > #shopify-product-reviews, .site-header .message_banner > #shopify-product-reviews, #aboutTLFeatures .grid--full > .header, .site-header #aboutTLFeatures .message_banner > .header, #aboutTLFeatures .site-header .message_banner > .header, #aboutTLFeatures .grid--full > .item, .site-header #aboutTLFeatures .message_banner > .item, #aboutTLFeatures .site-header .message_banner > .item {
    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, #aboutTLFeatures .item {
  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, .sidebar-email-signup, body.template-index.index .grid.items .buttons, body.template-index.index .items.grid--rev .buttons, body.template-index.index .items.grid--full .buttons, body.template-index.index .site-header .items.message_banner .buttons, .site-header body.template-index.index .items.message_banner .buttons, body.template-index.index .items#aboutTLFeatures .buttons,
body.page-technik #PageContainer .main-content .grid.items .buttons,
body.page-technik #PageContainer .main-content .items.grid--rev .buttons,
body.page-technik #PageContainer .main-content .items.grid--full .buttons,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .buttons,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .buttons,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .buttons, .site-header .message_banner, #aboutTLFeatures {
  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, #aboutTLFeatures .item {
    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 #aboutTLFeatures .item:nth-child(3n+1),
  #aboutTLFeatures .grid-uniform .item: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: 799px) {
  /** 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: 799px) {
  /** 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: 800px) {
  /** 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; } }
/*============================================================================
  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: 799px) {
  /* 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: 799px) {
  /* 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: 800px) {
  /* 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
==============================================================================*/
[class*="pull--"] {
  position: relative; }

/* Whole */
.pull--one-whole {
  right: 100%; }

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

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

.pull--two-thirds {
  right: 66.666%; }

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

.pull--two-quarters {
  right: 50%; }

.pull--three-quarters {
  right: 75%; }

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

.pull--two-fifths {
  right: 40%; }

.pull--three-fifths {
  right: 60%; }

.pull--four-fifths {
  right: 80%; }

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

.pull--two-sixths {
  right: 33.333%; }

.pull--three-sixths {
  right: 50%; }

.pull--four-sixths {
  right: 66.666%; }

.pull--five-sixths {
  right: 83.333%; }

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

.pull--two-eighths {
  right: 25%; }

.pull--three-eighths {
  right: 37.5%; }

.pull--four-eighths {
  right: 50%; }

.pull--five-eighths {
  right: 62.5%; }

.pull--six-eighths {
  right: 75%; }

.pull--seven-eighths {
  right: 87.5%; }

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

.pull--two-tenths {
  right: 20%; }

.pull--three-tenths {
  right: 30%; }

.pull--four-tenths {
  right: 40%; }

.pull--five-tenths {
  right: 50%; }

.pull--six-tenths {
  right: 60%; }

.pull--seven-tenths {
  right: 70%; }

.pull--eight-tenths {
  right: 80%; }

.pull--nine-tenths {
  right: 90%; }

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

.pull--two-twelfths {
  right: 16.666%; }

.pull--three-twelfths {
  right: 25%; }

.pull--four-twelfths {
  right: 33.333%; }

.pull--five-twelfths {
  right: 41.666%; }

.pull--six-twelfths {
  right: 50%; }

.pull--seven-twelfths {
  right: 58.333%; }

.pull--eight-twelfths {
  right: 66.666%; }

.pull--nine-twelfths {
  right: 75%; }

.pull--ten-twelfths {
  right: 83.333%; }

.pull--eleven-twelfths {
  right: 91.666%; }

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

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

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

  .pull--medium--two-thirds {
    right: 66.666%; }

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

  .pull--medium--two-quarters {
    right: 50%; }

  .pull--medium--three-quarters {
    right: 75%; }

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

  .pull--medium--two-fifths {
    right: 40%; }

  .pull--medium--three-fifths {
    right: 60%; }

  .pull--medium--four-fifths {
    right: 80%; }

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

  .pull--medium--two-sixths {
    right: 33.333%; }

  .pull--medium--three-sixths {
    right: 50%; }

  .pull--medium--four-sixths {
    right: 66.666%; }

  .pull--medium--five-sixths {
    right: 83.333%; }

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

  .pull--medium--two-eighths {
    right: 25%; }

  .pull--medium--three-eighths {
    right: 37.5%; }

  .pull--medium--four-eighths {
    right: 50%; }

  .pull--medium--five-eighths {
    right: 62.5%; }

  .pull--medium--six-eighths {
    right: 75%; }

  .pull--medium--seven-eighths {
    right: 87.5%; }

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

  .pull--medium--two-tenths {
    right: 20%; }

  .pull--medium--three-tenths {
    right: 30%; }

  .pull--medium--four-tenths {
    right: 40%; }

  .pull--medium--five-tenths {
    right: 50%; }

  .pull--medium--six-tenths {
    right: 60%; }

  .pull--medium--seven-tenths {
    right: 70%; }

  .pull--medium--eight-tenths {
    right: 80%; }

  .pull--medium--nine-tenths {
    right: 90%; }

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

  .pull--medium--two-twelfths {
    right: 16.666%; }

  .pull--medium--three-twelfths {
    right: 25%; }

  .pull--medium--four-twelfths {
    right: 33.333%; }

  .pull--medium--five-twelfths {
    right: 41.666%; }

  .pull--medium--six-twelfths {
    right: 50%; }

  .pull--medium--seven-twelfths {
    right: 58.333%; }

  .pull--medium--eight-twelfths {
    right: 66.666%; }

  .pull--medium--nine-twelfths {
    right: 75%; }

  .pull--medium--ten-twelfths {
    right: 83.333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pull--large--two-thirds {
    right: 66.666%; }

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

  .pull--large--two-quarters {
    right: 50%; }

  .pull--large--three-quarters {
    right: 75%; }

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

  .pull--large--two-fifths {
    right: 40%; }

  .pull--large--three-fifths {
    right: 60%; }

  .pull--large--four-fifths {
    right: 80%; }

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

  .pull--large--two-sixths {
    right: 33.333%; }

  .pull--large--three-sixths {
    right: 50%; }

  .pull--large--four-sixths {
    right: 66.666%; }

  .pull--large--five-sixths {
    right: 83.333%; }

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

  .pull--large--two-eighths {
    right: 25%; }

  .pull--large--three-eighths {
    right: 37.5%; }

  .pull--large--four-eighths {
    right: 50%; }

  .pull--large--five-eighths {
    right: 62.5%; }

  .pull--large--six-eighths {
    right: 75%; }

  .pull--large--seven-eighths {
    right: 87.5%; }

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

  .pull--large--two-tenths {
    right: 20%; }

  .pull--large--three-tenths {
    right: 30%; }

  .pull--large--four-tenths {
    right: 40%; }

  .pull--large--five-tenths {
    right: 50%; }

  .pull--large--six-tenths {
    right: 60%; }

  .pull--large--seven-tenths {
    right: 70%; }

  .pull--large--eight-tenths {
    right: 80%; }

  .pull--large--nine-tenths {
    right: 90%; }

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

  .pull--large--two-twelfths {
    right: 16.666%; }

  .pull--large--three-twelfths {
    right: 25%; }

  .pull--large--four-twelfths {
    right: 33.333%; }

  .pull--large--five-twelfths {
    right: 41.666%; }

  .pull--large--six-twelfths {
    right: 50%; }

  .pull--large--seven-twelfths {
    right: 58.333%; }

  .pull--large--eight-twelfths {
    right: 66.666%; }

  .pull--large--nine-twelfths {
    right: 75%; }

  .pull--large--ten-twelfths {
    right: 83.333%; }

  .pull--large--eleven-twelfths {
    right: 91.666%; } }
/*============================================================================
  #Basic Styles
==============================================================================*/
html {
  background-color: white; }

body {
  background-color: white; }

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

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

.main-content {
  display: block;
  margin-top: 30px;
  padding-bottom: 60px; }

/*============================================================================
  #Helper Classes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.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: 800px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.6;
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: black;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, .reviewsContainer .spr-header-title, h3, .h3, .shopify-challenge__container .shopify-challenge__message, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.4; }
  h1 a, .h1 a, h2 a, .h2 a, .reviewsContainer .spr-header-title a, h3 a, .h3 a, .shopify-challenge__container .shopify-challenge__message a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 2.57143em; }

h2, .h2, .reviewsContainer .spr-header-title {
  font-size: 2em; }

h3, .h3, .shopify-challenge__container .shopify-challenge__message {
  font-size: 1.57143em; }

h4, .h4 {
  font-size: 1.42857em; }

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

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

p {
  margin: 0 0 15px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid black; }
  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 {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

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

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid black;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

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

@media screen and (min-width: 800px) {
  .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 h2, .section-header__left .h2, .section-header__left .reviewsContainer .spr-header-title, .reviewsContainer .section-header__left .spr-header-title, .section-header__left h3, .section-header__left .h3, .section-header__left .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container .section-header__left .shopify-challenge__message, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .reviewsContainer .spr-header-title, .reviewsContainer .section-header__left .spr-header-title, .section-header__left .h3, .section-header__left .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container .section-header__left .shopify-challenge__message, .section-header__left .h4 {
      margin-bottom: 0; }

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

.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 black;
  border-radius: 0;
  padding: 0 5px;
  height: 37px;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  @media screen and (min-width: 800px) {
    .collection-view {
      display: inline-block; } }

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

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

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte .reviewsContainer .spr-header-title, .reviewsContainer .rte .spr-header-title, .rte h3, .rte .h3, .rte .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container .rte .shopify-challenge__message, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte .reviewsContainer .spr-header-title:first-child, .reviewsContainer .rte .spr-header-title:first-child, .rte h3:first-child, .rte .h3:first-child, .rte .shopify-challenge__container .shopify-challenge__message:first-child, .shopify-challenge__container .rte .shopify-challenge__message:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte .reviewsContainer .spr-header-title a, .reviewsContainer .rte .spr-header-title a, .rte h3 a, .rte .h3 a, .rte .shopify-challenge__container .shopify-challenge__message a, .shopify-challenge__container .rte .shopify-challenge__message a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0.4em; }

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

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

a:hover,
a:focus {
  color: #959595; }

button {
  overflow: visible; }

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

.btn, .btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt,
.rte .btn,
.rte .btn--secondary,
.rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview,
.rte .btn--alt {
  display: inline-block;
  padding: 8px 10px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  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;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  /*================ Set primary button colors - can override later ================*/
  background-color: black;
  color: white; }
  .btn:hover, .btn--secondary:hover, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover, .btn--alt:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover,
  .reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview:hover,
  .rte .btn--alt:hover {
    background-color: #262626;
    color: white; }
  .btn:active, .btn--secondary:active, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active, .btn--alt:active, .btn:focus, .btn--secondary:focus, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus, .btn--alt:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active,
  .reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview:active,
  .rte .btn--alt:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  .rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus,
  .reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview:focus,
  .rte .btn--alt:focus {
    background-color: #4d4d4d;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .reviewsContainer .spr-summary-actions [disabled].spr-summary-actions-newreview, [disabled].btn--alt, .btn.disabled, .disabled.btn--secondary, .reviewsContainer .spr-summary-actions .disabled.spr-summary-actions-newreview, .disabled.btn--alt,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .reviewsContainer .spr-summary-actions [disabled].spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions .rte [disabled].spr-summary-actions-newreview,
  .rte [disabled].btn--alt,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  .rte .reviewsContainer .spr-summary-actions .disabled.spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions .rte .disabled.spr-summary-actions-newreview,
  .rte .disabled.btn--alt {
    cursor: default;
    color: #c3c3c3;
    background-color: #464646; }

.btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary,
.rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview {
  background-color: white; }
  .btn--secondary:hover, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover,
  .rte .btn--secondary:hover,
  .rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover,
  .reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview:hover {
    background-color: #f7f7f7;
    color: black;
    opacity: 0.95; }
  .btn--secondary:active, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active, .btn--secondary:focus, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus,
  .rte .btn--secondary:active,
  .rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active,
  .reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview:active,
  .rte .btn--secondary:focus,
  .rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus,
  .reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview:focus {
    background-color: #ebebeb;
    color: black;
    opacity: 0.9; }

.btn--small {
  padding: 4px 5px;
  font-size: 0.85714em; }

.btn--large {
  padding: 12px 15px;
  font-size: 1.14286em; }

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

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

.no-bullets {
  list-style: none outside;
  margin-left: 0; }

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

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

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid black; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 480px) {
  .table--responsive thead {
    display: none; }
  .table--responsive tr {
    display: block; }
  .table--responsive tr,
  .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  .table--responsive th,
  .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  .table--responsive td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }
  .table--responsive.cart-table img {
    margin: 0 auto; }
  .table--responsive.cart-table .js-qty, .table--responsive.cart-table .ajaxcart__qty {
    float: right; } }

@media screen and (max-width: 480px) {
  .table--small-hide {
    display: none !important; }

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; } }
/*============================================================================
  #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; }

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

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

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

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

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

.form-vertical {
  margin-bottom: 15px; }

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 799px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

button {
  background: none;
  border: none;
  cursor: pointer; }

button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

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

fieldset {
  border: 1px solid black;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid black;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 0; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #000000; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #464646;
    border-color: #c3c3c3; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0 8px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox; }

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio; }

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/ico-select.svg?v=145142949295650484321626026743");
  background-repeat: no-repeat;
  background-position: right 18px 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; }

optgroup {
  font-weight: bold; }

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

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

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

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

/*================ Error styles ================*/
input.error,
select.error,
textarea.error {
  border-color: #d02e2e;
  background-color: #f6d4d4;
  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 .reviewsContainer .spr-summary-actions .input-group-btn:first-child > .spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions .input-group .input-group-btn:first-child > .spr-summary-actions-newreview,
  .input-group .input-group-btn:first-child > .btn--alt,
  .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 .reviewsContainer .spr-summary-actions input[type="hidden"]:first-child + .input-group-btn > .spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions .input-group input[type="hidden"]:first-child + .input-group-btn > .spr-summary-actions-newreview,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--alt {
    border-radius: 0 0 0 0; }
  .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 .reviewsContainer .spr-summary-actions .input-group-btn:last-child > .spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions .input-group .input-group-btn:last-child > .spr-summary-actions-newreview,
  .input-group .input-group-btn:last-child > .btn--alt {
    border-radius: 0 0 0 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 .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .input-group .spr-summary-actions-newreview, .input-group .btn--alt,
.input-group .input-group-field {
  height: 37px; }

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

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

/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon:before {
  display: none; }

.supports-fontface .icon: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; }

/*================ Icon mapping ================*/
.icon-american_express:before {
  content: "\41"; }

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

.icon-bitcoin:before {
  content: "\42"; }

.icon-cart:before {
  content: "\e600"; }

.icon-cirrus:before {
  content: "\43"; }

.icon-dankort:before {
  content: "\64"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-google:before {
  content: "\67"; }

.icon-google_wallet:before {
  content: "\47"; }

.icon-grid-view:before {
  content: "\e603"; }

.icon-hamburger:before {
  content: "\e601"; }

.icon-instagram:before {
  content: "\69"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

.icon-list-view:before {
  content: "\e604"; }

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

.icon-minus:before {
  content: "\e602"; }

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-plus:before {
  content: "\e605"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\73"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-x:before {
  content: "\e606"; }

.icon-youtube:before {
  content: "\79"; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin: 0 7.5px 7.5px;
    color: #ffffff;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .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 li .icon {
    font-size: 30px;
    line-height: 26px; }
  .social-icons li a {
    color: #ffffff; }
    .social-icons li a:hover {
      color: #e6e6e6; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  padding: 15px 0; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item, .site-header .grid--table > #shopify-product-reviews, .site-header #aboutTLFeatures .grid--table > .header, #aboutTLFeatures .site-header .grid--table > .header, .site-header #aboutTLFeatures .grid--table > .item, #aboutTLFeatures .site-header .grid--table > .item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  max-width: 100%; }
  @media screen and (min-width: 800px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0 auto; }

.site-header__logo-link {
  max-width: 600px;
  margin: 0 auto; }

.site-header__cart-toggle {
  display: inline-block; }

.site-header__search {
  display: inline-block;
  max-width: 400px;
  margin-top: 15px;
  width: 100%; }

.search-bar {
  max-width: 100%; }
  @media screen and (max-width: 799px) {
    .search-bar {
      margin-left: auto;
      margin-right: auto; } }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  background-color: white; }

.site-nav, .site-nav--mobile {
  font-size: 1.14286em;
  cursor: default;
  margin: 0 0 0 -15px; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block; }

/*================ Home to hamburger and cart that toggle drawers ================*/
.text-right .site-nav--mobile {
  margin: 0 -15px 0 0; }

.site-nav__link {
  display: block;
  text-decoration: none;
  padding: 15px;
  white-space: nowrap;
  color: black; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: black; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 7.5px; }
  .site-nav--active > .site-nav__link {
    font-weight: bold; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 5; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
    background-color: white; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      background-color: #e6e6e6; }

/*================ Search bar in header ================*/
.nav-search {
  position: relative;
  padding: 10px 0; }
  @media screen and (max-width: 799px) {
    .nav-search {
      padding: 0 0 15px;
      margin: 0 auto;
      text-align: center; } }

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: -15px -15px 0 -15px; }
  .mobile-nav li {
    margin-bottom: 0; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: white; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #f2f2f2; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: black;
  padding: 15px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: black; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: #f2f2f2; }

.mobile-nav__item--active {
  font-weight: bold; }

.mobile-nav__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.mobile-nav--expanded .mobile-nav__toggle-open {
  display: none; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 1140px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 30px;
    font-weight: normal; }

/*============================================================================
  #Drawers
==============================================================================*/
.js-drawer-open {
  overflow: hidden;
  height: 100%; }

.drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 15px 15px;
  max-width: 95%;
  z-index: 10;
  color: black;
  background-color: white;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer a:not(.btn) {
    color: black; }
    .drawer a:not(.btn):hover, .drawer a:not(.btn):focus {
      opacity: 0.7; }
  .drawer input,
  .drawer textarea {
    border-color: #f2f2f2; }

.drawer--left {
  width: 100%;
  left: -100%;
  border-right: 1px solid #f2f2f2; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 100%;
  right: -100%;
  border-left: 1px solid #f2f2f2; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

#PageContainer {
  overflow: hidden; }

.is-moved-by-drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }

.drawer__header {
  display: table;
  height: 70px;
  width: 100%;
  margin-bottom: 15px;
  border-bottom: 1px solid #f2f2f2; }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center;
  font-size: 1.28571em; }

.drawer__close button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close button:active, .drawer__close button:focus {
    background-color: #f2f2f2; }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: white;
  padding: 30px 0;
  color: black; }
  @media screen and (min-width: 800px) {
    .site-footer {
      padding: 60px 0; } }

/*============================================================================
  #Product and Collection Grids
==============================================================================*/
.grid__image {
  display: block;
  margin: 0 auto 15px; }
  .grid__image img {
    display: block;
    margin: 0 auto; }

/*============================================================================
  #Collection Filters
==============================================================================*/
.filter--active {
  font-weight: bold; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 30px; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    margin-right: 7px; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }

/*============================================================================
  #Product Page
==============================================================================*/
.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

.product-single__photos {
  margin-bottom: 30px; }

.product-single__photos a, .product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0 auto; }
.product-single__photos li,
.product-single__thumbnails li {
  margin-bottom: 30px; }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 0;
  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: black; }

.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: #f6d4d4;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart__row {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid black; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

.cart-table th {
  font-weight: normal; }
.cart-table td,
.cart-table th {
  padding: 30px 15px;
  border: none; }

@media screen and (min-width: 800px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item, .cart__row--table-large #shopify-product-reviews, .cart__row--table-large #aboutTLFeatures .header, #aboutTLFeatures .cart__row--table-large .header, .cart__row--table-large #aboutTLFeatures .item, #aboutTLFeatures .cart__row--table-large .item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

.cart__subtotal {
  margin: 0 0 0 10px;
  display: inline;
  float: right; }

.cart__mini-labels {
  display: block;
  margin: 10px 0;
  font-size: 0.85714em; }
  @media screen and (min-width: 800px) {
    .cart__mini-labels {
      display: none; } }

.cart__remove {
  display: block; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
/*{ % if settings.ajax_cart_enable % }*/
.ajaxcart__inner {
  margin-bottom: 30px; }

.ajaxcart__row > .grid, .ajaxcart__row > .grid--rev, .ajaxcart__row > .grid--full, .site-header .ajaxcart__row > .message_banner, .ajaxcart__row > #aboutTLFeatures {
  margin-left: -15px; }
  .ajaxcart__row > .grid > .grid__item, .ajaxcart__row > .grid--rev > .grid__item, .ajaxcart__row > .grid--full > .grid__item, .site-header .ajaxcart__row > .message_banner > .grid__item, .ajaxcart__row > #aboutTLFeatures > .grid__item, .ajaxcart__row > .grid > #shopify-product-reviews, .ajaxcart__row > .grid--rev > #shopify-product-reviews, .ajaxcart__row > .grid--full > #shopify-product-reviews, .site-header .ajaxcart__row > .message_banner > #shopify-product-reviews, .ajaxcart__row > #aboutTLFeatures > #shopify-product-reviews, #aboutTLFeatures .ajaxcart__row > .grid > .header, #aboutTLFeatures .ajaxcart__row > .grid--rev > .header, #aboutTLFeatures .ajaxcart__row > .grid--full > .header, .site-header #aboutTLFeatures .ajaxcart__row > .message_banner > .header, #aboutTLFeatures .site-header .ajaxcart__row > .message_banner > .header, .ajaxcart__row > #aboutTLFeatures > .header, #aboutTLFeatures .ajaxcart__row > .grid > .item, #aboutTLFeatures .ajaxcart__row > .grid--rev > .item, #aboutTLFeatures .ajaxcart__row > .grid--full > .item, .site-header #aboutTLFeatures .ajaxcart__row > .message_banner > .item, #aboutTLFeatures .site-header .ajaxcart__row > .message_banner > .item, .ajaxcart__row > #aboutTLFeatures > .item {
    padding-left: 15px; }

.ajaxcart__product {
  position: relative;
  max-height: 500px; }
  .ajaxcart__product.is-removed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.ajaxcart__row {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f2f2f2; }

.ajaxcart__product-image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px; }
  .ajaxcart__product-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.ajaxcart__product-name,
.ajaxcart__product-meta {
  display: block; }

.ajaxcart__product-name + .ajaxcart__product-meta {
  padding-top: 6px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 5px 25px;
    line-height: 1.3;
    margin: 0; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  padding: 0 8px;
  background: none;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover, .js-qty__adjust:focus, .ajaxcart__qty-adjust:focus {
    color: #6f6f6f; }

.js-qty__adjust span, .ajaxcart__qty-adjust span {
  font-size: 8px;
  line-height: 2; }

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  border-left: 1px solid black; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  border-right: 1px solid black; }

/*================ Quantity Selectors in Ajax Cart ================*/
.ajaxcart__qty {
  margin: 0; }
  .is-loading .ajaxcart__qty {
    opacity: 0.5;
    transition: none; }

.ajaxcart__qty-num {
  border-color: #f2f2f2;
  color: black; }

.ajaxcart__qty-adjust {
  color: black; }

.ajaxcart__qty--plus {
  border-color: #f2f2f2; }

.ajaxcart__qty--minus {
  border-color: #f2f2f2; }

/*{ % endif % }*/
#admin-bar-iframe,
#admin_bar_iframe {
  display: none !important; }

/* ================ vonH Theme Customizations ================ */
html {
  background-color: white;
  padding-bottom: 0 !important; }

body,
input,
textarea,
button,
select {
  letter-spacing: 0.73px;
  font-weight: 400;
  -webkit-font-smoothing: auto; }
  @media screen and (max-width: 480px) {
    body,
    input,
    textarea,
    button,
    select {
      font-size: 12px; } }

/*================ OVERRIDE RECOMMENDATION AND DO NOT Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 799px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea {
    font-size: 12px; } }
h1, .h1,
h2,
.h2,
.reviewsContainer .spr-header-title,
h3,
.h3,
.shopify-challenge__container .shopify-challenge__message,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.21em; }
  h1.meta, .meta.h1,
  h2.meta,
  .meta.h2,
  .reviewsContainer .meta.spr-header-title,
  h3.meta,
  .meta.h3,
  .shopify-challenge__container .meta.shopify-challenge__message,
  h4.meta,
  .meta.h4,
  h5.meta,
  .meta.h5,
  h6.meta,
  .meta.h6 {
    font-size: 0 !important;
    margin: 0 !important; }
  h1 > a, .h1 > a,
  h2 > a,
  .h2 > a,
  .reviewsContainer .spr-header-title > a,
  h3 > a,
  .h3 > a,
  .shopify-challenge__container .shopify-challenge__message > a,
  h4 > a,
  .h4 > a,
  h5 > a,
  .h5 > a,
  h6 > a,
  .h6 > a {
    color: black; }
    h1 > a.cta, .h1 > a.cta,
    h2 > a.cta,
    .h2 > a.cta,
    .reviewsContainer .spr-header-title > a.cta,
    h3 > a.cta,
    .h3 > a.cta,
    .shopify-challenge__container .shopify-challenge__message > a.cta,
    h4 > a.cta,
    .h4 > a.cta,
    h5 > a.cta,
    .h5 > a.cta,
    h6 > a.cta,
    .h6 > a.cta {
      padding-bottom: 3px;
      border-bottom: 1px solid #000;
      color: #000;
      line-height: 2.2; }
      h1 > a.cta:hover, .h1 > a.cta:hover,
      h2 > a.cta:hover,
      .h2 > a.cta:hover,
      .reviewsContainer .spr-header-title > a.cta:hover,
      h3 > a.cta:hover,
      .h3 > a.cta:hover,
      .shopify-challenge__container .shopify-challenge__message > a.cta:hover,
      h4 > a.cta:hover,
      .h4 > a.cta:hover,
      h5 > a.cta:hover,
      .h5 > a.cta:hover,
      h6 > a.cta:hover,
      .h6 > a.cta:hover {
        color: #0d0d0d;
        border-color: #0d0d0d; }
  @media screen and (max-width: 480px) {
    h1, .h1,
    h2,
    .h2,
    .reviewsContainer .spr-header-title,
    h3,
    .h3,
    .shopify-challenge__container .shopify-challenge__message,
    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
      line-height: 1.2; } }

.h1,
h1,
.h1 {
  font-size: 3.06em;
  font-weight: 600;
  line-height: 1.3; }
  .h1.small,
  h1.small,
  .small.h1 {
    font-size: 2.3em;
    margin-bottom: 0.75em; }
  .h1.smallish,
  h1.smallish,
  .smallish.h1 {
    font-size: 2.7em;
    margin-bottom: 0.75em; }
  .h1.largeish0,
  h1.largeish0,
  .largeish0.h1 {
    font-size: 3.8em; }
  .h1.largeish,
  h1.largeish,
  .largeish.h1 {
    font-size: 4.2em; }
  .h1.largeish2,
  h1.largeish2,
  .largeish2.h1 {
    font-size: 4.9em; }
  .h1.larger,
  h1.larger,
  .larger.h1 {
    font-size: 5.5em; }
  .h1.large,
  h1.large,
  .large.h1 {
    font-size: 7.5em;
    letter-spacing: 1px; }
  @media screen and (max-width: 799px) {
    .h1,
    h1,
    .h1 {
      font-size: 2.6em; }
      .h1.small,
      h1.small,
      .small.h1 {
        font-size: 2.3em; }
      .h1.smallish,
      h1.smallish,
      .smallish.h1 {
        font-size: 2.4em; }
      .h1.largeish0,
      h1.largeish0,
      .largeish0.h1 {
        font-size: 2.9em; }
      .h1.largeish,
      h1.largeish,
      .largeish.h1 {
        font-size: 3.1em; }
      .h1.largeish2,
      h1.largeish2,
      .largeish2.h1 {
        font-size: 3.7em; }
      .h1.larger,
      h1.larger,
      .larger.h1 {
        font-size: 3.5em; } }
  @media screen and (max-width: 480px) {
    .h1,
    h1,
    .h1 {
      font-size: 2.1em; }
      .h1.small,
      h1.small,
      .small.h1 {
        font-size: 2em; }
      .h1.smallish,
      h1.smallish,
      .smallish.h1 {
        font-size: 2.5em; } }

.h2, .reviewsContainer .spr-header-title,
h2,
.h2,
.reviewsContainer .spr-header-title {
  line-height: 1; }
  .h2.largeish, .reviewsContainer .largeish.spr-header-title,
  h2.largeish,
  .largeish.h2,
  .reviewsContainer .largeish.spr-header-title {
    font-size: 2.5em; }
  .h2.larger, .reviewsContainer .larger.spr-header-title,
  h2.larger,
  .larger.h2,
  .reviewsContainer .larger.spr-header-title {
    font-size: 3em; }
  .h2.large, .reviewsContainer .large.spr-header-title,
  h2.large,
  .large.h2,
  .reviewsContainer .large.spr-header-title {
    font-size: 3.5em;
    letter-spacing: 1px; }
  .h2.large2, .reviewsContainer .large2.spr-header-title,
  h2.large2,
  .large2.h2,
  .reviewsContainer .large2.spr-header-title {
    font-size: 4em;
    letter-spacing: 1px; }
  .h2.xlarge, .reviewsContainer .xlarge.spr-header-title,
  h2.xlarge,
  .xlarge.h2,
  .reviewsContainer .xlarge.spr-header-title {
    font-size: 4.5em;
    letter-spacing: 1px; }
  .h2.xxlarge, .reviewsContainer .xxlarge.spr-header-title,
  h2.xxlarge,
  .xxlarge.h2,
  .reviewsContainer .xxlarge.spr-header-title {
    font-size: 5.2em;
    letter-spacing: 1px; }
  .h2.normal, .reviewsContainer .normal.spr-header-title,
  h2.normal,
  .normal.h2,
  .reviewsContainer .normal.spr-header-title {
    font-weight: 400 !important; }
  @media screen and (max-width: 480px) {
    .h2, .reviewsContainer .spr-header-title,
    h2,
    .h2,
    .reviewsContainer .spr-header-title {
      font-size: 2.4em; }
      .h2.large, .reviewsContainer .large.spr-header-title,
      h2.large,
      .large.h2,
      .reviewsContainer .large.spr-header-title {
        font-size: 3.2em; }
      .h2.large2, .reviewsContainer .large2.spr-header-title,
      h2.large2,
      .large2.h2,
      .reviewsContainer .large2.spr-header-title {
        font-size: 2.8em; }
      .h2.xlarge, .reviewsContainer .xlarge.spr-header-title,
      h2.xlarge,
      .xlarge.h2,
      .reviewsContainer .xlarge.spr-header-title {
        font-size: 3.4em; }
      .h2.xxlarge, .reviewsContainer .xxlarge.spr-header-title,
      h2.xxlarge,
      .xxlarge.h2,
      .reviewsContainer .xxlarge.spr-header-title {
        font-size: 3.6em; } }

.h3, .shopify-challenge__container .shopify-challenge__message,
h3,
.h3,
.shopify-challenge__container .shopify-challenge__message {
  font-size: 19px; }
  .h3.largeish, .shopify-challenge__container .largeish.shopify-challenge__message,
  h3.largeish,
  .largeish.h3,
  .shopify-challenge__container .largeish.shopify-challenge__message {
    font-size: 1.5em; }
  .h3.larger, .shopify-challenge__container .larger.shopify-challenge__message, .reviewsContainer .spr-review-header-title,
  h3.larger,
  .larger.h3,
  .shopify-challenge__container .larger.shopify-challenge__message,
  .reviewsContainer .spr-review-header-title {
    font-size: 1.8em; }
  .h3.large, .shopify-challenge__container .large.shopify-challenge__message,
  h3.large,
  .large.h3,
  .shopify-challenge__container .large.shopify-challenge__message {
    font-size: 2em; }
  @media screen and (max-width: 480px) {
    .h3.largeish, .shopify-challenge__container .largeish.shopify-challenge__message,
    h3.largeish,
    .largeish.h3,
    .shopify-challenge__container .largeish.shopify-challenge__message {
      font-size: 1.3em; } }

h4, .h4 {
  font-size: 17px;
  letter-spacing: 0.08em; }

h5, .h5,
h6,
.h6 {
  font-size: 12px;
  letter-spacing: 0.08em; }

h5, .h5 {
  font-weight: 500;
  margin-bottom: 1.5em; }

h6, .h6 {
  font-weight: 400;
  font-size: 8px; }

li > h6, li > .h6 {
  margin: 0; }

p {
  margin: 0; }

ul,
p,
.p {
  font-size: 14px;
  margin-bottom: 0.75em;
  line-height: 1.9; }
  ul.large-y, ul.largey,
  p.large-y,
  p.largey,
  .p.large-y,
  .p.largey {
    font-size: 1.05em;
    line-height: 1.7; }
  ul.largeish,
  p.largeish,
  .p.largeish {
    font-size: 16px;
    line-height: 1.7; }
  ul.largeish2,
  p.largeish2,
  .p.largeish2 {
    font-size: 1.1em;
    line-height: 1.9; }
  ul.large,
  p.large,
  .hero-text-slider .text p,
  .p.large {
    font-size: 1.35em;
    line-height: 1.9; }
  ul.larger,
  p.larger,
  .p.larger {
    font-size: 1.4rem; }
  ul.largest,
  p.largest,
  .p.largest {
    font-size: 2rem; }
  @media screen and (max-width: 799px) {
    ul.larger,
    p.larger,
    .p.larger {
      font-size: 1.2rem; } }
  @media screen and (max-width: 480px) {
    ul.larger,
    p.larger,
    .p.larger {
      font-size: 1rem; } }

.sans, .product-main-thumb h2.h1, .product-main-thumb .h1.h2, .product-main-thumb .reviewsContainer .h1.spr-header-title, .reviewsContainer .product-main-thumb .h1.spr-header-title,
.sans p,
.product-main-thumb h2.h1 p,
.product-main-thumb .h1.h2 p,
.product-main-thumb .reviewsContainer .h1.spr-header-title p,
.reviewsContainer .product-main-thumb .h1.spr-header-title p,
.sans-xl,
.sans-xl p,
.sans-l,
.sans-l p,
.sans-m,
input,
textarea,
select,
.sans-m p,
input p,
textarea p,
select p,
.sans-s,
.btn,
.btn--secondary,
.reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt,
.sans-s p,
.btn p,
.btn--secondary p,
.reviewsContainer .spr-summary-actions .spr-summary-actions-newreview p,
.rte .btn--secondary p,
.btn--alt p,
.rte .btn--alt p,
.sans-head-xl,
.sans-head-xl p,
.sans-head-l,
.sans-head-l p,
.sans-head-m,
.btn.btn--m,
.btn--m.btn--secondary,
.reviewsContainer .spr-summary-actions .btn--m.spr-summary-actions-newreview,
.btn--m.btn--alt,
.sans-head-m p,
.btn.btn--m p,
.btn--m.btn--secondary p,
.reviewsContainer .spr-summary-actions .btn--m.spr-summary-actions-newreview p,
.btn--m.btn--alt p,
.sans-head-s,
.sans-head-s p,
.sans-head-cta.sans-head-cta,
.btn,
.btn--secondary,
.reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt,
.rte .btn,
.sans-head-cta.sans-head-cta p,
.btn p,
.btn--secondary p,
.reviewsContainer .spr-summary-actions .spr-summary-actions-newreview p,
.rte .btn--secondary p,
.btn--alt p,
.rte .btn--alt p,
.rte .btn p {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 350;
  text-transform: none;
  letter-spacing: 0.08em; }

.sans-xl,
.sans-l,
.sans-m,
input,
textarea,
select,
.sans-s,
.btn,
.btn--secondary,
.reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt {
  letter-spacing: 0.02667em; }

.sans-xl {
  font-size: calc(2.2em * 0.983);
  line-height: 182%; }

.sans-l {
  font-size: calc(1.46em * 0.983);
  line-height: 182%; }

.sans-m, input,
textarea,
select {
  font-size: calc(1em * 0.983);
  line-height: 185%; }

.sans-s, .btn, .btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt {
  font-size: calc(0.8em * 0.983);
  line-height: 185%; }

.sans-head-xl,
.sans-head-l,
.sans-head-m,
.btn.btn--m,
.btn--m.btn--secondary,
.reviewsContainer .spr-summary-actions .btn--m.spr-summary-actions-newreview,
.btn--m.btn--alt,
.sans-head-s,
.sans-head-cta.sans-head-cta,
.btn,
.btn--secondary,
.reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt,
.rte .btn {
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase; }

.sans-head-xl {
  font-size: calc(2.2em * 0.983);
  line-height: 146%; }

.sans-head-l {
  font-size: calc(1.8em * 0.983);
  line-height: 146%; }

.sans-head-m, .btn.btn--m, .btn--m.btn--secondary, .reviewsContainer .spr-summary-actions .btn--m.spr-summary-actions-newreview, .btn--m.btn--alt {
  font-size: calc(1.46em * 0.983);
  line-height: 148%; }

.sans-head-s {
  font-size: calc(1em * 0.983);
  line-height: 146%; }

.sans-head-cta.sans-head-cta, .btn, .btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt,
.rte .btn {
  font-size: calc(0.8em * 0.983);
  letter-spacing: 0.06em;
  line-height: 2; }

@media screen and (max-width: 480px) {
  .sans-xl-sm,
  .sans-xl-sm p,
  .sans-l-sm,
  .sans-l-sm p,
  .sans-m-sm,
  .sans-m-sm p,
  .sans-s-sm,
  .sans-s-sm p,
  .sans-head-xl-sm,
  .sans-head-xl-sm p,
  .sans-head-l-sm,
  .sans-head-l-sm p,
  .sans-head-m-sm,
  .sans-head-m-sm p,
  .sans-head-s-sm,
  .sans-head-s-sm p,
  .sans-head-cta-sm.sans-head-cta-sm,
  .sans-head-cta-sm.sans-head-cta-sm p {
    font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 350;
    text-transform: none;
    letter-spacing: 0.08em; }

  .sans-xl-sm,
  .sans-xl-sm p,
  .sans-l-sm,
  .sans-l-sm p,
  .sans-m-sm,
  .sans-m-sm p,
  .sans-s-sm,
  .sans-s-sm p {
    font-size: 0.8em;
    line-height: 185%; }

  .sans-l-sm,
  .sans-l-sm p {
    font-size: 1.17em; }

  .sans-head-xl-sm,
  .sans-head-l-sm,
  .sans-head-m-sm,
  .sans-head-s-sm,
  .sans-head-cta-sm.sans-head-cta-sm {
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase; }

  .sans-head-l-sm {
    font-size: calc(1.8em);
    line-height: 146%; }

  .sans-head-m-sm {
    font-size: calc(1.4em);
    line-height: 148%; }

  .sans-head-s-sm {
    font-size: calc(0.95em);
    line-height: 146%; }

  .sans-head-cta-sm.sans-head-cta-sm {
    font-size: calc(1em * 0.983);
    letter-spacing: 0.06em;
    line-height: 2; } }
.serif, #instagram .main-content .grid__item .article-body p, #instagram .main-content #shopify-product-reviews .article-body p, #instagram .main-content #aboutTLFeatures .header .article-body p, #aboutTLFeatures #instagram .main-content .header .article-body p, #instagram .main-content #aboutTLFeatures .item .article-body p, #aboutTLFeatures #instagram .main-content .item .article-body p,
#instagram .main-content .grid__item .article-body li,
#instagram .main-content #shopify-product-reviews .article-body li,
#instagram .main-content #aboutTLFeatures .header .article-body li,
#aboutTLFeatures #instagram .main-content .header .article-body li,
#instagram .main-content #aboutTLFeatures .item .article-body li,
#aboutTLFeatures #instagram .main-content .item .article-body li,
.template-article .main-content .grid__item .article-body p,
.template-article .main-content #shopify-product-reviews .article-body p,
.template-article .main-content #aboutTLFeatures .header .article-body p,
#aboutTLFeatures .template-article .main-content .header .article-body p,
.template-article .main-content #aboutTLFeatures .item .article-body p,
#aboutTLFeatures .template-article .main-content .item .article-body p,
.template-article .main-content .grid__item .article-body li,
.template-article .main-content #shopify-product-reviews .article-body li,
.template-article .main-content #aboutTLFeatures .header .article-body li,
#aboutTLFeatures .template-article .main-content .header .article-body li,
.template-article .main-content #aboutTLFeatures .item .article-body li,
#aboutTLFeatures .template-article .main-content .item .article-body li, .hero-text-slider .text p {
  font-family: "poynter-oldstyle-text", Georgia, Times, serif;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0; }

.butler, .shopify-challenge__container .shopify-challenge__message, .reviewsContainer .spr-header-title, .reviewsContainer .spr-summary-actions-togglereviews, .reviewsContainer .spr-review-header-title,
.butler-xl,
.butler-l,
.butler-m,
.butler-s,
.butler-xl-sm,
.butler-l-sm,
.butler-m-sm,
.butler-s-sm {
  font-family: "ButlerMedium", "Butler", "poynter-oldstyle-text", Georgia, Times, serif;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0; }

.butler-xl {
  font-size: calc(7em * 0.983);
  line-height: calc(6em / 5); }

.butler-l {
  font-size: calc(5em * 0.983);
  line-height: calc(6em / 4.5); }

.butler-m {
  font-size: calc(2.9em * 0.983);
  line-height: calc(4em / 3.2); }

.butler-s {
  font-size: calc(1.8em * 0.983);
  line-height: calc(2em / 1.8); }

@media screen and (max-width: 480px) {
  .butler-xl,
  .butler-xl-sm,
  .butler-l,
  .butler-l-sm.butler-l-sm {
    font-size: calc(4.8em * 0.983);
    line-height: calc(5.6em / 4); }

  .butler-m,
  .butler-m-sm.butler-m-sm {
    font-size: calc(2.85em * 0.983);
    line-height: calc(3.4em / 3); }

  .butler-s,
  .butler-s-sm.butler-s-sm {
    font-size: calc(1.8em * 0.983);
    line-height: calc(2.4em / 1.8); } }
.lowercase {
  text-transform: lowercase; }

.prestige {
  font-family: prestige-elite-std, monospace;
  font-weight: 700;
  letter-spacing: -0.02em; }

.transform_none {
  text-transform: none; }

.transform_uppercase {
  text-transform: uppercase !important; }

.transform_lowercase {
  text-transform: lowercase !important; }

small {
  font-size: 0.8em; }

hr {
  width: 100%; }
  hr.thin {
    margin: 16px 0 28px; }
  hr.darker {
    border-top-color: #6b6b6b; }
  hr.light {
    border-top-color: #d0d0d0; }

img.full,
.img-full {
  width: 100%; }

.float-left {
  float: left; }

.float-right {
  float: right; }

form .message {
  display: none;
  color: #000;
  font-size: 12px;
  font-style: italic; }

.note,
.errors {
  padding: 10px 12px; }

label {
  font-size: 12px; }

input,
textarea,
select {
  line-height: 2.7;
  padding: 8px 10px; }
  @media screen and (max-width: 799px) {
    input,
    textarea,
    select {
      font-size: inherit; } }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    color: #464646;
    background-color: white;
    border-color: #c3c3c3; }

.btn, .btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt {
  line-height: 2.7;
  padding: 8px 10px; }
  .btn[disabled], [disabled].btn--secondary, .reviewsContainer .spr-summary-actions [disabled].spr-summary-actions-newreview, [disabled].btn--alt, .btn.disabled, .disabled.btn--secondary, .reviewsContainer .spr-summary-actions .disabled.spr-summary-actions-newreview, .disabled.btn--alt {
    cursor: default;
    color: #464646;
    background-color: white;
    border-color: #c3c3c3; }

.btn, .btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt {
  line-height: 2; }

select {
  background-image: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/ico-select-ud.svg?v=1386864320737663501626026634");
  background-size: 7px; }

input[type=number]:hover::-webkit-inner-spin-button,
input[type=number]:hover::-webkit-outer-spin-button {
  opacity: 1; }

.field-underline {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  text-align: center;
  font-size: 1.2em; }
  .field-underline:focus {
    outline: none;
    /* overrides chrome default focus outline */
    border-top: none;
    border-right: none;
    border-left: none;
    background-color: rgba(255, 255, 255, 0.3); }

.btn, .btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt,
.rte .btn,
.rte .btn--secondary,
.rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview,
.rte .btn--alt {
  padding: 12px 30px;
  max-width: 100%;
  transition: all 250ms; }
  .btn.btn-small, .btn-small.btn--secondary, .reviewsContainer .spr-summary-actions .btn-small.spr-summary-actions-newreview, .btn-small.btn--alt,
  .rte .btn.btn-small,
  .rte .btn-small.btn--secondary,
  .rte .reviewsContainer .spr-summary-actions .btn-small.spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions .rte .btn-small.spr-summary-actions-newreview,
  .rte .btn-small.btn--alt {
    padding: 5px 20px; }
  @media screen and (max-width: 480px) {
    .btn, .btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
    .rte .btn--secondary, .btn--alt,
    .rte .btn--alt,
    .rte .btn,
    .rte .btn--secondary,
    .rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview,
    .rte .btn--alt {
      padding: 9px 30px; } }

.input-group .btn, .input-group .btn--secondary, .input-group .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .input-group .spr-summary-actions-newreview, .input-group .btn--alt,
.input-group .input-group-field {
  height: auto; }

.btn--inverse,
.rte .btn--inverse {
  color: black;
  background-color: white;
  border-color: white; }
  .btn--inverse:hover,
  .rte .btn--inverse:hover {
    border-color: black; }

.btn--secondary, .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.rte .btn--secondary,
.rte .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
.reviewsContainer .spr-summary-actions .rte .spr-summary-actions-newreview {
  color: black;
  border-color: black !important; }

.btn--alt,
.rte .btn--alt {
  background-color: rgba(0, 0, 0, 0.4);
  border-color: transparent;
  color: white; }
  .btn--alt:hover,
  .rte .btn--alt:hover {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: transparent;
    color: white; }
  .btn--alt:active, .btn--alt:focus,
  .rte .btn--alt:active,
  .rte .btn--alt:focus {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: transparent;
    color: white; }
  @media screen and (max-width: 480px) {
    .btn--alt,
    .rte .btn--alt {
      background-color: rgba(65, 64, 66, 0.5); } }

/*.btn.btn--wide {
  padding-left: $gutter * 2;
  padding-right: $gutter * 2;
}*/
.btn.btn--x-wide, .btn--x-wide.btn--secondary, .reviewsContainer .spr-summary-actions .btn--x-wide.spr-summary-actions-newreview, .btn--x-wide.btn--alt {
  padding-left: 120px;
  padding-right: 120px; }
  @media screen and (max-width: 480px) {
    .btn.btn--x-wide, .btn--x-wide.btn--secondary, .reviewsContainer .spr-summary-actions .btn--x-wide.spr-summary-actions-newreview, .btn--x-wide.btn--alt {
      padding-left: 75px;
      padding-right: 75px; } }

.btn.btn--small, .btn--small.btn--secondary, .reviewsContainer .spr-summary-actions .btn--small.spr-summary-actions-newreview, .btn--small.btn--alt {
  padding: 5px 40px; }

.btn.btn--med, .btn--med.btn--secondary, .reviewsContainer .spr-summary-actions .btn--med.spr-summary-actions-newreview, .btn--med.btn--alt {
  padding: 11px 60px; }

.btn--xxlarge {
  padding: .5em 3em;
  font-size: 1.85714em; }

.btn--link {
  background: none;
  border: none;
  border-bottom: 1px solid black;
  padding: 0;
  margin-top: 15px;
  line-height: 1.5;
  font-weight: unset;
  min-width: unset;
  letter-spacing: 0.08em; }
  .btn--link:hover {
    background: none;
    color: #333333; }
  .btn--link:active {
    background: none;
    color: #1a1a1a; }
  .btn--link, .btn--link:visited {
    color: black; }

@media screen and (max-width: 480px) {
  .btn.btn--link--mobile, .btn--link--mobile.btn--secondary, .reviewsContainer .spr-summary-actions .btn--link--mobile.spr-summary-actions-newreview, .btn--link--mobile.btn--alt {
    background: none;
    border: none;
    border-bottom: 1px solid black;
    padding: 0;
    margin-top: 15px;
    line-height: 1.5;
    font-weight: unset;
    min-width: unset;
    letter-spacing: 0.08em; }
    .home-hero .btn.btn--link--mobile, .home-hero .btn--link--mobile.btn--secondary, .home-hero .reviewsContainer .spr-summary-actions .btn--link--mobile.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .home-hero .btn--link--mobile.spr-summary-actions-newreview, .home-hero .btn--link--mobile.btn--alt {
      min-width: unset;
      margin-top: 0; }
    .btn.btn--link--mobile:hover, .btn--link--mobile.btn--secondary:hover, .reviewsContainer .spr-summary-actions .btn--link--mobile.spr-summary-actions-newreview:hover, .btn--link--mobile.btn--alt:hover {
      background: none;
      color: #333333; }
    .btn.btn--link--mobile:active, .btn--link--mobile.btn--secondary:active, .reviewsContainer .spr-summary-actions .btn--link--mobile.spr-summary-actions-newreview:active, .btn--link--mobile.btn--alt:active {
      background: none;
      color: #1a1a1a; }
    .btn.btn--link--mobile, .btn--link--mobile.btn--secondary, .reviewsContainer .spr-summary-actions .btn--link--mobile.spr-summary-actions-newreview, .btn--link--mobile.btn--alt, .btn.btn--link--mobile:visited, .btn--link--mobile.btn--secondary:visited, .reviewsContainer .spr-summary-actions .btn--link--mobile.spr-summary-actions-newreview:visited, .btn--link--mobile.btn--alt:visited {
      color: black; } }

::-webkit-input-placeholder {
  color: #444; }

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

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

:-ms-input-placeholder {
  color: #444; }

::placeholder {
  color: #444; }

.form-error,
.errors {
  border-color: transparent;
  padding: 15px 25px;
  margin-bottom: 30px; }

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

.shopify-challenge__container .shopify-challenge__message {
  margin: 30px auto; }
.shopify-challenge__container input.shopify-challenge__button {
  min-width: 300px;
  margin-top: 30px; }

::-moz-selection {
  /* Code for Firefox */
  color: black;
  background: #F3F2E9; }

h5:target, .h5:target,
p:target,
::selection {
  color: black;
  background: #F3F2E9; }

.sprite {
  display: inline-block;
  height: 17px;
  width: 17px;
  margin: 0px 4px -5px 10px;
  background-image: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/vonh_site_icons.png?v=21154443252948330211626026726");
  background-size: cover;
  text-indent: -5000px; }
  .sprite.sprite-bag {
    background-position: -34px 0; }
    .sprite.sprite-bag.sprite-xsmall {
      margin: 0 0 -2px 0;
      background-position: -24px 0;
      height: 12px;
      width: 12px; }
  .sprite.sprite-customer {
    background-position: -17px 0; }
  .sprite.sprite-search {
    background-position: 0 0; }
  .sprite.sprite-arrow-prev {
    background-position: -38.25px 0; }
  .sprite.sprite-arrow-next {
    background-position: -51px 0; }
  .sprite.sprite-share {
    background-position: -210px 0;
    height: 30px;
    width: 30px; }
  .sprite.sprite-email, .sprite.sprite-facebook {
    height: 10px;
    width: 10px;
    background-position: -50px 0;
    margin: 0 0 -1px 0; }
  .sprite.sprite-facebook {
    background-position: -60px 0; }
  .sprite.sprite-close, .sprite.sprite-prev, .sprite.sprite-next, .sprite.sprite-plus {
    height: 30px;
    width: 30px;
    margin: 0;
    font-size: 11px;
    background-position: -240px 0; }
    .sprite.sprite-close.sprite-small, .sprite.sprite-prev.sprite-small, .sprite.sprite-next.sprite-small, .sprite.sprite-plus.sprite-small {
      background-position: -160px 0; }
    .sprite.sprite-close.sprite-xsmall, .sprite.sprite-prev.sprite-xsmall, .sprite.sprite-next.sprite-xsmall, .sprite.sprite-plus.sprite-xsmall {
      margin: 2px;
      height: 15px;
      width: 15px;
      background-position: -120px 0; }
  .sprite.sprite-next {
    background-position: -270px 0; }
    .sprite.sprite-next.sprite-xsmall {
      background-position: -175px 0; }
  .sprite.sprite-prev {
    background-position: -300px 0; }
    .sprite.sprite-prev.sprite-xxsmall {
      background-position: -100px 0;
      margin: 0 7px -1px 0; }
  .sprite.sprite-plus {
    background-position: -330px 0; }
  .sprite.sprite-hamburger {
    background-position: -330px 0; }
    .sprite.sprite-hamburger.sprite-xsmall {
      background-position: -267px 0; }
  .sprite.sprite-email-black {
    background-position: -360px 0; }
    .sprite.sprite-email-black.sprite-xxsmall {
      background-position: -228px 0;
      margin: 1px 2px 0 0;
      width: 12px;
      height: 12px;
      vertical-align: -2px; }
  .sprite.sprite-small {
    margin: 5px;
    height: 20px;
    width: 20px; }
  .sprite.sprite-xsmall {
    margin: 2px;
    height: 15px;
    width: 15px; }
  .sprite.sprite-xxsmall {
    height: 10px;
    width: 10px; }

.text-reverse,
.text-reverse * {
  color: #FFF; }

.well, .sidebar-email-signup {
  background-color: #ffffff;
  padding: 45px 25px 35px;
  margin-bottom: 30px; }

.grid.flex, .flex.grid--rev, .flex.grid--full, .site-header .flex.message_banner, .flex#aboutTLFeatures {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex; }

.grid__item img, #shopify-product-reviews img, #aboutTLFeatures .header img, #aboutTLFeatures .item img {
  max-width: 100%;
  margin: 0 auto;
  display: block; }

.rte a {
  text-decoration: inherit; }

.push--top-0 {
  margin-top: 0; }

.push--top-05 {
  margin-top: 15px; }

.push--top-1, body.template-index.index .grid.items .buttons, body.template-index.index .items.grid--rev .buttons, body.template-index.index .items.grid--full .buttons, body.template-index.index .site-header .items.message_banner .buttons, .site-header body.template-index.index .items.message_banner .buttons, body.template-index.index .items#aboutTLFeatures .buttons,
body.page-technik #PageContainer .main-content .grid.items .buttons,
body.page-technik #PageContainer .main-content .items.grid--rev .buttons,
body.page-technik #PageContainer .main-content .items.grid--full .buttons,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .buttons,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .buttons,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .buttons {
  margin-top: 30px; }

.push--top-15 {
  margin-top: 45px; }

.push--top-2 {
  margin-top: 60px; }

.push--top-3 {
  margin-top: 90px; }

.push--top-4 {
  margin-top: 120px; }

.push--top-5 {
  margin-top: 150px; }

.push--top-6 {
  margin-top: 180px; }

@media screen and (min-width: 799px) {
  .medium--push--top-0 {
    margin-top: 0; }

  .medium--push--top-1 {
    margin-top: 30px; }

  .medium--push--top-05 {
    margin-top: 15px; }

  .medium--push--top-15 {
    margin-top: 45px; }

  .medium--push--top-2 {
    margin-top: 60px; }

  .medium--push--top-3 {
    margin-top: 90px; }

  .medium--push--top-4 {
    margin-top: 120px; }

  .medium--push--top-5 {
    margin-top: 150px; }

  .medium--push--top-6 {
    margin-top: 180px; } }
@media screen and (min-width: 799px) {
  .large--push--top-0 {
    margin-top: 0; }

  .large--push--top-05 {
    margin-top: 15px; }

  .large--push--top-1 {
    margin-top: 30px; }

  .large--push--top-15 {
    margin-top: 45px; }

  .large--push--top-2 {
    margin-top: 60px; }

  .large--push--top-3 {
    margin-top: 90px; }

  .large--push--top-4 {
    margin-top: 120px; }

  .large--push--top-4 {
    margin-top: 150px; }

  .large--push--top-4 {
    margin-top: 180px; } }
.blurred {
  filter: blur(15px);
  transition: filter 250ms; }

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

#PageContainer {
  width: 100%;
  min-height: 100%;
  padding-top: 80px; }
  #PageContainer.has-banner {
    padding-top: 120px; }
  #PageContainer.has-double-banner {
    padding-top: 160px; }
  @media screen and (min-width: 1000px) {
    .overlay-header #PageContainer {
      padding-top: 0; }
      .overlay-header #PageContainer.has-banner {
        padding-top: 40px; }
      .overlay-header #PageContainer.has-double-banner {
        padding-top: 80px; } }
  @media screen and (max-width: 1000px) {
    #PageContainer {
      padding-top: 50px; }
      #PageContainer.has-banner {
        padding-top: 90px; }
      #PageContainer.has-double-banner {
        padding-top: 130px; } }
  #PageContainer.overlay-header .shell:first-child {
    padding-top: 0; }

.sidebar-email-signup {
  margin-bottom: 60px; }
  .sidebar-email-signup .input-group {
    margin: 15px auto; }
    .sidebar-email-signup .input-group input {
      margin-right: 5px; }
    .sidebar-email-signup .input-group label {
      margin-right: 10px; }
      .sidebar-email-signup .input-group label:last-child {
        margin-right: 0; }
  .sidebar-email-signup input[type="submit"] {
    margin: 0 auto; }

.shell {
  padding-top: 45px;
  min-height: calc(100vh - 273px - 123px); }
  .template-product .shell {
    padding-top: 30px; }
    @media screen and (max-width: 799px) {
      .template-product .shell {
        padding-top: 15px; } }
  .template-collection .shell, #our-story .shell, #about-our-vegan-leather .shell, #join-our-mission .shell, #pop-up-at-striiike .shell, body.page-materials .shell {
    border: none; }
    .template-collection .shell .main-content .section-header, #our-story .shell .main-content .section-header, #about-our-vegan-leather .shell .main-content .section-header, #join-our-mission .shell .main-content .section-header, #pop-up-at-striiike .shell .main-content .section-header, body.page-materials .shell .main-content .section-header {
      margin-top: 10px; }
      .template-collection .shell .main-content .section-header hr, #our-story .shell .main-content .section-header hr, #about-our-vegan-leather .shell .main-content .section-header hr, #join-our-mission .shell .main-content .section-header hr, #pop-up-at-striiike .shell .main-content .section-header hr, body.page-materials .shell .main-content .section-header hr {
        margin: 0px 0 40px; }
      .template-collection .shell .main-content .section-header a, #our-story .shell .main-content .section-header a, #about-our-vegan-leather .shell .main-content .section-header a, #join-our-mission .shell .main-content .section-header a, #pop-up-at-striiike .shell .main-content .section-header a, body.page-materials .shell .main-content .section-header a {
        color: #6f6f6f; }
      .template-collection .shell .main-content .section-header.type, #our-story .shell .main-content .section-header.type, #about-our-vegan-leather .shell .main-content .section-header.type, #join-our-mission .shell .main-content .section-header.type, #pop-up-at-striiike .shell .main-content .section-header.type, body.page-materials .shell .main-content .section-header.type {
        margin-bottom: 15px; }
        .template-collection .shell .main-content .section-header.type a, #our-story .shell .main-content .section-header.type a, #about-our-vegan-leather .shell .main-content .section-header.type a, #join-our-mission .shell .main-content .section-header.type a, #pop-up-at-striiike .shell .main-content .section-header.type a, body.page-materials .shell .main-content .section-header.type a {
          color: #000; }
    .template-collection .shell .main-content .section-header__title, #our-story .shell .main-content .section-header__title, #about-our-vegan-leather .shell .main-content .section-header__title, #join-our-mission .shell .main-content .section-header__title, #pop-up-at-striiike .shell .main-content .section-header__title, body.page-materials .shell .main-content .section-header__title {
      margin-bottom: 0; }
  .template-blog .shell {
    border-top: 1px solid #d9d9d9; }
  .shell .main-content {
    margin-top: 0; }
    .template-blog .shell .main-content {
      padding-bottom: 30px; }
    .shell .main-content h4, .shell .main-content .h4 {
      margin-bottom: 30px; }
    .shell .main-content .section-header {
      margin-top: 30px;
      margin-bottom: 25px; }
      .shell .main-content .section-header h4, .shell .main-content .section-header .h4 {
        margin-bottom: 10px; }
  #give-back .shell {
    border-top: 1px solid #d9d9d9; }

#intro {
  margin: 50px auto;
  text-align: center;
  width: 90%;
  max-width: 600px; }
  #intro h4, #intro .h4 {
    margin-bottom: 45px; }
    @media screen and (max-width: 799px) {
      #intro h4, #intro .h4 {
        font-size: 1.2em; } }
    @media screen and (max-width: 480px) {
      #intro h4, #intro .h4 {
        font-size: 1.1em; } }

#CountdownTimer {
  margin: 20px auto 50px;
  width: auto; }
  @media screen and (max-width: 480px) {
    #CountdownTimer {
      margin-bottom: 30px; } }
  @media screen and (min-width: 800px) and (max-width: 1100px) {
    #CountdownTimer {
      margin-bottom: 20px; } }
  #CountdownTimer tr {
    border-right: 1px solid #bababa; }
  #CountdownTimer td {
    border: none;
    border-left: 1px solid #bababa;
    text-align: center;
    width: 33%;
    padding: 2px 15px;
    line-height: 1; }
    #CountdownTimer td span {
      font-size: 1.3em;
      font-weight: 400; }
    #CountdownTimer td small {
      font-size: 0.6em;
      text-transform: uppercase;
      font-weight: 500; }

.grid.section-block, .section-block.grid--rev, .section-block.grid--full, .site-header .section-block.message_banner, .section-block#aboutTLFeatures {
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em; }
  .grid.section-block img, .section-block.grid--rev img, .section-block.grid--full img, .site-header .section-block.message_banner img, .section-block#aboutTLFeatures img {
    margin-top: 2em; }
  .grid.section-block h1, .section-block.grid--rev h1, .section-block.grid--full h1, .site-header .section-block.message_banner h1, .section-block#aboutTLFeatures h1, .grid.section-block .h1, .section-block.grid--rev .h1, .section-block.grid--full .h1, .site-header .section-block.message_banner .h1, .section-block#aboutTLFeatures .h1 {
    margin-bottom: 0.15em; }
  .grid.section-block h4:first-child, .section-block.grid--rev h4:first-child, .section-block.grid--full h4:first-child, .site-header .section-block.message_banner h4:first-child, .section-block#aboutTLFeatures h4:first-child, .grid.section-block .h4:first-child, .section-block.grid--rev .h4:first-child, .section-block.grid--full .h4:first-child, .site-header .section-block.message_banner .h4:first-child, .section-block#aboutTLFeatures .h4:first-child {
    margin-bottom: 7px; }
    @media screen and (max-width: 480px) {
      .grid.section-block h4:first-child, .section-block.grid--rev h4:first-child, .section-block.grid--full h4:first-child, .site-header .section-block.message_banner h4:first-child, .section-block#aboutTLFeatures h4:first-child, .grid.section-block .h4:first-child, .section-block.grid--rev .h4:first-child, .section-block.grid--full .h4:first-child, .site-header .section-block.message_banner .h4:first-child, .section-block#aboutTLFeatures .h4:first-child {
        margin-bottom: 20px; } }
  .grid.section-block p, .section-block.grid--rev p, .section-block.grid--full p, .site-header .section-block.message_banner p, .section-block#aboutTLFeatures p {
    margin-bottom: 1.5em; }
    .grid.section-block p:last-child, .section-block.grid--rev p:last-child, .section-block.grid--full p:last-child, .site-header .section-block.message_banner p:last-child, .section-block#aboutTLFeatures p:last-child {
      margin-bottom: 0; }
  .grid.section-block .vertical--left, .section-block.grid--rev .vertical--left, .section-block.grid--full .vertical--left, .site-header .section-block.message_banner .vertical--left, .section-block#aboutTLFeatures .vertical--left,
  .grid.section-block .vertical--right,
  .section-block.grid--rev .vertical--right,
  .section-block.grid--full .vertical--right,
  .site-header .section-block.message_banner .vertical--right,
  .section-block#aboutTLFeatures .vertical--right {
    position: absolute;
    transform: translate(47px, 116px) rotate(90deg);
    top: 50%;
    font-size: 1.2em;
    font-weight: 400; }
    .page-about .grid.section-block .vertical--left, .page-about .section-block.grid--rev .vertical--left, .page-about .section-block.grid--full .vertical--left, .page-about .site-header .section-block.message_banner .vertical--left, .site-header .page-about .section-block.message_banner .vertical--left, .page-about .section-block#aboutTLFeatures .vertical--left, .page-about
    .grid.section-block .vertical--right, .page-about
    .section-block.grid--rev .vertical--right, .page-about
    .section-block.grid--full .vertical--right, .page-about .site-header .section-block.message_banner .vertical--right, .site-header .page-about .section-block.message_banner .vertical--right, .page-about
    .section-block#aboutTLFeatures .vertical--right {
      transform: translate(47px, -17px) rotate(90deg); }
    @media screen and (max-width: 480px) {
      .page-technik .grid.section-block .vertical--left, .page-technik .section-block.grid--rev .vertical--left, .page-technik .section-block.grid--full .vertical--left, .page-technik .site-header .section-block.message_banner .vertical--left, .site-header .page-technik .section-block.message_banner .vertical--left, .page-technik .section-block#aboutTLFeatures .vertical--left, .page-technik
      .grid.section-block .vertical--right, .page-technik
      .section-block.grid--rev .vertical--right, .page-technik
      .section-block.grid--full .vertical--right, .page-technik .site-header .section-block.message_banner .vertical--right, .site-header .page-technik .section-block.message_banner .vertical--right, .page-technik
      .section-block#aboutTLFeatures .vertical--right {
        display: none; } }
    .grid.section-block .vertical--left > div, .section-block.grid--rev .vertical--left > div, .section-block.grid--full .vertical--left > div, .site-header .section-block.message_banner .vertical--left > div, .section-block#aboutTLFeatures .vertical--left > div,
    .grid.section-block .vertical--right > div,
    .section-block.grid--rev .vertical--right > div,
    .section-block.grid--full .vertical--right > div,
    .site-header .section-block.message_banner .vertical--right > div,
    .section-block#aboutTLFeatures .vertical--right > div {
      text-align: center;
      white-space: nowrap;
      vertical-align: middle;
      width: 1.6em;
      position: absolute;
      transform: translate(0, 0) rotate(180deg);
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }
      .grid.section-block .vertical--left > div .off, .section-block.grid--rev .vertical--left > div .off, .section-block.grid--full .vertical--left > div .off, .site-header .section-block.message_banner .vertical--left > div .off, .section-block#aboutTLFeatures .vertical--left > div .off,
      .grid.section-block .vertical--right > div .off,
      .section-block.grid--rev .vertical--right > div .off,
      .section-block.grid--full .vertical--right > div .off,
      .site-header .section-block.message_banner .vertical--right > div .off,
      .section-block#aboutTLFeatures .vertical--right > div .off {
        color: #939598; }
  .grid.section-block .vertical--right, .section-block.grid--rev .vertical--right, .section-block.grid--full .vertical--right, .site-header .section-block.message_banner .vertical--right, .section-block#aboutTLFeatures .vertical--right, .page-about .grid.section-block .vertical--right, .page-about .section-block.grid--rev .vertical--right, .page-about .section-block.grid--full .vertical--right, .page-about .site-header .section-block.message_banner .vertical--right, .site-header .page-about .section-block.message_banner .vertical--right, .page-about .section-block#aboutTLFeatures .vertical--right {
    left: auto;
    right: 0px;
    transform: translate(-17px, -95px) rotate(-90deg); }
  .grid.section-block.sustainable .vertical--right, .section-block.sustainable.grid--rev .vertical--right, .section-block.sustainable.grid--full .vertical--right, .site-header .section-block.sustainable.message_banner .vertical--right, .section-block.sustainable#aboutTLFeatures .vertical--right {
    transform: translate(-17px, -32px) rotate(-90deg); }
  .grid.section-block .v-tick--right, .section-block.grid--rev .v-tick--right, .section-block.grid--full .v-tick--right, .site-header .section-block.message_banner .v-tick--right, .section-block#aboutTLFeatures .v-tick--right {
    background: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/v-tick@3x.png?v=183059046262858213471626026722") center 65% no-repeat;
    width: 10px;
    height: 100%;
    position: absolute;
    right: 0px;
    background-size: contain; }
    @media screen and (max-width: 480px) {
      .grid.section-block .v-tick--right, .section-block.grid--rev .v-tick--right, .section-block.grid--full .v-tick--right, .site-header .section-block.message_banner .v-tick--right, .section-block#aboutTLFeatures .v-tick--right {
        width: 8px; } }
    @media screen and (max-width: 480px) {
      .page-technik .grid.section-block .v-tick--right, .page-technik .section-block.grid--rev .v-tick--right, .page-technik .section-block.grid--full .v-tick--right, .page-technik .site-header .section-block.message_banner .v-tick--right, .site-header .page-technik .section-block.message_banner .v-tick--right, .page-technik .section-block#aboutTLFeatures .v-tick--right {
        display: none; } }

.h-tick {
  background: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/h-tick@3x.png?v=57381195445777719291626026631") center center no-repeat;
  width: 56px;
  height: 10px;
  margin: 2em auto 0;
  background-size: contain; }
  .h-tick.white {
    background-image: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/h-tick-wht@3x.png?v=32080004782929245021626026630"); }
  @media screen and (max-width: 480px) {
    .h-tick {
      width: 34px; } }

body.template-index.index .grid.items h3, body.template-index.index .items.grid--rev h3, body.template-index.index .items.grid--full h3, body.template-index.index .site-header .items.message_banner h3, .site-header body.template-index.index .items.message_banner h3, body.template-index.index .items#aboutTLFeatures h3, body.template-index.index .grid.items .h3, body.template-index.index .items.grid--rev .h3, body.template-index.index .items.grid--full .h3, body.template-index.index .site-header .items.message_banner .h3, .site-header body.template-index.index .items.message_banner .h3, body.template-index.index .items#aboutTLFeatures .h3, body.template-index.index .grid.items .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.template-index.index .grid.items .shopify-challenge__message, body.template-index.index .items.grid--rev .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.template-index.index .items.grid--rev .shopify-challenge__message, body.template-index.index .items.grid--full .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.template-index.index .items.grid--full .shopify-challenge__message, body.template-index.index .site-header .items.message_banner .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.template-index.index .site-header .items.message_banner .shopify-challenge__message, .site-header body.template-index.index .items.message_banner .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container .site-header body.template-index.index .items.message_banner .shopify-challenge__message, body.template-index.index .items#aboutTLFeatures .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.template-index.index .items#aboutTLFeatures .shopify-challenge__message,
body.page-technik #PageContainer .main-content .grid.items h3,
body.page-technik #PageContainer .main-content .items.grid--rev h3,
body.page-technik #PageContainer .main-content .items.grid--full h3,
body.page-technik #PageContainer .main-content .site-header .items.message_banner h3,
.site-header body.page-technik #PageContainer .main-content .items.message_banner h3,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures h3,
body.page-technik #PageContainer .main-content .grid.items .h3,
body.page-technik #PageContainer .main-content .items.grid--rev .h3,
body.page-technik #PageContainer .main-content .items.grid--full .h3,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .h3,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .h3,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .h3,
body.page-technik #PageContainer .main-content .grid.items .shopify-challenge__container .shopify-challenge__message,
.shopify-challenge__container body.page-technik #PageContainer .main-content .grid.items .shopify-challenge__message,
body.page-technik #PageContainer .main-content .items.grid--rev .shopify-challenge__container .shopify-challenge__message,
.shopify-challenge__container body.page-technik #PageContainer .main-content .items.grid--rev .shopify-challenge__message,
body.page-technik #PageContainer .main-content .items.grid--full .shopify-challenge__container .shopify-challenge__message,
.shopify-challenge__container body.page-technik #PageContainer .main-content .items.grid--full .shopify-challenge__message,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .shopify-challenge__container .shopify-challenge__message,
.shopify-challenge__container body.page-technik #PageContainer .main-content .site-header .items.message_banner .shopify-challenge__message,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .shopify-challenge__container .shopify-challenge__message,
.shopify-challenge__container .site-header body.page-technik #PageContainer .main-content .items.message_banner .shopify-challenge__message,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .shopify-challenge__container .shopify-challenge__message,
.shopify-challenge__container body.page-technik #PageContainer .main-content .items#aboutTLFeatures .shopify-challenge__message {
  margin: 30px auto; }
@media screen and (min-width: 800px) {
  body.template-index.index .grid.items .pull-right, body.template-index.index .items.grid--rev .pull-right, body.template-index.index .items.grid--full .pull-right, body.template-index.index .site-header .items.message_banner .pull-right, .site-header body.template-index.index .items.message_banner .pull-right, body.template-index.index .items#aboutTLFeatures .pull-right,
  body.page-technik #PageContainer .main-content .grid.items .pull-right,
  body.page-technik #PageContainer .main-content .items.grid--rev .pull-right,
  body.page-technik #PageContainer .main-content .items.grid--full .pull-right,
  body.page-technik #PageContainer .main-content .site-header .items.message_banner .pull-right,
  .site-header body.page-technik #PageContainer .main-content .items.message_banner .pull-right,
  body.page-technik #PageContainer .main-content .items#aboutTLFeatures .pull-right {
    position: absolute;
    right: 0;
    top: -2px; } }
body.template-index.index .grid.items a, body.template-index.index .items.grid--rev a, body.template-index.index .items.grid--full a, body.template-index.index .site-header .items.message_banner a, .site-header body.template-index.index .items.message_banner a, body.template-index.index .items#aboutTLFeatures a,
body.page-technik #PageContainer .main-content .grid.items a,
body.page-technik #PageContainer .main-content .items.grid--rev a,
body.page-technik #PageContainer .main-content .items.grid--full a,
body.page-technik #PageContainer .main-content .site-header .items.message_banner a,
.site-header body.page-technik #PageContainer .main-content .items.message_banner a,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures a {
  transition: opacity 0.25s cubic-bezier(0.33, 0.66, 0.66, 1); }
  body.template-index.index .grid.items a:hover h4, body.template-index.index .items.grid--rev a:hover h4, body.template-index.index .items.grid--full a:hover h4, body.template-index.index .site-header .items.message_banner a:hover h4, .site-header body.template-index.index .items.message_banner a:hover h4, body.template-index.index .items#aboutTLFeatures a:hover h4, body.template-index.index .grid.items a:hover .h4, body.template-index.index .items.grid--rev a:hover .h4, body.template-index.index .items.grid--full a:hover .h4, body.template-index.index .site-header .items.message_banner a:hover .h4, .site-header body.template-index.index .items.message_banner a:hover .h4, body.template-index.index .items#aboutTLFeatures a:hover .h4,
  body.page-technik #PageContainer .main-content .grid.items a:hover h4,
  body.page-technik #PageContainer .main-content .items.grid--rev a:hover h4,
  body.page-technik #PageContainer .main-content .items.grid--full a:hover h4,
  body.page-technik #PageContainer .main-content .site-header .items.message_banner a:hover h4,
  .site-header body.page-technik #PageContainer .main-content .items.message_banner a:hover h4,
  body.page-technik #PageContainer .main-content .items#aboutTLFeatures a:hover h4,
  body.page-technik #PageContainer .main-content .grid.items a:hover .h4,
  body.page-technik #PageContainer .main-content .items.grid--rev a:hover .h4,
  body.page-technik #PageContainer .main-content .items.grid--full a:hover .h4,
  body.page-technik #PageContainer .main-content .site-header .items.message_banner a:hover .h4,
  .site-header body.page-technik #PageContainer .main-content .items.message_banner a:hover .h4,
  body.page-technik #PageContainer .main-content .items#aboutTLFeatures a:hover .h4 {
    color: #262626;
    border-bottom-color: #262626; }
  body.template-index.index .grid.items a h4, body.template-index.index .items.grid--rev a h4, body.template-index.index .items.grid--full a h4, body.template-index.index .site-header .items.message_banner a h4, .site-header body.template-index.index .items.message_banner a h4, body.template-index.index .items#aboutTLFeatures a h4, body.template-index.index .grid.items a .h4, body.template-index.index .items.grid--rev a .h4, body.template-index.index .items.grid--full a .h4, body.template-index.index .site-header .items.message_banner a .h4, .site-header body.template-index.index .items.message_banner a .h4, body.template-index.index .items#aboutTLFeatures a .h4,
  body.page-technik #PageContainer .main-content .grid.items a h4,
  body.page-technik #PageContainer .main-content .items.grid--rev a h4,
  body.page-technik #PageContainer .main-content .items.grid--full a h4,
  body.page-technik #PageContainer .main-content .site-header .items.message_banner a h4,
  .site-header body.page-technik #PageContainer .main-content .items.message_banner a h4,
  body.page-technik #PageContainer .main-content .items#aboutTLFeatures a h4,
  body.page-technik #PageContainer .main-content .grid.items a .h4,
  body.page-technik #PageContainer .main-content .items.grid--rev a .h4,
  body.page-technik #PageContainer .main-content .items.grid--full a .h4,
  body.page-technik #PageContainer .main-content .site-header .items.message_banner a .h4,
  .site-header body.page-technik #PageContainer .main-content .items.message_banner a .h4,
  body.page-technik #PageContainer .main-content .items#aboutTLFeatures a .h4 {
    display: inline-block;
    font-size: 0.918em;
    padding-bottom: 3px;
    color: #000;
    border-bottom: 1px solid #000; }
body.template-index.index .grid.items .item .label h4, body.template-index.index .items.grid--rev .item .label h4, body.template-index.index .items.grid--full .item .label h4, body.template-index.index .site-header .items.message_banner .item .label h4, .site-header body.template-index.index .items.message_banner .item .label h4, body.template-index.index .items#aboutTLFeatures .item .label h4, body.template-index.index .grid.items .item .label .h4, body.template-index.index .items.grid--rev .item .label .h4, body.template-index.index .items.grid--full .item .label .h4, body.template-index.index .site-header .items.message_banner .item .label .h4, .site-header body.template-index.index .items.message_banner .item .label .h4, body.template-index.index .items#aboutTLFeatures .item .label .h4,
body.page-technik #PageContainer .main-content .grid.items .item .label h4,
body.page-technik #PageContainer .main-content .items.grid--rev .item .label h4,
body.page-technik #PageContainer .main-content .items.grid--full .item .label h4,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .item .label h4,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .item .label h4,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .item .label h4,
body.page-technik #PageContainer .main-content .grid.items .item .label .h4,
body.page-technik #PageContainer .main-content .items.grid--rev .item .label .h4,
body.page-technik #PageContainer .main-content .items.grid--full .item .label .h4,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .item .label .h4,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .item .label .h4,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .item .label .h4 {
  margin: 10px auto !important;
  border-bottom: none;
  padding: 0; }
body.template-index.index .grid.items .item a > h4, body.template-index.index .items.grid--rev .item a > h4, body.template-index.index .items.grid--full .item a > h4, body.template-index.index .site-header .items.message_banner .item a > h4, .site-header body.template-index.index .items.message_banner .item a > h4, body.template-index.index .items#aboutTLFeatures .item a > h4, body.template-index.index .grid.items .item a > .h4, body.template-index.index .items.grid--rev .item a > .h4, body.template-index.index .items.grid--full .item a > .h4, body.template-index.index .site-header .items.message_banner .item a > .h4, .site-header body.template-index.index .items.message_banner .item a > .h4, body.template-index.index .items#aboutTLFeatures .item a > .h4,
body.page-technik #PageContainer .main-content .grid.items .item a > h4,
body.page-technik #PageContainer .main-content .items.grid--rev .item a > h4,
body.page-technik #PageContainer .main-content .items.grid--full .item a > h4,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .item a > h4,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .item a > h4,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .item a > h4,
body.page-technik #PageContainer .main-content .grid.items .item a > .h4,
body.page-technik #PageContainer .main-content .items.grid--rev .item a > .h4,
body.page-technik #PageContainer .main-content .items.grid--full .item a > .h4,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .item a > .h4,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .item a > .h4,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .item a > .h4 {
  margin-top: 30px; }
body.template-index.index .grid.items .buttons, body.template-index.index .items.grid--rev .buttons, body.template-index.index .items.grid--full .buttons, body.template-index.index .site-header .items.message_banner .buttons, .site-header body.template-index.index .items.message_banner .buttons, body.template-index.index .items#aboutTLFeatures .buttons,
body.page-technik #PageContainer .main-content .grid.items .buttons,
body.page-technik #PageContainer .main-content .items.grid--rev .buttons,
body.page-technik #PageContainer .main-content .items.grid--full .buttons,
body.page-technik #PageContainer .main-content .site-header .items.message_banner .buttons,
.site-header body.page-technik #PageContainer .main-content .items.message_banner .buttons,
body.page-technik #PageContainer .main-content .items#aboutTLFeatures .buttons {
  padding-right: 0px;
  padding-left: 15px; }
  body.template-index.index .grid.items .buttons a, body.template-index.index .items.grid--rev .buttons a, body.template-index.index .items.grid--full .buttons a, body.template-index.index .site-header .items.message_banner .buttons a, .site-header body.template-index.index .items.message_banner .buttons a, body.template-index.index .items#aboutTLFeatures .buttons a,
  body.page-technik #PageContainer .main-content .grid.items .buttons a,
  body.page-technik #PageContainer .main-content .items.grid--rev .buttons a,
  body.page-technik #PageContainer .main-content .items.grid--full .buttons a,
  body.page-technik #PageContainer .main-content .site-header .items.message_banner .buttons a,
  .site-header body.page-technik #PageContainer .main-content .items.message_banner .buttons a,
  body.page-technik #PageContainer .main-content .items#aboutTLFeatures .buttons a {
    margin: 0 auto 15px;
    padding: 8px 30px;
    min-width: 200px; }
    @media screen and (min-width: 480px) {
      body.template-index.index .grid.items .buttons a:last-child, body.template-index.index .items.grid--rev .buttons a:last-child, body.template-index.index .items.grid--full .buttons a:last-child, body.template-index.index .site-header .items.message_banner .buttons a:last-child, .site-header body.template-index.index .items.message_banner .buttons a:last-child, body.template-index.index .items#aboutTLFeatures .buttons a:last-child,
      body.page-technik #PageContainer .main-content .grid.items .buttons a:last-child,
      body.page-technik #PageContainer .main-content .items.grid--rev .buttons a:last-child,
      body.page-technik #PageContainer .main-content .items.grid--full .buttons a:last-child,
      body.page-technik #PageContainer .main-content .site-header .items.message_banner .buttons a:last-child,
      .site-header body.page-technik #PageContainer .main-content .items.message_banner .buttons a:last-child,
      body.page-technik #PageContainer .main-content .items#aboutTLFeatures .buttons a:last-child {
        margin-left: 10px; } }

.shopify-section .hero.video .title.autoplay {
  position: relative; }

.media-player,
.vimeo-player {
  display: flex;
  align-items: center; }
  .autoplay .media-player .banner, .autoplay
  .vimeo-player .banner {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .autoplay .media-player .banner .button,
    .autoplay .media-player .banner .play-button, .autoplay
    .vimeo-player .banner .button,
    .autoplay
    .vimeo-player .banner .play-button {
      display: none; }
  .autoplay .media-player .video, .autoplay
  .vimeo-player .video {
    display: block; }
  .media-player .banner,
  .vimeo-player .banner {
    position: absolute;
    width: 100%;
    z-index: 1;
    display: block !important; }
    .media-player .banner .button,
    .media-player .banner .play-button,
    .vimeo-player .banner .button,
    .vimeo-player .banner .play-button {
      width: 188px;
      padding: 60px;
      cursor: pointer;
      transition: opacity 250ms; }
      @media screen and (max-width: 480px) {
        .media-player .banner .button,
        .media-player .banner .play-button,
        .vimeo-player .banner .button,
        .vimeo-player .banner .play-button {
          width: 88px;
          padding: 10px; } }
    .media-player .banner:hover .play-button, .media-player .banner:active .play-button,
    .vimeo-player .banner:hover .play-button,
    .vimeo-player .banner:active .play-button {
      opacity: 0.9; }
    .media-player .banner #muteButton,
    .media-player .banner #unmuteButton,
    .vimeo-player .banner #muteButton,
    .vimeo-player .banner #unmuteButton {
      opacity: 0;
      transition: opacity 250ms; }
      @media screen and (max-width: 480px) {
        .media-player .banner #muteButton,
        .media-player .banner #unmuteButton,
        .vimeo-player .banner #muteButton,
        .vimeo-player .banner #unmuteButton {
          display: none !important; } }
    .media-player .banner #muteButton,
    .vimeo-player .banner #muteButton {
      opacity: 0.5; }
  .media-player:hover .banner #muteButton,
  .media-player:hover .banner #unmuteButton, .media-player:active .banner #muteButton,
  .media-player:active .banner #unmuteButton,
  .vimeo-player:hover .banner #muteButton,
  .vimeo-player:hover .banner #unmuteButton,
  .vimeo-player:active .banner #muteButton,
  .vimeo-player:active .banner #unmuteButton {
    opacity: 1; }
  .media-player .video,
  .vimeo-player .video {
    display: none;
    width: 100%; }
    .media-player .video video,
    .vimeo-player .video video {
      width: 100%;
      display: block; }

body.page-shopper-giveaway #hero,
body.page-mothers-day-giveaway #hero,
body.page-detox-retreat-giveaway #hero,
body.page-curated-gifts #hero,
body.page-about #hero,
body.page-subscribe #hero {
  margin-bottom: 4em; }
  body.page-shopper-giveaway #hero .grid__item, body.page-shopper-giveaway #hero #shopify-product-reviews, body.page-shopper-giveaway #hero #aboutTLFeatures .header, #aboutTLFeatures body.page-shopper-giveaway #hero .header, body.page-shopper-giveaway #hero #aboutTLFeatures .item, #aboutTLFeatures body.page-shopper-giveaway #hero .item,
  body.page-mothers-day-giveaway #hero .grid__item,
  body.page-mothers-day-giveaway #hero #shopify-product-reviews,
  body.page-mothers-day-giveaway #hero #aboutTLFeatures .header,
  #aboutTLFeatures body.page-mothers-day-giveaway #hero .header,
  body.page-mothers-day-giveaway #hero #aboutTLFeatures .item,
  #aboutTLFeatures body.page-mothers-day-giveaway #hero .item,
  body.page-detox-retreat-giveaway #hero .grid__item,
  body.page-detox-retreat-giveaway #hero #shopify-product-reviews,
  body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header,
  #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header,
  body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item,
  #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item,
  body.page-curated-gifts #hero .grid__item,
  body.page-curated-gifts #hero #shopify-product-reviews,
  body.page-curated-gifts #hero #aboutTLFeatures .header,
  #aboutTLFeatures body.page-curated-gifts #hero .header,
  body.page-curated-gifts #hero #aboutTLFeatures .item,
  #aboutTLFeatures body.page-curated-gifts #hero .item,
  body.page-about #hero .grid__item,
  body.page-about #hero #shopify-product-reviews,
  body.page-about #hero #aboutTLFeatures .header,
  #aboutTLFeatures body.page-about #hero .header,
  body.page-about #hero #aboutTLFeatures .item,
  #aboutTLFeatures body.page-about #hero .item,
  body.page-subscribe #hero .grid__item,
  body.page-subscribe #hero #shopify-product-reviews,
  body.page-subscribe #hero #aboutTLFeatures .header,
  #aboutTLFeatures body.page-subscribe #hero .header,
  body.page-subscribe #hero #aboutTLFeatures .item,
  #aboutTLFeatures body.page-subscribe #hero .item {
    top: 50%; }
    body.page-shopper-giveaway #hero .grid__item h4:last-child, body.page-shopper-giveaway #hero #shopify-product-reviews h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .header h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .header h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .item h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .item h4:last-child, body.page-shopper-giveaway #hero .grid__item .h4:last-child, body.page-shopper-giveaway #hero #shopify-product-reviews .h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .header .h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .header .h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .item .h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .item .h4:last-child,
    body.page-mothers-day-giveaway #hero .grid__item h4:last-child,
    body.page-mothers-day-giveaway #hero #shopify-product-reviews h4:last-child,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .header h4:last-child,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .header h4:last-child,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .item h4:last-child,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .item h4:last-child,
    body.page-mothers-day-giveaway #hero .grid__item .h4:last-child,
    body.page-mothers-day-giveaway #hero #shopify-product-reviews .h4:last-child,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .header .h4:last-child,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .header .h4:last-child,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .item .h4:last-child,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .item .h4:last-child,
    body.page-detox-retreat-giveaway #hero .grid__item h4:last-child,
    body.page-detox-retreat-giveaway #hero #shopify-product-reviews h4:last-child,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header h4:last-child,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header h4:last-child,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item h4:last-child,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item h4:last-child,
    body.page-detox-retreat-giveaway #hero .grid__item .h4:last-child,
    body.page-detox-retreat-giveaway #hero #shopify-product-reviews .h4:last-child,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header .h4:last-child,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header .h4:last-child,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item .h4:last-child,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item .h4:last-child,
    body.page-curated-gifts #hero .grid__item h4:last-child,
    body.page-curated-gifts #hero #shopify-product-reviews h4:last-child,
    body.page-curated-gifts #hero #aboutTLFeatures .header h4:last-child,
    #aboutTLFeatures body.page-curated-gifts #hero .header h4:last-child,
    body.page-curated-gifts #hero #aboutTLFeatures .item h4:last-child,
    #aboutTLFeatures body.page-curated-gifts #hero .item h4:last-child,
    body.page-curated-gifts #hero .grid__item .h4:last-child,
    body.page-curated-gifts #hero #shopify-product-reviews .h4:last-child,
    body.page-curated-gifts #hero #aboutTLFeatures .header .h4:last-child,
    #aboutTLFeatures body.page-curated-gifts #hero .header .h4:last-child,
    body.page-curated-gifts #hero #aboutTLFeatures .item .h4:last-child,
    #aboutTLFeatures body.page-curated-gifts #hero .item .h4:last-child,
    body.page-about #hero .grid__item h4:last-child,
    body.page-about #hero #shopify-product-reviews h4:last-child,
    body.page-about #hero #aboutTLFeatures .header h4:last-child,
    #aboutTLFeatures body.page-about #hero .header h4:last-child,
    body.page-about #hero #aboutTLFeatures .item h4:last-child,
    #aboutTLFeatures body.page-about #hero .item h4:last-child,
    body.page-about #hero .grid__item .h4:last-child,
    body.page-about #hero #shopify-product-reviews .h4:last-child,
    body.page-about #hero #aboutTLFeatures .header .h4:last-child,
    #aboutTLFeatures body.page-about #hero .header .h4:last-child,
    body.page-about #hero #aboutTLFeatures .item .h4:last-child,
    #aboutTLFeatures body.page-about #hero .item .h4:last-child,
    body.page-subscribe #hero .grid__item h4:last-child,
    body.page-subscribe #hero #shopify-product-reviews h4:last-child,
    body.page-subscribe #hero #aboutTLFeatures .header h4:last-child,
    #aboutTLFeatures body.page-subscribe #hero .header h4:last-child,
    body.page-subscribe #hero #aboutTLFeatures .item h4:last-child,
    #aboutTLFeatures body.page-subscribe #hero .item h4:last-child,
    body.page-subscribe #hero .grid__item .h4:last-child,
    body.page-subscribe #hero #shopify-product-reviews .h4:last-child,
    body.page-subscribe #hero #aboutTLFeatures .header .h4:last-child,
    #aboutTLFeatures body.page-subscribe #hero .header .h4:last-child,
    body.page-subscribe #hero #aboutTLFeatures .item .h4:last-child,
    #aboutTLFeatures body.page-subscribe #hero .item .h4:last-child {
      margin-top: -0.4em; }
  body.page-shopper-giveaway #hero .h-tick,
  body.page-mothers-day-giveaway #hero .h-tick,
  body.page-detox-retreat-giveaway #hero .h-tick,
  body.page-curated-gifts #hero .h-tick,
  body.page-about #hero .h-tick,
  body.page-subscribe #hero .h-tick {
    background: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/h-tick@3x.png?v=57381195445777719291626026631") center center no-repeat;
    width: 56px;
    height: 9px;
    margin: 0 auto;
    background-size: contain; }
    @media screen and (max-width: 480px) {
      body.page-shopper-giveaway #hero .h-tick,
      body.page-mothers-day-giveaway #hero .h-tick,
      body.page-detox-retreat-giveaway #hero .h-tick,
      body.page-curated-gifts #hero .h-tick,
      body.page-about #hero .h-tick,
      body.page-subscribe #hero .h-tick {
        width: 44px; } }
  @media only screen and (max-width: 799px) {
    body.page-shopper-giveaway #hero .grid__item, body.page-shopper-giveaway #hero #shopify-product-reviews, body.page-shopper-giveaway #hero #aboutTLFeatures .header, #aboutTLFeatures body.page-shopper-giveaway #hero .header, body.page-shopper-giveaway #hero #aboutTLFeatures .item, #aboutTLFeatures body.page-shopper-giveaway #hero .item,
    body.page-mothers-day-giveaway #hero .grid__item,
    body.page-mothers-day-giveaway #hero #shopify-product-reviews,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .header,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .item,
    body.page-detox-retreat-giveaway #hero .grid__item,
    body.page-detox-retreat-giveaway #hero #shopify-product-reviews,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item,
    body.page-curated-gifts #hero .grid__item,
    body.page-curated-gifts #hero #shopify-product-reviews,
    body.page-curated-gifts #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-curated-gifts #hero .header,
    body.page-curated-gifts #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-curated-gifts #hero .item,
    body.page-about #hero .grid__item,
    body.page-about #hero #shopify-product-reviews,
    body.page-about #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-about #hero .header,
    body.page-about #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-about #hero .item,
    body.page-subscribe #hero .grid__item,
    body.page-subscribe #hero #shopify-product-reviews,
    body.page-subscribe #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-subscribe #hero .header,
    body.page-subscribe #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-subscribe #hero .item {
      top: 50%; }
      body.page-shopper-giveaway #hero .grid__item h4:last-child, body.page-shopper-giveaway #hero #shopify-product-reviews h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .header h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .header h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .item h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .item h4:last-child, body.page-shopper-giveaway #hero .grid__item .h4:last-child, body.page-shopper-giveaway #hero #shopify-product-reviews .h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .header .h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .header .h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .item .h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .item .h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item h4:last-child,
      body.page-mothers-day-giveaway #hero #shopify-product-reviews h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .header h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .item h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item .h4:last-child,
      body.page-mothers-day-giveaway #hero #shopify-product-reviews .h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .header .h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .item .h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item h4:last-child,
      body.page-detox-retreat-giveaway #hero #shopify-product-reviews h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item .h4:last-child,
      body.page-detox-retreat-giveaway #hero #shopify-product-reviews .h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header .h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item .h4:last-child,
      body.page-curated-gifts #hero .grid__item h4:last-child,
      body.page-curated-gifts #hero #shopify-product-reviews h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .header h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .item h4:last-child,
      body.page-curated-gifts #hero .grid__item .h4:last-child,
      body.page-curated-gifts #hero #shopify-product-reviews .h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .header .h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .item .h4:last-child,
      body.page-about #hero .grid__item h4:last-child,
      body.page-about #hero #shopify-product-reviews h4:last-child,
      body.page-about #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-about #hero .header h4:last-child,
      body.page-about #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-about #hero .item h4:last-child,
      body.page-about #hero .grid__item .h4:last-child,
      body.page-about #hero #shopify-product-reviews .h4:last-child,
      body.page-about #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-about #hero .header .h4:last-child,
      body.page-about #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-about #hero .item .h4:last-child,
      body.page-subscribe #hero .grid__item h4:last-child,
      body.page-subscribe #hero #shopify-product-reviews h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .header h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .item h4:last-child,
      body.page-subscribe #hero .grid__item .h4:last-child,
      body.page-subscribe #hero #shopify-product-reviews .h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .header .h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .item .h4:last-child {
        margin-top: 1.5em; } }
  @media only screen and (max-width: 480px) {
    body.page-shopper-giveaway #hero,
    body.page-mothers-day-giveaway #hero,
    body.page-detox-retreat-giveaway #hero,
    body.page-curated-gifts #hero,
    body.page-about #hero,
    body.page-subscribe #hero {
      background-color: transparent;
      border-bottom: 1px solid #d9d9d9;
      padding-bottom: 1.5em; }
    body.page-shopper-giveaway #hero img,
    body.page-mothers-day-giveaway #hero img,
    body.page-detox-retreat-giveaway #hero img,
    body.page-curated-gifts #hero img,
    body.page-about #hero img,
    body.page-subscribe #hero img {
      max-width: inherit;
      width: 150%;
      margin-left: -50%; }
    body.page-shopper-giveaway #hero .title,
    body.page-mothers-day-giveaway #hero .title,
    body.page-detox-retreat-giveaway #hero .title,
    body.page-curated-gifts #hero .title,
    body.page-about #hero .title,
    body.page-subscribe #hero .title {
      position: relative;
      height: auto;
      -webkit-transform-style: initial;
      -moz-transform-style: initial;
      transform-style: initial;
      margin-top: 30px; }
    body.page-shopper-giveaway #hero .grid__item, body.page-shopper-giveaway #hero #shopify-product-reviews, body.page-shopper-giveaway #hero #aboutTLFeatures .header, #aboutTLFeatures body.page-shopper-giveaway #hero .header, body.page-shopper-giveaway #hero #aboutTLFeatures .item, #aboutTLFeatures body.page-shopper-giveaway #hero .item,
    body.page-mothers-day-giveaway #hero .grid__item,
    body.page-mothers-day-giveaway #hero #shopify-product-reviews,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .header,
    body.page-mothers-day-giveaway #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-mothers-day-giveaway #hero .item,
    body.page-detox-retreat-giveaway #hero .grid__item,
    body.page-detox-retreat-giveaway #hero #shopify-product-reviews,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header,
    body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item,
    body.page-curated-gifts #hero .grid__item,
    body.page-curated-gifts #hero #shopify-product-reviews,
    body.page-curated-gifts #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-curated-gifts #hero .header,
    body.page-curated-gifts #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-curated-gifts #hero .item,
    body.page-about #hero .grid__item,
    body.page-about #hero #shopify-product-reviews,
    body.page-about #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-about #hero .header,
    body.page-about #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-about #hero .item,
    body.page-subscribe #hero .grid__item,
    body.page-subscribe #hero #shopify-product-reviews,
    body.page-subscribe #hero #aboutTLFeatures .header,
    #aboutTLFeatures body.page-subscribe #hero .header,
    body.page-subscribe #hero #aboutTLFeatures .item,
    #aboutTLFeatures body.page-subscribe #hero .item {
      top: auto;
      -webkit-transform: initial;
      -moz-transform: initial;
      transform: initial;
      position: relative; }
      body.page-shopper-giveaway #hero .grid__item h4:last-child, body.page-shopper-giveaway #hero #shopify-product-reviews h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .header h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .header h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .item h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .item h4:last-child, body.page-shopper-giveaway #hero .grid__item .h4:last-child, body.page-shopper-giveaway #hero #shopify-product-reviews .h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .header .h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .header .h4:last-child, body.page-shopper-giveaway #hero #aboutTLFeatures .item .h4:last-child, #aboutTLFeatures body.page-shopper-giveaway #hero .item .h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item h4:last-child,
      body.page-mothers-day-giveaway #hero #shopify-product-reviews h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .header h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .item h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item .h4:last-child,
      body.page-mothers-day-giveaway #hero #shopify-product-reviews .h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .header .h4:last-child,
      body.page-mothers-day-giveaway #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-mothers-day-giveaway #hero .item .h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item h4:last-child,
      body.page-detox-retreat-giveaway #hero #shopify-product-reviews h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item .h4:last-child,
      body.page-detox-retreat-giveaway #hero #shopify-product-reviews .h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .header .h4:last-child,
      body.page-detox-retreat-giveaway #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-detox-retreat-giveaway #hero .item .h4:last-child,
      body.page-curated-gifts #hero .grid__item h4:last-child,
      body.page-curated-gifts #hero #shopify-product-reviews h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .header h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .item h4:last-child,
      body.page-curated-gifts #hero .grid__item .h4:last-child,
      body.page-curated-gifts #hero #shopify-product-reviews .h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .header .h4:last-child,
      body.page-curated-gifts #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-curated-gifts #hero .item .h4:last-child,
      body.page-about #hero .grid__item h4:last-child,
      body.page-about #hero #shopify-product-reviews h4:last-child,
      body.page-about #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-about #hero .header h4:last-child,
      body.page-about #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-about #hero .item h4:last-child,
      body.page-about #hero .grid__item .h4:last-child,
      body.page-about #hero #shopify-product-reviews .h4:last-child,
      body.page-about #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-about #hero .header .h4:last-child,
      body.page-about #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-about #hero .item .h4:last-child,
      body.page-subscribe #hero .grid__item h4:last-child,
      body.page-subscribe #hero #shopify-product-reviews h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .header h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .header h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .item h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .item h4:last-child,
      body.page-subscribe #hero .grid__item .h4:last-child,
      body.page-subscribe #hero #shopify-product-reviews .h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .header .h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .header .h4:last-child,
      body.page-subscribe #hero #aboutTLFeatures .item .h4:last-child,
      #aboutTLFeatures body.page-subscribe #hero .item .h4:last-child {
        margin-top: 0.5em; } }
  body.page-shopper-giveaway #hero .title img,
  body.page-shopper-giveaway #hero .title .h-tick,
  body.page-mothers-day-giveaway #hero .title img,
  body.page-mothers-day-giveaway #hero .title .h-tick,
  body.page-detox-retreat-giveaway #hero .title img,
  body.page-detox-retreat-giveaway #hero .title .h-tick,
  body.page-curated-gifts #hero .title img,
  body.page-curated-gifts #hero .title .h-tick,
  body.page-about #hero .title img,
  body.page-about #hero .title .h-tick,
  body.page-subscribe #hero .title img,
  body.page-subscribe #hero .title .h-tick {
    margin-bottom: 2.5em; }
  body.page-shopper-giveaway #hero .title h1, body.page-shopper-giveaway #hero .title .h1,
  body.page-mothers-day-giveaway #hero .title h1,
  body.page-mothers-day-giveaway #hero .title .h1,
  body.page-detox-retreat-giveaway #hero .title h1,
  body.page-detox-retreat-giveaway #hero .title .h1,
  body.page-curated-gifts #hero .title h1,
  body.page-curated-gifts #hero .title .h1,
  body.page-about #hero .title h1,
  body.page-about #hero .title .h1,
  body.page-subscribe #hero .title h1,
  body.page-subscribe #hero .title .h1 {
    font-size: 2.52em;
    font-weight: 500;
    letter-spacing: 0.17em;
    margin-bottom: 1em; }
  @media screen and (max-width: 799px) {
    body.page-shopper-giveaway #hero .title img,
    body.page-shopper-giveaway #hero .title .h-tick,
    body.page-mothers-day-giveaway #hero .title img,
    body.page-mothers-day-giveaway #hero .title .h-tick,
    body.page-detox-retreat-giveaway #hero .title img,
    body.page-detox-retreat-giveaway #hero .title .h-tick,
    body.page-curated-gifts #hero .title img,
    body.page-curated-gifts #hero .title .h-tick,
    body.page-about #hero .title img,
    body.page-about #hero .title .h-tick,
    body.page-subscribe #hero .title img,
    body.page-subscribe #hero .title .h-tick {
      margin-bottom: 1em; }
    body.page-shopper-giveaway #hero .title h1, body.page-shopper-giveaway #hero .title .h1,
    body.page-mothers-day-giveaway #hero .title h1,
    body.page-mothers-day-giveaway #hero .title .h1,
    body.page-detox-retreat-giveaway #hero .title h1,
    body.page-detox-retreat-giveaway #hero .title .h1,
    body.page-curated-gifts #hero .title h1,
    body.page-curated-gifts #hero .title .h1,
    body.page-about #hero .title h1,
    body.page-about #hero .title .h1,
    body.page-subscribe #hero .title h1,
    body.page-subscribe #hero .title .h1 {
      font-size: 1.4em; }
    body.page-shopper-giveaway #hero .title h5, body.page-shopper-giveaway #hero .title .h5,
    body.page-mothers-day-giveaway #hero .title h5,
    body.page-mothers-day-giveaway #hero .title .h5,
    body.page-detox-retreat-giveaway #hero .title h5,
    body.page-detox-retreat-giveaway #hero .title .h5,
    body.page-curated-gifts #hero .title h5,
    body.page-curated-gifts #hero .title .h5,
    body.page-about #hero .title h5,
    body.page-about #hero .title .h5,
    body.page-subscribe #hero .title h5,
    body.page-subscribe #hero .title .h5 {
      font-size: 0.75em; } }
  @media screen and (max-width: 480px) {
    body.page-shopper-giveaway #hero .title h1, body.page-shopper-giveaway #hero .title .h1,
    body.page-mothers-day-giveaway #hero .title h1,
    body.page-mothers-day-giveaway #hero .title .h1,
    body.page-detox-retreat-giveaway #hero .title h1,
    body.page-detox-retreat-giveaway #hero .title .h1,
    body.page-curated-gifts #hero .title h1,
    body.page-curated-gifts #hero .title .h1,
    body.page-about #hero .title h1,
    body.page-about #hero .title .h1,
    body.page-subscribe #hero .title h1,
    body.page-subscribe #hero .title .h1 {
      margin-bottom: .9em; } }

body.page-about #PageContainer,
body.page-subscribe #PageContainer {
  max-width: 100%; }
body.page-about hr,
body.page-subscribe hr {
  margin: 0 0 4em; }
body.page-about .main-content,
body.page-subscribe .main-content {
  padding-bottom: 40px; }
  @media screen and (max-width: 480px) {
    body.page-about .main-content,
    body.page-subscribe .main-content {
      padding: 0 40px 40px; } }
  body.page-about .main-content .grid.section-block, body.page-about .main-content .section-block.grid--rev, body.page-about .main-content .section-block.grid--full, body.page-about .main-content .site-header .section-block.message_banner, .site-header body.page-about .main-content .section-block.message_banner, body.page-about .main-content .section-block#aboutTLFeatures,
  body.page-subscribe .main-content .grid.section-block,
  body.page-subscribe .main-content .section-block.grid--rev,
  body.page-subscribe .main-content .section-block.grid--full,
  body.page-subscribe .main-content .site-header .section-block.message_banner,
  .site-header body.page-subscribe .main-content .section-block.message_banner,
  body.page-subscribe .main-content .section-block#aboutTLFeatures {
    margin-top: 0;
    margin-bottom: 1.5em; }
    body.page-about .main-content .grid.section-block .grid__item, body.page-about .main-content .section-block.grid--rev .grid__item, body.page-about .main-content .section-block.grid--full .grid__item, body.page-about .main-content .site-header .section-block.message_banner .grid__item, .site-header body.page-about .main-content .section-block.message_banner .grid__item, body.page-about .main-content .section-block#aboutTLFeatures .grid__item, body.page-about .main-content .grid.section-block #shopify-product-reviews, body.page-about .main-content .section-block.grid--rev #shopify-product-reviews, body.page-about .main-content .section-block.grid--full #shopify-product-reviews, body.page-about .main-content .site-header .section-block.message_banner #shopify-product-reviews, .site-header body.page-about .main-content .section-block.message_banner #shopify-product-reviews, body.page-about .main-content .section-block#aboutTLFeatures #shopify-product-reviews, body.page-about .main-content .grid.section-block #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .grid.section-block .header, body.page-about .main-content .section-block.grid--rev #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .section-block.grid--rev .header, body.page-about .main-content .section-block.grid--full #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .section-block.grid--full .header, body.page-about .main-content .site-header .section-block.message_banner #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .site-header .section-block.message_banner .header, .site-header body.page-about .main-content .section-block.message_banner #aboutTLFeatures .header, #aboutTLFeatures .site-header body.page-about .main-content .section-block.message_banner .header, body.page-about .main-content .section-block#aboutTLFeatures .header, body.page-about .main-content .grid.section-block #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .grid.section-block .item, body.page-about .main-content .section-block.grid--rev #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .section-block.grid--rev .item, body.page-about .main-content .section-block.grid--full #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .section-block.grid--full .item, body.page-about .main-content .site-header .section-block.message_banner #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .site-header .section-block.message_banner .item, .site-header body.page-about .main-content .section-block.message_banner #aboutTLFeatures .item, #aboutTLFeatures .site-header body.page-about .main-content .section-block.message_banner .item, body.page-about .main-content .section-block#aboutTLFeatures .item,
    body.page-subscribe .main-content .grid.section-block .grid__item,
    body.page-subscribe .main-content .section-block.grid--rev .grid__item,
    body.page-subscribe .main-content .section-block.grid--full .grid__item,
    body.page-subscribe .main-content .site-header .section-block.message_banner .grid__item,
    .site-header body.page-subscribe .main-content .section-block.message_banner .grid__item,
    body.page-subscribe .main-content .section-block#aboutTLFeatures .grid__item,
    body.page-subscribe .main-content .grid.section-block #shopify-product-reviews,
    body.page-subscribe .main-content .section-block.grid--rev #shopify-product-reviews,
    body.page-subscribe .main-content .section-block.grid--full #shopify-product-reviews,
    body.page-subscribe .main-content .site-header .section-block.message_banner #shopify-product-reviews,
    .site-header body.page-subscribe .main-content .section-block.message_banner #shopify-product-reviews,
    body.page-subscribe .main-content .section-block#aboutTLFeatures #shopify-product-reviews,
    body.page-subscribe .main-content .grid.section-block #aboutTLFeatures .header,
    #aboutTLFeatures body.page-subscribe .main-content .grid.section-block .header,
    body.page-subscribe .main-content .section-block.grid--rev #aboutTLFeatures .header,
    #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--rev .header,
    body.page-subscribe .main-content .section-block.grid--full #aboutTLFeatures .header,
    #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--full .header,
    body.page-subscribe .main-content .site-header .section-block.message_banner #aboutTLFeatures .header,
    #aboutTLFeatures body.page-subscribe .main-content .site-header .section-block.message_banner .header,
    .site-header body.page-subscribe .main-content .section-block.message_banner #aboutTLFeatures .header,
    #aboutTLFeatures .site-header body.page-subscribe .main-content .section-block.message_banner .header,
    body.page-subscribe .main-content .section-block#aboutTLFeatures .header,
    body.page-subscribe .main-content .grid.section-block #aboutTLFeatures .item,
    #aboutTLFeatures body.page-subscribe .main-content .grid.section-block .item,
    body.page-subscribe .main-content .section-block.grid--rev #aboutTLFeatures .item,
    #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--rev .item,
    body.page-subscribe .main-content .section-block.grid--full #aboutTLFeatures .item,
    #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--full .item,
    body.page-subscribe .main-content .site-header .section-block.message_banner #aboutTLFeatures .item,
    #aboutTLFeatures body.page-subscribe .main-content .site-header .section-block.message_banner .item,
    .site-header body.page-subscribe .main-content .section-block.message_banner #aboutTLFeatures .item,
    #aboutTLFeatures .site-header body.page-subscribe .main-content .section-block.message_banner .item,
    body.page-subscribe .main-content .section-block#aboutTLFeatures .item {
      margin-bottom: 2em; }
      @media screen and (max-width: 480px) {
        body.page-about .main-content .grid.section-block .grid__item, body.page-about .main-content .section-block.grid--rev .grid__item, body.page-about .main-content .section-block.grid--full .grid__item, body.page-about .main-content .site-header .section-block.message_banner .grid__item, .site-header body.page-about .main-content .section-block.message_banner .grid__item, body.page-about .main-content .section-block#aboutTLFeatures .grid__item, body.page-about .main-content .grid.section-block #shopify-product-reviews, body.page-about .main-content .section-block.grid--rev #shopify-product-reviews, body.page-about .main-content .section-block.grid--full #shopify-product-reviews, body.page-about .main-content .site-header .section-block.message_banner #shopify-product-reviews, .site-header body.page-about .main-content .section-block.message_banner #shopify-product-reviews, body.page-about .main-content .section-block#aboutTLFeatures #shopify-product-reviews, body.page-about .main-content .grid.section-block #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .grid.section-block .header, body.page-about .main-content .section-block.grid--rev #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .section-block.grid--rev .header, body.page-about .main-content .section-block.grid--full #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .section-block.grid--full .header, body.page-about .main-content .site-header .section-block.message_banner #aboutTLFeatures .header, #aboutTLFeatures body.page-about .main-content .site-header .section-block.message_banner .header, .site-header body.page-about .main-content .section-block.message_banner #aboutTLFeatures .header, #aboutTLFeatures .site-header body.page-about .main-content .section-block.message_banner .header, body.page-about .main-content .section-block#aboutTLFeatures .header, body.page-about .main-content .grid.section-block #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .grid.section-block .item, body.page-about .main-content .section-block.grid--rev #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .section-block.grid--rev .item, body.page-about .main-content .section-block.grid--full #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .section-block.grid--full .item, body.page-about .main-content .site-header .section-block.message_banner #aboutTLFeatures .item, #aboutTLFeatures body.page-about .main-content .site-header .section-block.message_banner .item, .site-header body.page-about .main-content .section-block.message_banner #aboutTLFeatures .item, #aboutTLFeatures .site-header body.page-about .main-content .section-block.message_banner .item, body.page-about .main-content .section-block#aboutTLFeatures .item,
        body.page-subscribe .main-content .grid.section-block .grid__item,
        body.page-subscribe .main-content .section-block.grid--rev .grid__item,
        body.page-subscribe .main-content .section-block.grid--full .grid__item,
        body.page-subscribe .main-content .site-header .section-block.message_banner .grid__item,
        .site-header body.page-subscribe .main-content .section-block.message_banner .grid__item,
        body.page-subscribe .main-content .section-block#aboutTLFeatures .grid__item,
        body.page-subscribe .main-content .grid.section-block #shopify-product-reviews,
        body.page-subscribe .main-content .section-block.grid--rev #shopify-product-reviews,
        body.page-subscribe .main-content .section-block.grid--full #shopify-product-reviews,
        body.page-subscribe .main-content .site-header .section-block.message_banner #shopify-product-reviews,
        .site-header body.page-subscribe .main-content .section-block.message_banner #shopify-product-reviews,
        body.page-subscribe .main-content .section-block#aboutTLFeatures #shopify-product-reviews,
        body.page-subscribe .main-content .grid.section-block #aboutTLFeatures .header,
        #aboutTLFeatures body.page-subscribe .main-content .grid.section-block .header,
        body.page-subscribe .main-content .section-block.grid--rev #aboutTLFeatures .header,
        #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--rev .header,
        body.page-subscribe .main-content .section-block.grid--full #aboutTLFeatures .header,
        #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--full .header,
        body.page-subscribe .main-content .site-header .section-block.message_banner #aboutTLFeatures .header,
        #aboutTLFeatures body.page-subscribe .main-content .site-header .section-block.message_banner .header,
        .site-header body.page-subscribe .main-content .section-block.message_banner #aboutTLFeatures .header,
        #aboutTLFeatures .site-header body.page-subscribe .main-content .section-block.message_banner .header,
        body.page-subscribe .main-content .section-block#aboutTLFeatures .header,
        body.page-subscribe .main-content .grid.section-block #aboutTLFeatures .item,
        #aboutTLFeatures body.page-subscribe .main-content .grid.section-block .item,
        body.page-subscribe .main-content .section-block.grid--rev #aboutTLFeatures .item,
        #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--rev .item,
        body.page-subscribe .main-content .section-block.grid--full #aboutTLFeatures .item,
        #aboutTLFeatures body.page-subscribe .main-content .section-block.grid--full .item,
        body.page-subscribe .main-content .site-header .section-block.message_banner #aboutTLFeatures .item,
        #aboutTLFeatures body.page-subscribe .main-content .site-header .section-block.message_banner .item,
        .site-header body.page-subscribe .main-content .section-block.message_banner #aboutTLFeatures .item,
        #aboutTLFeatures .site-header body.page-subscribe .main-content .section-block.message_banner .item,
        body.page-subscribe .main-content .section-block#aboutTLFeatures .item {
          margin-bottom: 1em; } }
  body.page-about .main-content .grid__item.well, body.page-about .main-content .grid__item.sidebar-email-signup, body.page-about .main-content .sidebar-email-signup#shopify-product-reviews, body.page-about .main-content #aboutTLFeatures .sidebar-email-signup.header, #aboutTLFeatures body.page-about .main-content .sidebar-email-signup.header, body.page-about .main-content #aboutTLFeatures .sidebar-email-signup.item, #aboutTLFeatures body.page-about .main-content .sidebar-email-signup.item, body.page-about .main-content .well#shopify-product-reviews, body.page-about .main-content #aboutTLFeatures .well.header, #aboutTLFeatures body.page-about .main-content .well.header, body.page-about .main-content #aboutTLFeatures .well.item, #aboutTLFeatures body.page-about .main-content .well.item,
  body.page-subscribe .main-content .grid__item.well,
  body.page-subscribe .main-content .grid__item.sidebar-email-signup,
  body.page-subscribe .main-content .sidebar-email-signup#shopify-product-reviews,
  body.page-subscribe .main-content #aboutTLFeatures .sidebar-email-signup.header,
  #aboutTLFeatures body.page-subscribe .main-content .sidebar-email-signup.header,
  body.page-subscribe .main-content #aboutTLFeatures .sidebar-email-signup.item,
  #aboutTLFeatures body.page-subscribe .main-content .sidebar-email-signup.item,
  body.page-subscribe .main-content .well#shopify-product-reviews,
  body.page-subscribe .main-content #aboutTLFeatures .well.header,
  #aboutTLFeatures body.page-subscribe .main-content .well.header,
  body.page-subscribe .main-content #aboutTLFeatures .well.item,
  #aboutTLFeatures body.page-subscribe .main-content .well.item {
    background-color: #f7f7f7; }
  body.page-about .main-content .h-tick,
  body.page-subscribe .main-content .h-tick {
    margin: 1em auto 0; }
  body.page-about .main-content h1, body.page-about .main-content .h1,
  body.page-subscribe .main-content h1,
  body.page-subscribe .main-content .h1 {
    font-size: 2.52em; }
  @media screen and (max-width: 799px) {
    body.page-about .main-content h1, body.page-about .main-content .h1,
    body.page-subscribe .main-content h1,
    body.page-subscribe .main-content .h1 {
      font-size: 1.8em; } }
  @media screen and (max-width: 480px) {
    body.page-about .main-content .h-tick,
    body.page-subscribe .main-content .h-tick {
      margin: 1.3em auto 0; }
    body.page-about .main-content h1, body.page-about .main-content .h1,
    body.page-subscribe .main-content h1,
    body.page-subscribe .main-content .h1 {
      font-size: 1.4em;
      margin-bottom: 0.9em; }
    body.page-about .main-content h4, body.page-about .main-content .h4,
    body.page-about .main-content h5,
    body.page-about .main-content .h5,
    body.page-subscribe .main-content h4,
    body.page-subscribe .main-content .h4,
    body.page-subscribe .main-content h5,
    body.page-subscribe .main-content .h5 {
      font-size: 0.9em;
      margin-bottom: 1.5em; } }

.narrower-text {
  max-width: 400px;
  margin: 0 auto; }

@media screen and (max-width: 800px) {
  .grid.two-up > .grid__item, .two-up.grid--rev > .grid__item, .two-up.grid--full > .grid__item, .site-header .two-up.message_banner > .grid__item, .two-up#aboutTLFeatures > .grid__item, .grid.two-up > #shopify-product-reviews, .two-up.grid--rev > #shopify-product-reviews, .two-up.grid--full > #shopify-product-reviews, .site-header .two-up.message_banner > #shopify-product-reviews, .two-up#aboutTLFeatures > #shopify-product-reviews, #aboutTLFeatures .grid.two-up > .header, #aboutTLFeatures .two-up.grid--rev > .header, #aboutTLFeatures .two-up.grid--full > .header, .site-header #aboutTLFeatures .two-up.message_banner > .header, #aboutTLFeatures .site-header .two-up.message_banner > .header, .two-up#aboutTLFeatures > .header, #aboutTLFeatures .grid.two-up > .item, #aboutTLFeatures .two-up.grid--rev > .item, #aboutTLFeatures .two-up.grid--full > .item, .site-header #aboutTLFeatures .two-up.message_banner > .item, #aboutTLFeatures .site-header .two-up.message_banner > .item, .two-up#aboutTLFeatures > .item,
  .grid--rev.two-up > .grid__item,
  .grid--rev.two-up > #shopify-product-reviews,
  #aboutTLFeatures .grid--rev.two-up > .header,
  #aboutTLFeatures .grid--rev.two-up > .item {
    margin-bottom: 2em; } }
.grid.two-up > .grid__item.image img, .two-up.grid--rev > .grid__item.image img, .two-up.grid--full > .grid__item.image img, .site-header .two-up.message_banner > .grid__item.image img, .two-up#aboutTLFeatures > .grid__item.image img, .grid.two-up > .image#shopify-product-reviews img, .two-up.grid--rev > .image#shopify-product-reviews img, .two-up.grid--full > .image#shopify-product-reviews img, .site-header .two-up.message_banner > .image#shopify-product-reviews img, .two-up#aboutTLFeatures > .image#shopify-product-reviews img, #aboutTLFeatures .grid.two-up > .image.header img, #aboutTLFeatures .two-up.grid--rev > .image.header img, #aboutTLFeatures .two-up.grid--full > .image.header img, .site-header #aboutTLFeatures .two-up.message_banner > .image.header img, #aboutTLFeatures .site-header .two-up.message_banner > .image.header img, .two-up#aboutTLFeatures > .image.header img, #aboutTLFeatures .grid.two-up > .image.item img, #aboutTLFeatures .two-up.grid--rev > .image.item img, #aboutTLFeatures .two-up.grid--full > .image.item img, .site-header #aboutTLFeatures .two-up.message_banner > .image.item img, #aboutTLFeatures .site-header .two-up.message_banner > .image.item img, .two-up#aboutTLFeatures > .image.item img,
.grid--rev.two-up > .grid__item.image img,
.grid--rev.two-up > .image#shopify-product-reviews img,
#aboutTLFeatures .grid--rev.two-up > .image.header img,
#aboutTLFeatures .grid--rev.two-up > .image.item img {
  width: 100%; }
.grid.two-up > .grid__item.image .v-center > div, .two-up.grid--rev > .grid__item.image .v-center > div, .two-up.grid--full > .grid__item.image .v-center > div, .site-header .two-up.message_banner > .grid__item.image .v-center > div, .two-up#aboutTLFeatures > .grid__item.image .v-center > div, .grid.two-up > .image#shopify-product-reviews .v-center > div, .two-up.grid--rev > .image#shopify-product-reviews .v-center > div, .two-up.grid--full > .image#shopify-product-reviews .v-center > div, .site-header .two-up.message_banner > .image#shopify-product-reviews .v-center > div, .two-up#aboutTLFeatures > .image#shopify-product-reviews .v-center > div, #aboutTLFeatures .grid.two-up > .image.header .v-center > div, #aboutTLFeatures .two-up.grid--rev > .image.header .v-center > div, #aboutTLFeatures .two-up.grid--full > .image.header .v-center > div, .site-header #aboutTLFeatures .two-up.message_banner > .image.header .v-center > div, #aboutTLFeatures .site-header .two-up.message_banner > .image.header .v-center > div, .two-up#aboutTLFeatures > .image.header .v-center > div, #aboutTLFeatures .grid.two-up > .image.item .v-center > div, #aboutTLFeatures .two-up.grid--rev > .image.item .v-center > div, #aboutTLFeatures .two-up.grid--full > .image.item .v-center > div, .site-header #aboutTLFeatures .two-up.message_banner > .image.item .v-center > div, #aboutTLFeatures .site-header .two-up.message_banner > .image.item .v-center > div, .two-up#aboutTLFeatures > .image.item .v-center > div,
.grid--rev.two-up > .grid__item.image .v-center > div,
.grid--rev.two-up > .image#shopify-product-reviews .v-center > div,
#aboutTLFeatures .grid--rev.two-up > .image.header .v-center > div,
#aboutTLFeatures .grid--rev.two-up > .image.item .v-center > div {
  margin: 0 30px; }
.grid.two-up.design > .grid__item:last-child, .two-up.design.grid--rev > .grid__item:last-child, .two-up.design.grid--full > .grid__item:last-child, .site-header .two-up.design.message_banner > .grid__item:last-child, .two-up.design#aboutTLFeatures > .grid__item:last-child, .grid.two-up.design > #shopify-product-reviews:last-child, .two-up.design.grid--rev > #shopify-product-reviews:last-child, .two-up.design.grid--full > #shopify-product-reviews:last-child, .site-header .two-up.design.message_banner > #shopify-product-reviews:last-child, .two-up.design#aboutTLFeatures > #shopify-product-reviews:last-child, #aboutTLFeatures .grid.two-up.design > .header:last-child, #aboutTLFeatures .two-up.design.grid--rev > .header:last-child, #aboutTLFeatures .two-up.design.grid--full > .header:last-child, .site-header #aboutTLFeatures .two-up.design.message_banner > .header:last-child, #aboutTLFeatures .site-header .two-up.design.message_banner > .header:last-child, .two-up.design#aboutTLFeatures > .header:last-child, #aboutTLFeatures .grid.two-up.design > .item:last-child, #aboutTLFeatures .two-up.design.grid--rev > .item:last-child, #aboutTLFeatures .two-up.design.grid--full > .item:last-child, .site-header #aboutTLFeatures .two-up.design.message_banner > .item:last-child, #aboutTLFeatures .site-header .two-up.design.message_banner > .item:last-child, .two-up.design#aboutTLFeatures > .item:last-child,
.grid--rev.two-up.design > .grid__item:last-child,
.grid--rev.two-up.design > #shopify-product-reviews:last-child,
#aboutTLFeatures .grid--rev.two-up.design > .header:last-child,
#aboutTLFeatures .grid--rev.two-up.design > .item:last-child {
  margin-bottom: 0; }

@media screen and (min-width: 500px) {
  .grid.two-up .v-center > div, .two-up.grid--rev .v-center > div, .two-up.grid--full .v-center > div, .site-header .two-up.message_banner .v-center > div, .two-up#aboutTLFeatures .v-center > div,
  .grid--rev.two-up .v-center > div {
    margin: 0 60px; } }
@media screen and (min-width: 650px) {
  .grid.two-up .v-center > div, .two-up.grid--rev .v-center > div, .two-up.grid--full .v-center > div, .site-header .two-up.message_banner .v-center > div, .two-up#aboutTLFeatures .v-center > div,
  .grid--rev.two-up .v-center > div {
    margin: 0 80px; } }
@media screen and (min-width: 800px) {
  #our-story .shell .grid.two-up, #our-story .shell .two-up.grid--rev, #our-story .shell .two-up.grid--full, #our-story .shell .site-header .two-up.message_banner, .site-header #our-story .shell .two-up.message_banner, #our-story .shell .two-up#aboutTLFeatures,
  #our-story .shell .grid--rev.two-up,
  #about-our-vegan-leather .shell .grid.two-up,
  #about-our-vegan-leather .shell .two-up.grid--rev,
  #about-our-vegan-leather .shell .two-up.grid--full,
  #about-our-vegan-leather .shell .site-header .two-up.message_banner,
  .site-header #about-our-vegan-leather .shell .two-up.message_banner,
  #about-our-vegan-leather .shell .two-up#aboutTLFeatures,
  #about-our-vegan-leather .shell .grid--rev.two-up,
  #pop-up-at-striiike .shell .grid.two-up,
  #pop-up-at-striiike .shell .two-up.grid--rev,
  #pop-up-at-striiike .shell .two-up.grid--full,
  #pop-up-at-striiike .shell .site-header .two-up.message_banner,
  .site-header #pop-up-at-striiike .shell .two-up.message_banner,
  #pop-up-at-striiike .shell .two-up#aboutTLFeatures,
  #pop-up-at-striiike .shell .grid--rev.two-up,
  body.page-holiday-fund .shell .grid.two-up,
  body.page-holiday-fund .shell .two-up.grid--rev,
  body.page-holiday-fund .shell .two-up.grid--full,
  body.page-holiday-fund .shell .site-header .two-up.message_banner,
  .site-header body.page-holiday-fund .shell .two-up.message_banner,
  body.page-holiday-fund .shell .two-up#aboutTLFeatures,
  body.page-holiday-fund .shell .grid--rev.two-up,
  body.page-materials .shell .grid.two-up,
  body.page-materials .shell .two-up.grid--rev,
  body.page-materials .shell .two-up.grid--full,
  body.page-materials .shell .site-header .two-up.message_banner,
  .site-header body.page-materials .shell .two-up.message_banner,
  body.page-materials .shell .two-up#aboutTLFeatures,
  body.page-materials .shell .grid--rev.two-up {
    position: relative;
    margin-bottom: 10px; }
    #our-story .shell .grid.two-up > .grid__item.text, #our-story .shell .two-up.grid--rev > .grid__item.text, #our-story .shell .two-up.grid--full > .grid__item.text, #our-story .shell .site-header .two-up.message_banner > .grid__item.text, .site-header #our-story .shell .two-up.message_banner > .grid__item.text, #our-story .shell .two-up#aboutTLFeatures > .grid__item.text, #our-story .shell .grid.two-up > .text#shopify-product-reviews, #our-story .shell .two-up.grid--rev > .text#shopify-product-reviews, #our-story .shell .two-up.grid--full > .text#shopify-product-reviews, #our-story .shell .site-header .two-up.message_banner > .text#shopify-product-reviews, .site-header #our-story .shell .two-up.message_banner > .text#shopify-product-reviews, #our-story .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews, #our-story .shell #aboutTLFeatures .grid.two-up > .text.header, #aboutTLFeatures #our-story .shell .grid.two-up > .text.header, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.header, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.header, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.header, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.header, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.header, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.header, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.header, #our-story .shell .two-up#aboutTLFeatures > .text.header, #our-story .shell #aboutTLFeatures .grid.two-up > .text.item, #aboutTLFeatures #our-story .shell .grid.two-up > .text.item, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.item, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.item, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.item, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.item, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.item, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.item, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.item, #our-story .shell .two-up#aboutTLFeatures > .text.item,
    #our-story .shell .grid--rev.two-up > .grid__item.text,
    #our-story .shell .grid--rev.two-up > .text#shopify-product-reviews,
    #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
    #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.header,
    #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
    #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.item,
    #about-our-vegan-leather .shell .grid.two-up > .grid__item.text,
    #about-our-vegan-leather .shell .two-up.grid--rev > .grid__item.text,
    #about-our-vegan-leather .shell .two-up.grid--full > .grid__item.text,
    #about-our-vegan-leather .shell .site-header .two-up.message_banner > .grid__item.text,
    .site-header #about-our-vegan-leather .shell .two-up.message_banner > .grid__item.text,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .grid__item.text,
    #about-our-vegan-leather .shell .grid.two-up > .text#shopify-product-reviews,
    #about-our-vegan-leather .shell .two-up.grid--rev > .text#shopify-product-reviews,
    #about-our-vegan-leather .shell .two-up.grid--full > .text#shopify-product-reviews,
    #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text#shopify-product-reviews,
    .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text#shopify-product-reviews,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.header,
    #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.header,
    .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.header,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.item,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.item,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.item,
    #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.item,
    .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.item,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.item,
    #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.text,
    #about-our-vegan-leather .shell .grid--rev.two-up > .text#shopify-product-reviews,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.item,
    #pop-up-at-striiike .shell .grid.two-up > .grid__item.text,
    #pop-up-at-striiike .shell .two-up.grid--rev > .grid__item.text,
    #pop-up-at-striiike .shell .two-up.grid--full > .grid__item.text,
    #pop-up-at-striiike .shell .site-header .two-up.message_banner > .grid__item.text,
    .site-header #pop-up-at-striiike .shell .two-up.message_banner > .grid__item.text,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .grid__item.text,
    #pop-up-at-striiike .shell .grid.two-up > .text#shopify-product-reviews,
    #pop-up-at-striiike .shell .two-up.grid--rev > .text#shopify-product-reviews,
    #pop-up-at-striiike .shell .two-up.grid--full > .text#shopify-product-reviews,
    #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text#shopify-product-reviews,
    .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text#shopify-product-reviews,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.header,
    #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.header,
    .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.header,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.item,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.item,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.item,
    #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.item,
    .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.item,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.item,
    #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.text,
    #pop-up-at-striiike .shell .grid--rev.two-up > .text#shopify-product-reviews,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.item,
    body.page-holiday-fund .shell .grid.two-up > .grid__item.text,
    body.page-holiday-fund .shell .two-up.grid--rev > .grid__item.text,
    body.page-holiday-fund .shell .two-up.grid--full > .grid__item.text,
    body.page-holiday-fund .shell .site-header .two-up.message_banner > .grid__item.text,
    .site-header body.page-holiday-fund .shell .two-up.message_banner > .grid__item.text,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .grid__item.text,
    body.page-holiday-fund .shell .grid.two-up > .text#shopify-product-reviews,
    body.page-holiday-fund .shell .two-up.grid--rev > .text#shopify-product-reviews,
    body.page-holiday-fund .shell .two-up.grid--full > .text#shopify-product-reviews,
    body.page-holiday-fund .shell .site-header .two-up.message_banner > .text#shopify-product-reviews,
    .site-header body.page-holiday-fund .shell .two-up.message_banner > .text#shopify-product-reviews,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews,
    body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.header,
    #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .text.header,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.header,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .text.header,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.header,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .text.header,
    body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .text.header,
    .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .text.header,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.header,
    body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.item,
    #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .text.item,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.item,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .text.item,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.item,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .text.item,
    body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .text.item,
    .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .text.item,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.item,
    body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.text,
    body.page-holiday-fund .shell .grid--rev.two-up > .text#shopify-product-reviews,
    body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
    #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.header,
    body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
    #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.item,
    body.page-materials .shell .grid.two-up > .grid__item.text,
    body.page-materials .shell .two-up.grid--rev > .grid__item.text,
    body.page-materials .shell .two-up.grid--full > .grid__item.text,
    body.page-materials .shell .site-header .two-up.message_banner > .grid__item.text,
    .site-header body.page-materials .shell .two-up.message_banner > .grid__item.text,
    body.page-materials .shell .two-up#aboutTLFeatures > .grid__item.text,
    body.page-materials .shell .grid.two-up > .text#shopify-product-reviews,
    body.page-materials .shell .two-up.grid--rev > .text#shopify-product-reviews,
    body.page-materials .shell .two-up.grid--full > .text#shopify-product-reviews,
    body.page-materials .shell .site-header .two-up.message_banner > .text#shopify-product-reviews,
    .site-header body.page-materials .shell .two-up.message_banner > .text#shopify-product-reviews,
    body.page-materials .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews,
    body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.header,
    #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.header,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.header,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.header,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.header,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.header,
    body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.header,
    .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.header,
    #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.header,
    body.page-materials .shell .two-up#aboutTLFeatures > .text.header,
    body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.item,
    #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.item,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.item,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.item,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.item,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.item,
    body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.item,
    .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.item,
    #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.item,
    body.page-materials .shell .two-up#aboutTLFeatures > .text.item,
    body.page-materials .shell .grid--rev.two-up > .grid__item.text,
    body.page-materials .shell .grid--rev.two-up > .text#shopify-product-reviews,
    body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
    #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.header,
    body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
    #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.item {
      position: absolute;
      height: 100%;
      right: 0;
      padding-bottom: 0;
      padding-left: 10px; }
      #our-story .shell .grid.two-up > .grid__item.text > .v-center, #our-story .shell .two-up.grid--rev > .grid__item.text > .v-center, #our-story .shell .two-up.grid--full > .grid__item.text > .v-center, #our-story .shell .site-header .two-up.message_banner > .grid__item.text > .v-center, .site-header #our-story .shell .two-up.message_banner > .grid__item.text > .v-center, #our-story .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center, #our-story .shell .grid.two-up > .text#shopify-product-reviews > .v-center, #our-story .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center, #our-story .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center, #our-story .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center, .site-header #our-story .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center, #our-story .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center, #our-story .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center, #aboutTLFeatures #our-story .shell .grid.two-up > .text.header > .v-center, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.header > .v-center, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.header > .v-center, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.header > .v-center, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.header > .v-center, #our-story .shell .two-up#aboutTLFeatures > .text.header > .v-center, #our-story .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center, #aboutTLFeatures #our-story .shell .grid.two-up > .text.item > .v-center, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.item > .v-center, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.item > .v-center, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.item > .v-center, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.item > .v-center, #our-story .shell .two-up#aboutTLFeatures > .text.item > .v-center,
      #our-story .shell .grid--rev.two-up > .grid__item.text > .v-center,
      #our-story .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center,
      #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center,
      #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.header > .v-center,
      #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center,
      #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.item > .v-center,
      #about-our-vegan-leather .shell .grid.two-up > .grid__item.text > .v-center,
      #about-our-vegan-leather .shell .two-up.grid--rev > .grid__item.text > .v-center,
      #about-our-vegan-leather .shell .two-up.grid--full > .grid__item.text > .v-center,
      #about-our-vegan-leather .shell .site-header .two-up.message_banner > .grid__item.text > .v-center,
      .site-header #about-our-vegan-leather .shell .two-up.message_banner > .grid__item.text > .v-center,
      #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center,
      #about-our-vegan-leather .shell .grid.two-up > .text#shopify-product-reviews > .v-center,
      #about-our-vegan-leather .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center,
      #about-our-vegan-leather .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center,
      #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.header > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.header > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.header > .v-center,
      #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.header > .v-center,
      .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.header > .v-center,
      #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.header > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.item > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.item > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.item > .v-center,
      #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.item > .v-center,
      .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.item > .v-center,
      #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.item > .v-center,
      #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.text > .v-center,
      #about-our-vegan-leather .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.header > .v-center,
      #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center,
      #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.item > .v-center,
      #pop-up-at-striiike .shell .grid.two-up > .grid__item.text > .v-center,
      #pop-up-at-striiike .shell .two-up.grid--rev > .grid__item.text > .v-center,
      #pop-up-at-striiike .shell .two-up.grid--full > .grid__item.text > .v-center,
      #pop-up-at-striiike .shell .site-header .two-up.message_banner > .grid__item.text > .v-center,
      .site-header #pop-up-at-striiike .shell .two-up.message_banner > .grid__item.text > .v-center,
      #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center,
      #pop-up-at-striiike .shell .grid.two-up > .text#shopify-product-reviews > .v-center,
      #pop-up-at-striiike .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center,
      #pop-up-at-striiike .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center,
      #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.header > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.header > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.header > .v-center,
      #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.header > .v-center,
      .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.header > .v-center,
      #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.header > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.item > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.item > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.item > .v-center,
      #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.item > .v-center,
      .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.item > .v-center,
      #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.item > .v-center,
      #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.text > .v-center,
      #pop-up-at-striiike .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.header > .v-center,
      #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center,
      #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.item > .v-center,
      body.page-holiday-fund .shell .grid.two-up > .grid__item.text > .v-center,
      body.page-holiday-fund .shell .two-up.grid--rev > .grid__item.text > .v-center,
      body.page-holiday-fund .shell .two-up.grid--full > .grid__item.text > .v-center,
      body.page-holiday-fund .shell .site-header .two-up.message_banner > .grid__item.text > .v-center,
      .site-header body.page-holiday-fund .shell .two-up.message_banner > .grid__item.text > .v-center,
      body.page-holiday-fund .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center,
      body.page-holiday-fund .shell .grid.two-up > .text#shopify-product-reviews > .v-center,
      body.page-holiday-fund .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center,
      body.page-holiday-fund .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center,
      body.page-holiday-fund .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      .site-header body.page-holiday-fund .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .text.header > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .text.header > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .text.header > .v-center,
      body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .text.header > .v-center,
      .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .text.header > .v-center,
      body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.header > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .text.item > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .text.item > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .text.item > .v-center,
      body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .text.item > .v-center,
      .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .text.item > .v-center,
      body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.item > .v-center,
      body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.text > .v-center,
      body.page-holiday-fund .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.header > .v-center,
      body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center,
      #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.item > .v-center,
      body.page-materials .shell .grid.two-up > .grid__item.text > .v-center,
      body.page-materials .shell .two-up.grid--rev > .grid__item.text > .v-center,
      body.page-materials .shell .two-up.grid--full > .grid__item.text > .v-center,
      body.page-materials .shell .site-header .two-up.message_banner > .grid__item.text > .v-center,
      .site-header body.page-materials .shell .two-up.message_banner > .grid__item.text > .v-center,
      body.page-materials .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center,
      body.page-materials .shell .grid.two-up > .text#shopify-product-reviews > .v-center,
      body.page-materials .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center,
      body.page-materials .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center,
      body.page-materials .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      .site-header body.page-materials .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center,
      body.page-materials .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center,
      body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center,
      #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.header > .v-center,
      body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center,
      #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.header > .v-center,
      body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center,
      #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.header > .v-center,
      body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.header > .v-center,
      .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center,
      #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.header > .v-center,
      body.page-materials .shell .two-up#aboutTLFeatures > .text.header > .v-center,
      body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center,
      #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.item > .v-center,
      body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center,
      #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.item > .v-center,
      body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center,
      #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.item > .v-center,
      body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.item > .v-center,
      .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center,
      #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.item > .v-center,
      body.page-materials .shell .two-up#aboutTLFeatures > .text.item > .v-center,
      body.page-materials .shell .grid--rev.two-up > .grid__item.text > .v-center,
      body.page-materials .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center,
      body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center,
      #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.header > .v-center,
      body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center,
      #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.item > .v-center {
        height: 100%;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        background-color: #f7f7f7; }
        #our-story .shell .grid.two-up > .grid__item.text > .v-center > div, #our-story .shell .two-up.grid--rev > .grid__item.text > .v-center > div, #our-story .shell .two-up.grid--full > .grid__item.text > .v-center > div, #our-story .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div, .site-header #our-story .shell .two-up.message_banner > .grid__item.text > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div, #our-story .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div, #our-story .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div, #our-story .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div, #our-story .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div, .site-header #our-story .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div, #our-story .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .grid.two-up > .text.header > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.header > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.header > .v-center > div, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.header > .v-center > div, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.header > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .text.header > .v-center > div, #our-story .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .grid.two-up > .text.item > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.item > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.item > .v-center > div, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.item > .v-center > div, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.item > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
        #our-story .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
        #our-story .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
        #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
        #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.header > .v-center > div,
        #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
        #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.item > .v-center > div,
        #about-our-vegan-leather .shell .grid.two-up > .grid__item.text > .v-center > div,
        #about-our-vegan-leather .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
        #about-our-vegan-leather .shell .two-up.grid--full > .grid__item.text > .v-center > div,
        #about-our-vegan-leather .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
        .site-header #about-our-vegan-leather .shell .two-up.message_banner > .grid__item.text > .v-center > div,
        #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
        #about-our-vegan-leather .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
        #about-our-vegan-leather .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
        #about-our-vegan-leather .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
        #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.header > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.header > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.header > .v-center > div,
        #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
        .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.header > .v-center > div,
        #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.item > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.item > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.item > .v-center > div,
        #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
        .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.item > .v-center > div,
        #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
        #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
        #about-our-vegan-leather .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.header > .v-center > div,
        #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
        #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.item > .v-center > div,
        #pop-up-at-striiike .shell .grid.two-up > .grid__item.text > .v-center > div,
        #pop-up-at-striiike .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
        #pop-up-at-striiike .shell .two-up.grid--full > .grid__item.text > .v-center > div,
        #pop-up-at-striiike .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
        .site-header #pop-up-at-striiike .shell .two-up.message_banner > .grid__item.text > .v-center > div,
        #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
        #pop-up-at-striiike .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
        #pop-up-at-striiike .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
        #pop-up-at-striiike .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
        #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.header > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.header > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.header > .v-center > div,
        #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
        .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.header > .v-center > div,
        #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.item > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.item > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.item > .v-center > div,
        #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
        .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.item > .v-center > div,
        #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
        #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
        #pop-up-at-striiike .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.header > .v-center > div,
        #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
        #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.item > .v-center > div,
        body.page-holiday-fund .shell .grid.two-up > .grid__item.text > .v-center > div,
        body.page-holiday-fund .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
        body.page-holiday-fund .shell .two-up.grid--full > .grid__item.text > .v-center > div,
        body.page-holiday-fund .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
        .site-header body.page-holiday-fund .shell .two-up.message_banner > .grid__item.text > .v-center > div,
        body.page-holiday-fund .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
        body.page-holiday-fund .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
        body.page-holiday-fund .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
        body.page-holiday-fund .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
        body.page-holiday-fund .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        .site-header body.page-holiday-fund .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .text.header > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .text.header > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .text.header > .v-center > div,
        body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
        .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .text.header > .v-center > div,
        body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .text.item > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .text.item > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .text.item > .v-center > div,
        body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
        .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .text.item > .v-center > div,
        body.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
        body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
        body.page-holiday-fund .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.header > .v-center > div,
        body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
        #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.item > .v-center > div,
        body.page-materials .shell .grid.two-up > .grid__item.text > .v-center > div,
        body.page-materials .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
        body.page-materials .shell .two-up.grid--full > .grid__item.text > .v-center > div,
        body.page-materials .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
        .site-header body.page-materials .shell .two-up.message_banner > .grid__item.text > .v-center > div,
        body.page-materials .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
        body.page-materials .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
        body.page-materials .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
        body.page-materials .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
        body.page-materials .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        .site-header body.page-materials .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
        body.page-materials .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.header > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.header > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.header > .v-center > div,
        body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
        .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
        #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.header > .v-center > div,
        body.page-materials .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.item > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.item > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.item > .v-center > div,
        body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
        .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
        #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.item > .v-center > div,
        body.page-materials .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
        body.page-materials .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
        body.page-materials .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.header > .v-center > div,
        body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
        #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.item > .v-center > div {
          margin: 0 80px;
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          transform: translateY(-50%); }
    #our-story .shell .grid.two-up > .grid__item.image, #our-story .shell .two-up.grid--rev > .grid__item.image, #our-story .shell .two-up.grid--full > .grid__item.image, #our-story .shell .site-header .two-up.message_banner > .grid__item.image, .site-header #our-story .shell .two-up.message_banner > .grid__item.image, #our-story .shell .two-up#aboutTLFeatures > .grid__item.image, #our-story .shell .grid.two-up > .image#shopify-product-reviews, #our-story .shell .two-up.grid--rev > .image#shopify-product-reviews, #our-story .shell .two-up.grid--full > .image#shopify-product-reviews, #our-story .shell .site-header .two-up.message_banner > .image#shopify-product-reviews, .site-header #our-story .shell .two-up.message_banner > .image#shopify-product-reviews, #our-story .shell .two-up#aboutTLFeatures > .image#shopify-product-reviews, #our-story .shell #aboutTLFeatures .grid.two-up > .image.header, #aboutTLFeatures #our-story .shell .grid.two-up > .image.header, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .image.header, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .image.header, #our-story .shell #aboutTLFeatures .two-up.grid--full > .image.header, #aboutTLFeatures #our-story .shell .two-up.grid--full > .image.header, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.header, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .image.header, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .image.header, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .image.header, #our-story .shell .two-up#aboutTLFeatures > .image.header, #our-story .shell #aboutTLFeatures .grid.two-up > .image.item, #aboutTLFeatures #our-story .shell .grid.two-up > .image.item, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .image.item, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .image.item, #our-story .shell #aboutTLFeatures .two-up.grid--full > .image.item, #aboutTLFeatures #our-story .shell .two-up.grid--full > .image.item, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.item, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .image.item, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .image.item, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .image.item, #our-story .shell .two-up#aboutTLFeatures > .image.item,
    #our-story .shell .grid--rev.two-up > .grid__item.image,
    #our-story .shell .grid--rev.two-up > .image#shopify-product-reviews,
    #our-story .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
    #aboutTLFeatures #our-story .shell .grid--rev.two-up > .image.header,
    #our-story .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
    #aboutTLFeatures #our-story .shell .grid--rev.two-up > .image.item,
    #about-our-vegan-leather .shell .grid.two-up > .grid__item.image,
    #about-our-vegan-leather .shell .two-up.grid--rev > .grid__item.image,
    #about-our-vegan-leather .shell .two-up.grid--full > .grid__item.image,
    #about-our-vegan-leather .shell .site-header .two-up.message_banner > .grid__item.image,
    .site-header #about-our-vegan-leather .shell .two-up.message_banner > .grid__item.image,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .grid__item.image,
    #about-our-vegan-leather .shell .grid.two-up > .image#shopify-product-reviews,
    #about-our-vegan-leather .shell .two-up.grid--rev > .image#shopify-product-reviews,
    #about-our-vegan-leather .shell .two-up.grid--full > .image#shopify-product-reviews,
    #about-our-vegan-leather .shell .site-header .two-up.message_banner > .image#shopify-product-reviews,
    .site-header #about-our-vegan-leather .shell .two-up.message_banner > .image#shopify-product-reviews,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .image#shopify-product-reviews,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .image.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .image.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .image.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .image.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .image.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .image.header,
    #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .image.header,
    .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .image.header,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .image.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .image.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .image.item,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .image.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .image.item,
    #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .image.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .image.item,
    #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .image.item,
    .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .image.item,
    #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .image.item,
    #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.image,
    #about-our-vegan-leather .shell .grid--rev.two-up > .image#shopify-product-reviews,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .image.header,
    #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
    #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .image.item,
    #pop-up-at-striiike .shell .grid.two-up > .grid__item.image,
    #pop-up-at-striiike .shell .two-up.grid--rev > .grid__item.image,
    #pop-up-at-striiike .shell .two-up.grid--full > .grid__item.image,
    #pop-up-at-striiike .shell .site-header .two-up.message_banner > .grid__item.image,
    .site-header #pop-up-at-striiike .shell .two-up.message_banner > .grid__item.image,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .grid__item.image,
    #pop-up-at-striiike .shell .grid.two-up > .image#shopify-product-reviews,
    #pop-up-at-striiike .shell .two-up.grid--rev > .image#shopify-product-reviews,
    #pop-up-at-striiike .shell .two-up.grid--full > .image#shopify-product-reviews,
    #pop-up-at-striiike .shell .site-header .two-up.message_banner > .image#shopify-product-reviews,
    .site-header #pop-up-at-striiike .shell .two-up.message_banner > .image#shopify-product-reviews,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .image#shopify-product-reviews,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .image.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .image.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .image.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .image.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .image.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .image.header,
    #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .image.header,
    .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .image.header,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .image.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .image.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .image.item,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .image.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .image.item,
    #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .image.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .image.item,
    #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .image.item,
    .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .image.item,
    #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .image.item,
    #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.image,
    #pop-up-at-striiike .shell .grid--rev.two-up > .image#shopify-product-reviews,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .image.header,
    #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
    #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .image.item,
    body.page-holiday-fund .shell .grid.two-up > .grid__item.image,
    body.page-holiday-fund .shell .two-up.grid--rev > .grid__item.image,
    body.page-holiday-fund .shell .two-up.grid--full > .grid__item.image,
    body.page-holiday-fund .shell .site-header .two-up.message_banner > .grid__item.image,
    .site-header body.page-holiday-fund .shell .two-up.message_banner > .grid__item.image,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .grid__item.image,
    body.page-holiday-fund .shell .grid.two-up > .image#shopify-product-reviews,
    body.page-holiday-fund .shell .two-up.grid--rev > .image#shopify-product-reviews,
    body.page-holiday-fund .shell .two-up.grid--full > .image#shopify-product-reviews,
    body.page-holiday-fund .shell .site-header .two-up.message_banner > .image#shopify-product-reviews,
    .site-header body.page-holiday-fund .shell .two-up.message_banner > .image#shopify-product-reviews,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .image#shopify-product-reviews,
    body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .image.header,
    #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .image.header,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .image.header,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .image.header,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .image.header,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .image.header,
    body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .image.header,
    .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .image.header,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .image.header,
    body.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .image.item,
    #aboutTLFeatures body.page-holiday-fund .shell .grid.two-up > .image.item,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .image.item,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--rev > .image.item,
    body.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .image.item,
    #aboutTLFeatures body.page-holiday-fund .shell .two-up.grid--full > .image.item,
    body.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures body.page-holiday-fund .shell .site-header .two-up.message_banner > .image.item,
    .site-header body.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures .site-header body.page-holiday-fund .shell .two-up.message_banner > .image.item,
    body.page-holiday-fund .shell .two-up#aboutTLFeatures > .image.item,
    body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.image,
    body.page-holiday-fund .shell .grid--rev.two-up > .image#shopify-product-reviews,
    body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
    #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .image.header,
    body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
    #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .image.item,
    body.page-materials .shell .grid.two-up > .grid__item.image,
    body.page-materials .shell .two-up.grid--rev > .grid__item.image,
    body.page-materials .shell .two-up.grid--full > .grid__item.image,
    body.page-materials .shell .site-header .two-up.message_banner > .grid__item.image,
    .site-header body.page-materials .shell .two-up.message_banner > .grid__item.image,
    body.page-materials .shell .two-up#aboutTLFeatures > .grid__item.image,
    body.page-materials .shell .grid.two-up > .image#shopify-product-reviews,
    body.page-materials .shell .two-up.grid--rev > .image#shopify-product-reviews,
    body.page-materials .shell .two-up.grid--full > .image#shopify-product-reviews,
    body.page-materials .shell .site-header .two-up.message_banner > .image#shopify-product-reviews,
    .site-header body.page-materials .shell .two-up.message_banner > .image#shopify-product-reviews,
    body.page-materials .shell .two-up#aboutTLFeatures > .image#shopify-product-reviews,
    body.page-materials .shell #aboutTLFeatures .grid.two-up > .image.header,
    #aboutTLFeatures body.page-materials .shell .grid.two-up > .image.header,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .image.header,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .image.header,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .image.header,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .image.header,
    body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .image.header,
    .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .image.header,
    #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .image.header,
    body.page-materials .shell .two-up#aboutTLFeatures > .image.header,
    body.page-materials .shell #aboutTLFeatures .grid.two-up > .image.item,
    #aboutTLFeatures body.page-materials .shell .grid.two-up > .image.item,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .image.item,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .image.item,
    body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .image.item,
    #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .image.item,
    body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .image.item,
    .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .image.item,
    #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .image.item,
    body.page-materials .shell .two-up#aboutTLFeatures > .image.item,
    body.page-materials .shell .grid--rev.two-up > .grid__item.image,
    body.page-materials .shell .grid--rev.two-up > .image#shopify-product-reviews,
    body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
    #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .image.header,
    body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
    #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .image.item {
      float: left;
      margin-bottom: 0; }
  #our-story .shell .grid--rev.two-up > .grid__item.text, #our-story .shell .grid--rev.two-up > .text#shopify-product-reviews, #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.header, #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.header, #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.item, #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.item,
  #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.text,
  #about-our-vegan-leather .shell .grid--rev.two-up > .text#shopify-product-reviews,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.header,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.item,
  #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.text,
  #pop-up-at-striiike .shell .grid--rev.two-up > .text#shopify-product-reviews,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.header,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.item,
  body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.text,
  body.page-holiday-fund .shell .grid--rev.two-up > .text#shopify-product-reviews,
  body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
  #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.header,
  body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
  #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .text.item,
  body.page-materials .shell .grid--rev.two-up > .grid__item.text,
  body.page-materials .shell .grid--rev.two-up > .text#shopify-product-reviews,
  body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.header,
  #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.header,
  body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.item,
  #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.item {
    right: auto;
    left: 0;
    padding-left: 30px; }
  #our-story .shell .grid--rev.two-up > .grid__item.image, #our-story .shell .grid--rev.two-up > .image#shopify-product-reviews, #our-story .shell #aboutTLFeatures .grid--rev.two-up > .image.header, #aboutTLFeatures #our-story .shell .grid--rev.two-up > .image.header, #our-story .shell #aboutTLFeatures .grid--rev.two-up > .image.item, #aboutTLFeatures #our-story .shell .grid--rev.two-up > .image.item,
  #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.image,
  #about-our-vegan-leather .shell .grid--rev.two-up > .image#shopify-product-reviews,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .image.header,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .image.item,
  #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.image,
  #pop-up-at-striiike .shell .grid--rev.two-up > .image#shopify-product-reviews,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .image.header,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .image.item,
  body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.image,
  body.page-holiday-fund .shell .grid--rev.two-up > .image#shopify-product-reviews,
  body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
  #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .image.header,
  body.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
  #aboutTLFeatures body.page-holiday-fund .shell .grid--rev.two-up > .image.item,
  body.page-materials .shell .grid--rev.two-up > .grid__item.image,
  body.page-materials .shell .grid--rev.two-up > .image#shopify-product-reviews,
  body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .image.header,
  #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .image.header,
  body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .image.item,
  #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .image.item {
    float: right;
    margin-bottom: 0;
    padding-left: 10px; } }
@media screen and (min-width: 800px) and (max-width: 950px) {
  #our-story .shell .grid.two-up > .grid__item.text > .v-center > div, #our-story .shell .two-up.grid--rev > .grid__item.text > .v-center > div, #our-story .shell .two-up.grid--full > .grid__item.text > .v-center > div, #our-story .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div, .site-header #our-story .shell .two-up.message_banner > .grid__item.text > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div, #our-story .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div, #our-story .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div, #our-story .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div, #our-story .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div, .site-header #our-story .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div, #our-story .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .grid.two-up > .text.header > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.header > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.header > .v-center > div, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.header > .v-center > div, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.header > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .text.header > .v-center > div, #our-story .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .grid.two-up > .text.item > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--rev > .text.item > .v-center > div, #our-story .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .two-up.grid--full > .text.item > .v-center > div, #our-story .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div, #aboutTLFeatures #our-story .shell .site-header .two-up.message_banner > .text.item > .v-center > div, .site-header #our-story .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div, #aboutTLFeatures .site-header #our-story .shell .two-up.message_banner > .text.item > .v-center > div, #our-story .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
  #our-story .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
  #our-story .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
  #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
  #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.header > .v-center > div,
  #our-story .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
  #aboutTLFeatures #our-story .shell .grid--rev.two-up > .text.item > .v-center > div,
  #about-our-vegan-leather .shell .grid.two-up > .grid__item.text > .v-center > div,
  #about-our-vegan-leather .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
  #about-our-vegan-leather .shell .two-up.grid--full > .grid__item.text > .v-center > div,
  #about-our-vegan-leather .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
  .site-header #about-our-vegan-leather .shell .two-up.message_banner > .grid__item.text > .v-center > div,
  #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
  #about-our-vegan-leather .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
  #about-our-vegan-leather .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
  #about-our-vegan-leather .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
  #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.header > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.header > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.header > .v-center > div,
  #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
  .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.header > .v-center > div,
  #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid.two-up > .text.item > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--rev > .text.item > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .two-up.grid--full > .text.item > .v-center > div,
  #about-our-vegan-leather .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
  .site-header #about-our-vegan-leather .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures .site-header #about-our-vegan-leather .shell .two-up.message_banner > .text.item > .v-center > div,
  #about-our-vegan-leather .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
  #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
  #about-our-vegan-leather .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.header > .v-center > div,
  #about-our-vegan-leather .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
  #aboutTLFeatures #about-our-vegan-leather .shell .grid--rev.two-up > .text.item > .v-center > div,
  #pop-up-at-striiike .shell .grid.two-up > .grid__item.text > .v-center > div,
  #pop-up-at-striiike .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
  #pop-up-at-striiike .shell .two-up.grid--full > .grid__item.text > .v-center > div,
  #pop-up-at-striiike .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
  .site-header #pop-up-at-striiike .shell .two-up.message_banner > .grid__item.text > .v-center > div,
  #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
  #pop-up-at-striiike .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
  #pop-up-at-striiike .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
  #pop-up-at-striiike .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
  #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.header > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.header > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.header > .v-center > div,
  #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
  .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.header > .v-center > div,
  #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid.two-up > .text.item > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--rev > .text.item > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .two-up.grid--full > .text.item > .v-center > div,
  #pop-up-at-striiike .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
  .site-header #pop-up-at-striiike .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures .site-header #pop-up-at-striiike .shell .two-up.message_banner > .text.item > .v-center > div,
  #pop-up-at-striiike .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
  #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
  #pop-up-at-striiike .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.header > .v-center > div,
  #pop-up-at-striiike .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
  #aboutTLFeatures #pop-up-at-striiike .shell .grid--rev.two-up > .text.item > .v-center > div,
  body.page-materials .shell .grid.two-up > .grid__item.text > .v-center > div,
  body.page-materials .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
  body.page-materials .shell .two-up.grid--full > .grid__item.text > .v-center > div,
  body.page-materials .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
  .site-header body.page-materials .shell .two-up.message_banner > .grid__item.text > .v-center > div,
  body.page-materials .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
  body.page-materials .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
  body.page-materials .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
  body.page-materials .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
  body.page-materials .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  .site-header body.page-materials .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  body.page-materials .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.header > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.header > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.header > .v-center > div,
  body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
  .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.header > .v-center > div,
  body.page-materials .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .grid.two-up > .text.item > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .two-up.grid--rev > .text.item > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .two-up.grid--full > .text.item > .v-center > div,
  body.page-materials .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
  .site-header body.page-materials .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures .site-header body.page-materials .shell .two-up.message_banner > .text.item > .v-center > div,
  body.page-materials .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
  body.page-materials .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
  body.page-materials .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.header > .v-center > div,
  body.page-materials .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
  #aboutTLFeatures body.page-materials .shell .grid--rev.two-up > .text.item > .v-center > div,
  Xbody.page-holiday-fund .shell .grid.two-up > .grid__item.text > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up.grid--rev > .grid__item.text > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up.grid--full > .grid__item.text > .v-center > div,
  Xbody.page-holiday-fund .shell .site-header .two-up.message_banner > .grid__item.text > .v-center > div,
  .site-header Xbody.page-holiday-fund .shell .two-up.message_banner > .grid__item.text > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up#aboutTLFeatures > .grid__item.text > .v-center > div,
  Xbody.page-holiday-fund .shell .grid.two-up > .text#shopify-product-reviews > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up.grid--rev > .text#shopify-product-reviews > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up.grid--full > .text#shopify-product-reviews > .v-center > div,
  Xbody.page-holiday-fund .shell .site-header .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  .site-header Xbody.page-holiday-fund .shell .two-up.message_banner > .text#shopify-product-reviews > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up#aboutTLFeatures > .text#shopify-product-reviews > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.header > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .grid.two-up > .text.header > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.header > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .two-up.grid--rev > .text.header > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.header > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .two-up.grid--full > .text.header > .v-center > div,
  Xbody.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .site-header .two-up.message_banner > .text.header > .v-center > div,
  .site-header Xbody.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.header > .v-center > div,
  #aboutTLFeatures .site-header Xbody.page-holiday-fund .shell .two-up.message_banner > .text.header > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.header > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .grid.two-up > .text.item > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .grid.two-up > .text.item > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--rev > .text.item > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .two-up.grid--rev > .text.item > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .two-up.grid--full > .text.item > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .two-up.grid--full > .text.item > .v-center > div,
  Xbody.page-holiday-fund .shell .site-header #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .site-header .two-up.message_banner > .text.item > .v-center > div,
  .site-header Xbody.page-holiday-fund .shell #aboutTLFeatures .two-up.message_banner > .text.item > .v-center > div,
  #aboutTLFeatures .site-header Xbody.page-holiday-fund .shell .two-up.message_banner > .text.item > .v-center > div,
  Xbody.page-holiday-fund .shell .two-up#aboutTLFeatures > .text.item > .v-center > div,
  Xbody.page-holiday-fund .shell .grid--rev.two-up > .grid__item.text > .v-center > div,
  Xbody.page-holiday-fund .shell .grid--rev.two-up > .text#shopify-product-reviews > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.header > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .grid--rev.two-up > .text.header > .v-center > div,
  Xbody.page-holiday-fund .shell #aboutTLFeatures .grid--rev.two-up > .text.item > .v-center > div,
  #aboutTLFeatures Xbody.page-holiday-fund .shell .grid--rev.two-up > .text.item > .v-center > div {
    margin: 0 40px;
    font-size: 0.7em; } }
.article {
  outline-width: 0px;
  outline: none; }
  .article .grid .grid__item.text, .article .grid--rev .grid__item.text, .article .grid--full .grid__item.text, .article .site-header .message_banner .grid__item.text, .site-header .article .message_banner .grid__item.text, .article #aboutTLFeatures .grid__item.text, .article .grid .text#shopify-product-reviews, .article .grid--rev .text#shopify-product-reviews, .article .grid--full .text#shopify-product-reviews, .article .site-header .message_banner .text#shopify-product-reviews, .site-header .article .message_banner .text#shopify-product-reviews, .article #aboutTLFeatures .text#shopify-product-reviews, #aboutTLFeatures .article .grid .text.header, #aboutTLFeatures .article .grid--rev .text.header, #aboutTLFeatures .article .grid--full .text.header, #aboutTLFeatures .article .site-header .message_banner .text.header, #aboutTLFeatures .site-header .article .message_banner .text.header, .article #aboutTLFeatures .text.header, #aboutTLFeatures .article .grid .text.item, #aboutTLFeatures .article .grid--rev .text.item, #aboutTLFeatures .article .grid--full .text.item, #aboutTLFeatures .article .site-header .message_banner .text.item, #aboutTLFeatures .site-header .article .message_banner .text.item, .article #aboutTLFeatures .text.item {
    padding-bottom: 30px; }
  @media screen and (min-width: 799px) {
    .article .grid, .article .grid--rev, .article .grid--full, .article .site-header .message_banner, .site-header .article .message_banner, .article #aboutTLFeatures {
      position: relative; }
      .article .grid > .grid__item.text, .article .grid--rev > .grid__item.text, .article .grid--full > .grid__item.text, .article .site-header .message_banner > .grid__item.text, .site-header .article .message_banner > .grid__item.text, .article #aboutTLFeatures > .grid__item.text, .article .grid > .text#shopify-product-reviews, .article .grid--rev > .text#shopify-product-reviews, .article .grid--full > .text#shopify-product-reviews, .article .site-header .message_banner > .text#shopify-product-reviews, .site-header .article .message_banner > .text#shopify-product-reviews, .article #aboutTLFeatures > .text#shopify-product-reviews, .article #aboutTLFeatures .grid > .text.header, #aboutTLFeatures .article .grid > .text.header, .article #aboutTLFeatures .grid--rev > .text.header, #aboutTLFeatures .article .grid--rev > .text.header, .article #aboutTLFeatures .grid--full > .text.header, #aboutTLFeatures .article .grid--full > .text.header, .article .site-header #aboutTLFeatures .message_banner > .text.header, #aboutTLFeatures .article .site-header .message_banner > .text.header, .site-header .article #aboutTLFeatures .message_banner > .text.header, #aboutTLFeatures .site-header .article .message_banner > .text.header, .article #aboutTLFeatures > .text.header, .article #aboutTLFeatures .grid > .text.item, #aboutTLFeatures .article .grid > .text.item, .article #aboutTLFeatures .grid--rev > .text.item, #aboutTLFeatures .article .grid--rev > .text.item, .article #aboutTLFeatures .grid--full > .text.item, #aboutTLFeatures .article .grid--full > .text.item, .article .site-header #aboutTLFeatures .message_banner > .text.item, #aboutTLFeatures .article .site-header .message_banner > .text.item, .site-header .article #aboutTLFeatures .message_banner > .text.item, #aboutTLFeatures .site-header .article .message_banner > .text.item, .article #aboutTLFeatures > .text.item {
        position: absolute;
        height: 100%;
        left: 0;
        padding-bottom: 0; }
        .article .grid > .grid__item.text > .v-center, .article .grid--rev > .grid__item.text > .v-center, .article .grid--full > .grid__item.text > .v-center, .article .site-header .message_banner > .grid__item.text > .v-center, .site-header .article .message_banner > .grid__item.text > .v-center, .article #aboutTLFeatures > .grid__item.text > .v-center, .article .grid > .text#shopify-product-reviews > .v-center, .article .grid--rev > .text#shopify-product-reviews > .v-center, .article .grid--full > .text#shopify-product-reviews > .v-center, .article .site-header .message_banner > .text#shopify-product-reviews > .v-center, .site-header .article .message_banner > .text#shopify-product-reviews > .v-center, .article #aboutTLFeatures > .text#shopify-product-reviews > .v-center, .article #aboutTLFeatures .grid > .text.header > .v-center, #aboutTLFeatures .article .grid > .text.header > .v-center, .article #aboutTLFeatures .grid--rev > .text.header > .v-center, #aboutTLFeatures .article .grid--rev > .text.header > .v-center, .article #aboutTLFeatures .grid--full > .text.header > .v-center, #aboutTLFeatures .article .grid--full > .text.header > .v-center, .article .site-header #aboutTLFeatures .message_banner > .text.header > .v-center, #aboutTLFeatures .article .site-header .message_banner > .text.header > .v-center, .site-header .article #aboutTLFeatures .message_banner > .text.header > .v-center, #aboutTLFeatures .site-header .article .message_banner > .text.header > .v-center, .article #aboutTLFeatures > .text.header > .v-center, .article #aboutTLFeatures .grid > .text.item > .v-center, #aboutTLFeatures .article .grid > .text.item > .v-center, .article #aboutTLFeatures .grid--rev > .text.item > .v-center, #aboutTLFeatures .article .grid--rev > .text.item > .v-center, .article #aboutTLFeatures .grid--full > .text.item > .v-center, #aboutTLFeatures .article .grid--full > .text.item > .v-center, .article .site-header #aboutTLFeatures .message_banner > .text.item > .v-center, #aboutTLFeatures .article .site-header .message_banner > .text.item > .v-center, .site-header .article #aboutTLFeatures .message_banner > .text.item > .v-center, #aboutTLFeatures .site-header .article .message_banner > .text.item > .v-center, .article #aboutTLFeatures > .text.item > .v-center {
          height: 100%;
          -webkit-transform-style: preserve-3d;
          -moz-transform-style: preserve-3d;
          transform-style: preserve-3d; }
          .article .grid > .grid__item.text > .v-center > div, .article .grid--rev > .grid__item.text > .v-center > div, .article .grid--full > .grid__item.text > .v-center > div, .article .site-header .message_banner > .grid__item.text > .v-center > div, .site-header .article .message_banner > .grid__item.text > .v-center > div, .article #aboutTLFeatures > .grid__item.text > .v-center > div, .article .grid > .text#shopify-product-reviews > .v-center > div, .article .grid--rev > .text#shopify-product-reviews > .v-center > div, .article .grid--full > .text#shopify-product-reviews > .v-center > div, .article .site-header .message_banner > .text#shopify-product-reviews > .v-center > div, .site-header .article .message_banner > .text#shopify-product-reviews > .v-center > div, .article #aboutTLFeatures > .text#shopify-product-reviews > .v-center > div, .article #aboutTLFeatures .grid > .text.header > .v-center > div, #aboutTLFeatures .article .grid > .text.header > .v-center > div, .article #aboutTLFeatures .grid--rev > .text.header > .v-center > div, #aboutTLFeatures .article .grid--rev > .text.header > .v-center > div, .article #aboutTLFeatures .grid--full > .text.header > .v-center > div, #aboutTLFeatures .article .grid--full > .text.header > .v-center > div, .article .site-header #aboutTLFeatures .message_banner > .text.header > .v-center > div, #aboutTLFeatures .article .site-header .message_banner > .text.header > .v-center > div, .site-header .article #aboutTLFeatures .message_banner > .text.header > .v-center > div, #aboutTLFeatures .site-header .article .message_banner > .text.header > .v-center > div, .article #aboutTLFeatures > .text.header > .v-center > div, .article #aboutTLFeatures .grid > .text.item > .v-center > div, #aboutTLFeatures .article .grid > .text.item > .v-center > div, .article #aboutTLFeatures .grid--rev > .text.item > .v-center > div, #aboutTLFeatures .article .grid--rev > .text.item > .v-center > div, .article #aboutTLFeatures .grid--full > .text.item > .v-center > div, #aboutTLFeatures .article .grid--full > .text.item > .v-center > div, .article .site-header #aboutTLFeatures .message_banner > .text.item > .v-center > div, #aboutTLFeatures .article .site-header .message_banner > .text.item > .v-center > div, .site-header .article #aboutTLFeatures .message_banner > .text.item > .v-center > div, #aboutTLFeatures .site-header .article .message_banner > .text.item > .v-center > div, .article #aboutTLFeatures > .text.item > .v-center > div {
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            transform: translateY(-50%); }
      .article .grid > .grid__item.image, .article .grid--rev > .grid__item.image, .article .grid--full > .grid__item.image, .article .site-header .message_banner > .grid__item.image, .site-header .article .message_banner > .grid__item.image, .article #aboutTLFeatures > .grid__item.image, .article .grid > .image#shopify-product-reviews, .article .grid--rev > .image#shopify-product-reviews, .article .grid--full > .image#shopify-product-reviews, .article .site-header .message_banner > .image#shopify-product-reviews, .site-header .article .message_banner > .image#shopify-product-reviews, .article #aboutTLFeatures > .image#shopify-product-reviews, .article #aboutTLFeatures .grid > .image.header, #aboutTLFeatures .article .grid > .image.header, .article #aboutTLFeatures .grid--rev > .image.header, #aboutTLFeatures .article .grid--rev > .image.header, .article #aboutTLFeatures .grid--full > .image.header, #aboutTLFeatures .article .grid--full > .image.header, .article .site-header #aboutTLFeatures .message_banner > .image.header, #aboutTLFeatures .article .site-header .message_banner > .image.header, .site-header .article #aboutTLFeatures .message_banner > .image.header, #aboutTLFeatures .site-header .article .message_banner > .image.header, .article #aboutTLFeatures > .image.header, .article #aboutTLFeatures .grid > .image.item, #aboutTLFeatures .article .grid > .image.item, .article #aboutTLFeatures .grid--rev > .image.item, #aboutTLFeatures .article .grid--rev > .image.item, .article #aboutTLFeatures .grid--full > .image.item, #aboutTLFeatures .article .grid--full > .image.item, .article .site-header #aboutTLFeatures .message_banner > .image.item, #aboutTLFeatures .article .site-header .message_banner > .image.item, .site-header .article #aboutTLFeatures .message_banner > .image.item, #aboutTLFeatures .site-header .article .message_banner > .image.item, .article #aboutTLFeatures > .image.item {
        float: right; } }

#articleNav ul {
  text-align: center;
  margin: 15px 0 30px; }
  #articleNav ul button {
    color: #a5a5a5;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding: 15px 0;
    margin: 0 15px;
    outline-width: 0px;
    outline: none; }
  #articleNav ul .slick-active button {
    color: #000;
    font-weight: 400;
    border-bottom-color: #000; }

#give-back .main-content .rte .text-center, #give-back .main-content .rte .sidebar-email-signup, #give-back .main-content .rte body.template-index.index .grid.items .buttons, body.template-index.index .grid.items #give-back .main-content .rte .buttons, #give-back .main-content .rte body.template-index.index .items.grid--rev .buttons, body.template-index.index .items.grid--rev #give-back .main-content .rte .buttons, #give-back .main-content .rte body.template-index.index .items.grid--full .buttons, body.template-index.index .items.grid--full #give-back .main-content .rte .buttons, #give-back .main-content .rte body.template-index.index .site-header .items.message_banner .buttons, body.template-index.index .site-header .items.message_banner #give-back .main-content .rte .buttons, #give-back .main-content .rte .site-header body.template-index.index .items.message_banner .buttons, .site-header body.template-index.index .items.message_banner #give-back .main-content .rte .buttons, #give-back .main-content .rte body.template-index.index .items#aboutTLFeatures .buttons, body.template-index.index .items#aboutTLFeatures #give-back .main-content .rte .buttons,
#give-back body.page-technik #PageContainer .main-content .rte .grid.items .buttons,
body.page-technik #PageContainer #give-back .main-content .rte .grid.items .buttons,
#give-back body.page-technik #PageContainer .main-content .grid.items .rte .buttons,
body.page-technik #PageContainer #give-back .main-content .grid.items .rte .buttons,
#give-back body.page-technik #PageContainer .main-content .rte .items.grid--rev .buttons,
body.page-technik #PageContainer #give-back .main-content .rte .items.grid--rev .buttons,
#give-back body.page-technik #PageContainer .main-content .items.grid--rev .rte .buttons,
body.page-technik #PageContainer #give-back .main-content .items.grid--rev .rte .buttons,
#give-back body.page-technik #PageContainer .main-content .rte .items.grid--full .buttons,
body.page-technik #PageContainer #give-back .main-content .rte .items.grid--full .buttons,
#give-back body.page-technik #PageContainer .main-content .items.grid--full .rte .buttons,
body.page-technik #PageContainer #give-back .main-content .items.grid--full .rte .buttons,
#give-back body.page-technik #PageContainer .main-content .rte .site-header .items.message_banner .buttons,
body.page-technik #PageContainer #give-back .main-content .rte .site-header .items.message_banner .buttons,
#give-back body.page-technik #PageContainer .main-content .site-header .items.message_banner .rte .buttons,
body.page-technik #PageContainer #give-back .main-content .site-header .items.message_banner .rte .buttons,
#give-back .site-header body.page-technik #PageContainer .main-content .rte .items.message_banner .buttons,
.site-header body.page-technik #PageContainer #give-back .main-content .rte .items.message_banner .buttons,
#give-back .site-header body.page-technik #PageContainer .main-content .items.message_banner .rte .buttons,
.site-header body.page-technik #PageContainer #give-back .main-content .items.message_banner .rte .buttons,
#give-back body.page-technik #PageContainer .main-content .rte .items#aboutTLFeatures .buttons,
body.page-technik #PageContainer #give-back .main-content .rte .items#aboutTLFeatures .buttons,
#give-back body.page-technik #PageContainer .main-content .items#aboutTLFeatures .rte .buttons,
body.page-technik #PageContainer #give-back .main-content .items#aboutTLFeatures .rte .buttons, #give-back .main-content .rte .site-header .message_banner, .site-header #give-back .main-content .rte .message_banner, #give-back .main-content .rte #aboutTLFeatures {
  margin-bottom: 30px; }

.give-back-grid.grid, .give-back-grid.grid--rev, .give-back-grid.grid--full, .site-header .give-back-grid.message_banner, .give-back-grid#aboutTLFeatures,
.give-back-grid .grid,
.give-back-grid .grid--rev,
.give-back-grid .grid--full,
.give-back-grid .site-header .message_banner,
.site-header .give-back-grid .message_banner,
.give-back-grid #aboutTLFeatures,
#GiveBackGrid.grid,
#GiveBackGrid.grid--rev,
#GiveBackGrid.grid--full,
.site-header #GiveBackGrid.message_banner,
#GiveBackGrid .grid,
#GiveBackGrid .grid--rev,
#GiveBackGrid .grid--full,
#GiveBackGrid .site-header .message_banner,
.site-header #GiveBackGrid .message_banner,
#GiveBackGrid #aboutTLFeatures {
  margin-left: -10px;
  margin-bottom: 0; }
.give-back-grid .grid__item, .give-back-grid #shopify-product-reviews, .give-back-grid #aboutTLFeatures .header, #aboutTLFeatures .give-back-grid .header, .give-back-grid #aboutTLFeatures .item, #aboutTLFeatures .give-back-grid .item,
#GiveBackGrid .grid__item,
#GiveBackGrid #shopify-product-reviews,
#GiveBackGrid #aboutTLFeatures .header,
#aboutTLFeatures #GiveBackGrid .header,
#GiveBackGrid #aboutTLFeatures .item,
#aboutTLFeatures #GiveBackGrid .item {
  padding-left: 10px; }
.give-back-grid img,
#GiveBackGrid img {
  margin-bottom: 10px; }

.template-blog #hero .title h1, .template-blog #hero .title .h1 {
  text-transform: lowercase;
  color: #ffffff; }

#instagram .main-content .large--one-quarter .article,
.template-blog .article,
.template-article .article,
.template-search .article {
  position: relative;
  padding-bottom: 35px; }
  #instagram .main-content .large--one-quarter .article .read-more,
  .template-blog .article .read-more,
  .template-article .article .read-more,
  .template-search .article .read-more {
    position: absolute;
    bottom: 0;
    display: block;
    text-align: center;
    width: 100%;
    margin-left: -15px; }
    #instagram .main-content .large--one-quarter .article .read-more > a,
    .template-blog .article .read-more > a,
    .template-article .article .read-more > a,
    .template-search .article .read-more > a {
      padding-bottom: 2px;
      color: #000000;
      border-bottom: 1px solid #000000; }
#instagram .main-content .large--one-quarter .item,
#instagram .main-content .large--one-quarter .article,
.template-blog .item,
.template-blog .article,
.template-article .item,
.template-article .article,
.template-search .item,
.template-search .article {
  margin-bottom: 48px; }
  #instagram .main-content .large--one-quarter .item .thumb,
  #instagram .main-content .large--one-quarter .article .thumb,
  .template-blog .item .thumb,
  .template-blog .article .thumb,
  .template-article .item .thumb,
  .template-article .article .thumb,
  .template-search .item .thumb,
  .template-search .article .thumb {
    position: relative;
    display: block;
    margin-bottom: 15px; }
    #instagram .main-content .large--one-quarter .item .thumb .label,
    #instagram .main-content .large--one-quarter .article .thumb .label,
    .template-blog .item .thumb .label,
    .template-blog .article .thumb .label,
    .template-article .item .thumb .label,
    .template-article .article .thumb .label,
    .template-search .item .thumb .label,
    .template-search .article .thumb .label {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.05);
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      transform-style: preserve-3d;
      transition: background-color 0.25s cubic-bezier(0.33, 0.66, 0.66, 1); }
      #instagram .main-content .large--one-quarter .item .thumb .label h5, #instagram .main-content .large--one-quarter .item .thumb .label .h5, #instagram .main-content .large--one-quarter .item .thumb .label div,
      #instagram .main-content .large--one-quarter .article .thumb .label h5,
      #instagram .main-content .large--one-quarter .article .thumb .label .h5,
      #instagram .main-content .large--one-quarter .article .thumb .label div,
      .template-blog .item .thumb .label h5,
      .template-blog .item .thumb .label .h5,
      .template-blog .item .thumb .label div,
      .template-blog .article .thumb .label h5,
      .template-blog .article .thumb .label .h5,
      .template-blog .article .thumb .label div,
      .template-article .item .thumb .label h5,
      .template-article .item .thumb .label .h5,
      .template-article .item .thumb .label div,
      .template-article .article .thumb .label h5,
      .template-article .article .thumb .label .h5,
      .template-article .article .thumb .label div,
      .template-search .item .thumb .label h5,
      .template-search .item .thumb .label .h5,
      .template-search .item .thumb .label div,
      .template-search .article .thumb .label h5,
      .template-search .article .thumb .label .h5,
      .template-search .article .thumb .label div {
        display: block;
        position: absolute;
        width: 100%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0;
        color: #000000;
        font-weight: 400;
        transition: opacity 0.25s cubic-bezier(0.33, 0.66, 0.66, 1); }
      #instagram .main-content .large--one-quarter .item .thumb .label div h5, #instagram .main-content .large--one-quarter .item .thumb .label div .h5,
      #instagram .main-content .large--one-quarter .article .thumb .label div h5,
      #instagram .main-content .large--one-quarter .article .thumb .label div .h5,
      .template-blog .item .thumb .label div h5,
      .template-blog .item .thumb .label div .h5,
      .template-blog .article .thumb .label div h5,
      .template-blog .article .thumb .label div .h5,
      .template-article .item .thumb .label div h5,
      .template-article .item .thumb .label div .h5,
      .template-article .article .thumb .label div h5,
      .template-article .article .thumb .label div .h5,
      .template-search .item .thumb .label div h5,
      .template-search .item .thumb .label div .h5,
      .template-search .article .thumb .label div h5,
      .template-search .article .thumb .label div .h5 {
        position: relative;
        margin: 10px 0 0 0;
        line-height: 0.8;
        letter-spacing: 0.12em; }
    #instagram .main-content .large--one-quarter .item .thumb:hover .label,
    #instagram .main-content .large--one-quarter .article .thumb:hover .label,
    .template-blog .item .thumb:hover .label,
    .template-blog .article .thumb:hover .label,
    .template-article .item .thumb:hover .label,
    .template-article .article .thumb:hover .label,
    .template-search .item .thumb:hover .label,
    .template-search .article .thumb:hover .label {
      background-color: rgba(250, 250, 250, 0.7); }
      #instagram .main-content .large--one-quarter .item .thumb:hover .label h5, #instagram .main-content .large--one-quarter .item .thumb:hover .label .h5, #instagram .main-content .large--one-quarter .item .thumb:hover .label div,
      #instagram .main-content .large--one-quarter .article .thumb:hover .label h5,
      #instagram .main-content .large--one-quarter .article .thumb:hover .label .h5,
      #instagram .main-content .large--one-quarter .article .thumb:hover .label div,
      .template-blog .item .thumb:hover .label h5,
      .template-blog .item .thumb:hover .label .h5,
      .template-blog .item .thumb:hover .label div,
      .template-blog .article .thumb:hover .label h5,
      .template-blog .article .thumb:hover .label .h5,
      .template-blog .article .thumb:hover .label div,
      .template-article .item .thumb:hover .label h5,
      .template-article .item .thumb:hover .label .h5,
      .template-article .item .thumb:hover .label div,
      .template-article .article .thumb:hover .label h5,
      .template-article .article .thumb:hover .label .h5,
      .template-article .article .thumb:hover .label div,
      .template-search .item .thumb:hover .label h5,
      .template-search .item .thumb:hover .label .h5,
      .template-search .item .thumb:hover .label div,
      .template-search .article .thumb:hover .label h5,
      .template-search .article .thumb:hover .label .h5,
      .template-search .article .thumb:hover .label div {
        opacity: 1; }
    #instagram .main-content .large--one-quarter .item .thumb img,
    #instagram .main-content .large--one-quarter .article .thumb img,
    .template-blog .item .thumb img,
    .template-blog .article .thumb img,
    .template-article .item .thumb img,
    .template-article .article .thumb img,
    .template-search .item .thumb img,
    .template-search .article .thumb img {
      width: 100%;
      margin-bottom: 26px;
      height: auto; }
  #instagram .main-content .large--one-quarter .item > p,
  #instagram .main-content .large--one-quarter .article > p,
  .template-blog .item > p,
  .template-blog .article > p,
  .template-article .item > p,
  .template-article .article > p,
  .template-search .item > p,
  .template-search .article > p {
    font-size: 12px; }
    #instagram .main-content .large--one-quarter .item > p > a,
    #instagram .main-content .large--one-quarter .article > p > a,
    .template-blog .item > p > a,
    .template-blog .article > p > a,
    .template-article .item > p > a,
    .template-article .article > p > a,
    .template-search .item > p > a,
    .template-search .article > p > a {
      padding-bottom: 2px; }
  #instagram .main-content .large--one-quarter .item h5, #instagram .main-content .large--one-quarter .item .h5,
  #instagram .main-content .large--one-quarter .article h5,
  #instagram .main-content .large--one-quarter .article .h5,
  .template-blog .item h5,
  .template-blog .item .h5,
  .template-blog .article h5,
  .template-blog .article .h5,
  .template-article .item h5,
  .template-article .item .h5,
  .template-article .article h5,
  .template-article .article .h5,
  .template-search .item h5,
  .template-search .item .h5,
  .template-search .article h5,
  .template-search .article .h5 {
    margin-bottom: 20px; }
    #instagram .main-content .large--one-quarter .item h5.light, #instagram .main-content .large--one-quarter .item .light.h5,
    #instagram .main-content .large--one-quarter .article h5.light,
    #instagram .main-content .large--one-quarter .article .light.h5,
    .template-blog .item h5.light,
    .template-blog .item .light.h5,
    .template-blog .article h5.light,
    .template-blog .article .light.h5,
    .template-article .item h5.light,
    .template-article .item .light.h5,
    .template-article .article h5.light,
    .template-article .article .light.h5,
    .template-search .item h5.light,
    .template-search .item .light.h5,
    .template-search .article h5.light,
    .template-search .article .light.h5 {
      color: #d9d9d9;
      margin-bottom: 30px; }
#instagram .main-content .large--one-quarter .article .thumb .label,
.template-blog .article .thumb .label,
.template-article .article .thumb .label,
.template-search .article .thumb .label {
  background-color: transparent; }

#press.template-blog .article {
  margin-bottom: 0;
  padding-bottom: 0; }
  #press.template-blog .article .article-thumb {
    position: relative;
    margin-bottom: 50px;
    margin-right: 0.33px; }
  #press.template-blog .article .thumb-inner {
    position: relative; }
  #press.template-blog .article h5, #press.template-blog .article .h5 {
    margin-bottom: 8px; }
  #press.template-blog .article h5, #press.template-blog .article .h5,
  #press.template-blog .article .date {
    display: inline; }
  #press.template-blog .article .date {
    padding-left: 10px;
    padding-right: 7px;
    white-space: nowrap; }
  #press.template-blog .article .label h5, #press.template-blog .article .label .h5 {
    display: block; }
  #press.template-blog .article a:hover .label {
    background-color: rgba(255, 255, 255, 0.7); }
  #press.template-blog .article a:hover h5, #press.template-blog .article a:hover .h5 {
    color: #262626; }
  #press.template-blog .article a:hover .date {
    color: #959595; }
  #press.template-blog .article .sprite-share {
    margin-right: -7px; }
#press.template-blog #quickview .rte {
  margin: 0; }
  #press.template-blog #quickview .rte > div {
    margin: 0; }
#press.template-blog #quickview article h5, #press.template-blog #quickview article .h5,
#press.template-blog #quickview aside h5,
#press.template-blog #quickview aside .h5 {
  margin-bottom: 10px; }
#press.template-blog #quickview article time,
#press.template-blog #quickview aside time {
  display: block;
  margin-bottom: 0; }
#press.template-blog #quickview article .rte img,
#press.template-blog #quickview aside .rte img {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); }
#press.template-blog #quickview article .social-icons,
#press.template-blog #quickview aside .social-icons {
  margin: 15px 0 25px; }
  @media screen and (max-width: 799px) {
    #press.template-blog #quickview article .social-icons li:first-child,
    #press.template-blog #quickview aside .social-icons li:first-child {
      clear: both;
      text-transform: uppercase;
      display: block;
      font-size: 0.75em;
      margin-top: 3px;
      margin-bottom: 0;
      text-align: center; } }

.template-article #PageContainer > .shell {
  padding-top: 0; }

#instagram .main-content .back_link,
.template-article .main-content .back_link {
  text-transform: uppercase;
  font-size: 0.8em;
  margin-top: 30px;
  margin-bottom: -30px; }
  @media screen and (max-width: 799px) {
    #instagram .main-content .back_link,
    .template-article .main-content .back_link {
      margin-top: 15px;
      margin-bottom: -15px; } }
#instagram .main-content .inline-list.tags,
.template-article .main-content .inline-list.tags {
  margin-bottom: 5px; }
#instagram .main-content > .grid, #instagram .main-content > .grid--rev, #instagram .main-content > .grid--full, #instagram .site-header .main-content > .message_banner, .site-header #instagram .main-content > .message_banner, #instagram .main-content > #aboutTLFeatures,
.template-article .main-content > .grid,
.template-article .main-content > .grid--rev,
.template-article .main-content > .grid--full,
.template-article .site-header .main-content > .message_banner,
.site-header .template-article .main-content > .message_banner,
.template-article .main-content > #aboutTLFeatures {
  display: flex; }
  @media screen and (max-width: 799px) {
    #instagram .main-content > .grid, #instagram .main-content > .grid--rev, #instagram .main-content > .grid--full, #instagram .site-header .main-content > .message_banner, .site-header #instagram .main-content > .message_banner, #instagram .main-content > #aboutTLFeatures,
    .template-article .main-content > .grid,
    .template-article .main-content > .grid--rev,
    .template-article .main-content > .grid--full,
    .template-article .site-header .main-content > .message_banner,
    .site-header .template-article .main-content > .message_banner,
    .template-article .main-content > #aboutTLFeatures {
      flex-direction: column; } }
@media screen and (min-width: 799px) {
  #instagram .main-content .grid__item.large--three-quarters, #instagram .main-content .large--three-quarters#shopify-product-reviews, #instagram .main-content #aboutTLFeatures .large--three-quarters.header, #aboutTLFeatures #instagram .main-content .large--three-quarters.header, #instagram .main-content #aboutTLFeatures .large--three-quarters.item, #aboutTLFeatures #instagram .main-content .large--three-quarters.item,
  .template-article .main-content .grid__item.large--three-quarters,
  .template-article .main-content .large--three-quarters#shopify-product-reviews,
  .template-article .main-content #aboutTLFeatures .large--three-quarters.header,
  #aboutTLFeatures .template-article .main-content .large--three-quarters.header,
  .template-article .main-content #aboutTLFeatures .large--three-quarters.item,
  #aboutTLFeatures .template-article .main-content .large--three-quarters.item {
    padding-right: 0; } }
#instagram .main-content .grid__item .article-body, #instagram .main-content #shopify-product-reviews .article-body, #instagram .main-content #aboutTLFeatures .header .article-body, #aboutTLFeatures #instagram .main-content .header .article-body, #instagram .main-content #aboutTLFeatures .item .article-body, #aboutTLFeatures #instagram .main-content .item .article-body,
.template-article .main-content .grid__item .article-body,
.template-article .main-content #shopify-product-reviews .article-body,
.template-article .main-content #aboutTLFeatures .header .article-body,
#aboutTLFeatures .template-article .main-content .header .article-body,
.template-article .main-content #aboutTLFeatures .item .article-body,
#aboutTLFeatures .template-article .main-content .item .article-body {
  margin: 0 auto;
  float: none;
  max-width: 630px; }
  #instagram .main-content .grid__item .article-body h4, #instagram .main-content #shopify-product-reviews .article-body h4, #instagram .main-content #aboutTLFeatures .header .article-body h4, #aboutTLFeatures #instagram .main-content .header .article-body h4, #instagram .main-content #aboutTLFeatures .item .article-body h4, #aboutTLFeatures #instagram .main-content .item .article-body h4, #instagram .main-content .grid__item .article-body .h4, #instagram .main-content #shopify-product-reviews .article-body .h4, #instagram .main-content #aboutTLFeatures .header .article-body .h4, #aboutTLFeatures #instagram .main-content .header .article-body .h4, #instagram .main-content #aboutTLFeatures .item .article-body .h4, #aboutTLFeatures #instagram .main-content .item .article-body .h4,
  .template-article .main-content .grid__item .article-body h4,
  .template-article .main-content #shopify-product-reviews .article-body h4,
  .template-article .main-content #aboutTLFeatures .header .article-body h4,
  #aboutTLFeatures .template-article .main-content .header .article-body h4,
  .template-article .main-content #aboutTLFeatures .item .article-body h4,
  #aboutTLFeatures .template-article .main-content .item .article-body h4,
  .template-article .main-content .grid__item .article-body .h4,
  .template-article .main-content #shopify-product-reviews .article-body .h4,
  .template-article .main-content #aboutTLFeatures .header .article-body .h4,
  #aboutTLFeatures .template-article .main-content .header .article-body .h4,
  .template-article .main-content #aboutTLFeatures .item .article-body .h4,
  #aboutTLFeatures .template-article .main-content .item .article-body .h4 {
    margin-bottom: 5px; }
  #instagram .main-content .grid__item .article-body time, #instagram .main-content #shopify-product-reviews .article-body time, #instagram .main-content #aboutTLFeatures .header .article-body time, #aboutTLFeatures #instagram .main-content .header .article-body time, #instagram .main-content #aboutTLFeatures .item .article-body time, #aboutTLFeatures #instagram .main-content .item .article-body time,
  .template-article .main-content .grid__item .article-body time,
  .template-article .main-content #shopify-product-reviews .article-body time,
  .template-article .main-content #aboutTLFeatures .header .article-body time,
  #aboutTLFeatures .template-article .main-content .header .article-body time,
  .template-article .main-content #aboutTLFeatures .item .article-body time,
  #aboutTLFeatures .template-article .main-content .item .article-body time {
    display: block;
    margin-bottom: 30px; }
  #instagram .main-content .grid__item .article-body p, #instagram .main-content #shopify-product-reviews .article-body p, #instagram .main-content #aboutTLFeatures .header .article-body p, #aboutTLFeatures #instagram .main-content .header .article-body p, #instagram .main-content #aboutTLFeatures .item .article-body p, #aboutTLFeatures #instagram .main-content .item .article-body p,
  #instagram .main-content .grid__item .article-body li,
  #instagram .main-content #shopify-product-reviews .article-body li,
  #instagram .main-content #aboutTLFeatures .header .article-body li,
  #aboutTLFeatures #instagram .main-content .header .article-body li,
  #instagram .main-content #aboutTLFeatures .item .article-body li,
  #aboutTLFeatures #instagram .main-content .item .article-body li,
  .template-article .main-content .grid__item .article-body p,
  .template-article .main-content #shopify-product-reviews .article-body p,
  .template-article .main-content #aboutTLFeatures .header .article-body p,
  #aboutTLFeatures .template-article .main-content .header .article-body p,
  .template-article .main-content #aboutTLFeatures .item .article-body p,
  #aboutTLFeatures .template-article .main-content .item .article-body p,
  .template-article .main-content .grid__item .article-body li,
  .template-article .main-content #shopify-product-reviews .article-body li,
  .template-article .main-content #aboutTLFeatures .header .article-body li,
  #aboutTLFeatures .template-article .main-content .header .article-body li,
  .template-article .main-content #aboutTLFeatures .item .article-body li,
  #aboutTLFeatures .template-article .main-content .item .article-body li {
    font-size: 17px;
    line-height: 1.9; }
@media screen and (min-width: 799px) {
  #instagram .main-content aside.large--one-quarter,
  .template-article .main-content aside.large--one-quarter {
    border-left: 1px solid black; } }

.signup-ver-g, #KlaviyoSignup.signup.ver-g,
#quickview.signup.ver-g {
  position: fixed;
  background-color: #ffffff;
  background-image: none;
  margin-bottom: 0;
  top: auto;
  bottom: 0; }
  .signup-ver-g .close, #KlaviyoSignup.signup.ver-g .close,
  #quickview.signup.ver-g .close {
    top: 25px;
    right: 20px; }
  .signup-ver-g h2, #KlaviyoSignup.signup.ver-g h2,
  #quickview.signup.ver-g h2, .signup-ver-g .h2, #KlaviyoSignup.signup.ver-g .h2,
  #quickview.signup.ver-g .h2, .signup-ver-g .reviewsContainer .spr-header-title, .reviewsContainer .signup-ver-g .spr-header-title, #KlaviyoSignup.signup.ver-g .reviewsContainer .spr-header-title, .reviewsContainer #KlaviyoSignup.signup.ver-g .spr-header-title,
  #quickview.signup.ver-g .reviewsContainer .spr-header-title,
  .reviewsContainer #quickview.signup.ver-g .spr-header-title {
    text-transform: lowercase; }
  .signup-ver-g .field-underline, #KlaviyoSignup.signup.ver-g .field-underline,
  #quickview.signup.ver-g .field-underline {
    border: none; }
  .signup-ver-g .btn, #KlaviyoSignup.signup.ver-g .btn,
  #quickview.signup.ver-g .btn, .signup-ver-g .btn--secondary, #KlaviyoSignup.signup.ver-g .btn--secondary,
  #quickview.signup.ver-g .btn--secondary, .signup-ver-g .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .signup-ver-g .spr-summary-actions-newreview, #KlaviyoSignup.signup.ver-g .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-g .spr-summary-actions-newreview,
  #quickview.signup.ver-g .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions #quickview.signup.ver-g .spr-summary-actions-newreview, .signup-ver-g .btn--alt, #KlaviyoSignup.signup.ver-g .btn--alt,
  #quickview.signup.ver-g .btn--alt {
    margin: 30px 0 0;
    padding: 19.5px;
    background-image: none;
    background: transparent;
    color: #000;
    border: none; }
  .signup-ver-g .input-group.fields, #KlaviyoSignup.signup.ver-g .input-group.fields,
  #quickview.signup.ver-g .input-group.fields {
    border-bottom: 1px solid rgba(0, 0, 0, 0.35); }
  @media screen and (max-width: 480px) {
    .signup-ver-g .field-underline, #KlaviyoSignup.signup.ver-g .field-underline,
    #quickview.signup.ver-g .field-underline {
      border-bottom: 1px solid rgba(0, 0, 0, 0.35); }
    .signup-ver-g .input-group.fields, #KlaviyoSignup.signup.ver-g .input-group.fields,
    #quickview.signup.ver-g .input-group.fields {
      display: block;
      border: none; } }
  .signup-ver-g .input-group.groups, #KlaviyoSignup.signup.ver-g .input-group.groups,
  #quickview.signup.ver-g .input-group.groups {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    text-align: left; }
    .signup-ver-g .input-group.groups label[for], #KlaviyoSignup.signup.ver-g .input-group.groups label[for],
    #quickview.signup.ver-g .input-group.groups label[for] {
      margin: 0 0 0 3px;
      padding-left: 0.5em !important;
      text-transform: uppercase;
      font-size: 0.8em;
      font-weight: 400;
      user-select: none;
      line-height: 1.7; }
      .signup-ver-g .input-group.groups label[for]:first-of-type, #KlaviyoSignup.signup.ver-g .input-group.groups label[for]:first-of-type,
      #quickview.signup.ver-g .input-group.groups label[for]:first-of-type {
        margin-right: 30px !important; }
  .signup-ver-g input[type="checkbox"], #KlaviyoSignup.signup.ver-g input[type="checkbox"],
  #quickview.signup.ver-g input[type="checkbox"],
  .signup-ver-g input[type="radio"],
  #KlaviyoSignup.signup.ver-g input[type="radio"],
  #quickview.signup.ver-g input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    width: 18px;
    height: 18px;
    display: block;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.25);
    margin-right: 0 !important;
    cursor: pointer;
    line-height: 0;
    overflow: hidden; }
    .signup-ver-g input[type="checkbox"]:checked:before, #KlaviyoSignup.signup.ver-g input[type="checkbox"]:checked:before,
    #quickview.signup.ver-g input[type="checkbox"]:checked:before,
    .signup-ver-g input[type="radio"]:checked:before,
    #KlaviyoSignup.signup.ver-g input[type="radio"]:checked:before,
    #quickview.signup.ver-g input[type="radio"]:checked:before {
      color: rgba(0, 0, 0, 0.5);
      content: '×';
      font-size: 26px;
      line-height: 0.61;
      margin-left: 1.2px; }
  .signup-ver-g input[type="radio"], #KlaviyoSignup.signup.ver-g input[type="radio"],
  #quickview.signup.ver-g input[type="radio"] {
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5); }
    .signup-ver-g input[type="radio"]:checked:before, #KlaviyoSignup.signup.ver-g input[type="radio"]:checked:before,
    #quickview.signup.ver-g input[type="radio"]:checked:before {
      content: '•';
      font-size: 33px;
      line-height: 0.38;
      margin-left: 2px !important; }

#EnterToWin {
  margin-top: 2em; }
  #EnterToWin h1, #EnterToWin .h1 {
    margin: 0; }
  #EnterToWin h2, #EnterToWin .h2, #EnterToWin .reviewsContainer .spr-header-title, .reviewsContainer #EnterToWin .spr-header-title {
    margin: 0 0 1em;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: none; }
  #EnterToWin .btn, #EnterToWin .btn--secondary, #EnterToWin .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #EnterToWin .spr-summary-actions-newreview, #EnterToWin .btn--alt {
    margin-top: 3em; }
  @media screen and (max-width: 480px) {
    #EnterToWin h1, #EnterToWin .h1 {
      font-size: 4em;
      margin: 0 0 0.1em 0; }
    #EnterToWin h5, #EnterToWin .h5 {
      line-height: 2; } }

@media screen and (max-width: 480px) {
  body.page-shopper-giveaway #hero,
  body.page-mothers-day-giveaway #hero,
  body.page-detox-retreat-giveaway #hero,
  body.page-curated-gifts #hero {
    margin-bottom: 0; } }
body.page-shopper-giveaway #hero h5, body.page-shopper-giveaway #hero .h5,
body.page-mothers-day-giveaway #hero h5,
body.page-mothers-day-giveaway #hero .h5,
body.page-detox-retreat-giveaway #hero h5,
body.page-detox-retreat-giveaway #hero .h5,
body.page-curated-gifts #hero h5,
body.page-curated-gifts #hero .h5 {
  margin: 0 auto;
  line-height: 2;
  text-transform: uppercase !important;
  letter-spacing: 1.05px;
  padding: 0 30px; }
body.page-shopper-giveaway #hero .title,
body.page-mothers-day-giveaway #hero .title,
body.page-detox-retreat-giveaway #hero .title,
body.page-curated-gifts #hero .title {
  border: none !important; }
body.page-shopper-giveaway #PageContainer,
body.page-mothers-day-giveaway #PageContainer,
body.page-detox-retreat-giveaway #PageContainer,
body.page-curated-gifts #PageContainer {
  font-size: 14px; }
  @media screen and (max-width: 480px) {
    body.page-shopper-giveaway #PageContainer h1, body.page-shopper-giveaway #PageContainer .h1,
    body.page-mothers-day-giveaway #PageContainer h1,
    body.page-mothers-day-giveaway #PageContainer .h1,
    body.page-detox-retreat-giveaway #PageContainer h1,
    body.page-detox-retreat-giveaway #PageContainer .h1,
    body.page-curated-gifts #PageContainer h1,
    body.page-curated-gifts #PageContainer .h1 {
      text-align: center; } }
  body.page-shopper-giveaway #PageContainer h5, body.page-shopper-giveaway #PageContainer .h5,
  body.page-mothers-day-giveaway #PageContainer h5,
  body.page-mothers-day-giveaway #PageContainer .h5,
  body.page-detox-retreat-giveaway #PageContainer h5,
  body.page-detox-retreat-giveaway #PageContainer .h5,
  body.page-curated-gifts #PageContainer h5,
  body.page-curated-gifts #PageContainer .h5 {
    text-transform: none;
    font-weight: 500; }
  body.page-shopper-giveaway #PageContainer .credit,
  body.page-mothers-day-giveaway #PageContainer .credit,
  body.page-detox-retreat-giveaway #PageContainer .credit,
  body.page-curated-gifts #PageContainer .credit {
    margin-top: -26px;
    margin-left: 12px; }
  body.page-shopper-giveaway #PageContainer #mc-embedded-subscribe-form input,
  body.page-shopper-giveaway #PageContainer #email_signup input,
  body.page-mothers-day-giveaway #PageContainer #mc-embedded-subscribe-form input,
  body.page-mothers-day-giveaway #PageContainer #email_signup input,
  body.page-detox-retreat-giveaway #PageContainer #mc-embedded-subscribe-form input,
  body.page-detox-retreat-giveaway #PageContainer #email_signup input,
  body.page-curated-gifts #PageContainer #mc-embedded-subscribe-form input,
  body.page-curated-gifts #PageContainer #email_signup input {
    width: 100%; }
  body.page-shopper-giveaway #PageContainer .message,
  body.page-mothers-day-giveaway #PageContainer .message,
  body.page-detox-retreat-giveaway #PageContainer .message,
  body.page-curated-gifts #PageContainer .message {
    font-size: 1em;
    margin-bottom: 0;
    color: #d02e2e; }
  @media screen and (min-width: 799px) {
    body.page-shopper-giveaway #PageContainer .grid.padded, body.page-shopper-giveaway #PageContainer .padded.grid--rev, body.page-shopper-giveaway #PageContainer .padded.grid--full, body.page-shopper-giveaway #PageContainer .site-header .padded.message_banner, .site-header body.page-shopper-giveaway #PageContainer .padded.message_banner, body.page-shopper-giveaway #PageContainer .padded#aboutTLFeatures,
    body.page-mothers-day-giveaway #PageContainer .grid.padded,
    body.page-mothers-day-giveaway #PageContainer .padded.grid--rev,
    body.page-mothers-day-giveaway #PageContainer .padded.grid--full,
    body.page-mothers-day-giveaway #PageContainer .site-header .padded.message_banner,
    .site-header body.page-mothers-day-giveaway #PageContainer .padded.message_banner,
    body.page-mothers-day-giveaway #PageContainer .padded#aboutTLFeatures,
    body.page-detox-retreat-giveaway #PageContainer .grid.padded,
    body.page-detox-retreat-giveaway #PageContainer .padded.grid--rev,
    body.page-detox-retreat-giveaway #PageContainer .padded.grid--full,
    body.page-detox-retreat-giveaway #PageContainer .site-header .padded.message_banner,
    .site-header body.page-detox-retreat-giveaway #PageContainer .padded.message_banner,
    body.page-detox-retreat-giveaway #PageContainer .padded#aboutTLFeatures,
    body.page-curated-gifts #PageContainer .grid.padded,
    body.page-curated-gifts #PageContainer .padded.grid--rev,
    body.page-curated-gifts #PageContainer .padded.grid--full,
    body.page-curated-gifts #PageContainer .site-header .padded.message_banner,
    .site-header body.page-curated-gifts #PageContainer .padded.message_banner,
    body.page-curated-gifts #PageContainer .padded#aboutTLFeatures {
      padding: 0 70px 0 0; }
    body.page-shopper-giveaway #PageContainer .lastname,
    body.page-mothers-day-giveaway #PageContainer .lastname,
    body.page-detox-retreat-giveaway #PageContainer .lastname,
    body.page-curated-gifts #PageContainer .lastname {
      padding-left: 13px; } }

@media only screen and (max-width: 46.84em) {
  .video-player:not(.autoplay) .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-black.svg?v=156594909288134240491626026638); }
  .video-player:not(.autoplay).playing .video-wrapper:before, .video-player:not(.autoplay).active .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-pause-black.svg?v=75606335043674353251626026636); }
  .video-player:not(.autoplay).paused .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-black.svg?v=156594909288134240491626026638); }
  .video-player:not(.autoplay).hidden .video-wrapper:before {
    opacity: 0; }

  .video-player.white:not(.autoplay) .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-white.svg?v=67945745118445946681626026639); }
  .video-player.white:not(.autoplay).playing .video-wrapper:before, .video-player.white:not(.autoplay).active .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-pause-white.svg?v=40433529756073993491626026637); }
  .video-player.white:not(.autoplay).paused .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-white.svg?v=67945745118445946681626026639); } }
@media only screen and (min-width: 46.85em) {
  .video-player:not(.autoplay) .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-black.svg?v=156594909288134240491626026638); }
  .video-player:not(.autoplay):hover .video-wrapper:before, .video-player:not(.autoplay):active .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-pause-black.svg?v=75606335043674353251626026636); }
  .video-player:not(.autoplay).playing .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-pause-black.svg?v=75606335043674353251626026636); }
  .video-player:not(.autoplay).paused .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-black.svg?v=156594909288134240491626026638); }
  .video-player:not(.autoplay).hidden .video-wrapper:before {
    opacity: 0; }

  .video-player.white:not(.autoplay) .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-white.svg?v=67945745118445946681626026639); }
  .video-player.white:not(.autoplay).playing:not(.paused):hover .video-wrapper:before, .video-player.white:not(.autoplay).playing:not(.paused):active .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-pause-white.svg?v=40433529756073993491626026637); }

  .video-player:not(.autoplay).playing .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-pause-white.svg?v=40433529756073993491626026637); }

  .video-player:not(.autoplay).paused .video-wrapper:before {
    background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/icon-play-white.svg?v=67945745118445946681626026639); } }
.klaviyo-form input,
.klaviyo-form button,
.klaviyo-form .ql-editor * {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  letter-spacing: 0.08em; }

.klaviyo-form .ql-editor .ql-font-georgia,
.klaviyo-form .ql-editor .ql-font-georgia * {
  font-family: "ButlerMedium", "Butler", "poynter-oldstyle-text", Georgia, Times, serif !important;
  letter-spacing: 0;
  font-weight: 600; }

.klaviyo-form .hwhEdA .ql-editor .ql-font-georgia,
.klaviyo-form .hwhEdA .ql-editor .ql-font-georgia * {
  font-weight: 400; }

.klaviyo-form circle {
  fill: rgba(255, 255, 255, 0.2); }

body.hide_attentive #attentive_overlay {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  z-index: 0 !important; }

@font-face {
  font-family: 'Butler';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-UltraLight.woff2?v=165836096579481536131626026607") format("woff2"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-UltraLight.woff?v=87335619045257985491626026607") format("woff");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: 'Butler';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Medium.woff2?v=85978278754043820091626026606") format("woff2"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Medium.woff?v=142502324935806985971626026606") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Butler';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Light.woff2?v=88512568821223324261626026605") format("woff2"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Light.woff?v=110685271791449849451626026604") format("woff");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Butler';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Black.woff2?v=95342418666287076001626026602") format("woff2"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Black.woff?v=56217014202964264211626026601") format("woff");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'Butler';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Bold.woff2?v=114075798740318986411626026603") format("woff2"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-Bold.woff?v=182002568974675845951626026602") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Butler';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-ExtraBold.woff2?v=99172525728331082151626026604") format("woff2"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler-ExtraBold.woff?v=45128495210262628701626026603") format("woff");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: 'Butler';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler.woff2?v=33317279730482065901626026608") format("woff2"), url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Butler.woff?v=29436138926795830181626026608") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Proxima-Nova-Reg.otf?v=173843304794007442521663287054") format("opentype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/Proxima-Nova-Sbold.otf?v=184423239348204118851663287054") format("opentype");
  font-weight: 600;
  font-style: normal; }

.items .grid__item.product_embed, .items .product_embed#shopify-product-reviews, .items #aboutTLFeatures .product_embed.header, #aboutTLFeatures .items .product_embed.header, .items #aboutTLFeatures .product_embed.item, #aboutTLFeatures .items .product_embed.item {
  padding-left: 60px;
  display: flex; }

.product-main-thumb {
  overflow: hidden;
  flex-grow: 1; }
  .product-main-thumb .thumb {
    width: 150%;
    margin-left: -25%; }

.product-main-thumb {
  padding-left: 30px; }
  .product-main-thumb h2.h1, .product-main-thumb .h1.h2, .product-main-thumb .reviewsContainer .h1.spr-header-title, .reviewsContainer .product-main-thumb .h1.spr-header-title {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500; }
  .product-main-thumb .view-details {
    display: none; }
  .product-main-thumb .desc {
    display: none; }
  .product-main-thumb .props br,
  .product-main-thumb .props em {
    display: none; }
  .product-main-thumb #OtherProductColors {
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
    padding-top: 0; }
    .product-main-thumb #OtherProductColors label {
      display: none; }

.grid.product-embed, .product-embed.grid--rev, .product-embed.grid--full, .site-header .product-embed.message_banner, .product-embed#aboutTLFeatures {
  flex-grow: 1;
  display: flex;
  flex-direction: column; }
  .grid.product-embed .details h2, .product-embed.grid--rev .details h2, .product-embed.grid--full .details h2, .site-header .product-embed.message_banner .details h2, .product-embed#aboutTLFeatures .details h2, .grid.product-embed .details .h2, .product-embed.grid--rev .details .h2, .product-embed.grid--full .details .h2, .site-header .product-embed.message_banner .details .h2, .product-embed#aboutTLFeatures .details .h2, .grid.product-embed .details .reviewsContainer .spr-header-title, .reviewsContainer .grid.product-embed .details .spr-header-title, .product-embed.grid--rev .details .reviewsContainer .spr-header-title, .reviewsContainer .product-embed.grid--rev .details .spr-header-title, .product-embed.grid--full .details .reviewsContainer .spr-header-title, .reviewsContainer .product-embed.grid--full .details .spr-header-title, .site-header .product-embed.message_banner .details .reviewsContainer .spr-header-title, .reviewsContainer .site-header .product-embed.message_banner .details .spr-header-title, .product-embed#aboutTLFeatures .details .reviewsContainer .spr-header-title, .reviewsContainer .product-embed#aboutTLFeatures .details .spr-header-title {
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase; }
    .grid.product-embed .details h2 a, .product-embed.grid--rev .details h2 a, .product-embed.grid--full .details h2 a, .site-header .product-embed.message_banner .details h2 a, .product-embed#aboutTLFeatures .details h2 a, .grid.product-embed .details .h2 a, .product-embed.grid--rev .details .h2 a, .product-embed.grid--full .details .h2 a, .site-header .product-embed.message_banner .details .h2 a, .product-embed#aboutTLFeatures .details .h2 a, .grid.product-embed .details .reviewsContainer .spr-header-title a, .reviewsContainer .grid.product-embed .details .spr-header-title a, .product-embed.grid--rev .details .reviewsContainer .spr-header-title a, .reviewsContainer .product-embed.grid--rev .details .spr-header-title a, .product-embed.grid--full .details .reviewsContainer .spr-header-title a, .reviewsContainer .product-embed.grid--full .details .spr-header-title a, .site-header .product-embed.message_banner .details .reviewsContainer .spr-header-title a, .reviewsContainer .site-header .product-embed.message_banner .details .spr-header-title a, .product-embed#aboutTLFeatures .details .reviewsContainer .spr-header-title a, .reviewsContainer .product-embed#aboutTLFeatures .details .spr-header-title a {
      color: black; }
  .grid.product-embed .details .info, .product-embed.grid--rev .details .info, .product-embed.grid--full .details .info, .site-header .product-embed.message_banner .details .info, .product-embed#aboutTLFeatures .details .info {
    margin-bottom: 0;
    font-weight: 700; }
  .grid.product-embed .details .link a, .product-embed.grid--rev .details .link a, .product-embed.grid--full .details .link a, .site-header .product-embed.message_banner .details .link a, .product-embed#aboutTLFeatures .details .link a {
    color: #000;
    border-bottom: 1px solid black; }
  .grid.product-embed .details .props, .product-embed.grid--rev .details .props, .product-embed.grid--full .details .props, .site-header .product-embed.message_banner .details .props, .product-embed#aboutTLFeatures .details .props {
    margin-bottom: 10px; }

.spr-starratings .spr-icon,
.spr-starrating .spr-icon {
  top: 0;
  padding-right: 2px;
  color: #000; }
  .spr-starratings .spr-icon:last-child,
  .spr-starrating .spr-icon:last-child {
    padding-right: 0; }
a .spr-starratings, a
.spr-starrating {
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 100ms; }
a:hover .spr-starratings, a:hover
.spr-starrating {
  border-bottom-color: #000000; }
.spr-starratings .spr-icon-star-half:before,
.spr-starrating .spr-icon-star-half:before {
  text-indent: -6px; }
.spr-starratings .spr-icon-star-half:after,
.spr-starrating .spr-icon-star-half:after {
  font-family: "font-awesome-stars";
  font-style: normal;
  speak: none;
  font-size: 120%;
  color: rgba(0, 0, 0, 0.2);
  content: '\e800';
  position: relative;
  left: -1em;
  margin-right: -1em; }
.spr-starratings .spr-icon-star-empty,
.spr-starrating .spr-icon-star-empty {
  color: rgba(0, 0, 0, 0.2); }
  .spr-starratings .spr-icon-star-empty:before,
  .spr-starrating .spr-icon-star-empty:before {
    content: '\e800'; }

.spr-badge {
  float: right;
  font-size: 0.75em;
  margin-top: 2px; }
  @media screen and (max-width: 480px) {
    .spr-badge {
      display: inline-block !important;
      float: none;
      margin-left: 10px; } }
  .spr-badge .spr-badge-caption {
    display: none; }

a[name="reviews"] {
  display: block;
  margin-top: -30px;
  margin-bottom: 30px; }

.reviewsContainer {
  background-color: #fafafa;
  padding: 90px 0; }
  @media screen and (max-width: 480px) {
    .reviewsContainer {
      padding: 60px 0; } }
  .reviewsContainer .spr-header {
    text-align: center;
    position: relative;
    padding-top: 85px; }
  .reviewsContainer .spr-header-title {
    margin-bottom: 20px;
    text-transform: lowercase; }
  .reviewsContainer .spr-summary-caption {
    display: block;
    margin-bottom: 30px; }
  .reviewsContainer .spr-summary-starrating {
    margin: 0; }
    .reviewsContainer .spr-summary-starrating:after {
      display: block;
      margin-top: 7px;
      text-transform: uppercase;
      font-size: 0.9em;
      content: 'Stars'; }
  .reviewsContainer .spr-summary-actions-togglereviews {
    display: block;
    font-size: 75px;
    margin: -175px auto 155px;
    line-height: 1; }
  .reviewsContainer .spr-summary-actions {
    margin: 30px auto; }
    .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview {
      background-color: transparent;
      float: none; }
  .reviewsContainer .spr-pagination {
    text-align: right;
    font-size: 0.75em; }
  .reviewsContainer .spr-pagination-page.is-active:before,
  .reviewsContainer .spr-pagination-page a:before {
    content: '0'; }
  .reviewsContainer .spr-pagination-page:after {
    content: '/';
    padding: 0 0 0 5px; }
  .reviewsContainer .spr-pagination-page:nth-last-child(2):after {
    content: none; }
  .reviewsContainer .spr-pagination-next {
    position: relative; }
  .reviewsContainer .spr-form {
    border: none;
    max-width: 800px;
    margin: 0 auto;
    width: 80%; }
    @media screen and (max-width: 480px) {
      .reviewsContainer .spr-form {
        width: unset; } }
    .reviewsContainer .spr-form fieldset > div {
      margin-bottom: 20px; }
    .reviewsContainer .spr-form .spr-icon.spr-icon-star-hover, .reviewsContainer .spr-form .spr-icon:hover {
      color: rgba(0, 0, 0, 0.5); }
  .reviewsContainer .spr-form-title {
    display: none; }
  .reviewsContainer .spr-form-label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    line-height: 40px; }
  .reviewsContainer .spr-form-input-text,
  .reviewsContainer .spr-form-input-email,
  .reviewsContainer .spr-form-input-textarea {
    font-size: 13px;
    letter-spacing: 0.08em;
    background-color: transparent; }
  .reviewsContainer .spr-review {
    position: relative;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    min-height: 165px; }
    .reviewsContainer .spr-review, .reviewsContainer .spr-review:last-child {
      padding: 70px 0 45px 30%; }
      @media screen and (max-width: 480px) {
        .reviewsContainer .spr-review, .reviewsContainer .spr-review:last-child {
          padding: 60px 0 50px; } }
  @media screen and (max-width: 480px) {
    .reviewsContainer .spr-review-header {
      display: flex;
      flex-direction: column; } }
  .reviewsContainer .spr-review-header-starratings {
    position: absolute;
    left: 0; }
    @media screen and (max-width: 480px) {
      .reviewsContainer .spr-review-header-starratings {
        position: relative; } }
  .reviewsContainer .spr-review-header-byline {
    position: absolute;
    left: 0;
    margin-top: 10px;
    font-size: 0.75em;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    opacity: 1;
    color: #000; }
    @media screen and (max-width: 480px) {
      .reviewsContainer .spr-review-header-byline {
        position: relative;
        margin-top: 10px;
        margin-bottom: 30px; } }
    .reviewsContainer .spr-review-header-byline strong {
      font-weight: 600;
      display: block;
      margin-top: 3px; }
      .reviewsContainer .spr-review-header-byline strong:after {
        font-weight: 300; }
  .reviewsContainer .spr-review-header-title {
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
    order: 1;
    margin-bottom: 20px; }
  .reviewsContainer .spr-review-content {
    margin-bottom: 5px; }
  .reviewsContainer .spr-review-content-body {
    font-size: 12px; }

.reviews-link {
  margin-left: auto; }

.stamped-container.stamped-container {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.stamped-badge-caption {
  display: inline-block;
  font-size: 12px;
  color: #000;
  vertical-align: text-top;
  margin-left: 3px; }

.stamped-badge-caption[data-reviews="0"] {
  display: none; }

.fa-star, .fa-star-checked, .fa-star-half-o, .fa-star-o, .stamped-fa-star, .stamped-fa-star-checked, .stamped-fa-star-half-o, .stamped-fa-star-o {
  line-height: 1;
  color: #000 !important; }
  .fa-star:before, .fa-star-checked:before, .fa-star-half-o:before, .fa-star-o:before, .stamped-fa-star:before, .stamped-fa-star-checked:before, .stamped-fa-star-half-o:before, .stamped-fa-star-o:before {
    font-size: 16px !important; }

.stamped-summary, .summary-overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.stamped-summary {
  margin-bottom: 20px !important; }

.stamped-summary-text-1 {
  margin-bottom: 15px; }

.stamped-header .stamped-summary .stamped-summary-actions {
  box-shadow: 2px 3px 5px 0 #8888886b;
  transition: box-shadow 250ms;
  margin-top: 15px !important; }
  .stamped-header .stamped-summary .stamped-summary-actions:hover {
    box-shadow: 2px 3px 5px 0 #88888840; }

.stamped-summary-actions .stamped-summary-actions-newquestion,
.stamped-summary-actions .stamped-summary-actions-newreview {
  border-radius: 0 !important;
  height: 58px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-color: #000 !important;
  margin-left: -1px !important;
  box-shadow: none !important; }
  .stamped-summary-actions .stamped-summary-actions-newquestion:hover,
  .stamped-summary-actions .stamped-summary-actions-newreview:hover {
    transition: background-color 250ms;
    background-color: rgba(0, 0, 0, 0.03); }

.stamped-reviews-filter, .stamped-review-footer, .stamped-review-image {
  display: none !important; }

:root:root:root .stamped-tab-container, :root:root:root .stamped-tab-container[style="display:none;"] {
  display: none !important; }
:root:root:root .div.stamped-container[data-widget-style], :root:root:root div[data-widget-style] div.stamped-container {
  max-width: 100%;
  padding-left: 30px !important; }

.stamped-content:before {
  content: 'As a wearer of our products, you’re part of our mission! Let others know what you think of your purchase here. ';
  text-align: center;
  display: block;
  margin: 4em auto; }

.stamped-review {
  padding-top: 75px !important;
  padding-bottom: 1px;
  position: relative; }
  @media (min-width: 768px) {
    .stamped-review {
      margin-top: 30px !important;
      padding: 22.5px 0 0 30% !important; } }

.stamped-review-header {
  width: auto !important; }
  @media (min-width: 768px) {
    .stamped-review-header {
      position: absolute;
      bottom: 40px;
      left: 0; } }

.stamped-review-header-starratings {
  position: absolute;
  top: 25px;
  display: block !important; }
  @media (min-width: 768px) {
    .stamped-review-header-starratings {
      top: auto;
      left: 0; } }

.stamped-review-header-title {
  font-family: "ButlerMedium","Butler","poynter-oldstyle-text",Georgia,Times,serif;
  font-size: 1.8em !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  text-transform: none;
  letter-spacing: 0.01em; }

.stamped-review-content .stamped-review-content-body {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 15px !important;
  letter-spacing: 0.5px; }
  @media (min-width: 768px) {
    .stamped-review-content .stamped-review-content-body {
      min-height: 75px;
      margin-bottom: 0 !important; } }

#stamped-questions-tab .stamped-review-content .stamped-review-content-body {
  font-family: "ButlerMedium","Butler","poynter-oldstyle-text",Georgia,Times,serif;
  font-size: 1.8em;
  line-height: 1.7; }

@media (min-width: 768px) {
  .stamped-review-product {
    position: absolute;
    bottom: 20px;
    left: 0; } }

.stamped-review-product::before {
  content: "ITEM:";
  display: inline-block;
  padding-right: 5px;
  font-weight: 600;
  font-size: 9px;
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  @media (min-width: 768px) {
    .stamped-review-product::before {
      font-size: 10.5px !important; } }

@media (min-width: 768px) {
  .stamped-review-variant {
    position: absolute;
    bottom: 0;
    left: 0; } }

.stamped-review-variant:not(:empty)::before {
  content: "COLOR:";
  display: inline-block;
  padding-right: 5px;
  font-weight: 600;
  font-size: 9px;
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  @media (min-width: 768px) {
    .stamped-review-variant:not(:empty)::before {
      font-size: 10.5px !important; } }

[class*='ballet-flat'] .stamped-container[data-widget-show-product-variant=true] .stamped-review-variant:not(:empty):before {
  content: unset !important; }

[class*='ballet-flat'] .stamped-container[data-widget-show-product-variant=true] .stamped-review-variant {
  font-size: 0 !important; }

.stamped-container[data-widget-show-product-variant="true"] .stamped-review-product a,
.stamped-review-header, .stamped-review-variant::after {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300 !important;
  font-size: 9px !important;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .stamped-container[data-widget-show-product-variant="true"] .stamped-review-product a,
    .stamped-review-header, .stamped-review-variant::after {
      font-size: 10.5px !important; } }

.stamped-review-header-starratings .fa-star-half-o::before, .stamped-review-header-starratings .fa-star-o::before, .stamped-review-header-starratings .fa-star::before, .stamped-review-header-starratings .stamped-fa-star-half-o::before, .stamped-review-header-starratings .stamped-fa-star-o::before, .stamped-review-header-starratings .stamped-fa-star::before {
  font-size: 23px !important; }

@media (max-width: 767px) {
  :root:root:root .stamped-container[data-widget-show-product-variant="true"] .stamped-review-product, :root:root:root .stamped-container[data-widget-show-product-variant="true"] .stamped-review-variant {
    display: block !important; } }

.reviewsContainer .new-review-form.stamped-visible {
  max-width: 800px;
  margin: 0 auto !important; }

.stamped-form-contact-name, .stamped-form-contact-email {
  width: 100% !important;
  padding: 0 !important;
  float: none !important;
  max-width: 100% !important; }

.new-review-form.stamped-visible input, .new-review-form.stamped-visible textarea {
  margin-bottom: 15px;
  font-size: 13px;
  letter-spacing: 0.05em;
  background-color: transparent;
  border: 1px solid #000 !important;
  max-width: 100%;
  padding: 8px 10px !important; }

.stamped-container .stamped-form-label {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  line-height: 40px;
  display: block; }

#reviewRating {
  border: none !important; }

.stamped-form-label[for="reviewRating"] {
  margin-bottom: -15px; }

#KlaviyoSignup,
#quickview {
  position: absolute;
  display: none;
  margin: 60px auto;
  width: 90%;
  max-width: 975px;
  background-color: white;
  z-index: 1000;
  top: 0;
  padding: 80px;
  left: 50%;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: opacity 0.5s cubic-bezier(0.33, 0.66, 0.66, 1); }
  @media screen and (max-width: 480px) {
    #KlaviyoSignup,
    #quickview {
      padding: 40px; }
      #KlaviyoSignup.video,
      #quickview.video {
        padding: 0; } }
  #KlaviyoSignup.giveaway-thankyou,
  #quickview.giveaway-thankyou {
    max-width: 680px;
    width: 90%;
    padding: 0;
    background-color: #F2F2E9; }
    #KlaviyoSignup.giveaway-thankyou .logo,
    #quickview.giveaway-thankyou .logo {
      max-width: 60%; }
    #KlaviyoSignup.giveaway-thankyou h3, #KlaviyoSignup.giveaway-thankyou .h3, #KlaviyoSignup.giveaway-thankyou .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container #KlaviyoSignup.giveaway-thankyou .shopify-challenge__message,
    #quickview.giveaway-thankyou h3,
    #quickview.giveaway-thankyou .h3,
    #quickview.giveaway-thankyou .shopify-challenge__container .shopify-challenge__message,
    .shopify-challenge__container #quickview.giveaway-thankyou .shopify-challenge__message {
      margin-top: 3rem;
      line-height: 1.8; }
    #KlaviyoSignup.giveaway-thankyou .grid__item.copy, #KlaviyoSignup.giveaway-thankyou .copy#shopify-product-reviews, #KlaviyoSignup.giveaway-thankyou #aboutTLFeatures .copy.header, #aboutTLFeatures #KlaviyoSignup.giveaway-thankyou .copy.header, #KlaviyoSignup.giveaway-thankyou #aboutTLFeatures .copy.item, #aboutTLFeatures #KlaviyoSignup.giveaway-thankyou .copy.item,
    #quickview.giveaway-thankyou .grid__item.copy,
    #quickview.giveaway-thankyou .copy#shopify-product-reviews,
    #quickview.giveaway-thankyou #aboutTLFeatures .copy.header,
    #aboutTLFeatures #quickview.giveaway-thankyou .copy.header,
    #quickview.giveaway-thankyou #aboutTLFeatures .copy.item,
    #aboutTLFeatures #quickview.giveaway-thankyou .copy.item {
      padding: 60px 0 60px 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between; }
  #KlaviyoSignup.signup .logo img, #KlaviyoSignup.waitlist .logo img,
  #quickview.signup .logo img,
  #quickview.waitlist .logo img {
    width: 80%;
    max-width: 310px;
    margin-bottom: 0.5em; }
  #KlaviyoSignup.signup form, #KlaviyoSignup.waitlist form,
  #quickview.signup form,
  #quickview.waitlist form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center; }
    #KlaviyoSignup.signup form input, #KlaviyoSignup.waitlist form input,
    #quickview.signup form input,
    #quickview.waitlist form input {
      margin-top: 20px;
      margin-bottom: 10px;
      font-weight: 600; }
      #KlaviyoSignup.signup form input[type="email"], #KlaviyoSignup.waitlist form input[type="email"],
      #quickview.signup form input[type="email"],
      #quickview.waitlist form input[type="email"] {
        padding: 8px 15px; }
    #KlaviyoSignup.signup form .btn, #KlaviyoSignup.signup form .btn--secondary, #KlaviyoSignup.signup form .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup form .spr-summary-actions-newreview, #KlaviyoSignup.signup form .btn--alt, #KlaviyoSignup.waitlist form .btn, #KlaviyoSignup.waitlist form .btn--secondary, #KlaviyoSignup.waitlist form .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.waitlist form .spr-summary-actions-newreview, #KlaviyoSignup.waitlist form .btn--alt,
    #quickview.signup form .btn,
    #quickview.signup form .btn--secondary,
    #quickview.signup form .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions #quickview.signup form .spr-summary-actions-newreview,
    #quickview.signup form .btn--alt,
    #quickview.waitlist form .btn,
    #quickview.waitlist form .btn--secondary,
    #quickview.waitlist form .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions #quickview.waitlist form .spr-summary-actions-newreview,
    #quickview.waitlist form .btn--alt {
      min-width: 160px;
      padding: 8px 30px;
      margin: 10px auto 0 -1px;
      float: none; }
      #KlaviyoSignup.signup form .btn.btn-close, #KlaviyoSignup.signup form .btn-close.btn--secondary, #KlaviyoSignup.signup form .reviewsContainer .spr-summary-actions .btn-close.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup form .btn-close.spr-summary-actions-newreview, #KlaviyoSignup.signup form .btn-close.btn--alt, #KlaviyoSignup.waitlist form .btn.btn-close, #KlaviyoSignup.waitlist form .btn-close.btn--secondary, #KlaviyoSignup.waitlist form .reviewsContainer .spr-summary-actions .btn-close.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.waitlist form .btn-close.spr-summary-actions-newreview, #KlaviyoSignup.waitlist form .btn-close.btn--alt,
      #quickview.signup form .btn.btn-close,
      #quickview.signup form .btn-close.btn--secondary,
      #quickview.signup form .reviewsContainer .spr-summary-actions .btn-close.spr-summary-actions-newreview,
      .reviewsContainer .spr-summary-actions #quickview.signup form .btn-close.spr-summary-actions-newreview,
      #quickview.signup form .btn-close.btn--alt,
      #quickview.waitlist form .btn.btn-close,
      #quickview.waitlist form .btn-close.btn--secondary,
      #quickview.waitlist form .reviewsContainer .spr-summary-actions .btn-close.spr-summary-actions-newreview,
      .reviewsContainer .spr-summary-actions #quickview.waitlist form .btn-close.spr-summary-actions-newreview,
      #quickview.waitlist form .btn-close.btn--alt {
        margin: 25px auto 0px;
        padding: 8px 38px;
        min-width: 188px;
        float: none;
        display: block; }
    #KlaviyoSignup.signup form .input-group, #KlaviyoSignup.waitlist form .input-group,
    #quickview.signup form .input-group,
    #quickview.waitlist form .input-group {
      margin: 20px auto;
      display: flex;
      align-items: center;
      justify-content: center; }
      #KlaviyoSignup.signup form .input-group.groups, #KlaviyoSignup.waitlist form .input-group.groups,
      #quickview.signup form .input-group.groups,
      #quickview.waitlist form .input-group.groups {
        margin-bottom: 30px; }
    #KlaviyoSignup.signup form p.message, #KlaviyoSignup.waitlist form p.message,
    #quickview.signup form p.message,
    #quickview.waitlist form p.message {
      margin: 15px 0 25px;
      font-size: 1em;
      font-style: normal;
      border-top: 1px solid #e4e4e4;
      padding-top: 30px;
      margin-top: 30px; }
      #KlaviyoSignup.signup form p.message.show, #KlaviyoSignup.waitlist form p.message.show,
      #quickview.signup form p.message.show,
      #quickview.waitlist form p.message.show {
        display: block; }
    #KlaviyoSignup.signup form > p:last-child, #KlaviyoSignup.waitlist form > p:last-child,
    #quickview.signup form > p:last-child,
    #quickview.waitlist form > p:last-child {
      margin-bottom: 0; }
      #KlaviyoSignup.signup form > p:last-child a, #KlaviyoSignup.waitlist form > p:last-child a,
      #quickview.signup form > p:last-child a,
      #quickview.waitlist form > p:last-child a {
        color: black;
        font-weight: 500; }
  #KlaviyoSignup.signup input[type="radio"], #KlaviyoSignup.waitlist input[type="radio"],
  #quickview.signup input[type="radio"],
  #quickview.waitlist input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    margin-right: 0.5em;
    cursor: pointer;
    line-height: 0;
    overflow: hidden; }
    #KlaviyoSignup.signup input[type="radio"]:checked:before, #KlaviyoSignup.waitlist input[type="radio"]:checked:before,
    #quickview.signup input[type="radio"]:checked:before,
    #quickview.waitlist input[type="radio"]:checked:before {
      content: '';
      background-color: rgba(0, 0, 0, 0.5);
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%; }
  #KlaviyoSignup.signup,
  #quickview.signup {
    max-width: 680px;
    width: 90%;
    background-color: #ffffff;
    padding: 70px; }
    #KlaviyoSignup.signup fieldset,
    #quickview.signup fieldset {
      padding: 30px; }
    #KlaviyoSignup.signup h2, #KlaviyoSignup.signup .h2, #KlaviyoSignup.signup .reviewsContainer .spr-header-title, .reviewsContainer #KlaviyoSignup.signup .spr-header-title,
    #quickview.signup h2,
    #quickview.signup .h2,
    #quickview.signup .reviewsContainer .spr-header-title,
    .reviewsContainer #quickview.signup .spr-header-title {
      font-size: 2.7em;
      font-weight: 500;
      max-width: 11em;
      margin: 0 auto 30px;
      line-height: 1.2; }
    #KlaviyoSignup.signup.ver-b, #KlaviyoSignup.signup.ver-c,
    #quickview.signup.ver-b,
    #quickview.signup.ver-c {
      background-color: transparent;
      max-width: 1000px; }
      #KlaviyoSignup.signup.ver-b fieldset, #KlaviyoSignup.signup.ver-c fieldset,
      #quickview.signup.ver-b fieldset,
      #quickview.signup.ver-c fieldset {
        margin: 0 auto;
        max-width: 710px; }
      #KlaviyoSignup.signup.ver-b img, #KlaviyoSignup.signup.ver-c img,
      #quickview.signup.ver-b img,
      #quickview.signup.ver-c img {
        margin-bottom: 0.75em; }
      #KlaviyoSignup.signup.ver-b h2, #KlaviyoSignup.signup.ver-b .h2, #KlaviyoSignup.signup.ver-b .reviewsContainer .spr-header-title, .reviewsContainer #KlaviyoSignup.signup.ver-b .spr-header-title, #KlaviyoSignup.signup.ver-c h2, #KlaviyoSignup.signup.ver-c .h2, #KlaviyoSignup.signup.ver-c .reviewsContainer .spr-header-title, .reviewsContainer #KlaviyoSignup.signup.ver-c .spr-header-title,
      #quickview.signup.ver-b h2,
      #quickview.signup.ver-b .h2,
      #quickview.signup.ver-b .reviewsContainer .spr-header-title,
      .reviewsContainer #quickview.signup.ver-b .spr-header-title,
      #quickview.signup.ver-c h2,
      #quickview.signup.ver-c .h2,
      #quickview.signup.ver-c .reviewsContainer .spr-header-title,
      .reviewsContainer #quickview.signup.ver-c .spr-header-title {
        letter-spacing: 0.1em;
        font-weight: 300; }
        #KlaviyoSignup.signup.ver-b h2:first-child, #KlaviyoSignup.signup.ver-b .h2:first-child, #KlaviyoSignup.signup.ver-b .reviewsContainer .spr-header-title:first-child, .reviewsContainer #KlaviyoSignup.signup.ver-b .spr-header-title:first-child, #KlaviyoSignup.signup.ver-c h2:first-child, #KlaviyoSignup.signup.ver-c .h2:first-child, #KlaviyoSignup.signup.ver-c .reviewsContainer .spr-header-title:first-child, .reviewsContainer #KlaviyoSignup.signup.ver-c .spr-header-title:first-child,
        #quickview.signup.ver-b h2:first-child,
        #quickview.signup.ver-b .h2:first-child,
        #quickview.signup.ver-b .reviewsContainer .spr-header-title:first-child,
        .reviewsContainer #quickview.signup.ver-b .spr-header-title:first-child,
        #quickview.signup.ver-c h2:first-child,
        #quickview.signup.ver-c .h2:first-child,
        #quickview.signup.ver-c .reviewsContainer .spr-header-title:first-child,
        .reviewsContainer #quickview.signup.ver-c .spr-header-title:first-child {
          text-transform: none;
          margin-bottom: 1.5em; }
        #KlaviyoSignup.signup.ver-b h2.coupon, #KlaviyoSignup.signup.ver-b .coupon.h2, #KlaviyoSignup.signup.ver-b .reviewsContainer .coupon.spr-header-title, .reviewsContainer #KlaviyoSignup.signup.ver-b .coupon.spr-header-title, #KlaviyoSignup.signup.ver-c h2.coupon, #KlaviyoSignup.signup.ver-c .coupon.h2, #KlaviyoSignup.signup.ver-c .reviewsContainer .coupon.spr-header-title, .reviewsContainer #KlaviyoSignup.signup.ver-c .coupon.spr-header-title,
        #quickview.signup.ver-b h2.coupon,
        #quickview.signup.ver-b .coupon.h2,
        #quickview.signup.ver-b .reviewsContainer .coupon.spr-header-title,
        .reviewsContainer #quickview.signup.ver-b .coupon.spr-header-title,
        #quickview.signup.ver-c h2.coupon,
        #quickview.signup.ver-c .coupon.h2,
        #quickview.signup.ver-c .reviewsContainer .coupon.spr-header-title,
        .reviewsContainer #quickview.signup.ver-c .coupon.spr-header-title {
          display: inline-block;
          padding: 18px 45px;
          background-color: #000;
          color: #fff;
          margin: 10px 0 40px;
          font-weight: 400;
          letter-spacing: 0.2em; }
        #KlaviyoSignup.signup.ver-b h2 strong, #KlaviyoSignup.signup.ver-b .h2 strong, #KlaviyoSignup.signup.ver-b .reviewsContainer .spr-header-title strong, .reviewsContainer #KlaviyoSignup.signup.ver-b .spr-header-title strong, #KlaviyoSignup.signup.ver-c h2 strong, #KlaviyoSignup.signup.ver-c .h2 strong, #KlaviyoSignup.signup.ver-c .reviewsContainer .spr-header-title strong, .reviewsContainer #KlaviyoSignup.signup.ver-c .spr-header-title strong,
        #quickview.signup.ver-b h2 strong,
        #quickview.signup.ver-b .h2 strong,
        #quickview.signup.ver-b .reviewsContainer .spr-header-title strong,
        .reviewsContainer #quickview.signup.ver-b .spr-header-title strong,
        #quickview.signup.ver-c h2 strong,
        #quickview.signup.ver-c .h2 strong,
        #quickview.signup.ver-c .reviewsContainer .spr-header-title strong,
        .reviewsContainer #quickview.signup.ver-c .spr-header-title strong {
          font-weight: 400; }
      #KlaviyoSignup.signup.ver-b h3, #KlaviyoSignup.signup.ver-b .h3, #KlaviyoSignup.signup.ver-b .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container #KlaviyoSignup.signup.ver-b .shopify-challenge__message, #KlaviyoSignup.signup.ver-c h3, #KlaviyoSignup.signup.ver-c .h3, #KlaviyoSignup.signup.ver-c .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container #KlaviyoSignup.signup.ver-c .shopify-challenge__message,
      #quickview.signup.ver-b h3,
      #quickview.signup.ver-b .h3,
      #quickview.signup.ver-b .shopify-challenge__container .shopify-challenge__message,
      .shopify-challenge__container #quickview.signup.ver-b .shopify-challenge__message,
      #quickview.signup.ver-c h3,
      #quickview.signup.ver-c .h3,
      #quickview.signup.ver-c .shopify-challenge__container .shopify-challenge__message,
      .shopify-challenge__container #quickview.signup.ver-c .shopify-challenge__message {
        line-height: 1.8;
        margin-bottom: 0.85em; }
      #KlaviyoSignup.signup.ver-b p, #KlaviyoSignup.signup.ver-c p,
      #quickview.signup.ver-b p,
      #quickview.signup.ver-c p {
        text-transform: none;
        font-weight: 100;
        font-size: 1.25em; }
      #KlaviyoSignup.signup.ver-b input.field-underline, #KlaviyoSignup.signup.ver-c input.field-underline,
      #quickview.signup.ver-b input.field-underline,
      #quickview.signup.ver-c input.field-underline {
        border: 1px solid #eeeeee;
        background-color: #fff;
        margin-top: 22px; }
      #KlaviyoSignup.signup.ver-b .btn, #KlaviyoSignup.signup.ver-b .btn--secondary, #KlaviyoSignup.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-b .spr-summary-actions-newreview, #KlaviyoSignup.signup.ver-b .btn--alt, #KlaviyoSignup.signup.ver-c .btn, #KlaviyoSignup.signup.ver-c .btn--secondary, #KlaviyoSignup.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-c .spr-summary-actions-newreview, #KlaviyoSignup.signup.ver-c .btn--alt,
      #quickview.signup.ver-b .btn,
      #quickview.signup.ver-b .btn--secondary,
      #quickview.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
      .reviewsContainer .spr-summary-actions #quickview.signup.ver-b .spr-summary-actions-newreview,
      #quickview.signup.ver-b .btn--alt,
      #quickview.signup.ver-c .btn,
      #quickview.signup.ver-c .btn--secondary,
      #quickview.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
      .reviewsContainer .spr-summary-actions #quickview.signup.ver-c .spr-summary-actions-newreview,
      #quickview.signup.ver-c .btn--alt {
        border: 1px solid #797979;
        background-color: transparent;
        padding: 12px 30px;
        font-size: 0.9em;
        margin-top: 20px; }
        #KlaviyoSignup.signup.ver-b .btn:active, #KlaviyoSignup.signup.ver-b .btn--secondary:active, #KlaviyoSignup.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-b .spr-summary-actions-newreview:active, #KlaviyoSignup.signup.ver-b .btn--alt:active, #KlaviyoSignup.signup.ver-b .btn:focus, #KlaviyoSignup.signup.ver-b .btn--secondary:focus, #KlaviyoSignup.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-b .spr-summary-actions-newreview:focus, #KlaviyoSignup.signup.ver-b .btn--alt:focus, #KlaviyoSignup.signup.ver-c .btn:active, #KlaviyoSignup.signup.ver-c .btn--secondary:active, #KlaviyoSignup.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-c .spr-summary-actions-newreview:active, #KlaviyoSignup.signup.ver-c .btn--alt:active, #KlaviyoSignup.signup.ver-c .btn:focus, #KlaviyoSignup.signup.ver-c .btn--secondary:focus, #KlaviyoSignup.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-c .spr-summary-actions-newreview:focus, #KlaviyoSignup.signup.ver-c .btn--alt:focus,
        #quickview.signup.ver-b .btn:active,
        #quickview.signup.ver-b .btn--secondary:active,
        #quickview.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active,
        .reviewsContainer .spr-summary-actions #quickview.signup.ver-b .spr-summary-actions-newreview:active,
        #quickview.signup.ver-b .btn--alt:active,
        #quickview.signup.ver-b .btn:focus,
        #quickview.signup.ver-b .btn--secondary:focus,
        #quickview.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus,
        .reviewsContainer .spr-summary-actions #quickview.signup.ver-b .spr-summary-actions-newreview:focus,
        #quickview.signup.ver-b .btn--alt:focus,
        #quickview.signup.ver-c .btn:active,
        #quickview.signup.ver-c .btn--secondary:active,
        #quickview.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:active,
        .reviewsContainer .spr-summary-actions #quickview.signup.ver-c .spr-summary-actions-newreview:active,
        #quickview.signup.ver-c .btn--alt:active,
        #quickview.signup.ver-c .btn:focus,
        #quickview.signup.ver-c .btn--secondary:focus,
        #quickview.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:focus,
        .reviewsContainer .spr-summary-actions #quickview.signup.ver-c .spr-summary-actions-newreview:focus,
        #quickview.signup.ver-c .btn--alt:focus {
          color: #000000;
          background-color: rgba(121, 121, 121, 0.2); }
        #KlaviyoSignup.signup.ver-b .btn:hover, #KlaviyoSignup.signup.ver-b .btn--secondary:hover, #KlaviyoSignup.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-b .spr-summary-actions-newreview:hover, #KlaviyoSignup.signup.ver-b .btn--alt:hover, #KlaviyoSignup.signup.ver-c .btn:hover, #KlaviyoSignup.signup.ver-c .btn--secondary:hover, #KlaviyoSignup.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover, .reviewsContainer .spr-summary-actions #KlaviyoSignup.signup.ver-c .spr-summary-actions-newreview:hover, #KlaviyoSignup.signup.ver-c .btn--alt:hover,
        #quickview.signup.ver-b .btn:hover,
        #quickview.signup.ver-b .btn--secondary:hover,
        #quickview.signup.ver-b .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover,
        .reviewsContainer .spr-summary-actions #quickview.signup.ver-b .spr-summary-actions-newreview:hover,
        #quickview.signup.ver-b .btn--alt:hover,
        #quickview.signup.ver-c .btn:hover,
        #quickview.signup.ver-c .btn--secondary:hover,
        #quickview.signup.ver-c .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:hover,
        .reviewsContainer .spr-summary-actions #quickview.signup.ver-c .spr-summary-actions-newreview:hover,
        #quickview.signup.ver-c .btn--alt:hover {
          color: #000000;
          background-color: rgba(121, 121, 121, 0.1); }
    #KlaviyoSignup.signup.ver-c fieldset,
    #quickview.signup.ver-c fieldset {
      margin: 0 auto;
      max-width: 710px; }
    #KlaviyoSignup.signup.ver-g h3, #KlaviyoSignup.signup.ver-g .h3, #KlaviyoSignup.signup.ver-g .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container #KlaviyoSignup.signup.ver-g .shopify-challenge__message,
    #quickview.signup.ver-g h3,
    #quickview.signup.ver-g .h3,
    #quickview.signup.ver-g .shopify-challenge__container .shopify-challenge__message,
    .shopify-challenge__container #quickview.signup.ver-g .shopify-challenge__message {
      margin-left: auto;
      margin-right: auto; }
      #KlaviyoSignup.signup.ver-g h3 span, #KlaviyoSignup.signup.ver-g .h3 span, #KlaviyoSignup.signup.ver-g .shopify-challenge__container .shopify-challenge__message span, .shopify-challenge__container #KlaviyoSignup.signup.ver-g .shopify-challenge__message span,
      #quickview.signup.ver-g h3 span,
      #quickview.signup.ver-g .h3 span,
      #quickview.signup.ver-g .shopify-challenge__container .shopify-challenge__message span,
      .shopify-challenge__container #quickview.signup.ver-g .shopify-challenge__message span {
        white-space: nowrap; }
    @media screen and (max-width: 480px) {
      #KlaviyoSignup.signup.ver-g,
      #quickview.signup.ver-g {
        padding-top: 30px; }
        #KlaviyoSignup.signup.ver-g h3, #KlaviyoSignup.signup.ver-g .h3, #KlaviyoSignup.signup.ver-g .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container #KlaviyoSignup.signup.ver-g .shopify-challenge__message,
        #quickview.signup.ver-g h3,
        #quickview.signup.ver-g .h3,
        #quickview.signup.ver-g .shopify-challenge__container .shopify-challenge__message,
        .shopify-challenge__container #quickview.signup.ver-g .shopify-challenge__message {
          font-size: 1.3em; }
          #KlaviyoSignup.signup.ver-g h3 span, #KlaviyoSignup.signup.ver-g .h3 span, #KlaviyoSignup.signup.ver-g .shopify-challenge__container .shopify-challenge__message span, .shopify-challenge__container #KlaviyoSignup.signup.ver-g .shopify-challenge__message span,
          #quickview.signup.ver-g h3 span,
          #quickview.signup.ver-g .h3 span,
          #quickview.signup.ver-g .shopify-challenge__container .shopify-challenge__message span,
          .shopify-challenge__container #quickview.signup.ver-g .shopify-challenge__message span {
            white-space: unset; } }
    #KlaviyoSignup.signup .cancel,
    #KlaviyoSignup.signup .close,
    #quickview.signup .cancel,
    #quickview.signup .close {
      z-index: 1;
      top: 13px;
      right: 15px;
      padding: 3px; }
      #KlaviyoSignup.signup .cancel:hover,
      #KlaviyoSignup.signup .close:hover,
      #quickview.signup .cancel:hover,
      #quickview.signup .close:hover {
        background-color: #e8e8e8; }
    #KlaviyoSignup.signup p,
    #quickview.signup p {
      font-size: 1em; }
    #KlaviyoSignup.signup fieldset,
    #quickview.signup fieldset {
      border: none; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup.signup,
      #quickview.signup {
        padding: 30px; }
        #KlaviyoSignup.signup fieldset,
        #quickview.signup fieldset {
          padding: 30px 0; }
        #KlaviyoSignup.signup h2, #KlaviyoSignup.signup .h2, #KlaviyoSignup.signup .reviewsContainer .spr-header-title, .reviewsContainer #KlaviyoSignup.signup .spr-header-title,
        #quickview.signup h2,
        #quickview.signup .h2,
        #quickview.signup .reviewsContainer .spr-header-title,
        .reviewsContainer #quickview.signup .spr-header-title {
          font-size: 2.4em;
          margin-bottom: 20px; }
        #KlaviyoSignup.signup .input-group.fields,
        #quickview.signup .input-group.fields {
          flex-direction: column; }
        #KlaviyoSignup.signup form input,
        #KlaviyoSignup.signup form button,
        #quickview.signup form input,
        #quickview.signup form button {
          margin: 5px 0; } }
  #KlaviyoSignup.waitlist,
  #quickview.waitlist {
    padding: 0;
    max-width: 900px; }
    #KlaviyoSignup.waitlist fieldset,
    #quickview.waitlist fieldset {
      border: none;
      padding: 0; }
    #KlaviyoSignup.waitlist form,
    #quickview.waitlist form {
      padding: 90px 90px 60px 60px; }
      @media screen and (max-width: 480px) {
        #KlaviyoSignup.waitlist form,
        #quickview.waitlist form {
          padding: 10px 30px 20px; } }
      #KlaviyoSignup.waitlist form p,
      #quickview.waitlist form p {
        font-size: 1em; }
      #KlaviyoSignup.waitlist form #waitlist_email,
      #quickview.waitlist form #waitlist_email {
        border: none;
        border-bottom: 1px solid #000;
        font-size: 1.2em;
        text-align: center; }
      #KlaviyoSignup.waitlist form .btn--link,
      #quickview.waitlist form .btn--link {
        transition: all 200ms; }
  #KlaviyoSignup.download,
  #quickview.download {
    padding: 30px;
    max-width: 650px; }
    #KlaviyoSignup.download .close,
    #quickview.download .close {
      padding: 15px;
      background-color: #fff; }
    #KlaviyoSignup.download .img_bg,
    #quickview.download .img_bg {
      width: 50%;
      height: 100%;
      float: left;
      background-image: url(//cdn.shopify.com/s/files/1/0996/2856/files/email-modal-early-access-bg.jpg?v=572881266433338192);
      background-size: cover;
      background-position: right center; }
    #KlaviyoSignup.download.ID_176145924127 .img_bg,
    #quickview.download.ID_176145924127 .img_bg {
      background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/earlyaccess_modal_taupe_bg.jpg?v=102338616120575238481626026614);
      background-position: 36% center; }
    #KlaviyoSignup.download fieldset,
    #quickview.download fieldset {
      padding: 0;
      margin: 0;
      display: flex; }
      #KlaviyoSignup.download fieldset > div,
      #quickview.download fieldset > div {
        max-width: 50%; }
    @media screen and (max-width: 480px) {
      #KlaviyoSignup.download .img_bg,
      #quickview.download .img_bg {
        height: 250px;
        width: 100%;
        background-position: right 60%;
        float: none; }
      #KlaviyoSignup.download fieldset > div,
      #quickview.download fieldset > div {
        padding: 20px; } }
  #KlaviyoSignup.download,
  #quickview.download {
    padding: 30px;
    max-width: 650px; }
    #KlaviyoSignup.download .close,
    #quickview.download .close {
      padding: 15px;
      background-color: #fff; }
    #KlaviyoSignup.download .btn, #KlaviyoSignup.download .btn--secondary, #KlaviyoSignup.download .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.download .spr-summary-actions-newreview, #KlaviyoSignup.download .btn--alt,
    #quickview.download .btn,
    #quickview.download .btn--secondary,
    #quickview.download .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions #quickview.download .spr-summary-actions-newreview,
    #quickview.download .btn--alt {
      float: none; }
    #KlaviyoSignup.download fieldset,
    #quickview.download fieldset {
      padding: 60px; }
    @media screen and (max-width: 480px) {
      #KlaviyoSignup.download fieldset,
      #quickview.download fieldset {
        padding: 30px; }
        #KlaviyoSignup.download fieldset > div,
        #quickview.download fieldset > div {
          padding: 20px; } }
  #KlaviyoSignup.early-access,
  #quickview.early-access {
    max-width: 900px;
    padding: 0; }
    #KlaviyoSignup.early-access.vis,
    #quickview.early-access.vis {
      display: block !important; }
    #KlaviyoSignup.early-access .cancel,
    #quickview.early-access .cancel {
      top: 18px;
      right: 18px; }
    #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal,
    #quickview.early-access .fieldset > div#EarlyAccessModal {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      background-color: #f0f0f0; }
      @media screen and (max-width: 480px) {
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal,
        #quickview.early-access .fieldset > div#EarlyAccessModal {
          flex-direction: column; } }
      #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal h3, #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .h3, #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__message,
      #quickview.early-access .fieldset > div#EarlyAccessModal h3,
      #quickview.early-access .fieldset > div#EarlyAccessModal .h3,
      #quickview.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__container .shopify-challenge__message,
      .shopify-challenge__container #quickview.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__message {
        margin-bottom: 30px;
        text-transform: uppercase;
        font-weight: 500; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal h3 span, #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .h3 span, #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__container .shopify-challenge__message span, .shopify-challenge__container #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__message span,
        #quickview.early-access .fieldset > div#EarlyAccessModal h3 span,
        #quickview.early-access .fieldset > div#EarlyAccessModal .h3 span,
        #quickview.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__container .shopify-challenge__message span,
        .shopify-challenge__container #quickview.early-access .fieldset > div#EarlyAccessModal .shopify-challenge__message span {
          white-space: nowrap; }
      #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .buttons,
      #quickview.early-access .fieldset > div#EarlyAccessModal .buttons {
        margin-top: 45px; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .buttons .btn, #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .buttons .btn--secondary, #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .buttons .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .buttons .spr-summary-actions-newreview, #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal .buttons .btn--alt,
        #quickview.early-access .fieldset > div#EarlyAccessModal .buttons .btn,
        #quickview.early-access .fieldset > div#EarlyAccessModal .buttons .btn--secondary,
        #quickview.early-access .fieldset > div#EarlyAccessModal .buttons .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
        .reviewsContainer .spr-summary-actions #quickview.early-access .fieldset > div#EarlyAccessModal .buttons .spr-summary-actions-newreview,
        #quickview.early-access .fieldset > div#EarlyAccessModal .buttons .btn--alt {
          width: 100%;
          max-width: 250px;
          margin-bottom: 15px; }
      #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal > div,
      #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal > form,
      #quickview.early-access .fieldset > div#EarlyAccessModal > div,
      #quickview.early-access .fieldset > div#EarlyAccessModal > form {
        width: 50%; }
        @media screen and (max-width: 480px) {
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal > div,
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal > form,
          #quickview.early-access .fieldset > div#EarlyAccessModal > div,
          #quickview.early-access .fieldset > div#EarlyAccessModal > form {
            width: 100%; } }
      #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal > div,
      #quickview.early-access .fieldset > div#EarlyAccessModal > div {
        line-height: 0; }
        @media screen and (max-width: 480px) {
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal > div,
          #quickview.early-access .fieldset > div#EarlyAccessModal > div {
            overflow: hidden; }
            #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal > div img,
            #quickview.early-access .fieldset > div#EarlyAccessModal > div img {
              margin: -140px 0 -120px; } }
      #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form,
      #quickview.early-access .fieldset > div#EarlyAccessModal form {
        padding: 50px 70px 30px; }
        @media screen and (max-width: 480px) {
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form,
          #quickview.early-access .fieldset > div#EarlyAccessModal form {
            padding: 40px 30px 40px; } }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form input[type="email"],
        #quickview.early-access .fieldset > div#EarlyAccessModal form input[type="email"] {
          background: transparent; }
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form input[type="email"]:-webkit-autofill,
          #quickview.early-access .fieldset > div#EarlyAccessModal form input[type="email"]:-webkit-autofill {
            -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
            -webkit-text-fill-color: #000000 !important; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form .field-group,
        #quickview.early-access .fieldset > div#EarlyAccessModal form .field-group {
          display: flex; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form .fields,
        #quickview.early-access .fieldset > div#EarlyAccessModal form .fields {
          margin-bottom: 0;
          width: 100%; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form .groups,
        #quickview.early-access .fieldset > div#EarlyAccessModal form .groups {
          margin: 0px auto;
          min-height: 50px;
          margin-right: -1px;
          flex-grow: 1; }
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form .groups:last-child label,
          #quickview.early-access .fieldset > div#EarlyAccessModal form .groups:last-child label {
            margin-right: 0 !important; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form .input-group-btn,
        #quickview.early-access .fieldset > div#EarlyAccessModal form .input-group-btn {
          margin-top: 30px;
          width: auto;
          display: block; }
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form .input-group-btn button,
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form .input-group-btn input,
          #quickview.early-access .fieldset > div#EarlyAccessModal form .input-group-btn button,
          #quickview.early-access .fieldset > div#EarlyAccessModal form .input-group-btn input {
            border: none; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form input[type="radio"],
        #quickview.early-access .fieldset > div#EarlyAccessModal form input[type="radio"] {
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          margin: 15px 5px 0 0;
          width: 13px;
          height: 10px;
          display: none;
          outline: none;
          border: none;
          margin-right: 0.5em;
          cursor: pointer;
          line-height: 0;
          overflow: hidden;
          vertical-align: text-bottom; }
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form input[type="radio"]:checked + label,
          #quickview.early-access .fieldset > div#EarlyAccessModal form input[type="radio"]:checked + label {
            border: 1px solid #777777;
            color: #000000; }
            #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form input[type="radio"]:checked + label img,
            #quickview.early-access .fieldset > div#EarlyAccessModal form input[type="radio"]:checked + label img {
              opacity: 1; }
          #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form input[type="radio"] + label img,
          #quickview.early-access .fieldset > div#EarlyAccessModal form input[type="radio"] + label img {
            opacity: 0;
            width: 13px;
            height: 10px;
            display: inline;
            float: right;
            margin-top: 2px;
            margin-left: 15px;
            transition: opacity 50ms; }
        #KlaviyoSignup.early-access .fieldset > div#EarlyAccessModal form label,
        #quickview.early-access .fieldset > div#EarlyAccessModal form label {
          border: 1px solid #b2b2b2;
          color: #b2b2b2;
          padding: 15px 18px 14px 22px;
          display: block;
          min-width: 120px;
          font-weight: 500;
          text-transform: uppercase;
          text-align: left;
          width: 100%; }
  #KlaviyoSignup.early-accessXXXX,
  #quickview.early-accessXXXX {
    background-color: #ffffff;
    padding: 0;
    max-width: 900px;
    top: 50%;
    -webkit-transform: translate(-50%, -42%);
    -moz-transform: translate(-50%, -42%);
    transform: translate(-50%, -42%); }
    #KlaviyoSignup.early-accessXXXX .cancel,
    #quickview.early-accessXXXX .cancel {
      background: rgba(255, 255, 255, 0.75);
      top: 0;
      right: 0; }
    #KlaviyoSignup.early-accessXXXX .fieldset,
    #quickview.early-accessXXXX .fieldset {
      display: flex; }
      #KlaviyoSignup.early-accessXXXX .fieldset > div,
      #quickview.early-accessXXXX .fieldset > div {
        text-align: center;
        width: 50%; }
        #KlaviyoSignup.early-accessXXXX .fieldset > div:first-child,
        #quickview.early-accessXXXX .fieldset > div:first-child {
          line-height: 0;
          display: block;
          overflow: hidden; }
        #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal,
        #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal {
          padding: 60px 60px 40px 60px;
          display: flex;
          flex-direction: column;
          justify-content: flex-end; }
          #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal h3, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal .h3, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal .shopify-challenge__message,
          #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal button[type="submit"],
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal h3,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal .h3,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal .shopify-challenge__container .shopify-challenge__message,
          .shopify-challenge__container #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal .shopify-challenge__message,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal button[type="submit"] {
            font-weight: bold; }
          #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal .message,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal .message {
            margin-top: 0 !important; }
          #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal a.btn, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal a.btn--secondary, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal .reviewsContainer .spr-summary-actions a.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal a.spr-summary-actions-newreview, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModal a.btn--alt,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal a.btn,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal a.btn--secondary,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal .reviewsContainer .spr-summary-actions a.spr-summary-actions-newreview,
          .reviewsContainer .spr-summary-actions #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal a.spr-summary-actions-newreview,
          #quickview.early-accessXXXX .fieldset > div#EarlyAccessModal a.btn--alt {
            margin-top: 40px; }
    #KlaviyoSignup.early-accessXXXX form,
    #quickview.early-accessXXXX form {
      float: none; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup.early-accessXXXX,
      #quickview.early-accessXXXX {
        margin: 0; }
        #KlaviyoSignup.early-accessXXXX .fieldset,
        #quickview.early-accessXXXX .fieldset {
          flex-wrap: wrap; }
          #KlaviyoSignup.early-accessXXXX .fieldset > div,
          #quickview.early-accessXXXX .fieldset > div {
            width: 100%; }
            #KlaviyoSignup.early-accessXXXX .fieldset > div img,
            #quickview.early-accessXXXX .fieldset > div img {
              max-width: 100%;
              margin: -90px 0 -190px; }
            #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX,
            #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX {
              padding: 30px; }
              #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX .message,
              #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX .message {
                margin-top: 15px; }
              #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX input,
              #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX input {
                margin-top: 0; }
              #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.btn, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.btn--secondary, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX .reviewsContainer .spr-summary-actions a.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.spr-summary-actions-newreview, #KlaviyoSignup.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.btn--alt,
              #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.btn,
              #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.btn--secondary,
              #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX .reviewsContainer .spr-summary-actions a.spr-summary-actions-newreview,
              .reviewsContainer .spr-summary-actions #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.spr-summary-actions-newreview,
              #quickview.early-accessXXXX .fieldset > div#EarlyAccessModalXXX a.btn--alt {
                margin-top: 20px; } }
  #KlaviyoSignup fieldset,
  #quickview fieldset {
    padding: 60px;
    text-align: center; }
  @media screen and (max-width: 480px) {
    #KlaviyoSignup fieldset,
    #quickview fieldset {
      padding: 30px; }
    #KlaviyoSignup .input-group,
    #quickview .input-group {
      display: block; } }
  #KlaviyoSignup .cancel,
  #KlaviyoSignup .close,
  #quickview .cancel,
  #quickview .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    transition: background-color 0.5s cubic-bezier(0.33, 0.66, 0.66, 1);
    line-height: 0;
    z-index: 1; }
    #KlaviyoSignup .cancel:hover,
    #KlaviyoSignup .close:hover,
    #quickview .cancel:hover,
    #quickview .close:hover {
      background-color: #eeeeee; }
  @media screen and (min-width: 799px) {
    #KlaviyoSignup .product-single .grid__item:first-child, #KlaviyoSignup .product-single #shopify-product-reviews:first-child, #KlaviyoSignup .product-single #aboutTLFeatures .header:first-child, #aboutTLFeatures #KlaviyoSignup .product-single .header:first-child, #KlaviyoSignup .product-single #aboutTLFeatures .item:first-child, #aboutTLFeatures #KlaviyoSignup .product-single .item:first-child,
    #quickview .product-single .grid__item:first-child,
    #quickview .product-single #shopify-product-reviews:first-child,
    #quickview .product-single #aboutTLFeatures .header:first-child,
    #aboutTLFeatures #quickview .product-single .header:first-child,
    #quickview .product-single #aboutTLFeatures .item:first-child,
    #aboutTLFeatures #quickview .product-single .item:first-child {
      padding-left: 0;
      padding-right: 20px; } }
  #KlaviyoSignup .product-single__photos,
  #quickview .product-single__photos {
    margin: 0; }
  #KlaviyoSignup h4, #KlaviyoSignup .h4,
  #KlaviyoSignup h5,
  #KlaviyoSignup .h5,
  #KlaviyoSignup time,
  #quickview h4,
  #quickview .h4,
  #quickview h5,
  #quickview .h5,
  #quickview time {
    margin-bottom: 50px; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup h4, #KlaviyoSignup .h4,
      #KlaviyoSignup h5,
      #KlaviyoSignup .h5,
      #KlaviyoSignup time,
      #quickview h4,
      #quickview .h4,
      #quickview h5,
      #quickview .h5,
      #quickview time {
        text-align: center;
        margin-bottom: 10px; } }
    #KlaviyoSignup h4.read_more a, #KlaviyoSignup .read_more.h4 a,
    #KlaviyoSignup h5.read_more a,
    #KlaviyoSignup .read_more.h5 a,
    #KlaviyoSignup time.read_more a,
    #quickview h4.read_more a,
    #quickview .read_more.h4 a,
    #quickview h5.read_more a,
    #quickview .read_more.h5 a,
    #quickview time.read_more a {
      font-size: .86em;
      text-decoration: underline; }
  #KlaviyoSignup p,
  #quickview p {
    margin-bottom: 15px;
    font-size: 0.82em; }
    #KlaviyoSignup p.variant,
    #quickview p.variant {
      font-weight: 400;
      padding: 0;
      margin-bottom: 0; }
    #KlaviyoSignup p.release-date,
    #quickview p.release-date {
      margin-top: 15px; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup p,
      #quickview p {
        text-align: center;
        clear: both; } }
  #KlaviyoSignup form,
  #quickview form {
    margin: 0;
    float: none;
    width: 100%; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup form,
      #quickview form {
        float: left; } }
    #KlaviyoSignup form input[type="number"],
    #quickview form input[type="number"] {
      border: 1px solid #d9d9d9;
      width: 130px;
      margin-left: 3px; }
  #KlaviyoSignup .rte,
  #quickview .rte {
    margin-top: 19px; }
    #KlaviyoSignup .rte h5, #KlaviyoSignup .rte .h5,
    #quickview .rte h5,
    #quickview .rte .h5 {
      display: none; }
  #KlaviyoSignup select,
  #quickview select {
    min-width: 188px; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup select,
      #quickview select {
        width: 100%; } }
  #KlaviyoSignup .selector-wrapper .selector-wrapper,
  #quickview .selector-wrapper .selector-wrapper {
    display: inline-block; }
  #KlaviyoSignup select,
  #quickview select {
    min-width: 130px;
    margin: 10px 0 10px 3px; }
  #KlaviyoSignup .input-group,
  #quickview .input-group {
    margin: 0 auto; }
  #KlaviyoSignup label[for],
  #quickview label[for] {
    margin: 6px 14px 4px 0 !important;
    display: inline-block;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase; }
    #KlaviyoSignup label[for]:last-child,
    #quickview label[for]:last-child {
      margin-right: 0; }
  #KlaviyoSignup .btn, #KlaviyoSignup .btn--secondary, #KlaviyoSignup .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup .spr-summary-actions-newreview, #KlaviyoSignup .btn--alt,
  #quickview .btn,
  #quickview .btn--secondary,
  #quickview .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions #quickview .spr-summary-actions-newreview,
  #quickview .btn--alt {
    display: inline-block;
    margin: 15px 0 0;
    float: left;
    padding: 8px 18px;
    min-width: 188px; }
    #KlaviyoSignup .btn#AddToCart, #KlaviyoSignup #AddToCart.btn--secondary, #KlaviyoSignup .reviewsContainer .spr-summary-actions #AddToCart.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup #AddToCart.spr-summary-actions-newreview, #KlaviyoSignup #AddToCart.btn--alt,
    #quickview .btn#AddToCart,
    #quickview #AddToCart.btn--secondary,
    #quickview .reviewsContainer .spr-summary-actions #AddToCart.spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions #quickview #AddToCart.spr-summary-actions-newreview,
    #quickview #AddToCart.btn--alt {
      margin-right: 15px; }
    #KlaviyoSignup .btn#Waitlist, #KlaviyoSignup #Waitlist.btn--secondary, #KlaviyoSignup .reviewsContainer .spr-summary-actions #Waitlist.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup #Waitlist.spr-summary-actions-newreview, #KlaviyoSignup #Waitlist.btn--alt,
    #quickview .btn#Waitlist,
    #quickview #Waitlist.btn--secondary,
    #quickview .reviewsContainer .spr-summary-actions #Waitlist.spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions #quickview #Waitlist.spr-summary-actions-newreview,
    #quickview #Waitlist.btn--alt {
      margin-bottom: 15px; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup .btn, #KlaviyoSignup .btn--secondary, #KlaviyoSignup .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup .spr-summary-actions-newreview, #KlaviyoSignup .btn--alt,
      #quickview .btn,
      #quickview .btn--secondary,
      #quickview .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
      .reviewsContainer .spr-summary-actions #quickview .spr-summary-actions-newreview,
      #quickview .btn--alt {
        width: 100%;
        margin-right: 0; } }
  #KlaviyoSignup .mc-embedded-subscribe-form #waitlist_email,
  #quickview .mc-embedded-subscribe-form #waitlist_email {
    margin: 15px 0 0; }
  #KlaviyoSignup .mc-embedded-subscribe-form .btn, #KlaviyoSignup .mc-embedded-subscribe-form .btn--secondary, #KlaviyoSignup .mc-embedded-subscribe-form .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup .mc-embedded-subscribe-form .spr-summary-actions-newreview, #KlaviyoSignup .mc-embedded-subscribe-form .btn--alt,
  #quickview .mc-embedded-subscribe-form .btn,
  #quickview .mc-embedded-subscribe-form .btn--secondary,
  #quickview .mc-embedded-subscribe-form .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
  .reviewsContainer .spr-summary-actions #quickview .mc-embedded-subscribe-form .spr-summary-actions-newreview,
  #quickview .mc-embedded-subscribe-form .btn--alt {
    margin: 15px 0 10px; }
    #KlaviyoSignup .mc-embedded-subscribe-form .btn.btn-close, #KlaviyoSignup .mc-embedded-subscribe-form .btn-close.btn--secondary, #KlaviyoSignup .mc-embedded-subscribe-form .reviewsContainer .spr-summary-actions .btn-close.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions #KlaviyoSignup .mc-embedded-subscribe-form .btn-close.spr-summary-actions-newreview, #KlaviyoSignup .mc-embedded-subscribe-form .btn-close.btn--alt,
    #quickview .mc-embedded-subscribe-form .btn.btn-close,
    #quickview .mc-embedded-subscribe-form .btn-close.btn--secondary,
    #quickview .mc-embedded-subscribe-form .reviewsContainer .spr-summary-actions .btn-close.spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions #quickview .mc-embedded-subscribe-form .btn-close.spr-summary-actions-newreview,
    #quickview .mc-embedded-subscribe-form .btn-close.btn--alt {
      display: block;
      margin: 20px auto 0;
      float: none; }
  #KlaviyoSignup .js-wish-list,
  #quickview .js-wish-list {
    display: inline-block; }
    #KlaviyoSignup .js-wish-list p,
    #quickview .js-wish-list p {
      margin-top: 27px; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup .js-wish-list,
      #quickview .js-wish-list {
        display: block; } }
  #KlaviyoSignup .release-date,
  #quickview .release-date {
    margin-top: 15px; }
  #KlaviyoSignup .ship-notice,
  #quickview .ship-notice {
    font-size: 0.86em;
    font-weight: 400; }
    @media screen and (max-width: 799px) {
      #KlaviyoSignup .ship-notice,
      #quickview .ship-notice {
        padding-top: 15px; } }
  #KlaviyoSignup.vis,
  #quickview.vis {
    opacity: 1;
    display: block; }
  #KlaviyoSignup #next-prev > span,
  #quickview #next-prev > span {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -25px;
    transition: background-color 0.5s cubic-bezier(0.33, 0.66, 0.66, 1); }
    #KlaviyoSignup #next-prev > span:hover,
    #quickview #next-prev > span:hover {
      background-color: #EEEEEE; }
    #KlaviyoSignup #next-prev > span.left,
    #quickview #next-prev > span.left {
      left: 0;
      right: auto; }
    #KlaviyoSignup #next-prev > span > a,
    #quickview #next-prev > span > a {
      padding: 10px;
      display: block; }
      @media screen and (max-width: 480px) {
        #KlaviyoSignup #next-prev > span > a,
        #quickview #next-prev > span > a {
          padding: 10px 0; } }

#KlaviyoSignup.signup {
  background-color: #eeeeee;
  position: relative;
  display: block;
  opacity: 1;
  width: unset;
  max-width: unset;
  margin: 0; }
  #KlaviyoSignup.signup fieldset {
    border: none; }
  #KlaviyoSignup.signup h2, #KlaviyoSignup.signup .h2, #KlaviyoSignup.signup .reviewsContainer .spr-header-title, .reviewsContainer #KlaviyoSignup.signup .spr-header-title {
    max-width: unset; }
  #KlaviyoSignup.signup h4, #KlaviyoSignup.signup .h4 {
    max-width: 29em;
    margin-left: auto;
    margin-right: auto; }
  #KlaviyoSignup.signup .signup-notice a {
    font-weight: 700 !important; }

#quickview-cart-screen,
#quickview-screen {
  position: fixed;
  background-color: #000000;
  opacity: 0;
  display: none;
  z-index: 900;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.25s cubic-bezier(0.33, 0.66, 0.66, 1); }
  #quickview-cart-screen.vis,
  #quickview-screen.vis {
    opacity: 0.75;
    display: block; }
  #quickview-cart-screen.signup.ver-b, #quickview-cart-screen.signup.ver-c,
  #quickview-screen.signup.ver-b,
  #quickview-screen.signup.ver-c {
    background-color: #f6f6f6; }
    #quickview-cart-screen.signup.ver-b.vis, #quickview-cart-screen.signup.ver-c.vis,
    #quickview-screen.signup.ver-b.vis,
    #quickview-screen.signup.ver-c.vis {
      opacity: 0.97; }
  #quickview-cart-screen.signup.ver-g, #quickview-cart-screen.signup.ver-h, #quickview-cart-screen.signup.early-access,
  #quickview-screen.signup.ver-g,
  #quickview-screen.signup.ver-h,
  #quickview-screen.signup.early-access {
    background-color: #000000; }
    #quickview-cart-screen.signup.ver-g.vis, #quickview-cart-screen.signup.ver-h.vis, #quickview-cart-screen.signup.early-access.vis,
    #quickview-screen.signup.ver-g.vis,
    #quickview-screen.signup.ver-h.vis,
    #quickview-screen.signup.early-access.vis {
      opacity: 0.75; }
  #quickview-cart-screen.download,
  #quickview-screen.download {
    background-color: #000; }
    #quickview-cart-screen.download.vis,
    #quickview-screen.download.vis {
      opacity: 0.7; }

.signup-success-coupon {
  opacity: 0;
  width: 0;
  height: 0; }
  .signup-success-coupon.active {
    opacity: 1;
    width: auto;
    height: auto; }

.signup-success-coupon .thank-you-heading {
  font-family: "proxima-nova";
  font-size: 10px !important;
  line-height: 30px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.51px;
  margin-bottom: 35px !important; }

.signup-success-coupon .subheading {
  font-family: "proxima-nova";
  font-size: 10px !important;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.5px;
  margin-bottom: 20px !important; }

.field-and-button {
  display: flex;
  flex-wrap: nowrap;
  max-width: 260px;
  margin: 0 auto;
  border: 1px solid;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; }

.field-and-button #couponField {
  width: 75%;
  background-color: #000;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000; }

.field-and-button #copy {
  width: 25%;
  font-size: 10px;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.51px; }

@media (max-width: 767px) {
  .signup--hide-for-mobile:not(.early-access):not(.video) {
    display: none !important; } }

.related-products {
  margin: 30px auto;
  display: none; }
  article .related-products {
    max-width: 630px;
    float: none; }
    @media screen and (min-width: 799px) {
      article .related-products .large--one-quarter {
        width: 50%; } }
    article .related-products .btn--secondary span, article .related-products .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview span, .reviewsContainer .spr-summary-actions article .related-products .spr-summary-actions-newreview span {
      display: none; }
  .article main > .grid > .related-products, .article main > .grid--rev > .related-products, .article main > .grid--full > .related-products, .article .site-header main > .message_banner > .related-products, .site-header .article main > .message_banner > .related-products, .article main > #aboutTLFeatures > .related-products {
    display: inherit !important;
    margin-bottom: 0; }
  @media screen and (max-width: 799px) {
    .product-single .related-products {
      display: none !important; }
    main > .grid > .related-products, main > .grid--rev > .related-products, main > .grid--full > .related-products, .site-header main > .message_banner > .related-products, main > #aboutTLFeatures > .related-products {
      display: inherit !important;
      margin-bottom: 0; }
    main article > div > .related-products {
      display: inherit !important; } }
  .related-products #relatedProducts {
    margin-left: -60px; }
    @media screen and (max-width: 480px) {
      .related-products #relatedProducts {
        margin-left: -30px; } }
  .related-products h4, .related-products .h4 {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid #d9d9d9; }

.section--logos > .wrapper {
  padding-top: 100px;
  padding-bottom: 100px; }
  .section--logos > .wrapper img {
    height: auto;
    max-width: 160px;
    transform: translate3d(0, 0, 0); }
    .section--logos > .wrapper img.above {
      margin-bottom: 40px; }
    .section--logos > .wrapper img.below {
      margin-top: 40px; }
  .section--logos > .wrapper h2, .section--logos > .wrapper .h2, .section--logos > .wrapper .reviewsContainer .spr-header-title, .reviewsContainer .section--logos > .wrapper .spr-header-title {
    margin-bottom: 3.5em;
    font-weight: 600; }
.section--logos .slick-track {
  display: flex;
  align-items: center; }
.section--logos .slick-slide > div {
  max-width: 1200px;
  padding: 0 5% 0;
  margin: 0 auto; }
.section--logos .slick-arrow {
  z-index: 1; }
.section--logos .slick-dots {
  margin: 0 0 15px;
  padding-right: 30px;
  bottom: -55px; }
.section--logos span.quote {
  font-size: 3em;
  line-height: 0;
  vertical-align: -35px; }
.section--logos .slider-for p {
  text-transform: none;
  margin: 0 10%;
  /*letter-spacing: 0.08em;*/
  line-height: calc(4em / 2.5); }
  .section--logos .slider-for p a {
    color: #000000; }
    .section--logos .slider-for p a:hover {
      color: #6f6f6f; }
  .section--logos .slider-for p.quote {
    font-family: "ButlerMedium", "Butler", "poynter-oldstyle-text", Georgia, Times, serif;
    font-size: 1.3em;
    line-height: 1.5; }
    .section--logos .slider-for p.quote:last-child {
      margin-top: 0.7em; }
.section--logos .slider-nav .slick-slide {
  opacity: 0.2;
  transition: opacity 0.25s;
  cursor: pointer;
  margin: 0 2em; }
  .section--logos .slider-nav .slick-slide:hover {
    opacity: 0.7; }
.section--logos .slider-nav .slick-current {
  opacity: 1; }
@media screen and (max-width: 480px) {
  .section--logos > .wrapper {
    margin-top: 75px;
    margin-bottom: 90px; }
    .section--logos > .wrapper img {
      padding: 0 1em; }
    .section--logos > .wrapper h2, .section--logos > .wrapper .h2, .section--logos > .wrapper .reviewsContainer .spr-header-title, .reviewsContainer .section--logos > .wrapper .spr-header-title {
      margin-bottom: 1.5em; }
  .section--logos .grid__item, .section--logos #shopify-product-reviews, .section--logos #aboutTLFeatures .header, #aboutTLFeatures .section--logos .header, .section--logos #aboutTLFeatures .item, #aboutTLFeatures .section--logos .item {
    margin-bottom: 0; }
  .section--logos .slider-for p {
    margin: 0; }
  .section--logos .slick-slide > div {
    padding: 0; }
  .section--logos .slick-arrow {
    display: none !important; } }

.grid.product-embed, .product-embed.grid--rev, .product-embed.grid--full, .site-header .product-embed.message_banner, .product-embed#aboutTLFeatures {
  padding: 100px 0; }
  .grid.product-embed img.c, .product-embed.grid--rev img.c, .product-embed.grid--full img.c, .site-header .product-embed.message_banner img.c, .product-embed#aboutTLFeatures img.c {
    display: none; }
    .grid.product-embed img.c.selected, .product-embed.grid--rev img.c.selected, .product-embed.grid--full img.c.selected, .site-header .product-embed.message_banner img.c.selected, .product-embed#aboutTLFeatures img.c.selected {
      display: block; }
  .grid.product-embed h2, .product-embed.grid--rev h2, .product-embed.grid--full h2, .site-header .product-embed.message_banner h2, .product-embed#aboutTLFeatures h2, .grid.product-embed .h2, .product-embed.grid--rev .h2, .product-embed.grid--full .h2, .site-header .product-embed.message_banner .h2, .product-embed#aboutTLFeatures .h2, .grid.product-embed .reviewsContainer .spr-header-title, .reviewsContainer .grid.product-embed .spr-header-title, .product-embed.grid--rev .reviewsContainer .spr-header-title, .reviewsContainer .product-embed.grid--rev .spr-header-title, .product-embed.grid--full .reviewsContainer .spr-header-title, .reviewsContainer .product-embed.grid--full .spr-header-title, .site-header .product-embed.message_banner .reviewsContainer .spr-header-title, .reviewsContainer .site-header .product-embed.message_banner .spr-header-title, .product-embed#aboutTLFeatures .reviewsContainer .spr-header-title, .reviewsContainer .product-embed#aboutTLFeatures .spr-header-title {
    margin-bottom: 45px;
    line-height: 1.1; }
  .grid.product-embed .props, .product-embed.grid--rev .props, .product-embed.grid--full .props, .site-header .product-embed.message_banner .props, .product-embed#aboutTLFeatures .props {
    font-weight: 600;
    margin-bottom: 15px; }
  .grid.product-embed .desc, .product-embed.grid--rev .desc, .product-embed.grid--full .desc, .site-header .product-embed.message_banner .desc, .product-embed#aboutTLFeatures .desc {
    line-height: 2; }
  .grid.product-embed #OtherProductColors, .product-embed.grid--rev #OtherProductColors, .product-embed.grid--full #OtherProductColors, .site-header .product-embed.message_banner #OtherProductColors, .product-embed#aboutTLFeatures #OtherProductColors {
    margin-bottom: 20px; }
    .grid.product-embed #OtherProductColors ul.swatches, .product-embed.grid--rev #OtherProductColors ul.swatches, .product-embed.grid--full #OtherProductColors ul.swatches, .site-header .product-embed.message_banner #OtherProductColors ul.swatches, .product-embed#aboutTLFeatures #OtherProductColors ul.swatches {
      margin-left: -4px; }
    .grid.product-embed #OtherProductColors li.swatch, .product-embed.grid--rev #OtherProductColors li.swatch, .product-embed.grid--full #OtherProductColors li.swatch, .site-header .product-embed.message_banner #OtherProductColors li.swatch, .product-embed#aboutTLFeatures #OtherProductColors li.swatch {
      width: 24px;
      height: 24px;
      margin-right: 3px; }
  .grid.product-embed .view-more, .product-embed.grid--rev .view-more, .product-embed.grid--full .view-more, .site-header .product-embed.message_banner .view-more, .product-embed#aboutTLFeatures .view-more {
    margin-top: 15px; }
  @media screen and (max-width: 799px) {
    .grid.product-embed, .product-embed.grid--rev, .product-embed.grid--full, .site-header .product-embed.message_banner, .product-embed#aboutTLFeatures {
      border-top: 1px solid #acacac;
      padding: 70px 0; }
      .grid.product-embed .details, .product-embed.grid--rev .details, .product-embed.grid--full .details, .site-header .product-embed.message_banner .details, .product-embed#aboutTLFeatures .details {
        padding-left: 80px;
        padding-right: 50px; } }

[data-simplebar] .simplebar-vertical {
  width: 13px; }

[data-simplebar] .simplebar-horizontal {
  height: 13px; }

.simplebar-vertical:before {
  content: '';
  height: 100%;
  display: block;
  background-color: #000000;
  opacity: 0.25;
  width: 1px;
  margin-left: 6px; }

.simplebar-horizontal:before {
  content: '';
  width: 100%;
  display: block;
  background-color: #000000;
  opacity: 0.25;
  height: 1px;
  margin-top: 6px; }

.simplebar-track.simplebar-vertical .simplebar-scrollbar {
  width: 13px;
  left: 0;
  top: 0; }

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  height: 13px;
  top: 0; }

.simplebar-scrollbar,
.simplebar-scrollbar:hover {
  background-color: transparent;
  opacity: 1;
  border-radius: 0; }

.simplebar-vertical .simplebar-scrollbar,
.simplebar-vertical .simplebar-scrollbar:hover {
  min-height: 50px !important; }

.simplebar-horizontal .simplebar-scrollbar,
.simplebar-horizontal .simplebar-scrollbar:hover {
  min-width: 50px !important; }

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0px;
  bottom: 0px;
  border-radius: 0;
  opacity: 1;
  display: block;
  content: '';
  background-color: transparent;
  border-left: 3px solid #000000;
  width: 3px;
  margin-left: 5px;
  padding-left: 5px;
  height: 100%;
  transition: border-color 250ms; }

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  left: 0px;
  right: 0px;
  border-radius: 0;
  opacity: 1;
  display: block;
  content: '';
  background-color: transparent;
  border-top: 3px solid #000000;
  height: 3px;
  margin-top: 5px;
  padding-top: 5px;
  width: 100%;
  transition: border-color 250ms; }

.simplebar-track .simplebar-scrollbar.simplebar-hover:before {
  border-color: #8e8e8e; }

.simplebar-dragging .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  border-color: #999999; }

.site-header {
  position: fixed;
  z-index: 15;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  top: 0;
  border-bottom: 1px solid #d9d9d9;
  padding: 0;
  text-transform: uppercase;
  font-size: 12px; }
  @media screen and (max-width: 1000px) {
    .site-header {
      padding: 0;
      height: 50px;
      border-bottom: none;
      font-size: 10px; }
      .site-header.has-banner {
        height: 90px; }
      .site-header.has-double-banner {
        height: 130px; } }
  .site-header.fade-bg {
    background-color: rgba(255, 255, 255, 0.95); }
  .site-header .message_banner {
    font-weight: 500;
    line-height: 1.2;
    background-color: black;
    color: white;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 40px; }
    .site-header .message_banner p {
      margin-bottom: 40px;
      text-transform: none; }
      @media screen and (max-width: 480px) {
        .site-header .message_banner p {
          font-size: 0.9em;
          letter-spacing: 0.12em; } }
      @media screen and (max-width: 369px) {
        .site-header .message_banner p {
          font-size: 0.9em;
          letter-spacing: 0.02px; } }
    .site-header .message_banner a {
      color: #ffffff;
      text-decoration: underline; }
      .site-header .message_banner a:hover, .site-header .message_banner a:active {
        color: #f3f3f3; }
    @media screen and (max-width: 639px) {
      .site-header .message_banner span {
        display: none; } }
    @media screen and (min-width: 640px) {
      .site-header .message_banner .hide--small-up {
        display: none; } }
    .site-header .message_banner .banner-signup {
      float: right;
      margin-right: -2px;
      margin-bottom: -20px;
      cursor: pointer;
      position: relative; }
      @media screen and (max-width: 1000px) {
        .site-header .message_banner .banner-signup {
          display: none; } }
      .site-header .message_banner .banner-signup button {
        color: white;
        outline: none;
        text-transform: uppercase;
        font-size: 12px; }
      .site-header .message_banner .banner-signup .sprite.sprite-email {
        height: 10px;
        width: 10px;
        background-position: -302px -3px;
        background-size: 315px 15px;
        margin: 0 2px -2px 0;
        mix-blend-mode: difference; }
      .site-header .message_banner .banner-signup form {
        position: fixed;
        cursor: default;
        right: 0;
        max-width: 95%;
        width: 600px;
        color: #000000;
        background: #ffffff;
        display: none;
        margin-top: 29px;
        padding: 50px 80px;
        z-index: 100; }
        .site-header .message_banner .banner-signup form.show {
          display: table !important; }
        .site-header .message_banner .banner-signup form .close {
          position: absolute;
          right: 15px;
          top: 15px;
          padding: 10px; }
        .site-header .message_banner .banner-signup form .message {
          margin-bottom: 15px; }
        .site-header .message_banner .banner-signup form .response .btn-close {
          display: none; }
        .site-header .message_banner .banner-signup form input[type="email"]:-webkit-autofill {
          -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
          -webkit-text-fill-color: #000000 !important; }
        .site-header .message_banner .banner-signup form .field-group {
          display: flex;
          justify-content: space-between; }
        .site-header .message_banner .banner-signup form .fields {
          margin-bottom: 10px;
          width: 100%; }
        .site-header .message_banner .banner-signup form .groups {
          display: block;
          min-height: 50px;
          margin-right: -1px;
          flex-grow: 1; }
        .site-header .message_banner .banner-signup form .input-group-btn {
          margin-top: 30px;
          width: auto;
          display: block; }
          .site-header .message_banner .banner-signup form .input-group-btn button,
          .site-header .message_banner .banner-signup form .input-group-btn input {
            border: none; }
        .site-header .message_banner .banner-signup form input[type="radio"] {
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          margin: 15px 5px 0 0;
          width: 13px;
          height: 10px;
          display: none;
          outline: none;
          border: none;
          margin-right: 0.5em;
          cursor: pointer;
          line-height: 0;
          overflow: hidden;
          vertical-align: text-bottom; }
          .site-header .message_banner .banner-signup form input[type="radio"]:checked + label {
            border: 1px solid #777777;
            color: #000000; }
            .site-header .message_banner .banner-signup form input[type="radio"]:checked + label img {
              opacity: 1; }
          .site-header .message_banner .banner-signup form input[type="radio"] + label img {
            opacity: 0;
            width: 13px;
            height: 10px;
            display: inline;
            float: right;
            margin-top: 2px;
            margin-left: 15px;
            transition: opacity 50ms; }
        .site-header .message_banner .banner-signup form label {
          border: 1px solid #b2b2b2;
          color: #b2b2b2;
          padding: 15px 18px 14px 22px;
          display: block;
          min-width: 120px;
          font-weight: 500;
          text-transform: uppercase;
          text-align: left; }
    .site-header .message_banner.reverse {
      background-color: #fff;
      color: #000000;
      font-weight: 400;
      cursor: pointer; }
      .site-header .message_banner.reverse .divider {
        display: inline;
        border-right: 1px solid #000000;
        margin: 0 15px; }
      .site-header .message_banner.reverse img {
        vertical-align: top;
        display: inline-block;
        padding: 0 5px; }
  .site-header > .wrapper {
    margin-top: 15px; }
    @media screen and (max-width: 1000px) {
      .site-header > .wrapper {
        margin-top: 0; } }
  .site-header .grid--table > .grid__item, .site-header .grid--table > #shopify-product-reviews, .site-header #aboutTLFeatures .grid--table > .header, #aboutTLFeatures .site-header .grid--table > .header, .site-header #aboutTLFeatures .grid--table > .item, #aboutTLFeatures .site-header .grid--table > .item {
    z-index: 10; }
    .site-header .grid--table > .grid__item.third-column > div, .site-header .grid--table > .third-column#shopify-product-reviews > div, .site-header #aboutTLFeatures .grid--table > .third-column.header > div, #aboutTLFeatures .site-header .grid--table > .third-column.header > div, .site-header #aboutTLFeatures .grid--table > .third-column.item > div, #aboutTLFeatures .site-header .grid--table > .third-column.item > div,
    .site-header .grid--table > .grid__item.third-column .site-nav,
    .site-header .grid--table > .third-column#shopify-product-reviews .site-nav,
    .site-header #aboutTLFeatures .grid--table > .third-column.header .site-nav,
    #aboutTLFeatures .site-header .grid--table > .third-column.header .site-nav,
    .site-header #aboutTLFeatures .grid--table > .third-column.item .site-nav,
    #aboutTLFeatures .site-header .grid--table > .third-column.item .site-nav,
    .site-header .grid--table > .grid__item.third-column .site-nav--mobile,
    .site-header .grid--table > .third-column#shopify-product-reviews .site-nav--mobile,
    .site-header #aboutTLFeatures .grid--table > .third-column.header .site-nav--mobile,
    #aboutTLFeatures .site-header .grid--table > .third-column.header .site-nav--mobile,
    .site-header #aboutTLFeatures .grid--table > .third-column.item .site-nav--mobile,
    #aboutTLFeatures .site-header .grid--table > .third-column.item .site-nav--mobile {
      margin: 0; }
    .site-header .grid--table > .grid__item.third-column .js-drawer-open-right, .site-header .grid--table > .third-column#shopify-product-reviews .js-drawer-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.header .js-drawer-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.header .js-drawer-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.item .js-drawer-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.item .js-drawer-open-right {
      display: none; }
    .site-header .grid--table > .grid__item.third-column .js-dropdown-open-right, .site-header .grid--table > .third-column#shopify-product-reviews .js-dropdown-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.header .js-dropdown-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.header .js-dropdown-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.item .js-dropdown-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.item .js-dropdown-open-right {
      display: block;
      margin: 8px -2px -1px 4px;
      padding: 9px 0px 29px; }
    @media screen and (max-width: 1000px) {
      .site-header .grid--table > .grid__item.third-column, .site-header .grid--table > .third-column#shopify-product-reviews, .site-header #aboutTLFeatures .grid--table > .third-column.header, #aboutTLFeatures .site-header .grid--table > .third-column.header, .site-header #aboutTLFeatures .grid--table > .third-column.item, #aboutTLFeatures .site-header .grid--table > .third-column.item {
        margin-left: -10px; }
        .site-header .grid--table > .grid__item.third-column .accounts, .site-header .grid--table > .third-column#shopify-product-reviews .accounts, .site-header #aboutTLFeatures .grid--table > .third-column.header .accounts, #aboutTLFeatures .site-header .grid--table > .third-column.header .accounts, .site-header #aboutTLFeatures .grid--table > .third-column.item .accounts, #aboutTLFeatures .site-header .grid--table > .third-column.item .accounts {
          display: none; }
        .site-header .grid--table > .grid__item.third-column .js-drawer-open-right, .site-header .grid--table > .third-column#shopify-product-reviews .js-drawer-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.header .js-drawer-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.header .js-drawer-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.item .js-drawer-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.item .js-drawer-open-right {
          display: block; }
        .site-header .grid--table > .grid__item.third-column .js-dropdown-open-right, .site-header .grid--table > .third-column#shopify-product-reviews .js-dropdown-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.header .js-dropdown-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.header .js-dropdown-open-right, .site-header #aboutTLFeatures .grid--table > .third-column.item .js-dropdown-open-right, #aboutTLFeatures .site-header .grid--table > .third-column.item .js-dropdown-open-right {
          display: none; } }
  .site-header .site-header__logo {
    font-size: 2em !important; }
    .site-header .site-header__logo a {
      padding: 15px 15px 30px; }
      @media screen and (max-width: 1000px) {
        .site-header .site-header__logo a {
          padding: 19px 0 20px; }
          .site-header .site-header__logo a img {
            max-width: 176px; } }
    .site-header .site-header__logo img {
      max-width: 300px;
      width: 100%;
      display: block; }
      .site-header .site-header__logo img.logo-alt {
        display: none; }
  @media screen and (max-width: 1100px) {
    .site-header .hide-medium {
      display: none; } }
  @media screen and (max-width: 1000px) {
    .site-header .sprite {
      margin-left: 2px; }
    .site-header .early-access__wrapper {
      display: none; } }
  .site-header .right > .btn, .site-header .right > .btn--secondary, .site-header .reviewsContainer .spr-summary-actions .right > .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .site-header .right > .spr-summary-actions-newreview, .site-header .right > .btn--alt {
    padding: 4px 9px;
    margin-bottom: 0;
    border-color: #999999;
    background-color: transparent; }
    .overlay-header .site-header .right > .btn, .overlay-header .site-header .right > .btn--secondary, .overlay-header .site-header .reviewsContainer .spr-summary-actions .right > .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .overlay-header .site-header .right > .spr-summary-actions-newreview, .overlay-header .site-header .right > .btn--alt {
      border-color: #000000; }
  .site-header .site-header__search {
    width: auto;
    margin: 0;
    position: relative; }
    .site-header .site-header__search .search-dropdown {
      position: absolute;
      display: inline-block;
      padding: 10px;
      right: -10%;
      min-width: 270px;
      background-color: #FFF;
      z-index: 100; }
      .site-header .site-header__search .search-dropdown .search-bar {
        padding: 10px 20px 20px; }
      .site-header .site-header__search .search-dropdown .input-group-field {
        color: black;
        border: none;
        padding: 5px 2px 0px;
        outline: none;
        border-bottom: 1px solid #000;
        font-size: 1em;
        letter-spacing: 0.08em;
        line-height: 2;
        height: 30px; }
      .site-header .site-header__search .search-dropdown button.btn, .site-header .site-header__search .search-dropdown button.btn--secondary, .site-header .site-header__search .search-dropdown .reviewsContainer .spr-summary-actions button.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .site-header .site-header__search .search-dropdown button.spr-summary-actions-newreview, .site-header .site-header__search .search-dropdown button.btn--alt {
        padding: 0;
        background-color: #FFF;
        border: none;
        border-bottom: 1px solid black;
        outline: none;
        height: 30px;
        min-width: unset; }
        .site-header .site-header__search .search-dropdown button.btn:active, .site-header .site-header__search .search-dropdown button.btn--secondary:active, .site-header .site-header__search .search-dropdown .reviewsContainer .spr-summary-actions button.spr-summary-actions-newreview:active, .reviewsContainer .spr-summary-actions .site-header .site-header__search .search-dropdown button.spr-summary-actions-newreview:active, .site-header .site-header__search .search-dropdown button.btn--alt:active {
          background-color: #f8f8f8; }
      .site-header .site-header__search .search-dropdown .search-close {
        display: none; }
      .site-header .site-header__search .search-dropdown .sprite-search {
        background-position: 0 0;
        margin: 4px 6px -1px; }
    @media screen and (max-width: 1000px) {
      .site-header .site-header__search {
        display: none; } }
  .site-header .site-nav--mobile {
    margin-left: 0; }
    .site-header .site-nav--mobile .site-nav__link {
      line-height: 1; }
    .site-header .site-nav--mobile .site-header__search .fallback-text {
      display: none; }
    .site-header .site-nav--mobile .site-header__search .search-dropdown {
      left: 0;
      padding-bottom: 20px;
      margin-top: 16px;
      border-top: 1px solid #d9d9d9;
      width: 100%; }
      .site-header .site-nav--mobile .site-header__search .search-dropdown .search-close {
        display: inline-block; }
        .site-header .site-nav--mobile .site-header__search .search-dropdown .search-close:active, .site-header .site-nav--mobile .site-header__search .search-dropdown .search-close:focus {
          outline: none;
          /* overrides chrome default focus outline */
          background-color: #f8f8f8; }
      .site-header .site-nav--mobile .site-header__search .search-dropdown .input-group-field {
        font-size: 1.3em;
        height: 34px; }
      .site-header .site-nav--mobile .site-header__search .search-dropdown button.btn, .site-header .site-nav--mobile .site-header__search .search-dropdown button.btn--secondary, .site-header .site-nav--mobile .site-header__search .search-dropdown .reviewsContainer .spr-summary-actions button.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .site-header .site-nav--mobile .site-header__search .search-dropdown button.spr-summary-actions-newreview, .site-header .site-nav--mobile .site-header__search .search-dropdown button.btn--alt {
        height: 34px; }
        .site-header .site-nav--mobile .site-header__search .search-dropdown button.btn .sprite-search, .site-header .site-nav--mobile .site-header__search .search-dropdown button.btn--secondary .sprite-search, .site-header .site-nav--mobile .site-header__search .search-dropdown .reviewsContainer .spr-summary-actions button.spr-summary-actions-newreview .sprite-search, .reviewsContainer .spr-summary-actions .site-header .site-nav--mobile .site-header__search .search-dropdown button.spr-summary-actions-newreview .sprite-search, .site-header .site-nav--mobile .site-header__search .search-dropdown button.btn--alt .sprite-search {
          margin: 8px 6px 3px; }
  .site-header .right {
    transition: opacity 500ms; }
    .site-header .right .btn, .site-header .right .btn--secondary, .site-header .right .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .site-header .right .spr-summary-actions-newreview, .site-header .right .btn--alt {
      color: white; }
    .site-header .right a,
    .site-header .right .btn--secondary,
    .site-header .right .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview,
    .reviewsContainer .spr-summary-actions .site-header .right .spr-summary-actions-newreview {
      color: black; }
    .js-drawer-open-left .site-header .right {
      opacity: 0; }
  .site-header #CartCount.hidden-count {
    display: none; }

#AccessibleNav.hovered > li > .site-nav__link {
  color: #727272; }
#AccessibleNav.hovered > .nav-hover > .site-nav__link {
  color: #000000; }

.nav-bar {
  background-color: transparent; }
  .nav-bar.right .wrapper {
    padding: 0; }
  .nav-bar .mobile-nav {
    display: none !important; }
  @media screen and (max-width: 1000px) {
    .nav-bar .desktop-nav {
      display: none !important; }
    .nav-bar .mobile-nav {
      display: block !important; }
      .nav-bar .mobile-nav .grid__item, .nav-bar .mobile-nav #shopify-product-reviews, .nav-bar .mobile-nav #aboutTLFeatures .header, #aboutTLFeatures .nav-bar .mobile-nav .header, .nav-bar .mobile-nav #aboutTLFeatures .item, #aboutTLFeatures .nav-bar .mobile-nav .item {
        padding-left: 15px; } }

@media screen and (max-width: 1000px) {
  .site-nav__link {
    padding: 15px; }
    .site-nav__link.js-drawer-open-left .sprite {
      margin: 2px; }
      .site-nav__link.js-drawer-open-left .sprite.sprite-hamburger {
        opacity: 1;
        transition: opacity 250ms; }
        .js-drawer-open-left .site-nav__link.js-drawer-open-left .sprite.sprite-hamburger {
          opacity: 0; }
      .site-nav__link.js-drawer-open-left .sprite.sprite-close {
        margin-left: -17px;
        position: absolute;
        opacity: 0;
        transition: opacity 250ms; }
        .js-drawer-open-left .site-nav__link.js-drawer-open-left .sprite.sprite-close {
          opacity: 1; }
    .text-right .site-nav--mobile .site-nav__link {
      padding: 13px 10px 20px 0px; }
      .text-right .site-nav--mobile .site-nav__link .sprite {
        margin: 1px 4px -5px 5px; } }
.site-nav, .site-nav--mobile {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 -5px 0 -8px;
  display: flex; }
  .site-nav > li, .site-nav--mobile > li {
    line-height: 1.7; }
    .site-nav > li > .site-nav__link, .site-nav--mobile > li > .site-nav__link {
      padding: 17px 10px 29px;
      margin: 0 0 -1px;
      border-bottom: 2px solid transparent;
      letter-spacing: .12em; }
      .site-nav > li > .site-nav__link:first-child, .site-nav--mobile > li > .site-nav__link:first-child {
        margin-left: -2px; }
      @media screen and (min-width: 1000px) and (max-width: 1182px) {
        .site-nav > li > .site-nav__link, .site-nav--mobile > li > .site-nav__link {
          margin: 17px 8px -1px;
          padding: 0 0 29px; } }
  .site-nav .site-nav__link sub, .site-nav--mobile .site-nav__link sub {
    opacity: 0;
    bottom: 0;
    font-size: 9px;
    transition: opacity 250ms; }
  .site-nav .site-nav__link:hover sub, .site-nav--mobile .site-nav__link:hover sub {
    opacity: 1; }

[data-nav="shop"].site-nav__dropdown .scroll-container > .grid, [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--rev, [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--full, [data-nav="shop"].site-nav__dropdown .site-header .scroll-container > .message_banner, .site-header [data-nav="shop"].site-nav__dropdown .scroll-container > .message_banner, [data-nav="shop"].site-nav__dropdown .scroll-container > #aboutTLFeatures {
  padding: 0; }
  [data-nav="shop"].site-nav__dropdown .scroll-container > .grid [data-handle="men"].grid__item, [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--rev [data-handle="men"].grid__item, [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--full [data-handle="men"].grid__item, [data-nav="shop"].site-nav__dropdown .site-header .scroll-container > .message_banner [data-handle="men"].grid__item, .site-header [data-nav="shop"].site-nav__dropdown .scroll-container > .message_banner [data-handle="men"].grid__item, [data-nav="shop"].site-nav__dropdown .scroll-container > #aboutTLFeatures [data-handle="men"].grid__item, [data-nav="shop"].site-nav__dropdown .scroll-container > .grid [data-handle="men"]#shopify-product-reviews, [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--rev [data-handle="men"]#shopify-product-reviews, [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--full [data-handle="men"]#shopify-product-reviews, [data-nav="shop"].site-nav__dropdown .site-header .scroll-container > .message_banner [data-handle="men"]#shopify-product-reviews, .site-header [data-nav="shop"].site-nav__dropdown .scroll-container > .message_banner [data-handle="men"]#shopify-product-reviews, [data-nav="shop"].site-nav__dropdown .scroll-container > #aboutTLFeatures [data-handle="men"]#shopify-product-reviews, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .scroll-container > .grid [data-handle="men"].header, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--rev [data-handle="men"].header, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--full [data-handle="men"].header, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .site-header .scroll-container > .message_banner [data-handle="men"].header, #aboutTLFeatures .site-header [data-nav="shop"].site-nav__dropdown .scroll-container > .message_banner [data-handle="men"].header, [data-nav="shop"].site-nav__dropdown .scroll-container > #aboutTLFeatures [data-handle="men"].header, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .scroll-container > .grid [data-handle="men"].item, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--rev [data-handle="men"].item, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .scroll-container > .grid--full [data-handle="men"].item, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown .site-header .scroll-container > .message_banner [data-handle="men"].item, #aboutTLFeatures .site-header [data-nav="shop"].site-nav__dropdown .scroll-container > .message_banner [data-handle="men"].item, [data-nav="shop"].site-nav__dropdown .scroll-container > #aboutTLFeatures [data-handle="men"].item {
    display: none; }
[data-nav="shop"].site-nav__dropdown [data-handle].site-nav__nochild {
  padding-top: 20px; }
[data-nav="shop"].site-nav__dropdown [data-handle].grid__item, [data-nav="shop"].site-nav__dropdown [data-handle]#shopify-product-reviews, [data-nav="shop"].site-nav__dropdown #aboutTLFeatures [data-handle].header, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown [data-handle].header, [data-nav="shop"].site-nav__dropdown #aboutTLFeatures [data-handle].item, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown [data-handle].item {
  padding-left: 10px; }
[data-nav="shop"].site-nav__dropdown #mwNav > .grid__item, [data-nav="shop"].site-nav__dropdown #mwNav > #shopify-product-reviews, [data-nav="shop"].site-nav__dropdown #aboutTLFeatures #mwNav > .header, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown #mwNav > .header, [data-nav="shop"].site-nav__dropdown #aboutTLFeatures #mwNav > .item, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown #mwNav > .item {
  display: none; }
  [data-nav="shop"].site-nav__dropdown #mwNav > .grid__item.active, [data-nav="shop"].site-nav__dropdown #mwNav > .active#shopify-product-reviews, [data-nav="shop"].site-nav__dropdown #aboutTLFeatures #mwNav > .active.header, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown #mwNav > .active.header, [data-nav="shop"].site-nav__dropdown #aboutTLFeatures #mwNav > .active.item, #aboutTLFeatures [data-nav="shop"].site-nav__dropdown #mwNav > .active.item {
    display: flex; }
[data-nav="shop"].site-nav__dropdown li.site-nav__nochild a {
  color: #595858;
  background-color: transparent;
  padding: 0 0 10px; }
[data-nav="shop"].site-nav__dropdown li.site-nav__nochild:hover a, [data-nav="shop"].site-nav__dropdown li.site-nav__nochild.site-nav--active a {
  color: #000000; }

.site-nav__promos {
  display: flex;
  flex-direction: column;
  padding-top: 27px;
  padding-right: 50px;
  flex-grow: 1;
  align-items: flex-end; }

.site-nav__tile {
  max-width: 109px;
  position: relative;
  margin-bottom: 15px;
  background: #585858; }
  .site-nav__tile img {
    width: 100%; }
  .site-nav__tile a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: background-color 50ms;
    color: #ffffff !important; }
    .site-nav__tile a:hover {
      background-color: rgba(0, 0, 0, 0.1); }

.site-nav__dropdown {
  display: none;
  flex-direction: row;
  font-size: 12px;
  color: #000000;
  padding: 120px 0px 45px 0;
  width: 100%;
  position: fixed;
  top: 0;
  width: 385px;
  height: 100%;
  z-index: -1;
  margin: 1px auto 0; }
  .site-nav__dropdown:before {
    content: '';
    background: #ffffff;
    top: 0;
    position: fixed;
    height: 100%;
    width: 900px;
    max-width: 40%;
    min-width: 600px;
    margin-left: 0;
    left: 0;
    z-index: 0; }
  .site-nav__dropdown .submenu {
    display: none;
    width: 310px;
    height: 100%;
    position: absolute;
    background: #ffffff;
    top: 0;
    bottom: 0;
    left: 100%;
    left: 67%;
    z-index: 90;
    content: '';
    opacity: 0;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 250ms;
    flex-direction: column;
    justify-content: center; }
    .site-nav__dropdown .submenu:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.03); }
    .site-nav__dropdown .submenu img {
      margin: 10px; }
    .site-nav__dropdown .submenu sub {
      display: none; }
  .site-nav__dropdown .scroll-container {
    overflow-y: scroll;
    scrollbar-width: none; }
    .site-nav__dropdown .scroll-container::-webkit-scrollbar {
      display: none; }
  .site-nav__dropdown .scrollbar-outer.bundle-accessories {
    overflow-y: hidden; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: flex; }
  .site-nav__dropdown li {
    padding: 0; }
    .site-nav__dropdown li.site-nav--active a {
      font-weight: normal;
      text-decoration: underline; }
    .site-nav__dropdown li:not([data-handle="women"]):not([data-handle="men"]) a {
      padding: 0;
      margin: 0 auto;
      display: inline-block;
      font-size: 16.5px;
      font-family: "poynter-oldstyle-text", Georgia, Times, serif;
      letter-spacing: 0;
      text-transform: none;
      width: 100%;
      color: #000000; }
      .site-nav__dropdown li:not([data-handle="women"]):not([data-handle="men"]) a:hover, .site-nav__dropdown li:not([data-handle="women"]):not([data-handle="men"]) a:active {
        background-color: #ffffff;
        color: #555555; }
      .site-nav__dropdown li:not([data-handle="women"]):not([data-handle="men"]) a[href="/collections/sample-sale"], .site-nav__dropdown li:not([data-handle="women"]):not([data-handle="men"]) a[href="/collections/vh-revival"] {
        color: #1E211A !important; }
  .site-nav__dropdown .grid, .site-nav__dropdown .grid--rev, .site-nav__dropdown .grid--full, .site-nav__dropdown .site-header .message_banner, .site-header .site-nav__dropdown .message_banner, .site-nav__dropdown #aboutTLFeatures {
    width: 880px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 20px; }
    .site-nav__dropdown .grid .grid__item, .site-nav__dropdown .grid--rev .grid__item, .site-nav__dropdown .grid--full .grid__item, .site-nav__dropdown .site-header .message_banner .grid__item, .site-header .site-nav__dropdown .message_banner .grid__item, .site-nav__dropdown #aboutTLFeatures .grid__item, .site-nav__dropdown .grid #shopify-product-reviews, .site-nav__dropdown .grid--rev #shopify-product-reviews, .site-nav__dropdown .grid--full #shopify-product-reviews, .site-nav__dropdown .site-header .message_banner #shopify-product-reviews, .site-header .site-nav__dropdown .message_banner #shopify-product-reviews, .site-nav__dropdown #aboutTLFeatures #shopify-product-reviews, #aboutTLFeatures .site-nav__dropdown .grid .header, #aboutTLFeatures .site-nav__dropdown .grid--rev .header, #aboutTLFeatures .site-nav__dropdown .grid--full .header, #aboutTLFeatures .site-nav__dropdown .site-header .message_banner .header, #aboutTLFeatures .site-header .site-nav__dropdown .message_banner .header, .site-nav__dropdown #aboutTLFeatures .header, #aboutTLFeatures .site-nav__dropdown .grid .item, #aboutTLFeatures .site-nav__dropdown .grid--rev .item, #aboutTLFeatures .site-nav__dropdown .grid--full .item, #aboutTLFeatures .site-nav__dropdown .site-header .message_banner .item, #aboutTLFeatures .site-header .site-nav__dropdown .message_banner .item, .site-nav__dropdown #aboutTLFeatures .item {
      float: left;
      text-align: left;
      margin-bottom: 40px;
      padding-left: 53px; }
      .site-nav__dropdown .grid .grid__item.no-title, .site-nav__dropdown .grid--rev .grid__item.no-title, .site-nav__dropdown .grid--full .grid__item.no-title, .site-nav__dropdown .site-header .message_banner .grid__item.no-title, .site-header .site-nav__dropdown .message_banner .grid__item.no-title, .site-nav__dropdown #aboutTLFeatures .grid__item.no-title, .site-nav__dropdown .grid .no-title#shopify-product-reviews, .site-nav__dropdown .grid--rev .no-title#shopify-product-reviews, .site-nav__dropdown .grid--full .no-title#shopify-product-reviews, .site-nav__dropdown .site-header .message_banner .no-title#shopify-product-reviews, .site-header .site-nav__dropdown .message_banner .no-title#shopify-product-reviews, .site-nav__dropdown #aboutTLFeatures .no-title#shopify-product-reviews, #aboutTLFeatures .site-nav__dropdown .grid .no-title.header, #aboutTLFeatures .site-nav__dropdown .grid--rev .no-title.header, #aboutTLFeatures .site-nav__dropdown .grid--full .no-title.header, #aboutTLFeatures .site-nav__dropdown .site-header .message_banner .no-title.header, #aboutTLFeatures .site-header .site-nav__dropdown .message_banner .no-title.header, .site-nav__dropdown #aboutTLFeatures .no-title.header, #aboutTLFeatures .site-nav__dropdown .grid .no-title.item, #aboutTLFeatures .site-nav__dropdown .grid--rev .no-title.item, #aboutTLFeatures .site-nav__dropdown .grid--full .no-title.item, #aboutTLFeatures .site-nav__dropdown .site-header .message_banner .no-title.item, #aboutTLFeatures .site-header .site-nav__dropdown .message_banner .no-title.item, .site-nav__dropdown #aboutTLFeatures .no-title.item {
        margin-top: 45px; }
  .site-nav__dropdown li:not(.site-nav__subchild):not(.site-nav__nochild) {
    margin-bottom: 10px; }
  .site-nav__dropdown li.site-nav__nochild {
    margin-top: -2px; }
  .site-nav__dropdown .site-nav__subchild {
    text-transform: none; }

.scroll-container {
  height: 100%; }
  .scroll-container .simplebar-track.simplebar-vertical {
    left: 0;
    right: unset; }
    .scroll-container .simplebar-track.simplebar-vertical:before {
      opacity: 0;
      transition: opacity 150ms; }
    .scroll-container .simplebar-track.simplebar-vertical.simplebar-hover:before {
      opacity: 0.25; }
    .scroll-container .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
      border-left: 1px solid #000000;
      width: 1px;
      margin-left: 6px;
      opacity: 0;
      transition: opacity 150ms; }
    .scroll-container .simplebar-track.simplebar-vertical .simplebar-scrollbar:hover:before,
    .scroll-container .simplebar-track.simplebar-vertical .simplebar-scrollbar.simplebar-visible:before {
      opacity: 1; }
  .scroll-container:hover .simplebar-vertical:before {
    opacity: 0.15; }

.drawer--left {
  top: 137px;
  z-index: 20;
  padding-top: 30px;
  max-width: unset; }
  .drawer--left.has-banner {
    top: 177px; }
  .drawer--left.has-double-banner {
    top: 217px; }
  @media screen and (max-width: 1000px) {
    .drawer--left {
      top: 0px; }
      .drawer--left.has-banner {
        top: 90px; }
      .drawer--left.has-double-banner {
        top: 130px; } }
  .drawer--left a.btn, .drawer--left a.btn--secondary, .drawer--left .reviewsContainer .spr-summary-actions a.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .drawer--left a.spr-summary-actions-newreview, .drawer--left a.btn--alt {
    color: #FFF; }

.drawer--right {
  z-index: 200;
  max-width: unset;
  width: 100%; }
  .drawer--right #CartContainer .close {
    margin-right: 0; }

#CartContainer {
  margin-bottom: 50px; }

.mobile-nav {
  margin-top: 0;
  margin-left: 0px;
  left: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  #NavDrawer .mobile-nav {
    position: absolute;
    width: 100%; }
    .js-drawer-open-left.js-drawer-subnav-open-left #NavDrawer .mobile-nav {
      left: -100%; }
      .js-drawer-open-left.js-drawer-subnav-open-left #NavDrawer .mobile-nav .mobile-nav--expanded + .mobile-nav__sublist {
        visibility: visible !important; }
  .mobile-nav div > .mobile-nav__item a {
    text-transform: none;
    font-family: "poynter-oldstyle-text", Georgia, Times, serif;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 14px; }
  .mobile-nav .mobile-nav__item {
    text-transform: uppercase; }
    .mobile-nav .mobile-nav__item.mobile-nav__item--active {
      font-weight: 600; }
    .mobile-nav .mobile-nav__item sub {
      opacity: 0.4; }
    .mobile-nav .mobile-nav__item #MobileNewsletterLink {
      margin: 15px 0; }
    .mobile-nav .mobile-nav__item .sprite-arrow-next {
      height: 30px;
      width: 30px;
      background-position: -270px 0;
      margin: -3px 4px -12px 10px; }
    .mobile-nav .mobile-nav__item > a,
    .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist > a {
      padding: 5px 45px;
      font-size: 12px;
      font-weight: 600; }
    .mobile-nav .mobile-nav__item .mobile-nav__sublist,
    .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist {
      max-height: unset;
      visibility: hidden; }
      .mobile-nav .mobile-nav__item .mobile-nav__sublist.women div > li > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men div > li > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li:not(:first-child) > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women div > li > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men div > li > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li:not(:first-child) > a {
        text-transform: none;
        padding: 1px 0 1px 55px;
        margin: 2px auto;
        display: inline-block;
        font-size: 17px;
        font-family: "poynter-oldstyle-text", Georgia, Times, serif;
        width: 100%; }
        .mobile-nav .mobile-nav__item .mobile-nav__sublist.women div > li > a sub, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men div > li > a sub, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li:not(:first-child) > a sub,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women div > li > a sub,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men div > li > a sub,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li:not(:first-child) > a sub {
          opacity: 0;
          bottom: 0;
          font-size: 9px;
          transition: opacity 250ms; }
        .mobile-nav .mobile-nav__item .mobile-nav__sublist.women div > li > a:hover sub, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men div > li > a:hover sub, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li:not(:first-child) > a:hover sub,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women div > li > a:hover sub,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men div > li > a:hover sub,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li:not(:first-child) > a:hover sub {
          opacity: 1; }
      .mobile-nav .mobile-nav__item .mobile-nav__sublist.women > li > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men > li > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li:first-child > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women > li > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men > li > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li:first-child > a {
        margin-top: 20px;
        margin-bottom: 5px;
        padding-left: 55px;
        font-weight: 600; }
      .mobile-nav .mobile-nav__item .mobile-nav__sublist.women > li:first-child > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men > li:first-child > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li:first-child > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women > li:first-child > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men > li:first-child > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li:first-child > a {
        margin-top: unset;
        width: unset; }
      .mobile-nav .mobile-nav__item .mobile-nav__sublist.women > li > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men > li > a, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women > li > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men > li > a,
      .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li > a {
        text-transform: uppercase; }
        .mobile-nav .mobile-nav__item .mobile-nav__sublist.women > li > a:hover, .mobile-nav .mobile-nav__item .mobile-nav__sublist.women > li > a:focus, .mobile-nav .mobile-nav__item .mobile-nav__sublist.women > li > a:active, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men > li > a:hover, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men > li > a:focus, .mobile-nav .mobile-nav__item .mobile-nav__sublist.men > li > a:active, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li > a:hover, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li > a:focus, .mobile-nav .mobile-nav__item .mobile-nav__sublist.learn > li > a:active,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women > li > a:hover,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women > li > a:focus,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.women > li > a:active,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men > li > a:hover,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men > li > a:focus,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.men > li > a:active,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li > a:hover,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li > a:focus,
        .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist.learn > li > a:active {
          opacity: 1;
          background-color: #fff; }
    .mobile-nav .mobile-nav__item .mobile-nav__sublist,
    .mobile-nav .mobile-nav__item > .mobile-nav__has-sublist .mobile-nav__sublist {
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
      padding-bottom: 30px; }
    .mobile-nav .mobile-nav__item.inverse {
      background-color: #000; }
      .mobile-nav .mobile-nav__item.inverse > a {
        color: #fff; }
        .mobile-nav .mobile-nav__item.inverse > a:focus, .mobile-nav .mobile-nav__item.inverse > a:active {
          background-color: #1e1e1e; }
      .mobile-nav .mobile-nav__item.inverse:after {
        border-color: #1e1e1e; }
    .mobile-nav .mobile-nav__item:after {
      left: 30px;
      right: 30px;
      border: none; }
    .mobile-nav .mobile-nav__item.nav-social {
      text-align: center; }
      .mobile-nav .mobile-nav__item.nav-social:after {
        left: 0;
        right: 0; }
    .mobile-nav .mobile-nav__item.nav-footer a {
      padding: 5px 45px; }
  .mobile-nav .mobile-nav__search .search-dropdown {
    padding: 10px 45px; }
    .mobile-nav .mobile-nav__search .search-dropdown .search-close {
      display: none; }
    .mobile-nav .mobile-nav__search .search-dropdown .sprite-search {
      background-position: -205px 0; }
    .mobile-nav .mobile-nav__search .search-dropdown input[type="search"] {
      padding: 10px; }
    .mobile-nav .mobile-nav__search .search-dropdown button {
      padding: 8px; }
  .mobile-nav .mobile-nav__search .search-bar {
    margin-bottom: 0; }
  .mobile-nav .social-icons {
    padding: 3px 0 10px 0; }
    .mobile-nav .social-icons a {
      width: 28px;
      height: 28px;
      border-radius: 14px;
      padding: 6px 0 0 7px; }
      .mobile-nav .social-icons a .icon {
        font-size: 14px;
        line-height: 14px; }
      .mobile-nav .social-icons a .sprite.sprite-email,
      .mobile-nav .social-icons a .sprite.sprite-facebook {
        height: 14px;
        width: 14px;
        background-position: -86px 0; }
      .mobile-nav .social-icons a .sprite.sprite-email {
        background-position: -70px 0; }
  .mobile-nav .sidebar-footer-links {
    list-style: none outside;
    margin-left: 0; }

body .pick_currency,
body .pick_currency:hover {
  color: white !important;
  background-color: transparent !important; }

body.white .site-header:not(.fade-bg) {
  color: #ffffff;
  font-weight: 300;
  border: none; }
  @media screen and (min-width: 1000px) {
    body.white .site-header:not(.fade-bg) {
      background-color: transparent; }
      body.white .site-header:not(.fade-bg).fade-bg {
        background-color: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid #d9d9d9; }
      body.white .site-header:not(.fade-bg) .site-header__logo a img {
        display: none; }
        body.white .site-header:not(.fade-bg) .site-header__logo a img.logo-alt {
          display: block; }
      body.white .site-header:not(.fade-bg) .site-nav__link,
      body.white .site-header:not(.fade-bg) a {
        color: #ffffff; }
      body.white .site-header:not(.fade-bg) .site-nav__dropdown a {
        color: #000000; }
      body.white .site-header:not(.fade-bg) .btn--secondary, body.white .site-header:not(.fade-bg) .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions body.white .site-header:not(.fade-bg) .spr-summary-actions-newreview {
        border-color: #ffffff; }
      body.white .site-header:not(.fade-bg) .sprite-bag {
        background-position: -168px 0; }
      body.white .site-header:not(.fade-bg) .sprite-customer {
        background-position: -220px 0; }
      body.white .site-header:not(.fade-bg) .sprite-search {
        background-position: -205px 0; } }
  body.white .site-header:not(.fade-bg) .site-nav > li:hover > a, body.white .site-header:not(.fade-bg) .site-nav--mobile > li:hover > a, body.white .site-header:not(.fade-bg) .site-nav > li:active > a, body.white .site-header:not(.fade-bg) .site-nav--mobile > li:active > a, body.white .site-header:not(.fade-bg) .site-nav > li.nav-hover > a, body.white .site-header:not(.fade-bg) .site-nav--mobile > li.nav-hover > a {
    border-bottom-color: #ffffff; }

@media screen and (min-width: 1001px) {
  body.overlay-header .site-header {
    background-color: transparent;
    border-bottom-color: transparent;
    transition: background-color 0.25s cubic-bezier(0.33, 0.66, 0.66, 0.5); }
    body.overlay-header .site-header.fade-bg {
      background-color: rgba(255, 255, 255, 0.95);
      border-bottom: 1px solid #d9d9d9; } }

.slick-arrow {
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: 0px;
  padding: 10px;
  outline-width: 0px;
  outline: none;
  z-index: 10;
  width: auto;
  height: auto;
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.25s cubic-bezier(0.33, 0.66, 0.66, 0.5); }
  .slick-arrow:focus {
    background-color: rgba(255, 255, 255, 0.8); }
  .slick-arrow:hover {
    background-color: rgba(255, 255, 255, 0.7); }
  .slick-arrow:active {
    background-color: rgba(255, 255, 255, 0.5); }
  .slick-arrow.slick-prev {
    left: 10px; }
  .slick-arrow.slick-next {
    right: -18px; }
  .slick-arrow.slick-prev:before, .slick-arrow.slick-next:before {
    content: none; }

@media screen and (max-width: 799px) {
  #ProductPhotos .slick-arrow {
    display: none !important; } }

.home-hero.slider .slick-slider {
  margin-bottom: 0; }
  .home-hero.slider .slick-slider .slick-arrow {
    transition: opacity 250ms;
    width: 50px;
    height: 50px;
    background-color: transparent; }
    .home-hero.slider .slick-slider .slick-arrow.slick-disabled {
      opacity: 0; }
    .home-hero.slider .slick-slider .slick-arrow.slick-prev:before, .home-hero.slider .slick-slider .slick-arrow.slick-next:before {
      content: '';
      display: none; }
  .home-hero.slider .slick-slider .slick-track {
    display: flex;
    align-items: stretch;
    align-content: stretch; }
  .home-hero.slider .slick-slider .slick-slide {
    height: auto; }
    .home-hero.slider .slick-slider .slick-slide > div {
      height: 100%; }
  .home-hero.slider .slick-slider img#homePageHero {
    width: 250% !important;
    max-width: unset !important;
    display: block;
    overflow: hidden; }
  .home-hero.slider .slick-slider .home-title {
    position: relative !important;
    display: flex !important; }

.social-icons li {
  margin: 7px 0;
  text-align: left; }
  .social-icons li a {
    background-color: #ffffff;
    margin-left: 0;
    width: 20px;
    height: 20px;
    padding: 1px 0 0 5px;
    border-radius: 10px;
    color: #b1b3b6;
    line-height: 1.3;
    display: inline-block;
    transition: opacity 0.15s cubic-bezier(0.33, 0.66, 0.66, 1); }
    .social-icons li a:hover {
      opacity: 0.7; }
    @media screen and (max-width: 480px) {
      .social-icons li a {
        width: 30px;
        height: 30px;
        padding: 7px 0 0 7px;
        border-radius: 15px; } }
    .social-icons li a:hover {
      background-color: #cccccc;
      color: #f2f2f2; }
    .social-icons li a .icon {
      font-size: 10px;
      line-height: 10px; }
      @media screen and (max-width: 480px) {
        .social-icons li a .icon {
          font-size: 15px;
          line-height: 15px; }
          .social-icons li a .icon.icon-instagram {
            margin-left: 1px; } }
    @media screen and (max-width: 480px) {
      .social-icons li a .sprite.sprite-facebook, .social-icons li a .sprite.sprite-email {
        height: 15px;
        width: 15px;
        background-position: -75px 0; }
      .social-icons li a .sprite.sprite-facebook {
        background-position: -90px 0; } }
#SocialShare.product .social-icons {
  margin-bottom: 0; }
  #SocialShare.product .social-icons li a {
    width: 26px;
    height: 26px;
    padding: 6px 0 0 7px; }
    #SocialShare.product .social-icons li a .icon {
      font-size: 12px;
      line-height: 12px;
      margin-top: 1px; }
      @media screen and (-moz-images-in-menus: 0) {
        #SocialShare.product .social-icons li a .icon {
          margin-top: 0px; } }
    #SocialShare.product .social-icons li a .sprite.sprite-email,
    #SocialShare.product .social-icons li a .sprite.sprite-facebook {
      background-position: -180px 0;
      width: 12px;
      height: 12px;
      margin-bottom: -2px; }
    #SocialShare.product .social-icons li a .sprite.sprite-facebook {
      background-position: -192px 0; }
    #SocialShare.product .social-icons li a.facebook:hover .sprite.sprite-facebook {
      background-position: -72px 0; }
    #SocialShare.product .social-icons li a.email:hover .sprite.sprite-email {
      background-position: -60px 0; }
  @media screen and (max-width: 480px) {
    #quickview #SocialShare.product .social-icons li {
      margin-right: 0;
      margin-left: 2px; } }
  @media screen and (max-width: 330px) {
    #quickview #SocialShare.product .social-icons li {
      margin-right: 6px;
      margin-left: 6px; } }
#SocialShare.story .social-icons li:first-child {
  text-transform: uppercase;
  font-size: 0.85em;
  margin-top: 7px; }
#SocialShare.story .social-icons li {
  margin-right: 10px; }
  #SocialShare.story .social-icons li a {
    background-color: transparent;
    color: #bfbfbf;
    width: auto;
    height: auto; }
    #SocialShare.story .social-icons li a .icon {
      font-size: 19px; }
    #SocialShare.story .social-icons li a .sprite.sprite-email,
    #SocialShare.story .social-icons li a .sprite.sprite-facebook {
      background-position: -240px 0;
      width: 16px;
      height: 16px; }
    #SocialShare.story .social-icons li a .sprite.sprite-facebook {
      background-position: -256px 0; }

#SocialShare.product {
  margin-top: 15px; }
  #SocialShare.product label {
    color: #b1b3b6;
    float: left;
    margin-top: 14px;
    margin-right: 10px; }

.social-share {
  cursor: pointer;
  bottom: 0;
  position: absolute;
  right: 0;
  z-index: 10; }
  .social-share .story {
    position: absolute;
    width: 210px;
    background-color: #ffffff;
    right: 0;
    top: -10px;
    padding: 5px 0 5px 5px;
    border: 1px solid #dfdfdf;
    display: none; }
    @media screen and (max-width: 799px) {
      .social-share .story {
        width: 230px; } }
  .social-share ul {
    margin: 0; }
  .social-share li:first-child {
    display: none; }
  .social-share.active .story, .social-share:hover .story {
    display: block; }

@media screen and (max-width: 799px) {
  .template-collection #PageContainer #hero.handle-the-zipper-crossbody > img {
    max-width: inherit;
    width: 160%;
    margin-left: -60%; } }
.template-collection #PageContainer #hero.handle-the-zipper-crossbody .title {
  text-align: left;
  margin-left: 60px; }
  .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title h1, .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .h1 {
    font-size: 3.2em;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.015em;
    margin: 0 0 20px; }
  .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .h5 {
    font-size: 1.2rem;
    text-transform: none;
    font-family: "poynter-oldstyle-text", Georgia, Times, serif;
    letter-spacing: 0; }
  @media screen and (max-width: 799px) {
    .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title {
      text-align: center;
      margin-left: unset;
      position: relative;
      background-color: transparent; }
      .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .wrapper {
        padding-top: 40px; }
      .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .grid__item, .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title #shopify-product-reviews, .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title #aboutTLFeatures .header, #aboutTLFeatures .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .header, .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title #aboutTLFeatures .item, #aboutTLFeatures .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .item {
        padding-bottom: 50px;
        border-bottom: 1px solid #acacac; }
      .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title h1, .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .h1,
      .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .h5 {
        color: #000000;
        margin-bottom: 0.25em; }
      .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title h1, .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .h1 {
        font-size: 3em;
        margin: 0 0 10px; }
      .template-collection #PageContainer #hero.handle-the-zipper-crossbody .title .h5 {
        font-size: 1.1rem; } }

#aboutTLFeatures {
  margin-top: 50px; }
  .product-single > div > #aboutTLFeatures {
    display: inherit !important; }
  @media screen and (max-width: 799px) {
    .product-single > div > #aboutTLFeatures {
      display: none !important; }
    main > #aboutTLFeatures {
      display: flex;
      flex-wrap: wrap; } }
  #aboutTLFeatures .header {
    padding-bottom: 15px; }
  #aboutTLFeatures hr {
    margin: 0; }
  #aboutTLFeatures h4, #aboutTLFeatures .h4 {
    padding: 60px 0 0; }
  #aboutTLFeatures .item {
    font-weight: 600; }
    @media screen and (max-width: 799px) {
      #aboutTLFeatures .item {
        margin-bottom: 45px; } }
    #aboutTLFeatures .item img {
      height: 64px;
      margin-bottom: 15px; }

.section-tl-features,
.section-bl-features {
  padding-top: 75px;
  padding-bottom: 75px; }
  .section-tl-features .main-content,
  .section-bl-features .main-content {
    padding-bottom: 0; }
  @media screen and (max-width: 480px) {
    .section-tl-features,
    .section-bl-features {
      padding-top: 35px;
      padding-bottom: 25px; } }

.tl-features,
.bl-features {
  display: flex;
  align-items: flex-start;
  justify-content: center; }
  .main-content .tl-features, .template-product .tl-features, .main-content
  .bl-features, .template-product
  .bl-features {
    flex-wrap: wrap; }
  .tl-features > div,
  .bl-features > div {
    text-align: center;
    padding: 0 clamp(10px, 3%, 50px); }
    .tl-features > div.title,
    .bl-features > div.title {
      margin-bottom: 90px; }
      .tl-features > div.title h5, .tl-features > div.title .h5,
      .bl-features > div.title h5,
      .bl-features > div.title .h5 {
        margin-bottom: 30px; }
    .tl-features > div svg,
    .bl-features > div svg {
      height: 70px;
      width: 80px;
      margin-bottom: 20px; }
      .tl-features > div svg path,
      .bl-features > div svg path {
        stroke-width: 0.7px; }
      .tl-features > div svg.icon-biodegradation path,
      .bl-features > div svg.icon-biodegradation path {
        stroke-width: 1.6px; }
    .tl-features > div img,
    .bl-features > div img {
      height: 60px;
      margin-bottom: 40px; }
    .tl-features > div h1, .tl-features > div .h1,
    .bl-features > div h1,
    .bl-features > div .h1 {
      margin: 0; }
      @media screen and (max-width: 370px) {
        .tl-features > div h1, .tl-features > div .h1,
        .bl-features > div h1,
        .bl-features > div .h1 {
          font-size: 3.4em; } }
    .tl-features > div p,
    .bl-features > div p {
      line-height: 1.3;
      width: 100%; }
  @media screen and (max-width: 480px) {
    .tl-features > div.title,
    .bl-features > div.title {
      margin-bottom: 50px; }
      .tl-features > div.title h2 br, .tl-features > div.title .h2 br, .tl-features > div.title .reviewsContainer .spr-header-title br, .reviewsContainer .tl-features > div.title .spr-header-title br,
      .bl-features > div.title h2 br,
      .bl-features > div.title .h2 br,
      .bl-features > div.title .reviewsContainer .spr-header-title br,
      .reviewsContainer .bl-features > div.title .spr-header-title br {
        display: none; }
    .tl-features > div,
    .bl-features > div {
      padding: 0 clamp(10px, 3%, 50px) 0 40px; }
    .tl-features .one-quarter,
    .bl-features .one-quarter {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px; }
      .tl-features .one-quarter.push--small--one-twelfth,
      .bl-features .one-quarter.push--small--one-twelfth {
        left: 8.333%; }
      .tl-features .one-quarter.push--small--three-twelfths,
      .bl-features .one-quarter.push--small--three-twelfths {
        left: calc(25% + 15px); }
      .tl-features .one-quarter svg,
      .tl-features .one-quarter img,
      .bl-features .one-quarter svg,
      .bl-features .one-quarter img {
        height: 40px;
        margin-bottom: 20px; }
      .tl-features .one-quarter p,
      .bl-features .one-quarter p {
        border-top: 1px solid black;
        flex-grow: 1;
        padding-top: 15px; } }
  @media screen and (min-width: 800px) {
    .tl-features,
    .bl-features {
      justify-content: center;
      margin-bottom: 45px; } }

@media screen and (min-width: 800px) {
  .tl-features > div p > br {
    display: none; } }

.yt-player.video-wrapper {
  padding: 56% 0 0 0;
  position: relative;
  max-width: unset;
  width: unset;
  height: 100%; }
  .yt-player.video-wrapper.is-mobile {
    padding: 163.47% 0 0 0; }
  @media screen and (max-width: 600px) {
    .yt-player.video-wrapper {
      padding: 163.47% 0 0 0; } }
  .yt-player.video-wrapper .video-wrapper {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%; }
  .yt-player.video-wrapper iframe {
    height: calc(100% + 404px) !important;
    margin-top: -202px !important; }
  .page-liquidplant .yt-player.video-wrapper iframe {
    height: calc(100% + 200px) !important;
    margin-top: -100px;
    opacity: 0;
    transition: opacity 250ms; }

.simple-video-player .home-title {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.video-player .video-wrapper {
  width: 100%;
  padding: 52.73% 0 0 0;
  position: relative; }
  .video-player .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .video-player .video-wrapper:before {
    content: '';
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center 40%;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.30;
    transition: background-color 500ms, opacity 500ms; }
    .video-player .video-wrapper:before:hover {
      opacity: 1 !important; }
    #ProductThumbs .video-player .video-wrapper:before {
      opacity: 1 !important;
      background-size: 25%; }
    .video-player .video-wrapper:before svg {
      fill: black; }
    @media screen and (max-width: 480px) {
      .video-player .video-wrapper:before {
        background-size: 20%; } }
.video-player.active .video-wrapper:before {
  opacity: 0.6; }
.video-player.playing .video-wrapper:before {
  opacity: 0; }
@media screen and (min-width: 800px) {
  .video-player:hover .video-wrapper:before, .video-player:active .video-wrapper:before {
    opacity: 0.6; }
  .video-player.playing .video-wrapper:not(:hover):before {
    opacity: 0; } }
#ProductThumbs .video-player {
  margin: 0 -55%; }

.template-product #ProductThumbs .thumb-slide.video-slide {
  overflow: hidden;
  opacity: 0.5; }
  .template-product #ProductThumbs .thumb-slide.video-slide:hover {
    opacity: 1; }
  .template-product #ProductThumbs .thumb-slide.video-slide .video-player {
    /*width: 100%;*/
    /*padding: 52.73% 0 0 0;*/
    padding: 102.73% 0 0 0;
    position: relative; }
    .template-product #ProductThumbs .thumb-slide.video-slide .video-player .video-wrapper {
      width: 100%;
      position: absolute;
      height: 100%;
      top: 0;
      left: 0; }
    .template-product #ProductThumbs .thumb-slide.video-slide .video-player > .video-wrapper,
    .template-product #ProductThumbs .thumb-slide.video-slide .video-player > iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-container-wrapper {
  padding: 45px; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-close-btn-wrapper .yotpo-close-button {
  top: 3px;
  right: 10px;
  color: #000000b0;
  line-height: 1; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-close-btn-wrapper .yotpo-close-button:before {
  content: '×';
  font-size: 45px;
  font-weight: 100; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-close-btn-wrapper svg.yotpo-close-icon {
  display: none; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-customized-text.yotpo-title-text:before {
  content: 'von Holzhausen';
  display: -webkit-box;
  margin: 12% auto 17%;
  width: 80%;
  background: url(https://cdn.shopify.com/s/files/1/0996/2856/t/69/assets/logo.png?v=1093013…);
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
  height: 20%; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-customized-text.yotpo-title-text {
  text-align: center !important;
  margin-bottom: 60px; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-customized-text.yotpo-description-text {
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
  font-family: proxima-nova, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 12.39px !important;
  line-height: 146%;
  text-align: center !important; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-coupon-container {
  padding: 17px 20px 17px 30px !important;
  border-radius: 0;
  border: none !important;
  height: 60px; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-copy-code-text {
  font-size: 14px !important;
  letter-spacing: 0.1em; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-start-button {
  margin-top: 15px; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-start-button .yotpo-button-style {
  height: 60px;
  background-color: #000000; }
.yotpo-widget-referred-friend.yotpo-widget-override-css span.yopto-widget-button-text.yotpo-pointer-cursor {
  padding: 18px 40px !important;
  font-family: proxima-nova, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif !important;
  font-size: calc(.8em * 0.983) !important;
  letter-spacing: .06em;
  text-transform: uppercase; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-error-message-icon {
  display: none; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-error-message-text {
  color: #000000;
  font-family: proxima-nova, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 500; }
.yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-is-mobile .yotpo-customized-text.yotpo-title-text {
  margin-bottom: 50px; }
  .yotpo-widget-referred-friend.yotpo-widget-override-css .yotpo-is-mobile .yotpo-customized-text.yotpo-title-text:before {
    margin: 0 auto 40px; }

/* @import 'components/abandoned-cart-popup.scss'; */
.shopify-section.content-grid-section .home-page-hero.desktop {
  display: block; }
.shopify-section.content-grid-section .home-page-hero-mobile {
  display: none; }
.shopify-section.content-grid-section .home-title.position-middle {
  position: absolute;
  top: 0;
  left: 30px;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center; }
@media screen and (max-width: 480px) {
  .shopify-section.content-grid-section .home-page-hero.desktop {
    display: none; }
  .shopify-section.content-grid-section .home-page-hero-mobile {
    display: block; } }

.hero-text-slider {
  padding-top: 190px;
  padding-bottom: 85px; }
  .hero-text-slider .text {
    margin: 0 auto 50px;
    max-width: 920px;
    padding: 0 5% 0; }
    .hero-text-slider .text p {
      line-height: 1.9; }
  .hero-text-slider img {
    height: auto;
    transform: translate3d(0, 0, 0); }
    @media screen and (max-width: 480px) {
      .hero-text-slider img {
        padding: 0 4em; } }
  .hero-text-slider .btn, .hero-text-slider .btn--secondary, .hero-text-slider .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .hero-text-slider .spr-summary-actions-newreview, .hero-text-slider .btn--alt {
    margin-bottom: 1px; }
  .hero-text-slider .slick-slider {
    margin: 20px 0 100px; }
    .hero-text-slider .slick-slider:not(.slick-initialized) > div:not(:first-child), .hero-text-slider .slick-slider.slick-loading .slick-track {
      display: none; }
  .hero-text-slider .slick-track {
    display: flex;
    align-items: center; }
  .hero-text-slider .slick-arrow {
    background: transparent;
    padding-bottom: 80px; }
    .hero-text-slider .slick-arrow.slick-prev {
      left: 10px; }
    .hero-text-slider .slick-arrow.slick-next {
      right: 10px; }
  .hero-text-slider .slick-dots {
    margin: 0 auto -30px;
    padding-right: 30px; }
  @media screen and (max-width: 480px) {
    .hero-text-slider {
      padding-top: 75px;
      padding-bottom: 105px; }
      .hero-text-slider .text p {
        font-size: 1.3em;
        line-height: 1.5; }
      .hero-text-slider .slick-slider {
        margin: 0 0 15px; }
        .hero-text-slider .slick-slider .slick-list {
          margin: 0 30px 0 30px; }
      .hero-text-slider .slick-arrow.slick-prev {
        left: 15px; }
      .hero-text-slider .slick-arrow.slick-next {
        right: -15px; } }

.home-hero {
  position: relative;
  line-height: 0; }
  @media screen and (max-width: 799px) {
    .home-hero {
      overflow: hidden;
      width: 100%; }
      .home-hero.image_extra_wide .content > img {
        margin-top: -90px !important;
        width: 230% !important; }
      .home-hero.image_wider2 .content > img {
        margin-top: -10px !important;
        width: 200% !important; }
      .home-hero.image_wider .content > img {
        margin-top: -10px !important;
        width: 190% !important; }
      .home-hero.image_wide .content > img {
        margin-top: -10px !important;
        width: 170% !important; }
      .home-hero.image_smaller .content > img {
        width: 120% !important; }
      .home-hero.image_smallest .content > img {
        width: 100% !important; } }
  .home-hero .content > .mobile-images.buttons {
    margin-bottom: 58px; }
  .home-hero .content > img,
  .home-hero .content > .mobile-images > img,
  .home-hero .content > a > img,
  .home-hero .content .slick-slide > div > img {
    width: 100%; }
    .home-hero .content > img#homePageHeroMobile, .home-hero .content > img#homePageHeroMobile2,
    .home-hero .content > .mobile-images > img#homePageHeroMobile,
    .home-hero .content > .mobile-images > img#homePageHeroMobile2,
    .home-hero .content > a > img#homePageHeroMobile,
    .home-hero .content > a > img#homePageHeroMobile2,
    .home-hero .content .slick-slide > div > img#homePageHeroMobile,
    .home-hero .content .slick-slide > div > img#homePageHeroMobile2 {
      display: none; }
    @media screen and (max-width: 480px) {
      .home-hero .content > img,
      .home-hero .content > .mobile-images > img,
      .home-hero .content > a > img,
      .home-hero .content .slick-slide > div > img {
        max-width: inherit; }
        .home-hero .content > img#homePageHero,
        .home-hero .content > .mobile-images > img#homePageHero,
        .home-hero .content > a > img#homePageHero,
        .home-hero .content .slick-slide > div > img#homePageHero {
          width: 150%; }
        .home-hero .content > img.desktop,
        .home-hero .content > .mobile-images > img.desktop,
        .home-hero .content > a > img.desktop,
        .home-hero .content .slick-slide > div > img.desktop {
          display: none; }
        .home-hero .content > img#homePageHeroMobile, .home-hero .content > img#homePageHeroMobile2,
        .home-hero .content > .mobile-images > img#homePageHeroMobile,
        .home-hero .content > .mobile-images > img#homePageHeroMobile2,
        .home-hero .content > a > img#homePageHeroMobile,
        .home-hero .content > a > img#homePageHeroMobile2,
        .home-hero .content .slick-slide > div > img#homePageHeroMobile,
        .home-hero .content .slick-slide > div > img#homePageHeroMobile2 {
          display: block; }
        .home-hero .content > img.align-0,
        .home-hero .content > .mobile-images > img.align-0,
        .home-hero .content > a > img.align-0,
        .home-hero .content .slick-slide > div > img.align-0 {
          margin-left: 0%; }
        .home-hero .content > img.align-10,
        .home-hero .content > .mobile-images > img.align-10,
        .home-hero .content > a > img.align-10,
        .home-hero .content .slick-slide > div > img.align-10 {
          margin-left: -10%; }
        .home-hero .content > img.align-20,
        .home-hero .content > .mobile-images > img.align-20,
        .home-hero .content > a > img.align-20,
        .home-hero .content .slick-slide > div > img.align-20 {
          margin-left: -20%; }
        .home-hero .content > img.align-30,
        .home-hero .content > .mobile-images > img.align-30,
        .home-hero .content > a > img.align-30,
        .home-hero .content .slick-slide > div > img.align-30 {
          margin-left: -30%; }
        .home-hero .content > img.align-40,
        .home-hero .content > .mobile-images > img.align-40,
        .home-hero .content > a > img.align-40,
        .home-hero .content .slick-slide > div > img.align-40 {
          margin-left: -40%; }
        .home-hero .content > img.align-50,
        .home-hero .content > .mobile-images > img.align-50,
        .home-hero .content > a > img.align-50,
        .home-hero .content .slick-slide > div > img.align-50 {
          margin-left: -50%; }
        .home-hero .content > img.align-60,
        .home-hero .content > .mobile-images > img.align-60,
        .home-hero .content > a > img.align-60,
        .home-hero .content .slick-slide > div > img.align-60 {
          margin-left: -60%; }
        .home-hero .content > img.align-70,
        .home-hero .content > .mobile-images > img.align-70,
        .home-hero .content > a > img.align-70,
        .home-hero .content .slick-slide > div > img.align-70 {
          margin-left: -70%; }
        .home-hero .content > img.align-80,
        .home-hero .content > .mobile-images > img.align-80,
        .home-hero .content > a > img.align-80,
        .home-hero .content .slick-slide > div > img.align-80 {
          margin-left: -80%; }
        .home-hero .content > img.align-90,
        .home-hero .content > .mobile-images > img.align-90,
        .home-hero .content > a > img.align-90,
        .home-hero .content .slick-slide > div > img.align-90 {
          margin-left: -90%; }
        .home-hero .content > img.align-100,
        .home-hero .content > .mobile-images > img.align-100,
        .home-hero .content > a > img.align-100,
        .home-hero .content .slick-slide > div > img.align-100 {
          margin-left: -100%; }
        .home-hero .content > img.align-110,
        .home-hero .content > .mobile-images > img.align-110,
        .home-hero .content > a > img.align-110,
        .home-hero .content .slick-slide > div > img.align-110 {
          margin-left: -110%; }
        .home-hero .content > img.align-120,
        .home-hero .content > .mobile-images > img.align-120,
        .home-hero .content > a > img.align-120,
        .home-hero .content .slick-slide > div > img.align-120 {
          margin-left: -120%; }
        .home-hero .content > img.align-130,
        .home-hero .content > .mobile-images > img.align-130,
        .home-hero .content > a > img.align-130,
        .home-hero .content .slick-slide > div > img.align-130 {
          margin-left: -130%; } }
    @media screen and (min-width: 480px) and (max-width: 799px) {
      .home-hero .content > img,
      .home-hero .content > .mobile-images > img,
      .home-hero .content > a > img,
      .home-hero .content .slick-slide > div > img {
        width: 125%;
        max-width: inherit; }
        .home-hero .content > img.desktop,
        .home-hero .content > .mobile-images > img.desktop,
        .home-hero .content > a > img.desktop,
        .home-hero .content .slick-slide > div > img.desktop {
          display: none; }
        .home-hero .content > img#homePageHeroMobile,
        .home-hero .content > .mobile-images > img#homePageHeroMobile,
        .home-hero .content > a > img#homePageHeroMobile,
        .home-hero .content .slick-slide > div > img#homePageHeroMobile {
          display: block; }
        .home-hero .content > img.align-0,
        .home-hero .content > .mobile-images > img.align-0,
        .home-hero .content > a > img.align-0,
        .home-hero .content .slick-slide > div > img.align-0 {
          margin-left: 0%; }
        .home-hero .content > img.align-10,
        .home-hero .content > .mobile-images > img.align-10,
        .home-hero .content > a > img.align-10,
        .home-hero .content .slick-slide > div > img.align-10 {
          margin-left: -5%; }
        .home-hero .content > img.align-20,
        .home-hero .content > .mobile-images > img.align-20,
        .home-hero .content > a > img.align-20,
        .home-hero .content .slick-slide > div > img.align-20 {
          margin-left: -10%; }
        .home-hero .content > img.align-30,
        .home-hero .content > .mobile-images > img.align-30,
        .home-hero .content > a > img.align-30,
        .home-hero .content .slick-slide > div > img.align-30 {
          margin-left: -15%; }
        .home-hero .content > img.align-40,
        .home-hero .content > .mobile-images > img.align-40,
        .home-hero .content > a > img.align-40,
        .home-hero .content .slick-slide > div > img.align-40 {
          margin-left: -20%; }
        .home-hero .content > img.align-50,
        .home-hero .content > .mobile-images > img.align-50,
        .home-hero .content > a > img.align-50,
        .home-hero .content .slick-slide > div > img.align-50 {
          margin-left: -25%; }
        .home-hero .content > img.align-60,
        .home-hero .content > .mobile-images > img.align-60,
        .home-hero .content > a > img.align-60,
        .home-hero .content .slick-slide > div > img.align-60 {
          margin-left: -30%; }
        .home-hero .content > img.align-70,
        .home-hero .content > .mobile-images > img.align-70,
        .home-hero .content > a > img.align-70,
        .home-hero .content .slick-slide > div > img.align-70 {
          margin-left: -35%; }
        .home-hero .content > img.align-80,
        .home-hero .content > .mobile-images > img.align-80,
        .home-hero .content > a > img.align-80,
        .home-hero .content .slick-slide > div > img.align-80 {
          margin-left: -40%; }
        .home-hero .content > img.align-90,
        .home-hero .content > .mobile-images > img.align-90,
        .home-hero .content > a > img.align-90,
        .home-hero .content .slick-slide > div > img.align-90 {
          margin-left: -45%; }
        .home-hero .content > img.align-100,
        .home-hero .content > .mobile-images > img.align-100,
        .home-hero .content > a > img.align-100,
        .home-hero .content .slick-slide > div > img.align-100 {
          margin-left: -50%; }
        .home-hero .content > img.align-110,
        .home-hero .content > .mobile-images > img.align-110,
        .home-hero .content > a > img.align-110,
        .home-hero .content .slick-slide > div > img.align-110 {
          margin-left: -55%; }
        .home-hero .content > img.align-120,
        .home-hero .content > .mobile-images > img.align-120,
        .home-hero .content > a > img.align-120,
        .home-hero .content .slick-slide > div > img.align-120 {
          margin-left: -60%; }
        .home-hero .content > img.align-130,
        .home-hero .content > .mobile-images > img.align-130,
        .home-hero .content > a > img.align-130,
        .home-hero .content .slick-slide > div > img.align-130 {
          margin-left: -65%; } }
  .home-hero .content h1.small, .home-hero .content .small.h1,
  .home-hero .content h2.small,
  .home-hero .content .small.h2,
  .home-hero .content .reviewsContainer .small.spr-header-title,
  .reviewsContainer .home-hero .content .small.spr-header-title {
    max-width: 950px;
    margin: 0 auto 0.7em;
    padding: 0 20px; }
    @media screen and (max-width: 799px) {
      .home-hero .content h1.small, .home-hero .content .small.h1,
      .home-hero .content h2.small,
      .home-hero .content .small.h2,
      .home-hero .content .reviewsContainer .small.spr-header-title,
      .reviewsContainer .home-hero .content .small.spr-header-title {
        max-width: 100%; } }
    @media screen and (min-width: 800px) and (max-width: 1100px) {
      .home-hero .content h1.small, .home-hero .content .small.h1,
      .home-hero .content h2.small,
      .home-hero .content .small.h2,
      .home-hero .content .reviewsContainer .small.spr-header-title,
      .reviewsContainer .home-hero .content .small.spr-header-title {
        font-size: 1.7em; } }
  .home-hero .content h1.serif, .home-hero .content .serif.h1, .home-hero .content #instagram .main-content .grid__item .article-body p.h1, #instagram .main-content .grid__item .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h1, #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h1, #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1, .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h1, #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h1, #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1, .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h1, #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h1,
  .home-hero .content #instagram .main-content .grid__item .article-body li.h1,
  #instagram .main-content .grid__item .article-body .home-hero .content li.h1,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h1,
  #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h1,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h1,
  #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h1,
  #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h1,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h1,
  #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h1,
  #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content .grid__item .article-body p.h1,
  .template-article .main-content .grid__item .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h1,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h1,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h1,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h1,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h1,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content .grid__item .article-body li.h1,
  .template-article .main-content .grid__item .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h1,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h1,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h1,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h1,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h1,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h1, .home-hero .content .hero-text-slider .text p.h1, .hero-text-slider .text .home-hero .content p.h1,
  .home-hero .content h2.serif,
  .home-hero .content .serif.h2,
  .home-hero .content #instagram .main-content .grid__item .article-body p.h2,
  #instagram .main-content .grid__item .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h2,
  #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h2,
  #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h2,
  #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h2,
  #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h2,
  #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content .grid__item .article-body li.h2,
  #instagram .main-content .grid__item .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h2,
  #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h2,
  #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h2,
  #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h2,
  #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h2,
  #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content .grid__item .article-body p.h2,
  .template-article .main-content .grid__item .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h2,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h2,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h2,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h2,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h2,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content .grid__item .article-body li.h2,
  .template-article .main-content .grid__item .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h2,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h2,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h2,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h2,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h2,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .serif.spr-header-title,
  .reviewsContainer .home-hero .content .serif.spr-header-title,
  .home-hero .content .reviewsContainer .hero-text-slider .text p.spr-header-title,
  .reviewsContainer .hero-text-slider .text .home-hero .content p.spr-header-title,
  .home-hero .content .hero-text-slider .text .reviewsContainer p.spr-header-title,
  .hero-text-slider .text .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .hero-text-slider .text p.h2,
  .hero-text-slider .text .home-hero .content p.h2 {
    font-family: "Times New Roman", Times, serif; }
  .home-hero .content h1.serif, .home-hero .content .serif.h1, .home-hero .content #instagram .main-content .grid__item .article-body p.h1, #instagram .main-content .grid__item .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h1, #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h1, #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1, .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h1, #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h1, #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1, .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h1, #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h1,
  .home-hero .content #instagram .main-content .grid__item .article-body li.h1,
  #instagram .main-content .grid__item .article-body .home-hero .content li.h1,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h1,
  #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h1,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h1,
  #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h1,
  #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h1,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h1,
  #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h1,
  #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content .grid__item .article-body p.h1,
  .template-article .main-content .grid__item .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h1,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h1,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h1,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h1,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h1,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h1,
  .home-hero .content .template-article .main-content .grid__item .article-body li.h1,
  .template-article .main-content .grid__item .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h1,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h1,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h1,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h1,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h1,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h1,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h1, .home-hero .content .hero-text-slider .text p.h1, .hero-text-slider .text .home-hero .content p.h1, .home-hero .content h1.butler, .home-hero .content .butler.h1, .home-hero .content .shopify-challenge__container .h1.shopify-challenge__message, .shopify-challenge__container .home-hero .content .h1.shopify-challenge__message, .home-hero .content .reviewsContainer .h1.spr-header-title, .reviewsContainer .home-hero .content .h1.spr-header-title, .home-hero .content .reviewsContainer .h1.spr-summary-actions-togglereviews, .reviewsContainer .home-hero .content .h1.spr-summary-actions-togglereviews, .home-hero .content .reviewsContainer .h1.spr-review-header-title, .reviewsContainer .home-hero .content .h1.spr-review-header-title, .home-hero .content .shopify-challenge__container h1.shopify-challenge__message, .shopify-challenge__container .home-hero .content h1.shopify-challenge__message, .home-hero .content .reviewsContainer h1.spr-header-title, .reviewsContainer .home-hero .content h1.spr-header-title, .home-hero .content .reviewsContainer h1.spr-summary-actions-togglereviews, .reviewsContainer .home-hero .content h1.spr-summary-actions-togglereviews, .home-hero .content .reviewsContainer h1.spr-review-header-title, .reviewsContainer .home-hero .content h1.spr-review-header-title,
  .home-hero .content h2.serif,
  .home-hero .content .serif.h2,
  .home-hero .content #instagram .main-content .grid__item .article-body p.h2,
  #instagram .main-content .grid__item .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h2,
  #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h2,
  #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h2,
  #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h2,
  #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h2,
  #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h2,
  .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title,
  #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body p.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #instagram .main-content .grid__item .article-body li.h2,
  #instagram .main-content .grid__item .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h2,
  #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h2,
  #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h2,
  #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h2,
  #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h2,
  #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h2,
  .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title,
  #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body li.spr-header-title,
  .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content .grid__item .article-body p.h2,
  .template-article .main-content .grid__item .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h2,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h2,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h2,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h2,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h2,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h2,
  .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title,
  .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body p.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer p.spr-header-title,
  #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body p.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.spr-header-title,
  .home-hero .content .template-article .main-content .grid__item .article-body li.h2,
  .template-article .main-content .grid__item .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h2,
  .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h2,
  .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h2,
  #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h2,
  .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h2,
  #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h2,
  .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title,
  .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body li.spr-header-title,
  .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer li.spr-header-title,
  #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body li.spr-header-title,
  .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.spr-header-title,
  .home-hero .content .reviewsContainer .serif.spr-header-title,
  .reviewsContainer .home-hero .content .serif.spr-header-title,
  .home-hero .content .reviewsContainer .hero-text-slider .text p.spr-header-title,
  .reviewsContainer .hero-text-slider .text .home-hero .content p.spr-header-title,
  .home-hero .content .hero-text-slider .text .reviewsContainer p.spr-header-title,
  .hero-text-slider .text .reviewsContainer .home-hero .content p.spr-header-title,
  .home-hero .content .hero-text-slider .text p.h2,
  .hero-text-slider .text .home-hero .content p.h2,
  .home-hero .content h2.butler,
  .home-hero .content .butler.h2,
  .home-hero .content .shopify-challenge__container .h2.shopify-challenge__message,
  .shopify-challenge__container .home-hero .content .h2.shopify-challenge__message,
  .home-hero .content .reviewsContainer .spr-header-title,
  .reviewsContainer .home-hero .content .spr-header-title,
  .home-hero .content .reviewsContainer .h2.spr-summary-actions-togglereviews,
  .reviewsContainer .home-hero .content .h2.spr-summary-actions-togglereviews,
  .home-hero .content .reviewsContainer .h2.spr-review-header-title,
  .reviewsContainer .home-hero .content .h2.spr-review-header-title,
  .home-hero .content .shopify-challenge__container h2.shopify-challenge__message,
  .shopify-challenge__container .home-hero .content h2.shopify-challenge__message,
  .home-hero .content .reviewsContainer h2.spr-summary-actions-togglereviews,
  .reviewsContainer .home-hero .content h2.spr-summary-actions-togglereviews,
  .home-hero .content .reviewsContainer h2.spr-review-header-title,
  .reviewsContainer .home-hero .content h2.spr-review-header-title {
    max-width: 100%;
    text-transform: none;
    line-height: 1.25;
    margin-bottom: 0; }
    .home-hero .content h1.serif span, .home-hero .content .serif.h1 span, .home-hero .content #instagram .main-content .grid__item .article-body p.h1 span, #instagram .main-content .grid__item .article-body .home-hero .content p.h1 span, .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h1 span, #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h1 span, .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h1 span, #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1 span, .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h1 span, #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h1 span, .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h1 span, #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1 span, .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h1 span, #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h1 span,
    .home-hero .content #instagram .main-content .grid__item .article-body li.h1 span,
    #instagram .main-content .grid__item .article-body .home-hero .content li.h1 span,
    .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h1 span,
    #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h1 span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h1 span,
    #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1 span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h1 span,
    #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h1 span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h1 span,
    #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1 span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h1 span,
    #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h1 span,
    .home-hero .content .template-article .main-content .grid__item .article-body p.h1 span,
    .template-article .main-content .grid__item .article-body .home-hero .content p.h1 span,
    .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h1 span,
    .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h1 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h1 span,
    .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h1 span,
    #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h1 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h1 span,
    .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h1 span,
    #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h1 span,
    .home-hero .content .template-article .main-content .grid__item .article-body li.h1 span,
    .template-article .main-content .grid__item .article-body .home-hero .content li.h1 span,
    .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h1 span,
    .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h1 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h1 span,
    .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h1 span,
    #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h1 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h1 span,
    .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h1 span,
    #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h1 span, .home-hero .content .hero-text-slider .text p.h1 span, .hero-text-slider .text .home-hero .content p.h1 span, .home-hero .content h1.butler span, .home-hero .content .butler.h1 span, .home-hero .content .shopify-challenge__container .h1.shopify-challenge__message span, .shopify-challenge__container .home-hero .content .h1.shopify-challenge__message span, .home-hero .content .reviewsContainer .h1.spr-header-title span, .reviewsContainer .home-hero .content .h1.spr-header-title span, .home-hero .content .reviewsContainer .h1.spr-summary-actions-togglereviews span, .reviewsContainer .home-hero .content .h1.spr-summary-actions-togglereviews span, .home-hero .content .reviewsContainer .h1.spr-review-header-title span, .reviewsContainer .home-hero .content .h1.spr-review-header-title span, .home-hero .content .shopify-challenge__container h1.shopify-challenge__message span, .shopify-challenge__container .home-hero .content h1.shopify-challenge__message span, .home-hero .content .reviewsContainer h1.spr-header-title span, .reviewsContainer .home-hero .content h1.spr-header-title span, .home-hero .content .reviewsContainer h1.spr-summary-actions-togglereviews span, .reviewsContainer .home-hero .content h1.spr-summary-actions-togglereviews span, .home-hero .content .reviewsContainer h1.spr-review-header-title span, .reviewsContainer .home-hero .content h1.spr-review-header-title span,
    .home-hero .content h2.serif span,
    .home-hero .content .serif.h2 span,
    .home-hero .content #instagram .main-content .grid__item .article-body p.h2 span,
    #instagram .main-content .grid__item .article-body .home-hero .content p.h2 span,
    .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h2 span,
    #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h2 span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h2 span,
    #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2 span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h2 span,
    #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h2 span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h2 span,
    #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2 span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h2 span,
    #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h2 span,
    .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer p.spr-header-title span,
    #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body p.spr-header-title span,
    .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title span,
    #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body p.spr-header-title span,
    .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title span,
    #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body p.spr-header-title span,
    .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer p.spr-header-title span,
    #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body p.spr-header-title span,
    .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title span,
    #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body p.spr-header-title span,
    .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer p.spr-header-title span,
    #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body p.spr-header-title span,
    .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #instagram .main-content .grid__item .article-body li.h2 span,
    #instagram .main-content .grid__item .article-body .home-hero .content li.h2 span,
    .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h2 span,
    #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h2 span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h2 span,
    #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2 span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h2 span,
    #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h2 span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h2 span,
    #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2 span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h2 span,
    #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h2 span,
    .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer li.spr-header-title span,
    #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body li.spr-header-title span,
    .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title span,
    #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body li.spr-header-title span,
    .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title span,
    #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body li.spr-header-title span,
    .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer li.spr-header-title span,
    #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body li.spr-header-title span,
    .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title span,
    #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body li.spr-header-title span,
    .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer li.spr-header-title span,
    #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body li.spr-header-title span,
    .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content .template-article .main-content .grid__item .article-body p.h2 span,
    .template-article .main-content .grid__item .article-body .home-hero .content p.h2 span,
    .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h2 span,
    .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h2 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h2 span,
    .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h2 span,
    #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h2 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h2 span,
    .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h2 span,
    #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h2 span,
    .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer p.spr-header-title span,
    .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body p.spr-header-title span,
    .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title span,
    .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body p.spr-header-title span,
    .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title span,
    .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body p.spr-header-title span,
    .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer p.spr-header-title span,
    #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body p.spr-header-title span,
    .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title span,
    .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body p.spr-header-title span,
    .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer p.spr-header-title span,
    #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body p.spr-header-title span,
    .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.spr-header-title span,
    .home-hero .content .template-article .main-content .grid__item .article-body li.h2 span,
    .template-article .main-content .grid__item .article-body .home-hero .content li.h2 span,
    .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h2 span,
    .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h2 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h2 span,
    .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h2 span,
    #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h2 span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h2 span,
    .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2 span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h2 span,
    #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h2 span,
    .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer li.spr-header-title span,
    .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body li.spr-header-title span,
    .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title span,
    .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body li.spr-header-title span,
    .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title span,
    .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body li.spr-header-title span,
    .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer li.spr-header-title span,
    #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body li.spr-header-title span,
    .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title span,
    .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body li.spr-header-title span,
    .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer li.spr-header-title span,
    #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body li.spr-header-title span,
    .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.spr-header-title span,
    .home-hero .content .reviewsContainer .serif.spr-header-title span,
    .reviewsContainer .home-hero .content .serif.spr-header-title span,
    .home-hero .content .reviewsContainer .hero-text-slider .text p.spr-header-title span,
    .reviewsContainer .hero-text-slider .text .home-hero .content p.spr-header-title span,
    .home-hero .content .hero-text-slider .text .reviewsContainer p.spr-header-title span,
    .hero-text-slider .text .reviewsContainer .home-hero .content p.spr-header-title span,
    .home-hero .content .hero-text-slider .text p.h2 span,
    .hero-text-slider .text .home-hero .content p.h2 span,
    .home-hero .content h2.butler span,
    .home-hero .content .butler.h2 span,
    .home-hero .content .shopify-challenge__container .h2.shopify-challenge__message span,
    .shopify-challenge__container .home-hero .content .h2.shopify-challenge__message span,
    .home-hero .content .reviewsContainer .spr-header-title span,
    .reviewsContainer .home-hero .content .spr-header-title span,
    .home-hero .content .reviewsContainer .h2.spr-summary-actions-togglereviews span,
    .reviewsContainer .home-hero .content .h2.spr-summary-actions-togglereviews span,
    .home-hero .content .reviewsContainer .h2.spr-review-header-title span,
    .reviewsContainer .home-hero .content .h2.spr-review-header-title span,
    .home-hero .content .shopify-challenge__container h2.shopify-challenge__message span,
    .shopify-challenge__container .home-hero .content h2.shopify-challenge__message span,
    .home-hero .content .reviewsContainer h2.spr-summary-actions-togglereviews span,
    .reviewsContainer .home-hero .content h2.spr-summary-actions-togglereviews span,
    .home-hero .content .reviewsContainer h2.spr-review-header-title span,
    .reviewsContainer .home-hero .content h2.spr-review-header-title span {
      line-height: 2; }
    @media screen and (max-width: 799px) {
      .home-hero .content h1.serif, .home-hero .content .serif.h1, .home-hero .content #instagram .main-content .grid__item .article-body p.h1, #instagram .main-content .grid__item .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h1, #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h1, #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1, .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h1, #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h1, .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h1, #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1, .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h1, #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h1,
      .home-hero .content #instagram .main-content .grid__item .article-body li.h1,
      #instagram .main-content .grid__item .article-body .home-hero .content li.h1,
      .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h1,
      #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h1,
      .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h1,
      #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1,
      .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h1,
      #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h1,
      .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h1,
      #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1,
      .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h1,
      #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h1,
      .home-hero .content .template-article .main-content .grid__item .article-body p.h1,
      .template-article .main-content .grid__item .article-body .home-hero .content p.h1,
      .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h1,
      .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h1,
      .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h1,
      .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h1,
      .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h1,
      #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h1,
      .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h1,
      .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h1,
      .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h1,
      #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h1,
      .home-hero .content .template-article .main-content .grid__item .article-body li.h1,
      .template-article .main-content .grid__item .article-body .home-hero .content li.h1,
      .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h1,
      .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h1,
      .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h1,
      .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h1,
      .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h1,
      #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h1,
      .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h1,
      .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h1,
      .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h1,
      #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h1, .home-hero .content .hero-text-slider .text p.h1, .hero-text-slider .text .home-hero .content p.h1, .home-hero .content h1.butler, .home-hero .content .butler.h1, .home-hero .content .shopify-challenge__container .h1.shopify-challenge__message, .shopify-challenge__container .home-hero .content .h1.shopify-challenge__message, .home-hero .content .reviewsContainer .h1.spr-header-title, .reviewsContainer .home-hero .content .h1.spr-header-title, .home-hero .content .reviewsContainer .h1.spr-summary-actions-togglereviews, .reviewsContainer .home-hero .content .h1.spr-summary-actions-togglereviews, .home-hero .content .reviewsContainer .h1.spr-review-header-title, .reviewsContainer .home-hero .content .h1.spr-review-header-title, .home-hero .content .shopify-challenge__container h1.shopify-challenge__message, .shopify-challenge__container .home-hero .content h1.shopify-challenge__message, .home-hero .content .reviewsContainer h1.spr-header-title, .reviewsContainer .home-hero .content h1.spr-header-title, .home-hero .content .reviewsContainer h1.spr-summary-actions-togglereviews, .reviewsContainer .home-hero .content h1.spr-summary-actions-togglereviews, .home-hero .content .reviewsContainer h1.spr-review-header-title, .reviewsContainer .home-hero .content h1.spr-review-header-title,
      .home-hero .content h2.serif,
      .home-hero .content .serif.h2,
      .home-hero .content #instagram .main-content .grid__item .article-body p.h2,
      #instagram .main-content .grid__item .article-body .home-hero .content p.h2,
      .home-hero .content #instagram .main-content #shopify-product-reviews .article-body p.h2,
      #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.h2,
      .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body p.h2,
      #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2,
      .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body p.h2,
      #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.h2,
      .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body p.h2,
      #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2,
      .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body p.h2,
      #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.h2,
      .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer p.spr-header-title,
      #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body p.spr-header-title,
      .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title,
      #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body p.spr-header-title,
      .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title,
      #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body p.spr-header-title,
      .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer p.spr-header-title,
      #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body p.spr-header-title,
      .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title,
      #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body p.spr-header-title,
      .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer p.spr-header-title,
      #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body p.spr-header-title,
      .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #instagram .main-content .grid__item .article-body li.h2,
      #instagram .main-content .grid__item .article-body .home-hero .content li.h2,
      .home-hero .content #instagram .main-content #shopify-product-reviews .article-body li.h2,
      #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.h2,
      .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body li.h2,
      #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2,
      .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body li.h2,
      #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.h2,
      .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body li.h2,
      #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2,
      .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body li.h2,
      #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.h2,
      .home-hero .content #instagram .main-content .grid__item .article-body .reviewsContainer li.spr-header-title,
      #instagram .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content .grid__item .article-body li.spr-header-title,
      .reviewsContainer #instagram .main-content .grid__item .article-body .home-hero .content li.spr-header-title,
      .home-hero .content #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title,
      #instagram .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body li.spr-header-title,
      .reviewsContainer #instagram .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title,
      .home-hero .content #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title,
      #instagram .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body li.spr-header-title,
      .reviewsContainer #instagram .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title,
      .home-hero .content #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer li.spr-header-title,
      #aboutTLFeatures #instagram .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body li.spr-header-title,
      .reviewsContainer #aboutTLFeatures #instagram .main-content .header .article-body .home-hero .content li.spr-header-title,
      .home-hero .content #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title,
      #instagram .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body li.spr-header-title,
      .reviewsContainer #instagram .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title,
      .home-hero .content #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer li.spr-header-title,
      #aboutTLFeatures #instagram .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body li.spr-header-title,
      .reviewsContainer #aboutTLFeatures #instagram .main-content .item .article-body .home-hero .content li.spr-header-title,
      .home-hero .content .template-article .main-content .grid__item .article-body p.h2,
      .template-article .main-content .grid__item .article-body .home-hero .content p.h2,
      .home-hero .content .template-article .main-content #shopify-product-reviews .article-body p.h2,
      .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.h2,
      .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body p.h2,
      .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.h2,
      .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body p.h2,
      #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.h2,
      .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body p.h2,
      .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.h2,
      .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body p.h2,
      #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.h2,
      .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer p.spr-header-title,
      .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body p.spr-header-title,
      .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content p.spr-header-title,
      .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer p.spr-header-title,
      .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body p.spr-header-title,
      .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content p.spr-header-title,
      .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer p.spr-header-title,
      .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body p.spr-header-title,
      .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer p.spr-header-title,
      #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body p.spr-header-title,
      .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content p.spr-header-title,
      .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer p.spr-header-title,
      .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body p.spr-header-title,
      .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content p.spr-header-title,
      .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer p.spr-header-title,
      #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body p.spr-header-title,
      .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content p.spr-header-title,
      .home-hero .content .template-article .main-content .grid__item .article-body li.h2,
      .template-article .main-content .grid__item .article-body .home-hero .content li.h2,
      .home-hero .content .template-article .main-content #shopify-product-reviews .article-body li.h2,
      .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.h2,
      .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body li.h2,
      .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.h2,
      .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body li.h2,
      #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.h2,
      .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body li.h2,
      .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.h2,
      .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body li.h2,
      #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.h2,
      .home-hero .content .template-article .main-content .grid__item .article-body .reviewsContainer li.spr-header-title,
      .template-article .main-content .grid__item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content .grid__item .article-body li.spr-header-title,
      .reviewsContainer .template-article .main-content .grid__item .article-body .home-hero .content li.spr-header-title,
      .home-hero .content .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer li.spr-header-title,
      .template-article .main-content #shopify-product-reviews .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body li.spr-header-title,
      .reviewsContainer .template-article .main-content #shopify-product-reviews .article-body .home-hero .content li.spr-header-title,
      .home-hero .content .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer li.spr-header-title,
      .template-article .main-content #aboutTLFeatures .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body li.spr-header-title,
      .reviewsContainer .template-article .main-content #aboutTLFeatures .header .article-body .home-hero .content li.spr-header-title,
      .home-hero .content #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer li.spr-header-title,
      #aboutTLFeatures .template-article .main-content .header .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body li.spr-header-title,
      .reviewsContainer #aboutTLFeatures .template-article .main-content .header .article-body .home-hero .content li.spr-header-title,
      .home-hero .content .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer li.spr-header-title,
      .template-article .main-content #aboutTLFeatures .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body li.spr-header-title,
      .reviewsContainer .template-article .main-content #aboutTLFeatures .item .article-body .home-hero .content li.spr-header-title,
      .home-hero .content #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer li.spr-header-title,
      #aboutTLFeatures .template-article .main-content .item .article-body .reviewsContainer .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body li.spr-header-title,
      .reviewsContainer #aboutTLFeatures .template-article .main-content .item .article-body .home-hero .content li.spr-header-title,
      .home-hero .content .reviewsContainer .serif.spr-header-title,
      .reviewsContainer .home-hero .content .serif.spr-header-title,
      .home-hero .content .reviewsContainer .hero-text-slider .text p.spr-header-title,
      .reviewsContainer .hero-text-slider .text .home-hero .content p.spr-header-title,
      .home-hero .content .hero-text-slider .text .reviewsContainer p.spr-header-title,
      .hero-text-slider .text .reviewsContainer .home-hero .content p.spr-header-title,
      .home-hero .content .hero-text-slider .text p.h2,
      .hero-text-slider .text .home-hero .content p.h2,
      .home-hero .content h2.butler,
      .home-hero .content .butler.h2,
      .home-hero .content .shopify-challenge__container .h2.shopify-challenge__message,
      .shopify-challenge__container .home-hero .content .h2.shopify-challenge__message,
      .home-hero .content .reviewsContainer .spr-header-title,
      .reviewsContainer .home-hero .content .spr-header-title,
      .home-hero .content .reviewsContainer .h2.spr-summary-actions-togglereviews,
      .reviewsContainer .home-hero .content .h2.spr-summary-actions-togglereviews,
      .home-hero .content .reviewsContainer .h2.spr-review-header-title,
      .reviewsContainer .home-hero .content .h2.spr-review-header-title,
      .home-hero .content .shopify-challenge__container h2.shopify-challenge__message,
      .shopify-challenge__container .home-hero .content h2.shopify-challenge__message,
      .home-hero .content .reviewsContainer h2.spr-summary-actions-togglereviews,
      .reviewsContainer .home-hero .content h2.spr-summary-actions-togglereviews,
      .home-hero .content .reviewsContainer h2.spr-review-header-title,
      .reviewsContainer .home-hero .content h2.spr-review-header-title {
        margin-bottom: 0.25em; } }
  .home-hero .content h1.butler, .home-hero .content .butler.h1, .home-hero .content .shopify-challenge__container .h1.shopify-challenge__message, .shopify-challenge__container .home-hero .content .h1.shopify-challenge__message, .home-hero .content .reviewsContainer .h1.spr-header-title, .reviewsContainer .home-hero .content .h1.spr-header-title, .home-hero .content .reviewsContainer .h1.spr-summary-actions-togglereviews, .reviewsContainer .home-hero .content .h1.spr-summary-actions-togglereviews, .home-hero .content .reviewsContainer .h1.spr-review-header-title, .reviewsContainer .home-hero .content .h1.spr-review-header-title, .home-hero .content .shopify-challenge__container h1.shopify-challenge__message, .shopify-challenge__container .home-hero .content h1.shopify-challenge__message, .home-hero .content .reviewsContainer h1.spr-header-title, .reviewsContainer .home-hero .content h1.spr-header-title, .home-hero .content .reviewsContainer h1.spr-summary-actions-togglereviews, .reviewsContainer .home-hero .content h1.spr-summary-actions-togglereviews, .home-hero .content .reviewsContainer h1.spr-review-header-title, .reviewsContainer .home-hero .content h1.spr-review-header-title,
  .home-hero .content h2.butler,
  .home-hero .content .butler.h2,
  .home-hero .content .shopify-challenge__container .h2.shopify-challenge__message,
  .shopify-challenge__container .home-hero .content .h2.shopify-challenge__message,
  .home-hero .content .reviewsContainer .spr-header-title,
  .reviewsContainer .home-hero .content .spr-header-title,
  .home-hero .content .reviewsContainer .h2.spr-summary-actions-togglereviews,
  .reviewsContainer .home-hero .content .h2.spr-summary-actions-togglereviews,
  .home-hero .content .reviewsContainer .h2.spr-review-header-title,
  .reviewsContainer .home-hero .content .h2.spr-review-header-title,
  .home-hero .content .shopify-challenge__container h2.shopify-challenge__message,
  .shopify-challenge__container .home-hero .content h2.shopify-challenge__message,
  .home-hero .content .reviewsContainer h2.spr-summary-actions-togglereviews,
  .reviewsContainer .home-hero .content h2.spr-summary-actions-togglereviews,
  .home-hero .content .reviewsContainer h2.spr-review-header-title,
  .reviewsContainer .home-hero .content h2.spr-review-header-title {
    margin-bottom: 0.9rem; }
  .home-hero .content h1.transform_lowercase, .home-hero .content .transform_lowercase.h1,
  .home-hero .content h2.transform_lowercase,
  .home-hero .content .transform_lowercase.h2,
  .home-hero .content .reviewsContainer .transform_lowercase.spr-header-title,
  .reviewsContainer .home-hero .content .transform_lowercase.spr-header-title {
    text-transform: lowercase; }
  .home-hero .content h1.transform_uppercase, .home-hero .content .transform_uppercase.h1,
  .home-hero .content h2.transform_uppercase,
  .home-hero .content .transform_uppercase.h2,
  .home-hero .content .reviewsContainer .transform_uppercase.spr-header-title,
  .reviewsContainer .home-hero .content .transform_uppercase.spr-header-title {
    text-transform: uppercase; }
  .home-hero .content h1.transform_none, .home-hero .content .transform_none.h1,
  .home-hero .content h2.transform_none,
  .home-hero .content .transform_none.h2,
  .home-hero .content .reviewsContainer .transform_none.spr-header-title,
  .reviewsContainer .home-hero .content .transform_none.spr-header-title {
    text-transform: none;
    letter-spacing: 0.03em; }
  .home-hero .content h1 span:last-child, .home-hero .content .h1 span:last-child,
  .home-hero .content h2 span:last-child,
  .home-hero .content .h2 span:last-child,
  .home-hero .content .reviewsContainer .spr-header-title span:last-child,
  .reviewsContainer .home-hero .content .spr-header-title span:last-child {
    line-height: 0;
    vertical-align: text-bottom; }
  .home-hero .content p,
  .home-hero .content h5,
  .home-hero .content .h5 {
    margin-bottom: 0; }
    .home-hero .content p:first-child,
    .home-hero .content h5:first-child,
    .home-hero .content .h5:first-child {
      margin-bottom: 2.5em; }
    .home-hero .content p:last-child,
    .home-hero .content h5:last-child,
    .home-hero .content .h5:last-child {
      margin: 0 auto; }
      [id*='__liquidplant-banner'] .home-hero .content p:last-child, [id*='__liquidplant-banner']
      .home-hero .content h5:last-child, [id*='__liquidplant-banner']
      .home-hero .content .h5:last-child {
        max-width: 24em; }
      [id*='__liquidplant-try-liquidplant-banner'] .home-hero .content p:last-child, [id*='__liquidplant-try-liquidplant-banner']
      .home-hero .content h5:last-child, [id*='__liquidplant-try-liquidplant-banner']
      .home-hero .content .h5:last-child {
        max-width: unset; }
      .home-hero .content p:last-child.with-subtitle,
      .home-hero .content h5:last-child.with-subtitle,
      .home-hero .content .h5:last-child.with-subtitle {
        margin-top: 3em; }
      .home-hero .content p:last-child.no-subtitle,
      .home-hero .content h5:last-child.no-subtitle,
      .home-hero .content .h5:last-child.no-subtitle {
        margin-top: 0.5em; }
    @media screen and (max-width: 799px) {
      .home-hero .content p.larger,
      .home-hero .content h5.larger,
      .home-hero .content .larger.h5 {
        font-size: 1em; }
      .home-hero .content p:last-child,
      .home-hero .content h5:last-child,
      .home-hero .content .h5:last-child {
        line-height: 1.4; }
        .home-hero .content p:last-child.with-subtitle,
        .home-hero .content h5:last-child.with-subtitle,
        .home-hero .content .h5:last-child.with-subtitle {
          margin-top: 2em;
          max-width: unset; }
        .home-hero .content p:last-child.no-subtitle,
        .home-hero .content h5:last-child.no-subtitle,
        .home-hero .content .h5:last-child.no-subtitle {
          margin-top: 1em; } }
  .home-hero .content .logo-image {
    max-width: 120px;
    margin-bottom: 40px; }
  .home-hero .content .home-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between; }
    .home-hero .content .home-title .v-bar {
      height: 200px;
      width: 1px;
      border-right: 1px solid #000;
      margin: 10px auto 20px; }
      @media screen and (max-width: 799px) {
        .home-hero .content .home-title .v-bar {
          display: none; } }
    @media screen and (max-width: 799px) {
      .home-hero .content .home-title {
        margin: 0; }
        .home-hero .content .home-title.vertical_top {
          padding-top: 18%;
          justify-content: flex-start; }
        .home-hero .content .home-title.vertical_bottom {
          padding-bottom: 23%;
          justify-content: flex-end; } }
    @media screen and (min-width: 799px) {
      .home-hero .content .home-title .btn.btn--link, .home-hero .content .home-title .btn--link.btn--secondary, .home-hero .content .home-title .reviewsContainer .spr-summary-actions .btn--link.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .home-hero .content .home-title .btn--link.spr-summary-actions-newreview, .home-hero .content .home-title .btn--link.btn--alt {
        background: transparent;
        color: inherit;
        border-width: 0 !important;
        border-bottom-width: 1px !important;
        border-bottom-style: solid !important;
        padding: 2px 0 0 !important;
        margin-top: 0;
        min-width: unset;
        line-height: unset;
        font-weight: normal;
        margin-bottom: 15px; } }
    @media screen and (max-width: 799px) {
      .home-hero .content .home-title .btn.mobile_link, .home-hero .content .home-title .mobile_link.btn--secondary, .home-hero .content .home-title .reviewsContainer .spr-summary-actions .mobile_link.spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .home-hero .content .home-title .mobile_link.spr-summary-actions-newreview, .home-hero .content .home-title .mobile_link.btn--alt {
        background: transparent;
        color: white;
        border-width: 0 !important;
        border-bottom: 1px solid white !important;
        padding: 2px 0px !important;
        min-width: unset;
        width: unset;
        line-height: unset;
        font-size: 0.9em;
        margin-bottom: 15px; } }
  .home-hero .content div.spread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4em; }
    .home-hero .content div.spread .spreader {
      margin: 0 2em;
      flex-grow: 1;
      border-top: 1px solid #000000;
      min-width: 10em; }
      .home-hero .content div.spread .spreader h2, .home-hero .content div.spread .spreader .h2, .home-hero .content div.spread .spreader .reviewsContainer .spr-header-title, .reviewsContainer .home-hero .content div.spread .spreader .spr-header-title {
        margin: 0 0 1.1em;
        line-height: 0; }
    .home-hero .content div.spread .h1 {
      margin-bottom: 0.3em; }
    .home-hero .content div.spread .h3.mobile, .home-hero .content div.spread .shopify-challenge__container .mobile.shopify-challenge__message, .shopify-challenge__container .home-hero .content div.spread .mobile.shopify-challenge__message {
      display: none; }
    @media screen and (max-width: 799px) {
      .home-hero .content div.spread {
        flex-direction: column;
        align-items: center;
        margin-bottom: 5em;
        margin-top: 5em; }
        .home-hero .content div.spread .left p,
        .home-hero .content div.spread .right p {
          display: none; }
          .home-hero .content div.spread .left p.mobile,
          .home-hero .content div.spread .right p.mobile {
            display: block; }
            .home-hero .content div.spread .left p.mobile small,
            .home-hero .content div.spread .right p.mobile small {
              display: none; }
        .home-hero .content div.spread .spreader {
          margin: 1em auto;
          width: 0;
          min-width: unset;
          flex-grow: 1;
          border-bottom: none;
          border-right: 1px solid #000000;
          height: 24vh; }
          .home-hero .content div.spread .spreader h2, .home-hero .content div.spread .spreader .h2, .home-hero .content div.spread .spreader .reviewsContainer .spr-header-title, .reviewsContainer .home-hero .content div.spread .spreader .spr-header-title {
            line-height: 3.5 !important; } }
  .home-hero .content .social-share {
    position: relative;
    display: inline-block;
    margin-left: 20px; }
    .home-hero .content .social-share > div {
      top: -4px; }
  @media screen and (max-width: 799px) {
    .home-hero .content.mothersday {
      margin-top: 50px;
      margin-bottom: 3em;
      padding-bottom: 3em;
      border-bottom: 1px solid rgba(0, 0, 0, 0.35); } }
  .home-hero .content.mothersday .home-title img {
    width: 115px;
    margin-bottom: 30px; }
  @media screen and (max-width: 799px) {
    .home-hero .content.second {
      margin-bottom: 0; } }
  @media screen and (max-width: 480px) {
    .home-hero.text-below .home-title {
      position: relative;
      padding: 40px 0;
      background-color: transparent; }
    .home-hero.text-below .sect .btn:not(.btn--alt), .home-hero.text-below .sect .btn--secondary:not(.btn--alt), .home-hero.text-below .sect .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview:not(.btn--alt), .reviewsContainer .spr-summary-actions .home-hero.text-below .sect .spr-summary-actions-newreview:not(.btn--alt), .home-hero.text-below .sect .btn--alt:not(.btn--alt) {
      border-top: 1px solid #c7c7c7 !important; }
    .home-hero.text-below.one-button .sect {
      width: 100%; } }
  .home-hero .sect {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    position: absolute;
    bottom: 0;
    right: 0; }
    .home-hero .sect.left {
      right: auto;
      left: 0; }
    .home-hero .sect .btn, .home-hero .sect .btn--secondary, .home-hero .sect .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .home-hero .sect .spr-summary-actions-newreview, .home-hero .sect .btn--alt {
      width: 100%;
      min-width: unset; }
    @media screen and (max-width: 800px) {
      .home-hero .sect {
        width: unset;
        position: absolute;
        flex-direction: row;
        border-bottom: 1px solid #939393;
        /*&.left {
          border-right: 1px solid #939393;
        }*/
        /*.btn {
          padding: 6px 30px 6px 27px;
          min-width: unset;
          width: unset;
          margin-top: 7em;
        }*/ } }
  .home-hero .sect .btn--inverse:hover {
    border-color: #eeeeee;
    background-color: #eeeeee;
    color: #000000; }
  .home-hero .sect .btn--inverse + .btn--alt.btn--alt {
    border-top: 1px solid #939393 !important; }
    @media screen and (max-width: 800px) {
      .home-hero .sect .btn--inverse + .btn--alt.btn--alt {
        border-top-color: transparent !important;
        border-left: 1px solid #939393 !important; } }
  @media screen and (min-width: 800px) and (max-width: 1100px) {
    .home-hero .btn, .home-hero .btn--secondary, .home-hero .reviewsContainer .spr-summary-actions .spr-summary-actions-newreview, .reviewsContainer .spr-summary-actions .home-hero .spr-summary-actions-newreview, .home-hero .btn--alt {
      width: auto; } }
  @media screen and (max-width: 480px) {
    .home-hero .hero-text-slider {
      padding-top: 3em;
      padding-bottom: 2em; }
      .home-hero .hero-text-slider .grid__item, .home-hero .hero-text-slider #shopify-product-reviews, .home-hero .hero-text-slider #aboutTLFeatures .header, #aboutTLFeatures .home-hero .hero-text-slider .header, .home-hero .hero-text-slider #aboutTLFeatures .item, #aboutTLFeatures .home-hero .hero-text-slider .item {
        margin-bottom: 0; } }
  .home-hero .sustainable {
    margin-bottom: 5em; }
    .home-hero .sustainable.section-block {
      margin-top: 7em;
      margin-bottom: 9em; }
      @media screen and (max-width: 480px) {
        .home-hero .sustainable.section-block {
          margin-top: 1em;
          margin-bottom: 3em; } }
    .home-hero .sustainable h5:last-child, .home-hero .sustainable .h5:last-child {
      margin-top: 3.5em; }
    .home-hero .sustainable .h-tick {
      margin: 0.5em auto 2.5em; }
      @media screen and (max-width: 480px) {
        .home-hero .sustainable .h-tick {
          margin: 2em auto 2.2em; } }
    .home-hero .sustainable .grid__item, .home-hero .sustainable #shopify-product-reviews, .home-hero .sustainable #aboutTLFeatures .header, #aboutTLFeatures .home-hero .sustainable .header, .home-hero .sustainable #aboutTLFeatures .item, #aboutTLFeatures .home-hero .sustainable .item {
      margin-bottom: 0em;
      font-size: 1.2em;
      font-weight: 400;
      letter-spacing: 0.63px; }
    .home-hero .sustainable .vertical-right {
      transform: translate(-17px, -80px) rotate(-90deg); }
    @media screen and (max-width: 480px) {
      .home-hero .sustainable {
        background-color: transparent;
        margin-bottom: 3em; }
        .home-hero .sustainable > img {
          max-width: none;
          width: 140%; }
        .home-hero .sustainable > .title {
          position: relative;
          margin-top: 3em;
          border-bottom: 1px solid #d9d9d9;
          padding-bottom: 1.5em; }
          .home-hero .sustainable > .title > .grid__item, .home-hero .sustainable > .title > #shopify-product-reviews, .home-hero #aboutTLFeatures .sustainable > .title > .header, #aboutTLFeatures .home-hero .sustainable > .title > .header, .home-hero #aboutTLFeatures .sustainable > .title > .item, #aboutTLFeatures .home-hero .sustainable > .title > .item {
            top: 0;
            -webkit-transform: none;
            -moz-transform: none;
            transform: none;
            position: relative;
            margin: 0; }
        .home-hero .sustainable .vertical--left {
          margin: 1.5em 0; }
        .home-hero .sustainable .vertical--left,
        .home-hero .sustainable .vertical--right {
          position: relative;
          transform: inherit;
          float: left;
          width: 100%;
          padding-left: 30px; }
          .home-hero .sustainable .vertical--left > div,
          .home-hero .sustainable .vertical--right > div {
            transform: inherit;
            position: relative;
            width: auto; } }
  @media screen and (max-width: 799px) {
    .home-hero .grid .wrapper, .home-hero .grid--rev .wrapper, .home-hero .grid--full .wrapper, .home-hero .site-header .message_banner .wrapper, .site-header .home-hero .message_banner .wrapper, .home-hero #aboutTLFeatures .wrapper {
      padding: 0 40px; } }
  .home-hero .grid .items, .home-hero .grid--rev .items, .home-hero .grid--full .items, .home-hero .site-header .message_banner .items, .site-header .home-hero .message_banner .items, .home-hero #aboutTLFeatures .items {
    position: relative;
    margin-bottom: 3.5em; }
    @media screen and (max-width: 799px) {
      .home-hero .grid .items, .home-hero .grid--rev .items, .home-hero .grid--full .items, .home-hero .site-header .message_banner .items, .site-header .home-hero .message_banner .items, .home-hero #aboutTLFeatures .items {
        margin-bottom: 1em; } }
    .home-hero .grid .items .grid__item > h4, .home-hero .grid--rev .items .grid__item > h4, .home-hero .grid--full .items .grid__item > h4, .home-hero .site-header .message_banner .items .grid__item > h4, .site-header .home-hero .message_banner .items .grid__item > h4, .home-hero #aboutTLFeatures .items .grid__item > h4, .home-hero .grid .items #shopify-product-reviews > h4, .home-hero .grid--rev .items #shopify-product-reviews > h4, .home-hero .grid--full .items #shopify-product-reviews > h4, .home-hero .site-header .message_banner .items #shopify-product-reviews > h4, .site-header .home-hero .message_banner .items #shopify-product-reviews > h4, .home-hero #aboutTLFeatures .items #shopify-product-reviews > h4, .home-hero .grid .items #aboutTLFeatures .header > h4, #aboutTLFeatures .home-hero .grid .items .header > h4, .home-hero .grid--rev .items #aboutTLFeatures .header > h4, #aboutTLFeatures .home-hero .grid--rev .items .header > h4, .home-hero .grid--full .items #aboutTLFeatures .header > h4, #aboutTLFeatures .home-hero .grid--full .items .header > h4, .home-hero .site-header .message_banner .items #aboutTLFeatures .header > h4, #aboutTLFeatures .home-hero .site-header .message_banner .items .header > h4, .site-header .home-hero .message_banner .items #aboutTLFeatures .header > h4, #aboutTLFeatures .site-header .home-hero .message_banner .items .header > h4, .home-hero #aboutTLFeatures .items .header > h4, .home-hero .grid .items #aboutTLFeatures .item > h4, #aboutTLFeatures .home-hero .grid .items .item > h4, .home-hero .grid--rev .items #aboutTLFeatures .item > h4, #aboutTLFeatures .home-hero .grid--rev .items .item > h4, .home-hero .grid--full .items #aboutTLFeatures .item > h4, #aboutTLFeatures .home-hero .grid--full .items .item > h4, .home-hero .site-header .message_banner .items #aboutTLFeatures .item > h4, #aboutTLFeatures .home-hero .site-header .message_banner .items .item > h4, .site-header .home-hero .message_banner .items #aboutTLFeatures .item > h4, #aboutTLFeatures .site-header .home-hero .message_banner .items .item > h4, .home-hero #aboutTLFeatures .items .item > h4, .home-hero .grid .items .grid__item > .h4, .home-hero .grid--rev .items .grid__item > .h4, .home-hero .grid--full .items .grid__item > .h4, .home-hero .site-header .message_banner .items .grid__item > .h4, .site-header .home-hero .message_banner .items .grid__item > .h4, .home-hero #aboutTLFeatures .items .grid__item > .h4, .home-hero .grid .items #shopify-product-reviews > .h4, .home-hero .grid--rev .items #shopify-product-reviews > .h4, .home-hero .grid--full .items #shopify-product-reviews > .h4, .home-hero .site-header .message_banner .items #shopify-product-reviews > .h4, .site-header .home-hero .message_banner .items #shopify-product-reviews > .h4, .home-hero #aboutTLFeatures .items #shopify-product-reviews > .h4, .home-hero .grid .items #aboutTLFeatures .header > .h4, #aboutTLFeatures .home-hero .grid .items .header > .h4, .home-hero .grid--rev .items #aboutTLFeatures .header > .h4, #aboutTLFeatures .home-hero .grid--rev .items .header > .h4, .home-hero .grid--full .items #aboutTLFeatures .header > .h4, #aboutTLFeatures .home-hero .grid--full .items .header > .h4, .home-hero .site-header .message_banner .items #aboutTLFeatures .header > .h4, #aboutTLFeatures .home-hero .site-header .message_banner .items .header > .h4, .site-header .home-hero .message_banner .items #aboutTLFeatures .header > .h4, #aboutTLFeatures .site-header .home-hero .message_banner .items .header > .h4, .home-hero #aboutTLFeatures .items .header > .h4, .home-hero .grid .items #aboutTLFeatures .item > .h4, #aboutTLFeatures .home-hero .grid .items .item > .h4, .home-hero .grid--rev .items #aboutTLFeatures .item > .h4, #aboutTLFeatures .home-hero .grid--rev .items .item > .h4, .home-hero .grid--full .items #aboutTLFeatures .item > .h4, #aboutTLFeatures .home-hero .grid--full .items .item > .h4, .home-hero .site-header .message_banner .items #aboutTLFeatures .item > .h4, #aboutTLFeatures .home-hero .site-header .message_banner .items .item > .h4, .site-header .home-hero .message_banner .items #aboutTLFeatures .item > .h4, #aboutTLFeatures .site-header .home-hero .message_banner .items .item > .h4, .home-hero #aboutTLFeatures .items .item > .h4 {
      margin-bottom: 1.5em; }
  .home-hero .article > h5, .home-hero .article > .h5 {
    margin-top: 2em; }
  .home-hero #FeaturedPress {
    margin-top: 5em;
    margin-bottom: 5em; }
    .home-hero #FeaturedPress img {
      display: inline-block;
      height: 43px; }
      @media screen and (max-width: 480px) {
        .home-hero #FeaturedPress img {
          height: 55px; } }
  .home-hero .lightwidget-widget {
    display: block; }

/* section-text-divider.scss */
.text-divider .main.title-left {
  margin: 0 0 0 30px; }

.text-divider .main.title-right {
  margin: 0 30px 0 0; }

@media screen and (max-width: 480px) {
  .text-divider .main.title-left {
    margin: 0 0 0 15px; }

  .text-divider .main.title-right {
    margin: 0 15px 0 0; } }
.text-divider .grid__item, .text-divider #shopify-product-reviews, .text-divider #aboutTLFeatures .header, #aboutTLFeatures .text-divider .header, .text-divider #aboutTLFeatures .item, #aboutTLFeatures .text-divider .item {
  display: flex;
  align-items: center; }

.text-divider .grid__item .divider, .text-divider #shopify-product-reviews .divider, .text-divider #aboutTLFeatures .header .divider, #aboutTLFeatures .text-divider .header .divider, .text-divider #aboutTLFeatures .item .divider, #aboutTLFeatures .text-divider .item .divider {
  margin-top: 4px;
  flex-grow: 1; }

.text-divider .title-left .divider.left {
  display: none; }

.text-divider .title-right .divider.right {
  display: none; }

.text-divider .title.left {
  margin: 0 15px 0 0; }

.text-divider .title.center {
  margin: 0 15px; }

.text-divider .title.right {
  margin: 0 0 0 15px; }

.text-divider .title h5, .text-divider .title .h5 {
  margin: 0; }
