@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,
.grid-uniform {
  *zoom: 1; }
  .grid:after, .grid--rev:after, .grid--full:after,
  .grid-uniform:after {
    content: '';
    display: table;
    clear: both; }

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

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }

.grid__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 {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__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 {
  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.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-questions-answered .shell #contactToggle {
  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, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .item {
    width: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .grid-uniform .small--one-half:nth-child(2n+1), .grid-uniform #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .item:nth-child(2n+1), #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .grid-uniform .item:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 481px) and (max-width: 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, body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer {
  *zoom: 1;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 15px; }
  .wrapper:after, body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer:after,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer:after {
    content: '';
    display: table;
    clear: both; }
  .wrapper.wrapper-full-width, body.page-shop [id*='__shop-home-banner'] .home-hero .content .wrapper-full-width.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .wrapper-full-width.footer {
    max-width: unset; }
  .wrapper .wrapper, body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .wrapper,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .wrapper, .wrapper body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content .wrapper .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .footer,
  .wrapper body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .wrapper .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .footer {
    padding-left: 0;
    padding-right: 0; }
  @media screen and (min-width: 480px) {
    .wrapper, body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer {
      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, body.page-the-mens-collection #PageContainer .products h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, h3, .h3, .shopify-challenge__container .shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, 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, body.page-the-mens-collection #PageContainer .products h2 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 a, h3 a, .h3 a, .shopify-challenge__container .shopify-challenge__message a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 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, body.page-the-mens-collection #PageContainer .products h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 {
  font-size: 2em; }

h3, .h3, .shopify-challenge__container .shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 {
  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 body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products .section-header__left h2, .section-header__left #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left h4, .section-header__left #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left .h4, .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 #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left h5, .section-header__left #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left .h5, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products .section-header__left h2, .section-header__left body.page-the-mens-collection #PageContainer .products .h2, body.page-the-mens-collection #PageContainer .products .section-header__left .h2, .section-header__left #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left h4, .section-header__left #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left .h4, .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 #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left h5, .section-header__left #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .section-header__left .h5, .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 body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products .rte h2, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte h4, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte .h4, .rte h3, .rte .h3, .rte .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container .rte .shopify-challenge__message, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte h5, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte .h5, .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 body.page-the-mens-collection #PageContainer .products h2:first-child, body.page-the-mens-collection #PageContainer .products .rte h2:first-child, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4:first-child, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte h4:first-child, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4:first-child, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte .h4: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 #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5:first-child, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte h5:first-child, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5:first-child, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte .h5: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 body.page-the-mens-collection #PageContainer .products h2 a, body.page-the-mens-collection #PageContainer .products .rte h2 a, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte h4 a, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte .h4 a, .rte h3 a, .rte .h3 a, .rte .shopify-challenge__container .shopify-challenge__message a, .shopify-challenge__container .rte .shopify-challenge__message a, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte h5 a, .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .rte .h5 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,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
.rte .btn,
.rte .btn--secondary,
.rte .btn--alt,
.rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .btn {
  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, .btn--alt:hover, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .btn--alt:hover,
  .rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn:hover,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .btn:hover {
    background-color: #262626;
    color: white; }
  .btn:active, .btn--secondary:active, .btn--alt:active, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn:active, .btn:focus, .btn--secondary:focus, .btn--alt:focus, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn--alt:active,
  .rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn:active,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .btn:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  .rte .btn--alt:focus,
  .rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn:focus,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .btn:focus {
    background-color: #4d4d4d;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, [disabled].btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [disabled].btn, .btn.disabled, .disabled.btn--secondary, .disabled.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .disabled.btn,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte [disabled].btn--alt,
  .rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [disabled].btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte [disabled].btn,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  .rte .disabled.btn--alt,
  .rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .disabled.btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .disabled.btn {
    cursor: default;
    color: #c3c3c3;
    background-color: #464646; }

.btn--secondary,
.rte .btn--secondary {
  background-color: white; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #f7f7f7;
    color: black;
    opacity: 0.95; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary: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 .input-group-btn:first-child > .btn--alt,
  .input-group body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .input-group-btn:first-child > .btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .input-group .input-group-btn:first-child > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--alt,
  .input-group body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item input[type="hidden"]:first-child + .input-group-btn > .btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .input-group input[type="hidden"]:first-child + .input-group-btn > .btn {
    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 .input-group-btn:last-child > .btn--alt,
  .input-group body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .input-group-btn:last-child > .btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .input-group .input-group-btn:last-child > .btn {
    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 .btn--alt, .input-group body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .input-group .btn,
.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 {
      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 {
      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 {
  margin-left: -15px; }
  .ajaxcart__row > .grid > .grid__item, .ajaxcart__row > .grid--rev > .grid__item, .ajaxcart__row > .grid--full > .grid__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,
body.page-the-mens-collection #PageContainer .products h2,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
h3,
.h3,
.shopify-challenge__container .shopify-challenge__message,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5,
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,
  body.page-the-mens-collection #PageContainer .products h2.meta,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.meta,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .meta.h4,
  h3.meta,
  .meta.h3,
  .shopify-challenge__container .meta.shopify-challenge__message,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.meta,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .meta.h5,
  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,
  body.page-the-mens-collection #PageContainer .products h2 > a,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 > a,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 > a,
  h3 > a,
  .h3 > a,
  .shopify-challenge__container .shopify-challenge__message > a,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5 > a,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 > 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,
    body.page-the-mens-collection #PageContainer .products h2 > a.cta,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 > a.cta,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 > a.cta,
    h3 > a.cta,
    .h3 > a.cta,
    .shopify-challenge__container .shopify-challenge__message > a.cta,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5 > a.cta,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 > 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,
      body.page-the-mens-collection #PageContainer .products h2 > a.cta:hover,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 > a.cta:hover,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 > a.cta:hover,
      h3 > a.cta:hover,
      .h3 > a.cta:hover,
      .shopify-challenge__container .shopify-challenge__message > a.cta:hover,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5 > a.cta:hover,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 > 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,
    body.page-the-mens-collection #PageContainer .products h2,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
    h3,
    .h3,
    .shopify-challenge__container .shopify-challenge__message,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5,
    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, body.page-technik #PageContainer .main-content .title .h1,
  h1.small,
  .small.h1,
  body.page-technik #PageContainer .main-content .title h1,
  body.page-technik #PageContainer .main-content .title .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, body.page-campaign-lander .rte .h1, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h1, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h1.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h1.h4,
  h1.largeish,
  .largeish.h1,
  body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h1,
  body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h1,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h1,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h1,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h1.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h1.h4,
  body.page-campaign-lander .rte h1,
  body.page-campaign-lander .rte .h1 {
    font-size: 4.2em; }
  .h1.largeish2,
  h1.largeish2,
  .largeish2.h1 {
    font-size: 4.9em; }
  .h1.larger, body.page-technik-leather #hero p.h1.h3, body.page-technik-leather #hero .shopify-challenge__container p.h1.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero p.h1.shopify-challenge__message,
  h1.larger,
  .larger.h1,
  body.page-technik-leather #hero p.h1.h3,
  body.page-technik-leather #hero .shopify-challenge__container p.h1.shopify-challenge__message,
  .shopify-challenge__container body.page-technik-leather #hero p.h1.shopify-challenge__message {
    font-size: 5.5em; }
  .h1.large,
  h1.large,
  .large.h1,
  #pop-up-new-york #hero h1,
  #pop-up-new-york #hero .h1 {
    font-size: 7.5em;
    letter-spacing: 1px; }
  @media screen and (max-width: 799px) {
    .h1,
    h1,
    .h1 {
      font-size: 2.6em; }
      .h1.small, body.page-technik #PageContainer .main-content .title .h1,
      h1.small,
      .small.h1,
      body.page-technik #PageContainer .main-content .title h1,
      body.page-technik #PageContainer .main-content .title .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, body.page-campaign-lander .rte .h1, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h1, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h1.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h1.h4,
      h1.largeish,
      .largeish.h1,
      body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h1,
      body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h1,
      body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h1,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h1,
      body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h1.h4,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h1.h4,
      body.page-campaign-lander .rte h1,
      body.page-campaign-lander .rte .h1 {
        font-size: 3.1em; }
      .h1.largeish2,
      h1.largeish2,
      .largeish2.h1 {
        font-size: 3.7em; }
      .h1.larger, body.page-technik-leather #hero p.h1.h3, body.page-technik-leather #hero .shopify-challenge__container p.h1.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero p.h1.shopify-challenge__message,
      h1.larger,
      .larger.h1,
      body.page-technik-leather #hero p.h1.h3,
      body.page-technik-leather #hero .shopify-challenge__container p.h1.shopify-challenge__message,
      .shopify-challenge__container body.page-technik-leather #hero p.h1.shopify-challenge__message {
        font-size: 3.5em; } }
  @media screen and (max-width: 480px) {
    .h1,
    h1,
    .h1 {
      font-size: 2.1em; }
      .h1.small, body.page-technik #PageContainer .main-content .title .h1,
      h1.small,
      .small.h1,
      body.page-technik #PageContainer .main-content .title h1,
      body.page-technik #PageContainer .main-content .title .h1 {
        font-size: 2em; }
      .h1.smallish,
      h1.smallish,
      .smallish.h1 {
        font-size: 2.5em; } }

.h2, body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products .h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
h2,
.h2,
body.page-the-mens-collection #PageContainer .products h2,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 {
  line-height: 1; }
  .h2.largeish, body.page-the-mens-collection #PageContainer .products h2.largeish, body.page-the-mens-collection #PageContainer .products .largeish.h2, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products .h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.largeish, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h4, body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4,
  h2.largeish,
  .largeish.h2,
  body.page-the-mens-collection #PageContainer .products h2.largeish,
  body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2,
  body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.largeish,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h4,
  body.page-campaign-lander .rte h2,
  body.page-campaign-lander .rte .h2,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4 {
    font-size: 2.5em; }
  .h2.larger, body.page-the-mens-collection #PageContainer .products h2.larger, body.page-the-mens-collection #PageContainer .products .larger.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.larger, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .larger.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather #hero p.h4.h3, body.page-technik-leather #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h4.h3, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather #hero .shopify-challenge__container p.h4.shopify-challenge__message, body.page-technik-leather #hero .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h4.shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-technik-leather #hero p.h4.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h4.shopify-challenge__message, body.page-technik-leather #hero p.h2.h3, body.page-technik-leather #hero .shopify-challenge__container p.h2.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero p.h2.shopify-challenge__message,
  h2.larger,
  .larger.h2,
  body.page-the-mens-collection #PageContainer .products h2.larger,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.larger,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .larger.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather #hero p.h4.h3,
  body.page-technik-leather #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h4.h3,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather #hero .shopify-challenge__container p.h4.shopify-challenge__message,
  body.page-technik-leather #hero .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h4.shopify-challenge__message,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-technik-leather #hero p.h4.shopify-challenge__message,
  .shopify-challenge__container body.page-technik-leather #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h4.shopify-challenge__message,
  body.page-technik-leather #hero p.h2.h3,
  body.page-technik-leather #hero .shopify-challenge__container p.h2.shopify-challenge__message,
  .shopify-challenge__container body.page-technik-leather #hero p.h2.shopify-challenge__message {
    font-size: 3em; }
  .h2.large, body.page-the-mens-collection #PageContainer .products h2.large, body.page-the-mens-collection #PageContainer .products .large.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large.h4,
  h2.large,
  .large.h2,
  body.page-the-mens-collection #PageContainer .products h2.large,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large.h4 {
    font-size: 3.5em;
    letter-spacing: 1px; }
  .h2.large2, body.page-the-mens-collection #PageContainer .products h2.large2, body.page-the-mens-collection #PageContainer .products .large2.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large2.h4,
  h2.large2,
  .large2.h2,
  body.page-the-mens-collection #PageContainer .products h2.large2,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large2,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large2.h4 {
    font-size: 4em;
    letter-spacing: 1px; }
  .h2.xlarge, body.page-the-mens-collection #PageContainer .products h2.xlarge, body.page-the-mens-collection #PageContainer .products .xlarge.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xlarge, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xlarge.h4,
  h2.xlarge,
  .xlarge.h2,
  body.page-the-mens-collection #PageContainer .products h2.xlarge,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xlarge,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xlarge.h4 {
    font-size: 4.5em;
    letter-spacing: 1px; }
  .h2.xxlarge, body.page-the-mens-collection #PageContainer .products h2.xxlarge, body.page-the-mens-collection #PageContainer .products .xxlarge.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xxlarge, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xxlarge.h4,
  h2.xxlarge,
  .xxlarge.h2,
  body.page-the-mens-collection #PageContainer .products h2.xxlarge,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xxlarge,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xxlarge.h4 {
    font-size: 5.2em;
    letter-spacing: 1px; }
  .h2.normal, body.page-the-mens-collection #PageContainer .products h2.normal, body.page-the-mens-collection #PageContainer .products .normal.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.normal, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .normal.h4,
  h2.normal,
  .normal.h2,
  body.page-the-mens-collection #PageContainer .products h2.normal,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.normal,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .normal.h4 {
    font-weight: 400 !important; }
  @media screen and (max-width: 480px) {
    .h2, body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products .h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
    h2,
    .h2,
    body.page-the-mens-collection #PageContainer .products h2,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 {
      font-size: 2.4em; }
      .h2.large, body.page-the-mens-collection #PageContainer .products h2.large, body.page-the-mens-collection #PageContainer .products .large.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large.h4,
      h2.large,
      .large.h2,
      body.page-the-mens-collection #PageContainer .products h2.large,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large.h4 {
        font-size: 3.2em; }
      .h2.large2, body.page-the-mens-collection #PageContainer .products h2.large2, body.page-the-mens-collection #PageContainer .products .large2.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large2.h4,
      h2.large2,
      .large2.h2,
      body.page-the-mens-collection #PageContainer .products h2.large2,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.large2,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large2.h4 {
        font-size: 2.8em; }
      .h2.xlarge, body.page-the-mens-collection #PageContainer .products h2.xlarge, body.page-the-mens-collection #PageContainer .products .xlarge.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xlarge, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xlarge.h4,
      h2.xlarge,
      .xlarge.h2,
      body.page-the-mens-collection #PageContainer .products h2.xlarge,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xlarge,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xlarge.h4 {
        font-size: 3.4em; }
      .h2.xxlarge, body.page-the-mens-collection #PageContainer .products h2.xxlarge, body.page-the-mens-collection #PageContainer .products .xxlarge.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xxlarge, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xxlarge.h4,
      h2.xxlarge,
      .xxlarge.h2,
      body.page-the-mens-collection #PageContainer .products h2.xxlarge,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.xxlarge,
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .xxlarge.h4 {
        font-size: 3.6em; } }

.h3, .shopify-challenge__container .shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5,
h3,
.h3,
.shopify-challenge__container .shopify-challenge__message,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 {
  font-size: 19px; }
  .h3.largeish, .shopify-challenge__container .largeish.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte h1.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container h1.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h1, body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h1, .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h2, body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h2, .shopify-challenge__container body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products .shopify-challenge__container h2.shopify-challenge__message, .shopify-challenge__container body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.shopify-challenge__message, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container h4.shopify-challenge__message, .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container h4.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container .shopify-challenge__message.h4, .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__message.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.largeish, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h1.h5, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h1.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h2.h5, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h2.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h2, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h2, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h5, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h4, body.page-campaign-lander .rte h1.h3, body.page-campaign-lander .rte .h3.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h1, body.page-campaign-lander .rte h2.h3, body.page-campaign-lander .rte .h3.h2, body.page-campaign-lander .rte .shopify-challenge__container body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message, body.page-the-mens-collection #PageContainer .products .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte h4.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h4, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h3, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h3, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h3, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h3, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h3.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h3.h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h2,
  h3.largeish,
  .largeish.h3,
  .shopify-challenge__container .largeish.shopify-challenge__message,
  .shopify-challenge__container body.page-campaign-lander .rte h1.shopify-challenge__message,
  body.page-campaign-lander .rte .shopify-challenge__container h1.shopify-challenge__message,
  .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h1,
  body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h1,
  .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message,
  body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message,
  .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h2,
  body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h2,
  .shopify-challenge__container body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message,
  body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products .shopify-challenge__container h2.shopify-challenge__message,
  .shopify-challenge__container body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.shopify-challenge__message,
  body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message,
  .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container h4.shopify-challenge__message,
  .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.shopify-challenge__message,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container h4.shopify-challenge__message,
  .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container .shopify-challenge__message.h4,
  .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__message.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.largeish,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h5,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h1.h5,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h1.h5,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h1,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h1,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h2.h5,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h2.h5,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h2,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h2,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h5,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h5,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h4,
  body.page-campaign-lander .rte h1.h3,
  body.page-campaign-lander .rte .h3.h1,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h1,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h1,
  body.page-campaign-lander .rte h2.h3,
  body.page-campaign-lander .rte .h3.h2,
  body.page-campaign-lander .rte .shopify-challenge__container body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message,
  body.page-the-mens-collection #PageContainer .products .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message,
  body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte h4.shopify-challenge__message,
  body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h4,
  body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h3,
  body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h3,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h3,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h3,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h3.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h3.h4,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h4,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h2,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h2 {
    font-size: 1.5em; }
  .h3.larger, .shopify-challenge__container .larger.shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.larger, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .larger.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather #hero p.h5.h3, body.page-technik-leather #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h5.h3, body.page-technik-leather #hero p.h3, body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message,
  h3.larger,
  .larger.h3,
  .shopify-challenge__container .larger.shopify-challenge__message,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.larger,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .larger.h5,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather #hero p.h5.h3,
  body.page-technik-leather #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p.h5.h3,
  body.page-technik-leather #hero p.h3,
  body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message,
  .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message {
    font-size: 1.8em; }
  .h3.large, .shopify-challenge__container .large.shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.large, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large.h5,
  h3.large,
  .large.h3,
  .shopify-challenge__container .large.shopify-challenge__message,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.large,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .large.h5 {
    font-size: 2em; }
  @media screen and (max-width: 480px) {
    .h3.largeish, .shopify-challenge__container .largeish.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte h1.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container h1.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h1, body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h1, .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h2, body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h2, .shopify-challenge__container body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products .shopify-challenge__container h2.shopify-challenge__message, .shopify-challenge__container body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.shopify-challenge__message, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container h4.shopify-challenge__message, .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container h4.shopify-challenge__message, .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container .shopify-challenge__message.h4, .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__message.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.largeish, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h1.h5, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h1.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h2.h5, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h2.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h2, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h2, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h5, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h4, body.page-campaign-lander .rte h1.h3, body.page-campaign-lander .rte .h3.h1, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h1, body.page-campaign-lander .rte h2.h3, body.page-campaign-lander .rte .h3.h2, body.page-campaign-lander .rte .shopify-challenge__container body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message, body.page-the-mens-collection #PageContainer .products .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte h4.shopify-challenge__message, body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h4, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h3, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h3, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h3, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h3, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h3.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h3.h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h2,
    h3.largeish,
    .largeish.h3,
    .shopify-challenge__container .largeish.shopify-challenge__message,
    .shopify-challenge__container body.page-campaign-lander .rte h1.shopify-challenge__message,
    body.page-campaign-lander .rte .shopify-challenge__container h1.shopify-challenge__message,
    .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h1,
    body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h1,
    .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message,
    body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message,
    .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h2,
    body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h2,
    .shopify-challenge__container body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message,
    body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products .shopify-challenge__container h2.shopify-challenge__message,
    .shopify-challenge__container body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.shopify-challenge__message,
    body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte .shopify-challenge__container h2.shopify-challenge__message,
    .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container h4.shopify-challenge__message,
    .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.shopify-challenge__message,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container h4.shopify-challenge__message,
    .shopify-challenge__container body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container .shopify-challenge__message.h4,
    .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__message.h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .shopify-challenge__container .shopify-challenge__message.h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.largeish,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h5,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h1.h5,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h1.h5,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h1,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h1,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h2.h5,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h2.h5,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h2,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h2,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h5,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h5,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5.h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h5.h4,
    body.page-campaign-lander .rte h1.h3,
    body.page-campaign-lander .rte .h3.h1,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h1,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h1,
    body.page-campaign-lander .rte h2.h3,
    body.page-campaign-lander .rte .h3.h2,
    body.page-campaign-lander .rte .shopify-challenge__container body.page-the-mens-collection #PageContainer .products h2.shopify-challenge__message,
    body.page-the-mens-collection #PageContainer .products .shopify-challenge__container body.page-campaign-lander .rte h2.shopify-challenge__message,
    body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.shopify-challenge__message,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte h4.shopify-challenge__message,
    body.page-campaign-lander .rte .shopify-challenge__container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__message.h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .shopify-challenge__container body.page-campaign-lander .rte .shopify-challenge__message.h4,
    body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.h3,
    body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.h3,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h3,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.h3,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h3.h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h3.h4,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h4,
    body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5.h2,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h5.h2 {
      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,
  body.page-campaign-lander .rte p,
  .p.large-y,
  .p.largey,
  body.page-campaign-lander .rte p.p {
    font-size: 1.05em;
    line-height: 1.7; }
  ul.largeish,
  p.largeish,
  .p.largeish,
  body.page-campaign-lander .rte h1.p,
  body.page-campaign-lander .rte .p.h1,
  body.page-campaign-lander .rte h2.p,
  body.page-campaign-lander .rte .p.h2,
  body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2.p,
  body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2.p,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.p,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4.p,
  body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .p.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .p.h4 {
    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,
  .p.large {
    font-size: 1.35em;
    line-height: 1.9; }
  ul.larger,
  p.larger,
  body.page-technik-leather #hero p.h3,
  body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message,
  .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message,
  .p.larger,
  body.page-technik-leather #hero p.p.h3,
  body.page-technik-leather #hero .shopify-challenge__container p.p.shopify-challenge__message,
  .shopify-challenge__container body.page-technik-leather #hero p.p.shopify-challenge__message {
    font-size: 1.4rem; }
  ul.largest,
  p.largest,
  .p.largest {
    font-size: 2rem; }
  @media screen and (max-width: 799px) {
    ul.larger,
    p.larger,
    body.page-technik-leather #hero p.h3,
    body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message,
    .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message,
    .p.larger,
    body.page-technik-leather #hero p.p.h3,
    body.page-technik-leather #hero .shopify-challenge__container p.p.shopify-challenge__message,
    .shopify-challenge__container body.page-technik-leather #hero p.p.shopify-challenge__message {
      font-size: 1.2rem; } }
  @media screen and (max-width: 480px) {
    ul.larger,
    p.larger,
    body.page-technik-leather #hero p.h3,
    body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message,
    .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message,
    .p.larger,
    body.page-technik-leather #hero p.p.h3,
    body.page-technik-leather #hero .shopify-challenge__container p.p.shopify-challenge__message,
    .shopify-challenge__container body.page-technik-leather #hero p.p.shopify-challenge__message {
      font-size: 1rem; } }

.sans, body.page-liquidplant #hero .title h1, body.page-liquidplant #hero .title .h1,
.sans p,
body.page-liquidplant #hero .title h1 p,
body.page-liquidplant #hero .title .h1 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,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
.sans-s p,
.btn p,
.btn--secondary p,
.rte .btn--secondary p,
.btn--alt p,
.rte .btn--alt p,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn 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,
.btn--m.btn--alt,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--m.btn,
.sans-head-m p,
.btn.btn--m p,
.btn--m.btn--secondary p,
.btn--m.btn--alt p,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--m.btn p,
.sans-head-s,
.grid.items .item .title p,
.items.grid--rev .item .title p,
.items.grid--full .item .title p,
#our-story #PageContainer .items .item .title p,
body.page-materials #PageContainer .items .item .title p,
.page-material-innovators-judges #PageContainer .items .item .title p,
.grid.items .item .info p,
.items.grid--rev .item .info p,
.items.grid--full .item .info p,
#our-story #PageContainer .items .item .info p,
body.page-materials #PageContainer .items .item .info p,
.page-material-innovators-judges #PageContainer .items .item .info p,
.grid.items .item .details p,
.items.grid--rev .item .details p,
.items.grid--full .item .details p,
#our-story #PageContainer .items .item .details p,
body.page-materials #PageContainer .items .item .details p,
.page-material-innovators-judges #PageContainer .items .item .details p,
.grid.items .item .title,
.items.grid--rev .item .title,
.items.grid--full .item .title,
#our-story #PageContainer .items .item .title,
body.page-materials #PageContainer .items .item .title,
.page-material-innovators-judges #PageContainer .items .item .title,
.grid.items .item .details,
.items.grid--rev .item .details,
.items.grid--full .item .details,
#our-story #PageContainer .items .item .details,
body.page-materials #PageContainer .items .item .details,
.page-material-innovators-judges #PageContainer .items .item .details,
.sans-head-s p,
.grid.items .item .info p p,
.items.grid--rev .item .info p p,
.items.grid--full .item .info p p,
#our-story #PageContainer .items .item .info p p,
body.page-materials #PageContainer .items .item .info p p,
.page-material-innovators-judges #PageContainer .items .item .info p p,
.grid.items .item .title p,
.items.grid--rev .item .title p,
.items.grid--full .item .title p,
#our-story #PageContainer .items .item .title p,
body.page-materials #PageContainer .items .item .title p,
.page-material-innovators-judges #PageContainer .items .item .title p,
.grid.items .item .details p,
.items.grid--rev .item .details p,
.items.grid--full .item .details p,
#our-story #PageContainer .items .item .details p,
body.page-materials #PageContainer .items .item .details p,
.page-material-innovators-judges #PageContainer .items .item .details p,
.sans-head-cta.sans-head-cta,
.btn,
.btn--secondary,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
.rte .btn,
.grid.items .item .label a,
.items.grid--rev .item .label a,
.items.grid--full .item .label a,
#our-story #PageContainer .items .item .label a,
body.page-materials #PageContainer .items .item .label a,
.page-material-innovators-judges #PageContainer .items .item .label a,
.grid.items .item button,
.items.grid--rev .item button,
.items.grid--full .item button,
#our-story #PageContainer .items .item button,
body.page-materials #PageContainer .items .item button,
.page-material-innovators-judges #PageContainer .items .item button,
.grid.items .item .btn,
.items.grid--rev .item .btn,
.items.grid--full .item .btn,
#our-story #PageContainer .items .item .btn,
body.page-materials #PageContainer .items .item .btn,
.page-material-innovators-judges #PageContainer .items .item .btn,
.grid.items .item .btn--secondary,
.items.grid--rev .item .btn--secondary,
.items.grid--full .item .btn--secondary,
#our-story #PageContainer .items .item .btn--secondary,
body.page-materials #PageContainer .items .item .btn--secondary,
.page-material-innovators-judges #PageContainer .items .item .btn--secondary,
.grid.items .item .btn--alt,
.items.grid--rev .item .btn--alt,
.items.grid--full .item .btn--alt,
#our-story #PageContainer .items .item .btn--alt,
body.page-materials #PageContainer .items .item .btn--alt,
.page-material-innovators-judges #PageContainer .items .item .btn--alt,
.sans-head-cta.sans-head-cta p,
.btn p,
.btn--secondary p,
.rte .btn--secondary p,
.btn--alt p,
.rte .btn--alt p,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn p,
.rte .btn p,
.grid.items .item .label a p,
.items.grid--rev .item .label a p,
.items.grid--full .item .label a p,
#our-story #PageContainer .items .item .label a p,
body.page-materials #PageContainer .items .item .label a p,
.page-material-innovators-judges #PageContainer .items .item .label a p,
.grid.items .item button p,
.items.grid--rev .item button p,
.items.grid--full .item button p,
#our-story #PageContainer .items .item button p,
body.page-materials #PageContainer .items .item button p,
.page-material-innovators-judges #PageContainer .items .item button p,
.grid.items .item .btn p,
.items.grid--rev .item .btn p,
.items.grid--full .item .btn p,
#our-story #PageContainer .items .item .btn p,
body.page-materials #PageContainer .items .item .btn p,
.page-material-innovators-judges #PageContainer .items .item .btn p,
.grid.items .item .btn--secondary p,
.items.grid--rev .item .btn--secondary p,
.items.grid--full .item .btn--secondary p,
#our-story #PageContainer .items .item .btn--secondary p,
body.page-materials #PageContainer .items .item .btn--secondary p,
.page-material-innovators-judges #PageContainer .items .item .btn--secondary p,
.grid.items .item .btn--alt p,
.items.grid--rev .item .btn--alt p,
.items.grid--full .item .btn--alt p,
#our-story #PageContainer .items .item .btn--alt p,
body.page-materials #PageContainer .items .item .btn--alt p,
.page-material-innovators-judges #PageContainer .items .item .btn--alt 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,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn {
  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,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn {
  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,
.btn--m.btn--alt,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--m.btn,
.sans-head-s,
.grid.items .item .title p,
.items.grid--rev .item .title p,
.items.grid--full .item .title p,
#our-story #PageContainer .items .item .title p,
body.page-materials #PageContainer .items .item .title p,
.page-material-innovators-judges #PageContainer .items .item .title p,
.grid.items .item .info p,
.items.grid--rev .item .info p,
.items.grid--full .item .info p,
#our-story #PageContainer .items .item .info p,
body.page-materials #PageContainer .items .item .info p,
.page-material-innovators-judges #PageContainer .items .item .info p,
.grid.items .item .details p,
.items.grid--rev .item .details p,
.items.grid--full .item .details p,
#our-story #PageContainer .items .item .details p,
body.page-materials #PageContainer .items .item .details p,
.page-material-innovators-judges #PageContainer .items .item .details p,
.grid.items .item .title,
.items.grid--rev .item .title,
.items.grid--full .item .title,
#our-story #PageContainer .items .item .title,
body.page-materials #PageContainer .items .item .title,
.page-material-innovators-judges #PageContainer .items .item .title,
.grid.items .item .details,
.items.grid--rev .item .details,
.items.grid--full .item .details,
#our-story #PageContainer .items .item .details,
body.page-materials #PageContainer .items .item .details,
.page-material-innovators-judges #PageContainer .items .item .details,
.sans-head-cta.sans-head-cta,
.btn,
.btn--secondary,
.rte .btn--secondary,
.btn--alt,
.rte .btn--alt,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
.rte .btn,
.grid.items .item .label a,
.items.grid--rev .item .label a,
.items.grid--full .item .label a,
#our-story #PageContainer .items .item .label a,
body.page-materials #PageContainer .items .item .label a,
.page-material-innovators-judges #PageContainer .items .item .label a,
.grid.items .item button,
.items.grid--rev .item button,
.items.grid--full .item button,
#our-story #PageContainer .items .item button,
body.page-materials #PageContainer .items .item button,
.page-material-innovators-judges #PageContainer .items .item button,
.grid.items .item .btn,
.items.grid--rev .item .btn,
.items.grid--full .item .btn,
#our-story #PageContainer .items .item .btn,
body.page-materials #PageContainer .items .item .btn,
.page-material-innovators-judges #PageContainer .items .item .btn,
.grid.items .item .btn--secondary,
.items.grid--rev .item .btn--secondary,
.items.grid--full .item .btn--secondary,
#our-story #PageContainer .items .item .btn--secondary,
body.page-materials #PageContainer .items .item .btn--secondary,
.page-material-innovators-judges #PageContainer .items .item .btn--secondary,
.grid.items .item .btn--alt,
.items.grid--rev .item .btn--alt,
.items.grid--full .item .btn--alt,
#our-story #PageContainer .items .item .btn--alt,
body.page-materials #PageContainer .items .item .btn--alt,
.page-material-innovators-judges #PageContainer .items .item .btn--alt {
  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, .btn--m.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--m.btn {
  font-size: calc(1.46em * 0.983);
  line-height: 148%; }

.sans-head-s, .grid.items .item .title p, .items.grid--rev .item .title p, .items.grid--full .item .title p, #our-story #PageContainer .items .item .title p,
body.page-materials #PageContainer .items .item .title p,
.page-material-innovators-judges #PageContainer .items .item .title p,
.grid.items .item .info p,
.items.grid--rev .item .info p,
.items.grid--full .item .info p,
#our-story #PageContainer .items .item .info p,
body.page-materials #PageContainer .items .item .info p,
.page-material-innovators-judges #PageContainer .items .item .info p,
.grid.items .item .details p,
.items.grid--rev .item .details p,
.items.grid--full .item .details p,
#our-story #PageContainer .items .item .details p,
body.page-materials #PageContainer .items .item .details p,
.page-material-innovators-judges #PageContainer .items .item .details p, .grid.items .item .title, .items.grid--rev .item .title, .items.grid--full .item .title, #our-story #PageContainer .items .item .title,
body.page-materials #PageContainer .items .item .title,
.page-material-innovators-judges #PageContainer .items .item .title,
.grid.items .item .details,
.items.grid--rev .item .details,
.items.grid--full .item .details,
#our-story #PageContainer .items .item .details,
body.page-materials #PageContainer .items .item .details,
.page-material-innovators-judges #PageContainer .items .item .details {
  font-size: calc(1em * 0.983);
  line-height: 146%; }

.sans-head-cta.sans-head-cta, .btn, .btn--secondary,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
.rte .btn, .grid.items .item .label a, .items.grid--rev .item .label a, .items.grid--full .item .label a, #our-story #PageContainer .items .item .label a,
body.page-materials #PageContainer .items .item .label a,
.page-material-innovators-judges #PageContainer .items .item .label a,
.grid.items .item button,
.items.grid--rev .item button,
.items.grid--full .item button,
#our-story #PageContainer .items .item button,
body.page-materials #PageContainer .items .item button,
.page-material-innovators-judges #PageContainer .items .item button,
.grid.items .item .btn,
.items.grid--rev .item .btn,
.items.grid--full .item .btn,
#our-story #PageContainer .items .item .btn,
body.page-materials #PageContainer .items .item .btn,
.page-material-innovators-judges #PageContainer .items .item .btn,
.grid.items .item .btn--secondary,
.items.grid--rev .item .btn--secondary,
.items.grid--full .item .btn--secondary,
#our-story #PageContainer .items .item .btn--secondary,
body.page-materials #PageContainer .items .item .btn--secondary,
.page-material-innovators-judges #PageContainer .items .item .btn--secondary,
.grid.items .item .btn--alt,
.items.grid--rev .item .btn--alt,
.items.grid--full .item .btn--alt,
#our-story #PageContainer .items .item .btn--alt,
body.page-materials #PageContainer .items .item .btn--alt,
.page-material-innovators-judges #PageContainer .items .item .btn--alt {
  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,
  #serrano [id*='__serrano-intro-text'] .sans-head-m,
  #serrano [id*='__serrano-intro-text'] .btn.btn--m,
  #serrano [id*='__serrano-intro-text'] .btn--m.btn--secondary,
  #serrano [id*='__serrano-intro-text'] .btn--m.btn--alt,
  .sans-head-s-sm p,
  #serrano [id*='__serrano-intro-text'] .sans-head-m p,
  #serrano [id*='__serrano-intro-text'] .btn.btn--m p,
  #serrano [id*='__serrano-intro-text'] .btn--m.btn--secondary p,
  #serrano [id*='__serrano-intro-text'] .btn--m.btn--alt 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,
  #serrano [id*='__serrano-intro-text'] .sans-head-m,
  #serrano [id*='__serrano-intro-text'] .btn.btn--m,
  #serrano [id*='__serrano-intro-text'] .btn--m.btn--secondary,
  #serrano [id*='__serrano-intro-text'] .btn--m.btn--alt,
  .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, #serrano [id*='__serrano-intro-text'] .sans-head-m, #serrano [id*='__serrano-intro-text'] .btn.btn--m, #serrano [id*='__serrano-intro-text'] .btn--m.btn--secondary, #serrano [id*='__serrano-intro-text'] .btn--m.btn--alt {
    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 .grid__item .article-body li,
.template-article .main-content .grid__item .article-body p,
.template-article .main-content .grid__item .article-body li, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #our-story #PageContainer .shell p,
body.page-materials #PageContainer .shell p,
.page-material-innovators-judges #PageContainer .shell 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, body.page-the-mens-collection #PageContainer .products .h2, body.page-the-mens-collection #PageContainer .products h2, #warranty .shell h2, #warranty .shell .h2,
body.page-faqs .shell h2,
body.page-faqs .shell .h2, #warranty .shell .intro p,
#warranty .shell .tab-body,
#warranty .shell .tab-body h5,
#warranty .shell .tab-body .h5,
body.page-faqs .shell .intro p,
body.page-faqs .shell .tab-body,
body.page-faqs .shell .tab-body h5,
body.page-faqs .shell .tab-body .h5, body.page-warranty #warrantyForm h2, body.page-warranty #warrantyForm .h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #our-story #PageContainer .shell h2, #our-story #PageContainer .shell .h2,
body.page-materials #PageContainer .shell h2,
body.page-materials #PageContainer .shell .h2,
.page-material-innovators-judges #PageContainer .shell h2,
.page-material-innovators-judges #PageContainer .shell .h2, body.page-campaign-lander .rte h1, body.page-campaign-lander .rte .h1, body.page-campaign-lander .rte h2, body.page-campaign-lander .rte .h2,
.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,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn {
  line-height: 2.7;
  padding: 8px 10px; }
  .btn[disabled], [disabled].btn--secondary, [disabled].btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [disabled].btn, .btn.disabled, .disabled.btn--secondary, .disabled.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .disabled.btn {
    cursor: default;
    color: #464646;
    background-color: white;
    border-color: #c3c3c3; }

.btn, .btn--secondary,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn {
  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,
.rte .btn--secondary, .btn--alt,
.rte .btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
.rte .btn,
.rte .btn--secondary,
.rte .btn--alt,
.rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .btn {
  padding: 12px 30px;
  max-width: 100%;
  transition: all 250ms; }
  .btn.btn-small, .btn-small.btn--secondary, .btn-small.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn-small.btn,
  .rte .btn.btn-small,
  .rte .btn-small.btn--secondary,
  .rte .btn-small.btn--alt,
  .rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn-small.btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .btn-small.btn {
    padding: 5px 20px; }
  @media screen and (max-width: 480px) {
    .btn, .btn--secondary,
    .rte .btn--secondary, .btn--alt,
    .rte .btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
    .rte .btn,
    .rte .btn--secondary,
    .rte .btn--alt,
    .rte body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .rte .btn {
      padding: 9px 30px; } }

.input-group .btn, .input-group .btn--secondary, .input-group .btn--alt, .input-group body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .input-group .btn,
.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,
.rte .btn--secondary {
  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, .btn--x-wide.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--x-wide.btn {
  padding-left: 120px;
  padding-right: 120px; }
  @media screen and (max-width: 480px) {
    .btn.btn--x-wide, .btn--x-wide.btn--secondary, .btn--x-wide.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--x-wide.btn {
      padding-left: 75px;
      padding-right: 75px; } }

.btn.btn--small, .btn--small.btn--secondary, .btn--small.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--small.btn {
  padding: 5px 40px; }

.btn.btn--med, .btn--med.btn--secondary, .btn--med.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--med.btn {
  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, .btn--link--mobile.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--link--mobile.btn {
    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 .btn--link--mobile.btn--alt, .home-hero body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--link--mobile.btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .home-hero .btn--link--mobile.btn {
      min-width: unset;
      margin-top: 0; }
    .btn.btn--link--mobile:hover, .btn--link--mobile.btn--secondary:hover, .btn--link--mobile.btn--alt:hover, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--link--mobile.btn:hover {
      background: none;
      color: #333333; }
    .btn.btn--link--mobile:active, .btn--link--mobile.btn--secondary:active, .btn--link--mobile.btn--alt:active, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--link--mobile.btn:active {
      background: none;
      color: #1a1a1a; }
    .btn.btn--link--mobile, .btn--link--mobile.btn--secondary, .btn--link--mobile.btn--alt, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--link--mobile.btn, .btn.btn--link--mobile:visited, .btn--link--mobile.btn--secondary:visited, .btn--link--mobile.btn--alt:visited, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn--link--mobile.btn: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 {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex; }

.grid__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.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 {
  margin-top: 30px; }

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

.push--top-2, #the-watch-band-portfolio.page-watch-band-portfolio .shell .set-1 {
  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 {
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em; }
  .grid.section-block img, .section-block.grid--rev img, .section-block.grid--full img {
    margin-top: 2em; }
  .grid.section-block h1, .section-block.grid--rev h1, .section-block.grid--full h1, .grid.section-block .h1, .section-block.grid--rev .h1, .section-block.grid--full .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, .grid.section-block .h4:first-child, .section-block.grid--rev .h4:first-child, .section-block.grid--full .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, .grid.section-block .h4:first-child, .section-block.grid--rev .h4:first-child, .section-block.grid--full .h4:first-child {
        margin-bottom: 20px; } }
  .grid.section-block p, .section-block.grid--rev p, .section-block.grid--full 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 {
      margin-bottom: 0; }
  .grid.section-block .vertical--left, .section-block.grid--rev .vertical--left, .section-block.grid--full .vertical--left,
  .grid.section-block .vertical--right,
  .section-block.grid--rev .vertical--right,
  .section-block.grid--full .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
    .grid.section-block .vertical--right, .page-about
    .section-block.grid--rev .vertical--right, .page-about
    .section-block.grid--full .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
      .grid.section-block .vertical--right, .page-technik
      .section-block.grid--rev .vertical--right, .page-technik
      .section-block.grid--full .vertical--right {
        display: none; } }
    .grid.section-block .vertical--left > div, .section-block.grid--rev .vertical--left > div, .section-block.grid--full .vertical--left > div,
    .grid.section-block .vertical--right > div,
    .section-block.grid--rev .vertical--right > div,
    .section-block.grid--full .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,
      .grid.section-block .vertical--right > div .off,
      .section-block.grid--rev .vertical--right > div .off,
      .section-block.grid--full .vertical--right > div .off {
        color: #939598; }
  .grid.section-block .vertical--right, .section-block.grid--rev .vertical--right, .section-block.grid--full .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 {
    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 {
    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 {
    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 {
        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 {
        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 .grid.items .h3, body.template-index.index .items.grid--rev .h3, body.template-index.index .items.grid--full .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 .grid.items #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.template-index.index .grid.items h5, body.template-index.index .items.grid--rev #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.template-index.index .items.grid--rev h5, body.template-index.index .items.grid--full #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.template-index.index .items.grid--full h5, body.template-index.index .grid.items #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.template-index.index .grid.items .h5, body.template-index.index .items.grid--rev #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.template-index.index .items.grid--rev .h5, body.template-index.index .items.grid--full #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.template-index.index .items.grid--full .h5,
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 .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 .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 .grid.items #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .grid.items h5,
body.page-technik #PageContainer .main-content .items.grid--rev #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .items.grid--rev h5,
body.page-technik #PageContainer .main-content .items.grid--full #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .items.grid--full h5,
body.page-technik #PageContainer .main-content .grid.items #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .grid.items .h5,
body.page-technik #PageContainer .main-content .items.grid--rev #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .items.grid--rev .h5,
body.page-technik #PageContainer .main-content .items.grid--full #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .items.grid--full .h5 {
  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.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 {
    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.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 {
  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 .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.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 .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 {
    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 .grid.items a .h4, body.template-index.index .items.grid--rev a .h4, body.template-index.index .items.grid--full 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 .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 {
    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 .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.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 .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 {
  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 .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.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 .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 {
  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.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 {
  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.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 {
    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.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 {
        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-mothers-day-giveaway #hero .grid__item,
  body.page-detox-retreat-giveaway #hero .grid__item,
  body.page-curated-gifts #hero .grid__item,
  body.page-about #hero .grid__item,
  body.page-subscribe #hero .grid__item {
    top: 50%; }
    body.page-shopper-giveaway #hero .grid__item h4:last-child, body.page-shopper-giveaway #hero .grid__item .h4:last-child,
    body.page-mothers-day-giveaway #hero .grid__item h4:last-child,
    body.page-mothers-day-giveaway #hero .grid__item .h4:last-child,
    body.page-detox-retreat-giveaway #hero .grid__item h4:last-child,
    body.page-detox-retreat-giveaway #hero .grid__item .h4:last-child,
    body.page-curated-gifts #hero .grid__item h4:last-child,
    body.page-curated-gifts #hero .grid__item .h4:last-child,
    body.page-about #hero .grid__item h4:last-child,
    body.page-about #hero .grid__item .h4:last-child,
    body.page-subscribe #hero .grid__item h4:last-child,
    body.page-subscribe #hero .grid__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-mothers-day-giveaway #hero .grid__item,
    body.page-detox-retreat-giveaway #hero .grid__item,
    body.page-curated-gifts #hero .grid__item,
    body.page-about #hero .grid__item,
    body.page-subscribe #hero .grid__item {
      top: 50%; }
      body.page-shopper-giveaway #hero .grid__item h4:last-child, body.page-shopper-giveaway #hero .grid__item .h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item .h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item .h4:last-child,
      body.page-curated-gifts #hero .grid__item h4:last-child,
      body.page-curated-gifts #hero .grid__item .h4:last-child,
      body.page-about #hero .grid__item h4:last-child,
      body.page-about #hero .grid__item .h4:last-child,
      body.page-subscribe #hero .grid__item h4:last-child,
      body.page-subscribe #hero .grid__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-mothers-day-giveaway #hero .grid__item,
    body.page-detox-retreat-giveaway #hero .grid__item,
    body.page-curated-gifts #hero .grid__item,
    body.page-about #hero .grid__item,
    body.page-subscribe #hero .grid__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 .grid__item .h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item h4:last-child,
      body.page-mothers-day-giveaway #hero .grid__item .h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item h4:last-child,
      body.page-detox-retreat-giveaway #hero .grid__item .h4:last-child,
      body.page-curated-gifts #hero .grid__item h4:last-child,
      body.page-curated-gifts #hero .grid__item .h4:last-child,
      body.page-about #hero .grid__item h4:last-child,
      body.page-about #hero .grid__item .h4:last-child,
      body.page-subscribe #hero .grid__item h4:last-child,
      body.page-subscribe #hero .grid__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-subscribe .main-content .grid.section-block,
  body.page-subscribe .main-content .section-block.grid--rev,
  body.page-subscribe .main-content .section-block.grid--full {
    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-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 {
      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-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 {
          margin-bottom: 1em; } }
  body.page-about .main-content .grid__item.well, body.page-about .main-content .grid__item.sidebar-email-signup,
  body.page-subscribe .main-content .grid__item.well,
  body.page-subscribe .main-content .grid__item.sidebar-email-signup {
    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,
  .grid--rev.two-up > .grid__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,
.grid--rev.two-up > .grid__item.image 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,
.grid--rev.two-up > .grid__item.image .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,
.grid--rev.two-up.design > .grid__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,
  .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,
  .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 .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 .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 .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 .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 .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 .grid--rev.two-up > .grid__item.text,
    #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 .grid--rev.two-up > .grid__item.text,
    #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 .grid--rev.two-up > .grid__item.text,
    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 .grid--rev.two-up > .grid__item.text,
    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 .grid--rev.two-up > .grid__item.text {
      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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.image,
    #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 .grid--rev.two-up > .grid__item.image,
    #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 .grid--rev.two-up > .grid__item.image,
    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 .grid--rev.two-up > .grid__item.image,
    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 .grid--rev.two-up > .grid__item.image {
      float: left;
      margin-bottom: 0; }
  #our-story .shell .grid--rev.two-up > .grid__item.text,
  #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.text,
  #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.text,
  body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.text,
  body.page-materials .shell .grid--rev.two-up > .grid__item.text {
    right: auto;
    left: 0;
    padding-left: 30px; }
  #our-story .shell .grid--rev.two-up > .grid__item.image,
  #about-our-vegan-leather .shell .grid--rev.two-up > .grid__item.image,
  #pop-up-at-striiike .shell .grid--rev.two-up > .grid__item.image,
  body.page-holiday-fund .shell .grid--rev.two-up > .grid__item.image,
  body.page-materials .shell .grid--rev.two-up > .grid__item.image {
    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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 .grid--rev.two-up > .grid__item.text > .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 {
    padding-bottom: 30px; }
  @media screen and (min-width: 799px) {
    .article .grid, .article .grid--rev, .article .grid--full {
      position: relative; }
      .article .grid > .grid__item.text, .article .grid--rev > .grid__item.text, .article .grid--full > .grid__item.text {
        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 {
          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 {
            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 {
        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 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 .main-content .rte body.page-questions-answered .shell #contactToggle, body.page-questions-answered .shell #give-back .main-content .rte #contactToggle {
  margin-bottom: 30px; }

.give-back-grid.grid, .give-back-grid.grid--rev, .give-back-grid.grid--full,
.give-back-grid .grid,
.give-back-grid .grid--rev,
.give-back-grid .grid--full,
#GiveBackGrid.grid,
#GiveBackGrid.grid--rev,
#GiveBackGrid.grid--full,
#GiveBackGrid .grid,
#GiveBackGrid .grid--rev,
#GiveBackGrid .grid--full {
  margin-left: -10px;
  margin-bottom: 0; }
.give-back-grid .grid__item,
#GiveBackGrid .grid__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,
.template-article .main-content > .grid,
.template-article .main-content > .grid--rev,
.template-article .main-content > .grid--full {
  display: flex; }
  @media screen and (max-width: 799px) {
    #instagram .main-content > .grid, #instagram .main-content > .grid--rev, #instagram .main-content > .grid--full,
    .template-article .main-content > .grid,
    .template-article .main-content > .grid--rev,
    .template-article .main-content > .grid--full {
      flex-direction: column; } }
@media screen and (min-width: 799px) {
  #instagram .main-content .grid__item.large--three-quarters,
  .template-article .main-content .grid__item.large--three-quarters {
    padding-right: 0; } }
#instagram .main-content .grid__item .article-body,
.template-article .main-content .grid__item .article-body {
  margin: 0 auto;
  float: none;
  max-width: 630px; }
  #instagram .main-content .grid__item .article-body h4, #instagram .main-content .grid__item .article-body .h4,
  .template-article .main-content .grid__item .article-body h4,
  .template-article .main-content .grid__item .article-body .h4 {
    margin-bottom: 5px; }
  #instagram .main-content .grid__item .article-body time,
  .template-article .main-content .grid__item .article-body time {
    display: block;
    margin-bottom: 30px; }
  #instagram .main-content .grid__item .article-body p,
  #instagram .main-content .grid__item .article-body li,
  .template-article .main-content .grid__item .article-body p,
  .template-article .main-content .grid__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, body.page-subscribe .main-content .signup-page {
  position: fixed;
  background-color: #ffffff;
  background-image: none;
  margin-bottom: 0;
  top: auto;
  bottom: 0; }
  .signup-ver-g .close, body.page-subscribe .main-content .signup-page .close {
    top: 25px;
    right: 20px; }
  .signup-ver-g h2, body.page-subscribe .main-content .signup-page h2, .signup-ver-g .h2, body.page-subscribe .main-content .signup-page .h2, .signup-ver-g body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products .signup-ver-g h2, body.page-subscribe .main-content .signup-page body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-subscribe .main-content .signup-page h2, .signup-ver-g #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .signup-ver-g h4, body.page-subscribe .main-content .signup-page #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-subscribe .main-content .signup-page h4, .signup-ver-g #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .signup-ver-g .h4, body.page-subscribe .main-content .signup-page #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-subscribe .main-content .signup-page .h4 {
    text-transform: lowercase; }
  .signup-ver-g .field-underline, body.page-subscribe .main-content .signup-page .field-underline {
    border: none; }
  .signup-ver-g .btn, body.page-subscribe .main-content .signup-page .btn, .signup-ver-g .btn--secondary, body.page-subscribe .main-content .signup-page .btn--secondary, .signup-ver-g .btn--alt, body.page-subscribe .main-content .signup-page .btn--alt, .signup-ver-g body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .signup-ver-g .btn, body.page-subscribe .main-content .signup-page body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item body.page-subscribe .main-content .signup-page .btn {
    margin: 30px 0 0;
    padding: 19.5px;
    background-image: none;
    background: transparent;
    color: #000;
    border: none; }
  .signup-ver-g .input-group.fields, body.page-subscribe .main-content .signup-page .input-group.fields {
    border-bottom: 1px solid rgba(0, 0, 0, 0.35); }
  @media screen and (max-width: 480px) {
    .signup-ver-g .field-underline, body.page-subscribe .main-content .signup-page .field-underline {
      border-bottom: 1px solid rgba(0, 0, 0, 0.35); }
    .signup-ver-g .input-group.fields, body.page-subscribe .main-content .signup-page .input-group.fields {
      display: block;
      border: none; } }
  .signup-ver-g .input-group.groups, body.page-subscribe .main-content .signup-page .input-group.groups {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    text-align: left; }
    .signup-ver-g .input-group.groups label[for], body.page-subscribe .main-content .signup-page .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, body.page-subscribe .main-content .signup-page .input-group.groups label[for]:first-of-type {
        margin-right: 30px !important; }
  .signup-ver-g input[type="checkbox"], body.page-subscribe .main-content .signup-page input[type="checkbox"],
  .signup-ver-g input[type="radio"],
  body.page-subscribe .main-content .signup-page 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, body.page-subscribe .main-content .signup-page input[type="checkbox"]:checked:before,
    .signup-ver-g input[type="radio"]:checked:before,
    body.page-subscribe .main-content .signup-page 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"], body.page-subscribe .main-content .signup-page input[type="radio"] {
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5); }
    .signup-ver-g input[type="radio"]:checked:before, body.page-subscribe .main-content .signup-page 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 body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #EnterToWin h2, #EnterToWin #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #EnterToWin h4, #EnterToWin #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #EnterToWin .h4 {
    margin: 0 0 1em;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: none; }
  #EnterToWin .btn, #EnterToWin .btn--secondary, #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-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-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-curated-gifts #PageContainer .grid.padded,
    body.page-curated-gifts #PageContainer .padded.grid--rev,
    body.page-curated-gifts #PageContainer .padded.grid--full {
      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; }

.grid.items .item, .items.grid--rev .item, .items.grid--full .item, #our-story #PageContainer .items .item,
body.page-materials #PageContainer .items .item,
.page-material-innovators-judges #PageContainer .items .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  padding-left: 30px;
  margin-left: 0; }
  .grid.items .item .thumb, .items.grid--rev .item .thumb, .items.grid--full .item .thumb, #our-story #PageContainer .items .item .thumb,
  body.page-materials #PageContainer .items .item .thumb,
  .page-material-innovators-judges #PageContainer .items .item .thumb {
    position: relative;
    display: block;
    margin-bottom: 0; }
    .grid.items .item .thumb .label, .items.grid--rev .item .thumb .label, .items.grid--full .item .thumb .label, #our-story #PageContainer .items .item .thumb .label,
    body.page-materials #PageContainer .items .item .thumb .label,
    .page-material-innovators-judges #PageContainer .items .item .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); }
      .grid.items .item .thumb .label h5, .items.grid--rev .item .thumb .label h5, .items.grid--full .item .thumb .label h5, #our-story #PageContainer .items .item .thumb .label h5,
      body.page-materials #PageContainer .items .item .thumb .label h5,
      .page-material-innovators-judges #PageContainer .items .item .thumb .label h5, .grid.items .item .thumb .label .h5, .items.grid--rev .item .thumb .label .h5, .items.grid--full .item .thumb .label .h5, #our-story #PageContainer .items .item .thumb .label .h5,
      body.page-materials #PageContainer .items .item .thumb .label .h5,
      .page-material-innovators-judges #PageContainer .items .item .thumb .label .h5, .grid.items .item .thumb .label div, .items.grid--rev .item .thumb .label div, .items.grid--full .item .thumb .label div, #our-story #PageContainer .items .item .thumb .label div,
      body.page-materials #PageContainer .items .item .thumb .label div,
      .page-material-innovators-judges #PageContainer .items .item .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); }
      .grid.items .item .thumb .label div h5, .items.grid--rev .item .thumb .label div h5, .items.grid--full .item .thumb .label div h5, #our-story #PageContainer .items .item .thumb .label div h5,
      body.page-materials #PageContainer .items .item .thumb .label div h5,
      .page-material-innovators-judges #PageContainer .items .item .thumb .label div h5, .grid.items .item .thumb .label div .h5, .items.grid--rev .item .thumb .label div .h5, .items.grid--full .item .thumb .label div .h5, #our-story #PageContainer .items .item .thumb .label div .h5,
      body.page-materials #PageContainer .items .item .thumb .label div .h5,
      .page-material-innovators-judges #PageContainer .items .item .thumb .label div .h5 {
        position: relative;
        margin: 10px 0 0 0;
        line-height: 0.8;
        letter-spacing: 0.12em; }
    .grid.items .item .thumb:hover .label, .items.grid--rev .item .thumb:hover .label, .items.grid--full .item .thumb:hover .label, #our-story #PageContainer .items .item .thumb:hover .label,
    body.page-materials #PageContainer .items .item .thumb:hover .label,
    .page-material-innovators-judges #PageContainer .items .item .thumb:hover .label {
      background-color: rgba(250, 250, 250, 0.7); }
      .grid.items .item .thumb:hover .label h5, .items.grid--rev .item .thumb:hover .label h5, .items.grid--full .item .thumb:hover .label h5, #our-story #PageContainer .items .item .thumb:hover .label h5,
      body.page-materials #PageContainer .items .item .thumb:hover .label h5,
      .page-material-innovators-judges #PageContainer .items .item .thumb:hover .label h5, .grid.items .item .thumb:hover .label .h5, .items.grid--rev .item .thumb:hover .label .h5, .items.grid--full .item .thumb:hover .label .h5, #our-story #PageContainer .items .item .thumb:hover .label .h5,
      body.page-materials #PageContainer .items .item .thumb:hover .label .h5,
      .page-material-innovators-judges #PageContainer .items .item .thumb:hover .label .h5, .grid.items .item .thumb:hover .label div, .items.grid--rev .item .thumb:hover .label div, .items.grid--full .item .thumb:hover .label div, #our-story #PageContainer .items .item .thumb:hover .label div,
      body.page-materials #PageContainer .items .item .thumb:hover .label div,
      .page-material-innovators-judges #PageContainer .items .item .thumb:hover .label div {
        opacity: 1; }
    .grid.items .item .thumb img, .items.grid--rev .item .thumb img, .items.grid--full .item .thumb img, #our-story #PageContainer .items .item .thumb img,
    body.page-materials #PageContainer .items .item .thumb img,
    .page-material-innovators-judges #PageContainer .items .item .thumb img {
      width: 100%;
      margin-bottom: 0;
      height: auto; }
  @media screen and (min-width: 799px) {
    .grid.items .item, .items.grid--rev .item, .items.grid--full .item, #our-story #PageContainer .items .item,
    body.page-materials #PageContainer .items .item,
    .page-material-innovators-judges #PageContainer .items .item {
      padding-left: 60px; } }
  .grid.items .item .label a, .items.grid--rev .item .label a, .items.grid--full .item .label a, #our-story #PageContainer .items .item .label a,
  body.page-materials #PageContainer .items .item .label a,
  .page-material-innovators-judges #PageContainer .items .item .label a,
  .grid.items .item button,
  .items.grid--rev .item button,
  .items.grid--full .item button,
  #our-story #PageContainer .items .item button,
  body.page-materials #PageContainer .items .item button,
  .page-material-innovators-judges #PageContainer .items .item button,
  .grid.items .item .btn,
  .items.grid--rev .item .btn,
  .items.grid--full .item .btn,
  #our-story #PageContainer .items .item .btn,
  body.page-materials #PageContainer .items .item .btn,
  .page-material-innovators-judges #PageContainer .items .item .btn,
  .grid.items .item .btn--secondary,
  .items.grid--rev .item .btn--secondary,
  .items.grid--full .item .btn--secondary,
  #our-story #PageContainer .items .item .btn--secondary,
  body.page-materials #PageContainer .items .item .btn--secondary,
  .page-material-innovators-judges #PageContainer .items .item .btn--secondary,
  .grid.items .item .btn--alt,
  .items.grid--rev .item .btn--alt,
  .items.grid--full .item .btn--alt,
  #our-story #PageContainer .items .item .btn--alt,
  body.page-materials #PageContainer .items .item .btn--alt,
  .page-material-innovators-judges #PageContainer .items .item .btn--alt,
  .grid.items .item body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .grid.items .item .btn,
  .items.grid--rev .item body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--rev .item .btn,
  .items.grid--full .item body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--full .item .btn {
    margin-bottom: 10px;
    width: 100%; }
    @media screen and (max-width: 799px) {
      .grid.items .item .label a, .items.grid--rev .item .label a, .items.grid--full .item .label a, #our-story #PageContainer .items .item .label a,
      body.page-materials #PageContainer .items .item .label a,
      .page-material-innovators-judges #PageContainer .items .item .label a,
      .grid.items .item button,
      .items.grid--rev .item button,
      .items.grid--full .item button,
      #our-story #PageContainer .items .item button,
      body.page-materials #PageContainer .items .item button,
      .page-material-innovators-judges #PageContainer .items .item button,
      .grid.items .item .btn,
      .items.grid--rev .item .btn,
      .items.grid--full .item .btn,
      #our-story #PageContainer .items .item .btn,
      body.page-materials #PageContainer .items .item .btn,
      .page-material-innovators-judges #PageContainer .items .item .btn,
      .grid.items .item .btn--secondary,
      .items.grid--rev .item .btn--secondary,
      .items.grid--full .item .btn--secondary,
      #our-story #PageContainer .items .item .btn--secondary,
      body.page-materials #PageContainer .items .item .btn--secondary,
      .page-material-innovators-judges #PageContainer .items .item .btn--secondary,
      .grid.items .item .btn--alt,
      .items.grid--rev .item .btn--alt,
      .items.grid--full .item .btn--alt,
      #our-story #PageContainer .items .item .btn--alt,
      body.page-materials #PageContainer .items .item .btn--alt,
      .page-material-innovators-judges #PageContainer .items .item .btn--alt,
      .grid.items .item body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
      body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .grid.items .item .btn,
      .items.grid--rev .item body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
      body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--rev .item .btn,
      .items.grid--full .item body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn,
      body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--full .item .btn {
        min-width: unset; } }
  .grid.items .item .thumb, .items.grid--rev .item .thumb, .items.grid--full .item .thumb, #our-story #PageContainer .items .item .thumb,
  body.page-materials #PageContainer .items .item .thumb,
  .page-material-innovators-judges #PageContainer .items .item .thumb {
    padding-top: 113%;
    margin: 0; }
    .grid.items .item .thumb img, .items.grid--rev .item .thumb img, .items.grid--full .item .thumb img, #our-story #PageContainer .items .item .thumb img,
    body.page-materials #PageContainer .items .item .thumb img,
    .page-material-innovators-judges #PageContainer .items .item .thumb img {
      position: absolute;
      bottom: 0; }
    .grid.items .item .thumb .flip, .items.grid--rev .item .thumb .flip, .items.grid--full .item .thumb .flip, #our-story #PageContainer .items .item .thumb .flip,
    body.page-materials #PageContainer .items .item .thumb .flip,
    .page-material-innovators-judges #PageContainer .items .item .thumb .flip {
      position: absolute;
      left: 0;
      bottom: 0;
      opacity: 0;
      transition: opacity 300ms; }
    @media screen and (min-width: 480px) {
      .grid.items .item .thumb, .items.grid--rev .item .thumb, .items.grid--full .item .thumb, #our-story #PageContainer .items .item .thumb,
      body.page-materials #PageContainer .items .item .thumb,
      .page-material-innovators-judges #PageContainer .items .item .thumb {
        margin: 30px 0 0; } }
  .grid.items .item:hover .thumb .flip, .items.grid--rev .item:hover .thumb .flip, .items.grid--full .item:hover .thumb .flip, #our-story #PageContainer .items .item:hover .thumb .flip,
  body.page-materials #PageContainer .items .item:hover .thumb .flip,
  .page-material-innovators-judges #PageContainer .items .item:hover .thumb .flip {
    opacity: 1; }
  .grid.items .thumb-item.item, .items.grid--rev .thumb-item.item, .items.grid--full .thumb-item.item, #our-story #PageContainer .items .thumb-item.item,
  body.page-materials #PageContainer .items .thumb-item.item,
  .page-material-innovators-judges #PageContainer .items .thumb-item.item {
    justify-content: center; }
  .grid.items .item .title, .items.grid--rev .item .title, .items.grid--full .item .title, #our-story #PageContainer .items .item .title,
  body.page-materials #PageContainer .items .item .title,
  .page-material-innovators-judges #PageContainer .items .item .title {
    margin-top: 30px;
    margin-bottom: 10px;
    flex-grow: 20; }
  .grid.items .item .info, .items.grid--rev .item .info, .items.grid--full .item .info, #our-story #PageContainer .items .item .info,
  body.page-materials #PageContainer .items .item .info,
  .page-material-innovators-judges #PageContainer .items .item .info {
    flex-grow: 1; }
  .grid.items .item .title, .items.grid--rev .item .title, .items.grid--full .item .title, #our-story #PageContainer .items .item .title,
  body.page-materials #PageContainer .items .item .title,
  .page-material-innovators-judges #PageContainer .items .item .title,
  .grid.items .item .info,
  .items.grid--rev .item .info,
  .items.grid--full .item .info,
  #our-story #PageContainer .items .item .info,
  body.page-materials #PageContainer .items .item .info,
  .page-material-innovators-judges #PageContainer .items .item .info {
    display: flex;
    justify-content: space-between;
    align-content: stretch; }
    @media screen and (max-width: 1200px) {
      .grid.items .item .title, .items.grid--rev .item .title, .items.grid--full .item .title, #our-story #PageContainer .items .item .title,
      body.page-materials #PageContainer .items .item .title,
      .page-material-innovators-judges #PageContainer .items .item .title,
      .grid.items .item .info,
      .items.grid--rev .item .info,
      .items.grid--full .item .info,
      #our-story #PageContainer .items .item .info,
      body.page-materials #PageContainer .items .item .info,
      .page-material-innovators-judges #PageContainer .items .item .info {
        flex-direction: column; } }
  .grid.items .item .props, .items.grid--rev .item .props, .items.grid--full .item .props, #our-story #PageContainer .items .item .props,
  body.page-materials #PageContainer .items .item .props,
  .page-material-innovators-judges #PageContainer .items .item .props {
    flex-grow: 2; }
  .grid.items .item .title, .items.grid--rev .item .title, .items.grid--full .item .title, #our-story #PageContainer .items .item .title,
  body.page-materials #PageContainer .items .item .title,
  .page-material-innovators-judges #PageContainer .items .item .title,
  .grid.items .item .info,
  .items.grid--rev .item .info,
  .items.grid--full .item .info,
  #our-story #PageContainer .items .item .info,
  body.page-materials #PageContainer .items .item .info,
  .page-material-innovators-judges #PageContainer .items .item .info,
  .grid.items .item .details,
  .items.grid--rev .item .details,
  .items.grid--full .item .details,
  #our-story #PageContainer .items .item .details,
  body.page-materials #PageContainer .items .item .details,
  .page-material-innovators-judges #PageContainer .items .item .details {
    text-align: left; }
    .grid.items .item .title a, .items.grid--rev .item .title a, .items.grid--full .item .title a, #our-story #PageContainer .items .item .title a,
    body.page-materials #PageContainer .items .item .title a,
    .page-material-innovators-judges #PageContainer .items .item .title a,
    .grid.items .item .info a,
    .items.grid--rev .item .info a,
    .items.grid--full .item .info a,
    #our-story #PageContainer .items .item .info a,
    body.page-materials #PageContainer .items .item .info a,
    .page-material-innovators-judges #PageContainer .items .item .info a,
    .grid.items .item .details a,
    .items.grid--rev .item .details a,
    .items.grid--full .item .details a,
    #our-story #PageContainer .items .item .details a,
    body.page-materials #PageContainer .items .item .details a,
    .page-material-innovators-judges #PageContainer .items .item .details a {
      color: black;
      display: inline-block;
      text-transform: uppercase; }
    .grid.items .item .title em, .items.grid--rev .item .title em, .items.grid--full .item .title em, #our-story #PageContainer .items .item .title em,
    body.page-materials #PageContainer .items .item .title em,
    .page-material-innovators-judges #PageContainer .items .item .title em,
    .grid.items .item .info em,
    .items.grid--rev .item .info em,
    .items.grid--full .item .info em,
    #our-story #PageContainer .items .item .info em,
    body.page-materials #PageContainer .items .item .info em,
    .page-material-innovators-judges #PageContainer .items .item .info em,
    .grid.items .item .details em,
    .items.grid--rev .item .details em,
    .items.grid--full .item .details em,
    #our-story #PageContainer .items .item .details em,
    body.page-materials #PageContainer .items .item .details em,
    .page-material-innovators-judges #PageContainer .items .item .details em {
      color: #6f6f6f; }
  .grid.items .item .props.show_discount .price, .items.grid--rev .item .props.show_discount .price, .items.grid--full .item .props.show_discount .price, #our-story #PageContainer .items .item .props.show_discount .price,
  body.page-materials #PageContainer .items .item .props.show_discount .price,
  .page-material-innovators-judges #PageContainer .items .item .props.show_discount .price {
    text-decoration: line-through;
    text-decoration-color: black; }
  .grid.items .item .props .discounted_price, .items.grid--rev .item .props .discounted_price, .items.grid--full .item .props .discounted_price, #our-story #PageContainer .items .item .props .discounted_price,
  body.page-materials #PageContainer .items .item .props .discounted_price,
  .page-material-innovators-judges #PageContainer .items .item .props .discounted_price {
    color: black; }
  .grid.items .item .label, .items.grid--rev .item .label, .items.grid--full .item .label, #our-story #PageContainer .items .item .label,
  body.page-materials #PageContainer .items .item .label,
  .page-material-innovators-judges #PageContainer .items .item .label {
    background-color: transparent; }
  .grid.items .item .details, .items.grid--rev .item .details, .items.grid--full .item .details, #our-story #PageContainer .items .item .details,
  body.page-materials #PageContainer .items .item .details,
  .page-material-innovators-judges #PageContainer .items .item .details {
    margin-top: 1px;
    font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-top: 0;
    margin-left: 15px;
    white-space: nowrap; }
    @media screen and (max-width: 1200px) {
      .grid.items .item .details, .items.grid--rev .item .details, .items.grid--full .item .details, #our-story #PageContainer .items .item .details,
      body.page-materials #PageContainer .items .item .details,
      .page-material-innovators-judges #PageContainer .items .item .details {
        margin-left: 0; } }
    .grid.items .item .details a, .items.grid--rev .item .details a, .items.grid--full .item .details a, #our-story #PageContainer .items .item .details a,
    body.page-materials #PageContainer .items .item .details a,
    .page-material-innovators-judges #PageContainer .items .item .details a {
      border-bottom: 1px solid #000; }
  .grid.items .item .buttons, .items.grid--rev .item .buttons, .items.grid--full .item .buttons, #our-story #PageContainer .items .item .buttons,
  body.page-materials #PageContainer .items .item .buttons,
  .page-material-innovators-judges #PageContainer .items .item .buttons {
    margin-top: 15px;
    margin-left: 0;
    text-align: left; }
    .grid.items .item .buttons button span, .items.grid--rev .item .buttons button span, .items.grid--full .item .buttons button span, #our-story #PageContainer .items .item .buttons button span,
    body.page-materials #PageContainer .items .item .buttons button span,
    .page-material-innovators-judges #PageContainer .items .item .buttons button span,
    .grid.items .item .buttons .btn span,
    .items.grid--rev .item .buttons .btn span,
    .items.grid--full .item .buttons .btn span,
    #our-story #PageContainer .items .item .buttons .btn span,
    body.page-materials #PageContainer .items .item .buttons .btn span,
    .page-material-innovators-judges #PageContainer .items .item .buttons .btn span,
    .grid.items .item .buttons .btn--secondary span,
    .items.grid--rev .item .buttons .btn--secondary span,
    .items.grid--full .item .buttons .btn--secondary span,
    #our-story #PageContainer .items .item .buttons .btn--secondary span,
    body.page-materials #PageContainer .items .item .buttons .btn--secondary span,
    .page-material-innovators-judges #PageContainer .items .item .buttons .btn--secondary span,
    .grid.items .item .buttons .btn--alt span,
    .items.grid--rev .item .buttons .btn--alt span,
    .items.grid--full .item .buttons .btn--alt span,
    #our-story #PageContainer .items .item .buttons .btn--alt span,
    body.page-materials #PageContainer .items .item .buttons .btn--alt span,
    .page-material-innovators-judges #PageContainer .items .item .buttons .btn--alt span,
    .grid.items .item .buttons body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn span,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .grid.items .item .buttons .btn span,
    .items.grid--rev .item .buttons body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn span,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--rev .item .buttons .btn span,
    .items.grid--full .item .buttons body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn span,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--full .item .buttons .btn span {
      display: block; }
  @media screen and (max-width: 480px) {
    .grid.items .item .info, .items.grid--rev .item .info, .items.grid--full .item .info, #our-story #PageContainer .items .item .info,
    body.page-materials #PageContainer .items .item .info,
    .page-material-innovators-judges #PageContainer .items .item .info {
      flex-direction: column;
      flex-grow: 20; }
    .grid.items .item .title, .items.grid--rev .item .title, .items.grid--full .item .title, #our-story #PageContainer .items .item .title,
    body.page-materials #PageContainer .items .item .title,
    .page-material-innovators-judges #PageContainer .items .item .title,
    .grid.items .item .details,
    .items.grid--rev .item .details,
    .items.grid--full .item .details,
    #our-story #PageContainer .items .item .details,
    body.page-materials #PageContainer .items .item .details,
    .page-material-innovators-judges #PageContainer .items .item .details,
    .grid.items .item .buttons,
    .items.grid--rev .item .buttons,
    .items.grid--full .item .buttons,
    #our-story #PageContainer .items .item .buttons,
    body.page-materials #PageContainer .items .item .buttons,
    .page-material-innovators-judges #PageContainer .items .item .buttons {
      margin-left: 0; }
      .grid.items .item .title a span, .items.grid--rev .item .title a span, .items.grid--full .item .title a span, #our-story #PageContainer .items .item .title a span,
      body.page-materials #PageContainer .items .item .title a span,
      .page-material-innovators-judges #PageContainer .items .item .title a span,
      .grid.items .item .details a span,
      .items.grid--rev .item .details a span,
      .items.grid--full .item .details a span,
      #our-story #PageContainer .items .item .details a span,
      body.page-materials #PageContainer .items .item .details a span,
      .page-material-innovators-judges #PageContainer .items .item .details a span,
      .grid.items .item .buttons a span,
      .items.grid--rev .item .buttons a span,
      .items.grid--full .item .buttons a span,
      #our-story #PageContainer .items .item .buttons a span,
      body.page-materials #PageContainer .items .item .buttons a span,
      .page-material-innovators-judges #PageContainer .items .item .buttons a span {
        display: block; }
    .grid.items .item .buttons button, .items.grid--rev .item .buttons button, .items.grid--full .item .buttons button, #our-story #PageContainer .items .item .buttons button,
    body.page-materials #PageContainer .items .item .buttons button,
    .page-material-innovators-judges #PageContainer .items .item .buttons button,
    .grid.items .item .buttons a.btn,
    .items.grid--rev .item .buttons a.btn,
    .items.grid--full .item .buttons a.btn,
    #our-story #PageContainer .items .item .buttons a.btn,
    body.page-materials #PageContainer .items .item .buttons a.btn,
    .page-material-innovators-judges #PageContainer .items .item .buttons a.btn,
    .grid.items .item .buttons a.btn--secondary,
    .items.grid--rev .item .buttons a.btn--secondary,
    .items.grid--full .item .buttons a.btn--secondary,
    #our-story #PageContainer .items .item .buttons a.btn--secondary,
    body.page-materials #PageContainer .items .item .buttons a.btn--secondary,
    .page-material-innovators-judges #PageContainer .items .item .buttons a.btn--secondary,
    .grid.items .item .buttons a.btn--alt,
    .items.grid--rev .item .buttons a.btn--alt,
    .items.grid--full .item .buttons a.btn--alt,
    #our-story #PageContainer .items .item .buttons a.btn--alt,
    body.page-materials #PageContainer .items .item .buttons a.btn--alt,
    .page-material-innovators-judges #PageContainer .items .item .buttons a.btn--alt,
    .grid.items .item .buttons body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item a.btn,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .grid.items .item .buttons a.btn,
    .items.grid--rev .item .buttons body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item a.btn,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--rev .item .buttons a.btn,
    .items.grid--full .item .buttons body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item a.btn,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .items.grid--full .item .buttons a.btn {
      padding-right: 10px;
      padding-left: 10px; } }

@media screen and (min-width: 799px) {
  .grid.items, .items.grid--rev, .items.grid--full {
    margin-left: -60px; } }

#our-mission .shell > .main-content:first-child {
  display: none; }
@media screen and (max-width: 480px) {
  #our-mission [id*='__our-mission-hero-video'] {
    padding-bottom: 0; }
    #our-mission [id*='__our-mission-hero-video'] h2, #our-mission [id*='__our-mission-hero-video'] .h2, #our-mission [id*='__our-mission-hero-video'] body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-hero-video'] h2, #our-mission [id*='__our-mission-hero-video'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-hero-video'] h4, #our-mission [id*='__our-mission-hero-video'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-hero-video'] .h4 {
      font-size: 3.5em;
      line-height: 1.4em; } }
#our-mission [id*='__our-mission-innovating'] + .wrapper.main-content, #our-mission body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__our-mission-innovating'] + .main-content.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-innovating'] + .main-content.footer,
#our-mission body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__our-mission-innovating'] + .main-content.footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-innovating'] + .main-content.footer {
  display: none; }
#our-mission [id*='__our-mission-innovating'] .wrapper, #our-mission [id*='__our-mission-innovating'] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-innovating'] .footer,
#our-mission [id*='__our-mission-innovating'] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-innovating'] .footer {
  padding-bottom: 0; }
#our-mission [id*='__our-mission-innovating'] .icon {
  margin-top: 3em;
  margin-bottom: 3em; }
@media screen and (max-width: 480px) {
  #our-mission [id*='__our-mission-innovating'] {
    padding-bottom: 0; }
    #our-mission [id*='__our-mission-innovating'] h2, #our-mission [id*='__our-mission-innovating'] .h2, #our-mission [id*='__our-mission-innovating'] body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-innovating'] h2, #our-mission [id*='__our-mission-innovating'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-innovating'] h4, #our-mission [id*='__our-mission-innovating'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-innovating'] .h4 {
      margin-top: 0; }
    #our-mission [id*='__our-mission-innovating'] .grid.section-block, #our-mission [id*='__our-mission-innovating'] .section-block.grid--rev, #our-mission [id*='__our-mission-innovating'] .section-block.grid--full {
      margin-bottom: 20px; } }
#our-mission [id*='__our-mission-liquidplant-video'] {
  padding-bottom: 0;
  background-color: #eeece3; }
  #our-mission [id*='__our-mission-liquidplant-video'] h2, #our-mission [id*='__our-mission-liquidplant-video'] .h2, #our-mission [id*='__our-mission-liquidplant-video'] body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-liquidplant-video'] h2, #our-mission [id*='__our-mission-liquidplant-video'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-liquidplant-video'] h4, #our-mission [id*='__our-mission-liquidplant-video'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-liquidplant-video'] .h4 {
    text-transform: lowercase;
    max-width: 11em;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto; }
  @media screen and (max-width: 480px) {
    #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title {
      position: relative;
      color: #000000; }
      #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title h2, #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title .h2, #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title h4, #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title .h4 {
        margin: 50px auto 30px; }
        #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title h2:after, #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title .h2:after, #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4:after, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title h4:after, #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4:after, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-liquidplant-video'] .hero.video.vbg .home-title .h4:after {
          content: '';
          display: block;
          width: 1px;
          margin: 30px auto;
          border-right: 1px solid #000000;
          height: 100px; }
    #our-mission [id*='__our-mission-liquidplant-video'] .yt-player.video-wrapper {
      height: unset;
      padding-top: 56.2%; } }
#our-mission [id*='__our-mission-transforming'],
#our-mission [id*='__our-mission-transforming'] .wrapper,
#our-mission [id*='__our-mission-transforming'] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer,
body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-transforming'] .footer,
#our-mission [id*='__our-mission-transforming'] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-transforming'] .footer {
  padding-bottom: 15px; }
#our-mission [id*='__our-mission-transforming'] h2, #our-mission [id*='__our-mission-transforming'] .h2, #our-mission [id*='__our-mission-transforming'] body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-transforming'] h2, #our-mission [id*='__our-mission-transforming'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-transforming'] h4, #our-mission [id*='__our-mission-transforming'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-transforming'] .h4 {
  display: none; }
#our-mission [id*='__our-mission-transforming'] h4, #our-mission [id*='__our-mission-transforming'] .h4 {
  margin-bottom: 40px; }
#our-mission [id*='__our-mission-transforming'] p {
  margin-left: auto;
  margin-right: auto;
  max-width: 43em; }
@media screen and (max-width: 480px) {
  #our-mission [id*='__our-mission-transforming'] + .wrapper.main-content, #our-mission body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__our-mission-transforming'] + .main-content.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-transforming'] + .main-content.footer,
  #our-mission body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__our-mission-transforming'] + .main-content.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-transforming'] + .main-content.footer {
    padding-bottom: 30px; }
  #our-mission [id*='__our-mission-transforming'],
  #our-mission [id*='__our-mission-transforming'] .wrapper,
  #our-mission [id*='__our-mission-transforming'] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer,
  body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-transforming'] .footer,
  #our-mission [id*='__our-mission-transforming'] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-transforming'] .footer {
    padding-top: 0; }
  #our-mission [id*='__our-mission-transforming'] .grid.section-block, #our-mission [id*='__our-mission-transforming'] .section-block.grid--rev, #our-mission [id*='__our-mission-transforming'] .section-block.grid--full {
    margin-top: 0; }
  #our-mission [id*='__our-mission-transforming'] h2, #our-mission [id*='__our-mission-transforming'] .h2, #our-mission [id*='__our-mission-transforming'] body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-transforming'] h2, #our-mission [id*='__our-mission-transforming'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-transforming'] h4, #our-mission [id*='__our-mission-transforming'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-transforming'] .h4 {
    margin-top: 10px; }
  #our-mission [id*='__our-mission-transforming'] h4, #our-mission [id*='__our-mission-transforming'] .h4 {
    margin-bottom: 20px; } }
#our-mission .shopify-section.text-divider .grid__item {
  padding-left: 15px; }
#our-mission .shopify-section.text-divider .main-content {
  padding-bottom: 0; }
#our-mission [id*='__our-mission-divider'] .wrapper .wrapper, #our-mission [id*='__our-mission-divider'] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .wrapper, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-divider'] .footer .wrapper,
#our-mission [id*='__our-mission-divider'] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .wrapper,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-divider'] .footer .wrapper, #our-mission [id*='__our-mission-divider'] .wrapper body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-divider'] .wrapper .footer, #our-mission [id*='__our-mission-divider'] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-divider'] .footer .footer,
#our-mission [id*='__our-mission-divider'] .wrapper body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-divider'] .wrapper .footer,
#our-mission [id*='__our-mission-divider'] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-divider'] .footer .footer {
  padding-bottom: 60px; }
@media screen and (max-width: 480px) {
  #our-mission [id*='__our-mission-divider'] .grid, #our-mission [id*='__our-mission-divider'] .grid--rev, #our-mission [id*='__our-mission-divider'] .grid--full {
    margin-top: 30px;
    margin-bottom: 0px; } }
#our-mission [id*='__our-mission-our-innovations'] {
  margin: 100px 0 60px; }
  #our-mission [id*='__our-mission-our-innovations'] .two-up .grid, #our-mission [id*='__our-mission-our-innovations'] .two-up .grid--rev, #our-mission [id*='__our-mission-our-innovations'] .two-up .grid--full {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center; }
    @media screen and (max-width: 480px) {
      #our-mission [id*='__our-mission-our-innovations'] .two-up .grid, #our-mission [id*='__our-mission-our-innovations'] .two-up .grid--rev, #our-mission [id*='__our-mission-our-innovations'] .two-up .grid--full {
        flex-direction: column; } }
  #our-mission [id*='__our-mission-our-innovations'] .content.block:first-of-type .home-title {
    display: none; }
  #our-mission [id*='__our-mission-our-innovations'] .content.block .media_container > img {
    padding: 0 15% 0 0 !important; }
    @media screen and (max-width: 480px) {
      #our-mission [id*='__our-mission-our-innovations'] .content.block .media_container > img {
        padding: 0 !important; } }
  #our-mission [id*='__our-mission-our-innovations'] h2 ul, #our-mission [id*='__our-mission-our-innovations'] .h2 ul, #our-mission [id*='__our-mission-our-innovations'] body.page-the-mens-collection #PageContainer .products h2 ul, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-our-innovations'] h2 ul, #our-mission [id*='__our-mission-our-innovations'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 ul, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-our-innovations'] h4 ul, #our-mission [id*='__our-mission-our-innovations'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 ul, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-our-innovations'] .h4 ul {
    font-size: inherit;
    line-height: 1.3;
    margin-bottom: 10px; }
    #our-mission [id*='__our-mission-our-innovations'] h2 ul li, #our-mission [id*='__our-mission-our-innovations'] .h2 ul li, #our-mission [id*='__our-mission-our-innovations'] body.page-the-mens-collection #PageContainer .products h2 ul li, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-our-innovations'] h2 ul li, #our-mission [id*='__our-mission-our-innovations'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 ul li, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-our-innovations'] h4 ul li, #our-mission [id*='__our-mission-our-innovations'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 ul li, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-our-innovations'] .h4 ul li {
      padding-left: 0.75em;
      margin-bottom: 0.5em; }
  #our-mission [id*='__our-mission-our-innovations'] .btn, #our-mission [id*='__our-mission-our-innovations'] .btn--secondary, #our-mission [id*='__our-mission-our-innovations'] .btn--alt {
    width: 100%; }
  @media screen and (max-width: 480px) {
    #our-mission [id*='__our-mission-our-innovations'] .two-up {
      margin-left: -15px;
      margin-right: -30px; }
      #our-mission [id*='__our-mission-our-innovations'] .two-up .grid--full.home-title {
        padding: 0;
        /*margin-left: -15px;*/
        margin-right: -15px;
        width: unset;
        padding-bottom: 0 !important; }
    #our-mission [id*='__our-mission-our-innovations'] h5, #our-mission [id*='__our-mission-our-innovations'] .h5 {
      text-align: center; }
    #our-mission [id*='__our-mission-our-innovations'] h2 ul, #our-mission [id*='__our-mission-our-innovations'] .h2 ul, #our-mission [id*='__our-mission-our-innovations'] body.page-the-mens-collection #PageContainer .products h2 ul, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-our-innovations'] h2 ul, #our-mission [id*='__our-mission-our-innovations'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 ul, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-our-innovations'] h4 ul, #our-mission [id*='__our-mission-our-innovations'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 ul, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-our-innovations'] .h4 ul {
      margin-left: 1.25em;
      margin-bottom: 2em; }
    #our-mission [id*='__our-mission-our-innovations'] p {
      margin-left: 37px; }
      #our-mission [id*='__our-mission-our-innovations'] p .btn, #our-mission [id*='__our-mission-our-innovations'] p .btn--secondary, #our-mission [id*='__our-mission-our-innovations'] p .btn--alt {
        width: unset; } }
  @media screen and (max-width: 480px) {
    #our-mission [id*='__our-mission-our-innovations'] {
      margin-top: 0;
      margin-bottom: 0; } }
@media screen and (max-width: 480px) {
  #our-mission .text-divider {
    display: none; } }
#our-mission [id*='__our-mission-what-drives-us'] + .wrapper, #our-mission body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__our-mission-what-drives-us'] + .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-what-drives-us'] + .footer,
#our-mission body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__our-mission-what-drives-us'] + .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-what-drives-us'] + .footer {
  display: none; }
#our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full {
  flex-wrap: wrap;
  display: flex; }
#our-mission [id*='__our-mission-what-drives-us'] .section-container .grid__item:nth-of-type(2),
#our-mission [id*='__our-mission-what-drives-us'] .section-container .grid__item:nth-of-type(4) {
  border-right: 1px solid #000; }
#our-mission [id*='__our-mission-what-drives-us'] .section-container .grid__item:nth-of-type(2),
#our-mission [id*='__our-mission-what-drives-us'] .section-container .grid__item:nth-of-type(3) {
  border-bottom: 1px solid #000; }
#our-mission [id*='__our-mission-what-drives-us'] .content.grid__item:first-of-type .home-title {
  margin: 60px 0; }
#our-mission [id*='__our-mission-what-drives-us'] .home-title {
  margin: 90px 0 60px; }
  #our-mission [id*='__our-mission-what-drives-us'] .home-title svg {
    height: 50px;
    margin-bottom: 60px; }
  #our-mission [id*='__our-mission-what-drives-us'] .home-title h2, #our-mission [id*='__our-mission-what-drives-us'] .home-title .h2, #our-mission [id*='__our-mission-what-drives-us'] .home-title body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-what-drives-us'] .home-title h2, #our-mission [id*='__our-mission-what-drives-us'] .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .home-title h4, #our-mission [id*='__our-mission-what-drives-us'] .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .home-title .h4 {
    line-height: 1.9;
    font-weight: 300; }
@media screen and (max-width: 480px) {
  #our-mission [id*='__our-mission-what-drives-us'] {
    padding-bottom: 0; }
    #our-mission [id*='__our-mission-what-drives-us'] .section-container {
      margin-top: 0; }
      #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full {
        margin-left: -30px; }
      #our-mission [id*='__our-mission-what-drives-us'] .section-container .grid__item:nth-of-type(2),
      #our-mission [id*='__our-mission-what-drives-us'] .section-container .grid__item:nth-of-type(3),
      #our-mission [id*='__our-mission-what-drives-us'] .section-container .grid__item:nth-of-type(4) {
        border: none; }
      #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid .grid__item:not(:first-child) h2, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev .grid__item:not(:first-child) h2, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full .grid__item:not(:first-child) h2, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid .grid__item:not(:first-child) .h2, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev .grid__item:not(:first-child) .h2, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full .grid__item:not(:first-child) .h2, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid .grid__item:not(:first-child) #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid .grid__item:not(:first-child) h4, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev .grid__item:not(:first-child) #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev .grid__item:not(:first-child) h4, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full .grid__item:not(:first-child) #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full .grid__item:not(:first-child) h4, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid .grid__item:not(:first-child) #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid .grid__item:not(:first-child) .h4, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev .grid__item:not(:first-child) #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--rev .grid__item:not(:first-child) .h4, #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full .grid__item:not(:first-child) #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-what-drives-us'] .section-container > .grid--full .grid__item:not(:first-child) .h4 {
        font-family: proxima-nova,HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;
        font-style: normal;
        font-weight: 350;
        text-transform: none;
        letter-spacing: .08em;
        font-size: 1.2em;
        line-height: 185%; }
      #our-mission [id*='__our-mission-what-drives-us'] .section-container .home-title {
        margin-top: 0; }
        #our-mission [id*='__our-mission-what-drives-us'] .section-container .home-title svg {
          margin-bottom: 10px; }
      #our-mission [id*='__our-mission-what-drives-us'] .section-container .content.grid__item:first-of-type .home-title {
        margin: 50px auto; } }
#our-mission [id*='__our-mission-explore'] {
  padding-bottom: 140px; }
  #our-mission [id*='__our-mission-explore'] + .wrapper, #our-mission body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__our-mission-explore'] + .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-mission [id*='__our-mission-explore'] + .footer,
  #our-mission body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__our-mission-explore'] + .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-mission [id*='__our-mission-explore'] + .footer {
    display: none; }
  #our-mission [id*='__our-mission-explore'] .section-container .grid__item:not(:first-of-type) {
    padding-top: 90px;
    padding-bottom: 90px; }
  #our-mission [id*='__our-mission-explore'] .section-container .grid__item:nth-of-type(2), #our-mission [id*='__our-mission-explore'] .section-container .grid__item:nth-of-type(3) {
    border-right: 1px solid #fff; }
  #our-mission [id*='__our-mission-explore'] .section-container h2, #our-mission [id*='__our-mission-explore'] .section-container .h2, #our-mission [id*='__our-mission-explore'] .section-container body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #our-mission [id*='__our-mission-explore'] .section-container h2, #our-mission [id*='__our-mission-explore'] .section-container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container h4, #our-mission [id*='__our-mission-explore'] .section-container #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container .h4 {
    margin-bottom: 1.5em; }
  #our-mission [id*='__our-mission-explore'] .section-container .btn, #our-mission [id*='__our-mission-explore'] .section-container .btn--secondary, #our-mission [id*='__our-mission-explore'] .section-container .btn--alt {
    padding: 12px 70px; }
  @media screen and (max-width: 480px) {
    #our-mission [id*='__our-mission-explore'] {
      padding-bottom: 60px; }
      #our-mission [id*='__our-mission-explore'] .section-container {
        margin-top: 30px; }
        #our-mission [id*='__our-mission-explore'] .section-container > .grid, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full {
          margin-left: -30px; }
          #our-mission [id*='__our-mission-explore'] .section-container > .grid .content:first-child .grid__item, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .content:first-child .grid__item, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .content:first-child .grid__item {
            flex-direction: column; }
            #our-mission [id*='__our-mission-explore'] .section-container > .grid .content:first-child .grid__item .btn-container, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .content:first-child .grid__item .btn-container, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .content:first-child .grid__item .btn-container {
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              margin: 40px auto 0;
              border-right: 1px solid #ffffff;
              height: 110px;
              width: 1px; }
          #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item {
            border: none; }
            #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item:not(:first-of-type), #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item:not(:first-of-type), #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item:not(:first-of-type) {
              margin-top: 40px;
              padding-top: 0;
              padding-bottom: 0; }
            #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item h2, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item h2, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item h2, #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item .h2, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item .h2, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item .h2, #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item h4, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item h4, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item h4, #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item .h4, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item .h4, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item .h4 {
              margin-bottom: unset; }
            #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item .btn, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item .btn, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item .btn, #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item .btn--secondary, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item .btn--secondary, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item .btn--secondary, #our-mission [id*='__our-mission-explore'] .section-container > .grid .grid__item .btn--alt, #our-mission [id*='__our-mission-explore'] .section-container > .grid--rev .grid__item .btn--alt, #our-mission [id*='__our-mission-explore'] .section-container > .grid--full .grid__item .btn--alt {
              padding: 0.5em 0 0;
              color: #ffffff;
              border-width: 0;
              text-decoration: underline;
              background-color: transparent;
              font-size: 11px;
              font-weight: 400;
              line-height: 1; } }

#pop-up-new-york #hero h1, #pop-up-new-york #hero .h1 {
  font-size: 7.5em;
  font-weight: 600; }
#pop-up-new-york #hero h5, #pop-up-new-york #hero .h5 {
  font-size: 1.6em;
  margin-bottom: 0.5em; }
#pop-up-new-york #hero h1, #pop-up-new-york #hero .h1,
#pop-up-new-york #hero h5,
#pop-up-new-york #hero .h5 {
  color: #fff; }
@media screen and (max-width: 799px) {
  #pop-up-new-york #hero {
    margin-bottom: 30px; } }
@media screen and (max-width: 480px) {
  #pop-up-new-york #hero {
    margin-bottom: 15px; }
    #pop-up-new-york #hero h1, #pop-up-new-york #hero .h1 {
      font-size: 4em; } }
#pop-up-new-york .handle-pop-up-new-york-page {
  padding-top: 0; }
#pop-up-new-york .shell .grid.two-up, #pop-up-new-york .shell .two-up.grid--rev, #pop-up-new-york .shell .two-up.grid--full {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap; }
  #pop-up-new-york .shell .grid.two-up > .grid__item.text, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text {
    padding: 40px 60px 40px 90px; }
    #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center {
      background-color: transparent;
      position: relative;
      height: 100%; }
      #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center:before, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center:before, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center:before, #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center:after, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center:after, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center:after {
        content: '';
        width: 10px;
        height: 10px;
        background: black;
        position: absolute;
        right: -1px;
        bottom: -1px;
        z-index: 0; }
      #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center:after, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center:after, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center:after {
        left: -1px;
        right: auto; }
      #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div {
        height: 100%;
        width: 100%;
        margin: 0;
        z-index: 1;
        position: relative; }
        #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div:before, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div:before, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div:before, #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div:after, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div:after, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div:after {
          content: '';
          width: 10px;
          height: 10px;
          background: black;
          position: absolute;
          right: -1px;
          top: -1px;
          z-index: -1; }
        #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div:after, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div:after, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div:after {
          left: -1px;
          right: auto; }
        #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div > div, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div > div {
          z-index: 1;
          background-color: #fff;
          height: 100%;
          padding: 20px 0;
          display: flex;
          flex-direction: column;
          justify-content: center;
          font-weight: 400; }
          #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div > div h2, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div h2, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div > div h2, #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div > div .h2, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div .h2, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div > div .h2, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell .grid.two-up > .grid__item.text > .v-center > div > div #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div > div #aboutTLFeatures h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .grid.two-up > .grid__item.text > .v-center > div > div h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell #aboutTLFeatures .grid.two-up > .grid__item.text > .v-center > div > div h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div #aboutTLFeatures h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .two-up.grid--rev > .grid__item.text > .v-center > div > div h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell #aboutTLFeatures .two-up.grid--rev > .grid__item.text > .v-center > div > div h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell .two-up.grid--full > .grid__item.text > .v-center > div > div #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div > div #aboutTLFeatures h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .two-up.grid--full > .grid__item.text > .v-center > div > div h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell #aboutTLFeatures .two-up.grid--full > .grid__item.text > .v-center > div > div h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell .grid.two-up > .grid__item.text > .v-center > div > div #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div > div #aboutTLFeatures .h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .grid.two-up > .grid__item.text > .v-center > div > div .h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell #aboutTLFeatures .grid.two-up > .grid__item.text > .v-center > div > div .h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div #aboutTLFeatures .h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .two-up.grid--rev > .grid__item.text > .v-center > div > div .h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell #aboutTLFeatures .two-up.grid--rev > .grid__item.text > .v-center > div > div .h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell .two-up.grid--full > .grid__item.text > .v-center > div > div #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div > div #aboutTLFeatures .h4, #pop-up-new-york #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .two-up.grid--full > .grid__item.text > .v-center > div > div .h4, #the-watch-band-portfolio.page-watch-band-portfolio #pop-up-new-york .shell #aboutTLFeatures .two-up.grid--full > .grid__item.text > .v-center > div > div .h4 {
            margin-top: 0.3em; }
          #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div > div a, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div a, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div > div a {
            color: black; }
          #pop-up-new-york .shell .grid.two-up > .grid__item.text > .v-center > div > div .info, #pop-up-new-york .shell .two-up.grid--rev > .grid__item.text > .v-center > div > div .info, #pop-up-new-york .shell .two-up.grid--full > .grid__item.text > .v-center > div > div .info {
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: 1.5em;
            margin-top: 1em; }
  #pop-up-new-york .shell .grid.two-up .grid__item img, #pop-up-new-york .shell .two-up.grid--rev .grid__item img, #pop-up-new-york .shell .two-up.grid--full .grid__item img {
    width: 100%; }
#pop-up-new-york .svg-wrapper {
  background-color: #d7c9c2;
  padding: 135px 40px 120px; }
  #pop-up-new-york .svg-wrapper img {
    width: 50%;
    min-width: 210px;
    max-width: 520px; }

body.page-questions-answered #hero .title .wrapper .grid__item > *:last-child:after, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item > *:last-child:after, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item > *:last-child:after,
body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item > *:last-child:after,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item > *:last-child:after {
  border-color: #000000; }
@media screen and (max-width: 799px) {
  body.page-questions-answered #hero > img {
    max-width: unset;
    margin-left: 0 !important;
    width: 100% !important; }
  body.page-questions-answered #hero .title .wrapper .grid__item > *:last-child:after, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item > *:last-child:after, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item > *:last-child:after,
  body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item > *:last-child:after,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item > *:last-child:after {
    height: 100px;
    margin: 30px auto -100px; } }
@media screen and (max-width: 480px) {
  body.page-questions-answered #hero .title .wrapper .grid__item, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item,
  body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item {
    color: #ffffff; }
    body.page-questions-answered #hero .title .wrapper .grid__item h1, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item h1, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item h1,
    body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item h1,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item h1, body.page-questions-answered #hero .title .wrapper .grid__item .h1, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item .h1, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item .h1,
    body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item .h1,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item .h1 {
      font-size: 3.8em; }
  body.page-questions-answered #hero > img {
    margin-left: -25% !important;
    width: 260% !important;
    margin-top: -25px !important;
    margin-bottom: -40px !important; }
  body.page-questions-answered #hero .title {
    background-color: rgba(0, 0, 0, 0.1); }
  body.page-questions-answered #hero .title .wrapper .grid__item, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item,
  body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item {
    color: #ffffff; }
    body.page-questions-answered #hero .title .wrapper .grid__item .h5, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item .h5, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item .h5,
    body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item .h5,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item .h5 {
      max-width: 210px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px; }
      body.page-questions-answered #hero .title .wrapper .grid__item .h5 br, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item .h5 br, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item .h5 br,
      body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item .h5 br,
      body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item .h5 br {
        display: none; }
    body.page-questions-answered #hero .title .wrapper .grid__item > *:last-child:after, body.page-questions-answered #hero .title body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item > *:last-child:after, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item > *:last-child:after,
    body.page-questions-answered #hero .title body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item > *:last-child:after,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered #hero .title .footer .grid__item > *:last-child:after {
      margin-top: 40px;
      border-color: #ffffff;
      height: 100px; } }
body.page-questions-answered .shell {
  margin-top: 30px; }
  body.page-questions-answered .shell .question {
    margin-bottom: 75px; }
    body.page-questions-answered .shell .question:after {
      display: block;
      content: '';
      border-bottom: 1px solid #bfbfbf;
      padding-top: 75px;
      margin-left: 30px; }
    body.page-questions-answered .shell .question .large--five-twelfths {
      padding-left: 0; }
    body.page-questions-answered .shell .question .large--one-half {
      padding-left: 90px;
      padding-right: 10%; }
    @media screen and (max-width: 799px) {
      body.page-questions-answered .shell .question {
        display: flex;
        flex-direction: column; }
        body.page-questions-answered .shell .question .large--one-twelfth h2, body.page-questions-answered .shell .question .large--one-twelfth .h2, body.page-questions-answered .shell .question .large--one-twelfth body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-questions-answered .shell .question .large--one-twelfth h2, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell .question .large--one-twelfth #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell .question .large--one-twelfth #aboutTLFeatures h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .question .large--one-twelfth h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .question .large--one-twelfth h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell .question .large--one-twelfth #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell .question .large--one-twelfth #aboutTLFeatures .h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .question .large--one-twelfth .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .question .large--one-twelfth .h4 {
          margin-top: 60px; }
        body.page-questions-answered .shell .question .large--five-twelfths {
          order: -1; }
          body.page-questions-answered .shell .question .large--five-twelfths h2, body.page-questions-answered .shell .question .large--five-twelfths .h2, body.page-questions-answered .shell .question .large--five-twelfths body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-questions-answered .shell .question .large--five-twelfths h2, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell .question .large--five-twelfths #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell .question .large--five-twelfths #aboutTLFeatures h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .question .large--five-twelfths h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .question .large--five-twelfths h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell .question .large--five-twelfths #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell .question .large--five-twelfths #aboutTLFeatures .h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .question .large--five-twelfths .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .question .large--five-twelfths .h4 {
            margin-bottom: 0; }
        body.page-questions-answered .shell .question:after {
          padding-top: 40px;
          margin-left: 60px;
          margin-right: 30px; }
        body.page-questions-answered .shell .question .grid__item {
          padding-left: 60px;
          padding-right: 30px; }
        body.page-questions-answered .shell .question h2, body.page-questions-answered .shell .question .h2, body.page-questions-answered .shell .question body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-questions-answered .shell .question h2, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell .question #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell .question #aboutTLFeatures h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .question h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .question h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell .question #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell .question #aboutTLFeatures .h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .question .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .question .h4 {
          margin-bottom: 0.75em;
          font-size: 2.5em; } }
  body.page-questions-answered .shell hr {
    margin-top: 80px; }
    @media screen and (max-width: 799px) {
      body.page-questions-answered .shell hr {
        margin-top: 40px; } }
  body.page-questions-answered .shell h2, body.page-questions-answered .shell .h2, body.page-questions-answered .shell body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-questions-answered .shell h2, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .h4,
  body.page-questions-answered .shell .h2,
  body.page-questions-answered .shell body.page-the-mens-collection #PageContainer .products h2,
  body.page-the-mens-collection #PageContainer .products body.page-questions-answered .shell h2,
  body.page-questions-answered .shell body.page-the-mens-collection #PageContainer .products .h2,
  body.page-the-mens-collection #PageContainer .products body.page-questions-answered .shell .h2,
  body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
  #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures h4,
  body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
  #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures .h4 {
    font-family: "ButlerMedium", "Butler", "poynter-oldstyle-text", Georgia, Times, serif;
    margin-bottom: 1.5em;
    font-size: 2.7em;
    line-height: 1.1;
    text-transform: lowercase; }
  body.page-questions-answered .shell p {
    font-family: "poynter-oldstyle-text", Georgia, Times, serif;
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: 0; }
    body.page-questions-answered .shell p a {
      color: #000;
      text-decoration: underline; }
  body.page-questions-answered .shell .btn--secondary {
    margin-bottom: 15px; }
  body.page-questions-answered .shell .wrapper.answers, body.page-questions-answered .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content .answers.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-questions-answered .shell .answers.footer,
  body.page-questions-answered .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .answers.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-questions-answered .shell .answers.footer {
    background-color: #eeeeee; }
  body.page-questions-answered .shell #contactToggle {
    margin: 60px 30px; }
    body.page-questions-answered .shell #contactToggle h2, body.page-questions-answered .shell #contactToggle .h2, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #contactToggle #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #contactToggle #aboutTLFeatures h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #contactToggle h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures #contactToggle h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #contactToggle #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #contactToggle #aboutTLFeatures .h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #contactToggle .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures #contactToggle .h4 {
      margin-top: 120px;
      margin-bottom: 0;
      text-transform: lowercase; }
    @media screen and (max-width: 480px) {
      body.page-questions-answered .shell #contactToggle {
        margin: 30px 0; }
        body.page-questions-answered .shell #contactToggle h2, body.page-questions-answered .shell #contactToggle .h2, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #contactToggle #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #contactToggle #aboutTLFeatures h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #contactToggle h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures #contactToggle h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #contactToggle #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #contactToggle #aboutTLFeatures .h4, body.page-questions-answered #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #contactToggle .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-questions-answered .shell #aboutTLFeatures #contactToggle .h4 {
          margin-top: 90px; } }
  body.page-questions-answered .shell input[type="text"],
  body.page-questions-answered .shell input[type="email"],
  body.page-questions-answered .shell textarea {
    background-color: transparent;
    padding: 12px 16px;
    border-color: #777777; }
    body.page-questions-answered .shell input[type="text"]::-webkit-input-placeholder,
    body.page-questions-answered .shell input[type="email"]::-webkit-input-placeholder,
    body.page-questions-answered .shell textarea::-webkit-input-placeholder {
      color: #000000;
      text-transform: uppercase; }
    body.page-questions-answered .shell input[type="text"]:-moz-placeholder,
    body.page-questions-answered .shell input[type="email"]:-moz-placeholder,
    body.page-questions-answered .shell textarea:-moz-placeholder {
      color: #000000;
      opacity: 1;
      text-transform: uppercase; }
    body.page-questions-answered .shell input[type="text"]::-moz-placeholder,
    body.page-questions-answered .shell input[type="email"]::-moz-placeholder,
    body.page-questions-answered .shell textarea::-moz-placeholder {
      color: #000000;
      opacity: 1;
      text-transform: uppercase; }
    body.page-questions-answered .shell input[type="text"]:-ms-input-placeholder,
    body.page-questions-answered .shell input[type="email"]:-ms-input-placeholder,
    body.page-questions-answered .shell textarea:-ms-input-placeholder {
      color: #000000;
      text-transform: uppercase; }
  body.page-questions-answered .shell .form-vertical {
    margin: 30px 45px 60px; }
    body.page-questions-answered .shell .form-vertical .input-full.half {
      width: calc(50% - 5px);
      float: left; }
    body.page-questions-answered .shell .form-vertical #ContactFormCity {
      margin-right: 5px; }
    body.page-questions-answered .shell .form-vertical #ContactFormProvince {
      margin-left: 5px; }
    @media screen and (max-width: 480px) {
      body.page-questions-answered .shell .form-vertical {
        margin: 0 30px; }
        body.page-questions-answered .shell .form-vertical .input-full.half {
          width: 100%; }
        body.page-questions-answered .shell .form-vertical #ContactFormCity,
        body.page-questions-answered .shell .form-vertical #ContactFormProvince {
          margin-right: 0;
          margin-left: 0; } }
    body.page-questions-answered .shell .form-vertical .btn, body.page-questions-answered .shell .form-vertical .btn--secondary, body.page-questions-answered .shell .form-vertical .btn--alt, body.page-questions-answered .shell .form-vertical body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item body.page-questions-answered .shell .form-vertical .btn {
      margin: 60px auto 0 auto;
      display: block;
      padding: 12px 36px; }

#join-our-mission #PageContainer .shell {
  background: #eeeeee;
  margin: 50px;
  padding: 70px 50px;
  flex-grow: 1;
  display: flex;
  align-items: center; }
  #join-our-mission #PageContainer .shell > .wrapper, #join-our-mission #PageContainer body.page-shop [id*='__shop-home-banner'] .home-hero .content .shell > .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #join-our-mission #PageContainer .shell > .footer,
  #join-our-mission #PageContainer body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .shell > .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #join-our-mission #PageContainer .shell > .footer {
    flex-grow: 1; }

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 .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 {
  margin-bottom: 0; }
body.page-subscribe .main-content .grid.section-block h1, body.page-subscribe .main-content .section-block.grid--rev h1, body.page-subscribe .main-content .section-block.grid--full h1, body.page-subscribe .main-content .grid.section-block .h1, body.page-subscribe .main-content .section-block.grid--rev .h1, body.page-subscribe .main-content .section-block.grid--full .h1 {
  margin: 0 auto 30px;
  max-width: 700px;
  font-size: 5.5em; }
body.page-subscribe .main-content .grid.section-block .h-tick, body.page-subscribe .main-content .section-block.grid--rev .h-tick, body.page-subscribe .main-content .section-block.grid--full .h-tick {
  margin: 3em auto; }
body.page-subscribe .main-content .grid.section-block p, body.page-subscribe .main-content .section-block.grid--rev p, body.page-subscribe .main-content .section-block.grid--full p {
  margin-bottom: 2.5em;
  font-size: 1.3em; }
body.page-subscribe hr {
  margin-bottom: 2em; }
body.page-subscribe .main-content .signup-page {
  position: relative;
  background-color: transparent; }
  body.page-subscribe .main-content .signup-page fieldset {
    border: none; }
  body.page-subscribe .main-content .signup-page input {
    text-align: left; }
  body.page-subscribe .main-content .signup-page .btn, body.page-subscribe .main-content .signup-page .btn--secondary, body.page-subscribe .main-content .signup-page .btn--alt, body.page-subscribe .main-content .signup-page body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item body.page-subscribe .main-content .signup-page .btn {
    margin: 0;
    border-bottom: 0; }

@media screen and (max-width: 1000px) {
  body.page-subscribe main.main-content {
    padding: 30px 0; }
    body.page-subscribe main.main-content .grid.section-block h1, body.page-subscribe main.main-content .section-block.grid--rev h1, body.page-subscribe main.main-content .section-block.grid--full h1, body.page-subscribe main.main-content .grid.section-block .h1, body.page-subscribe main.main-content .section-block.grid--rev .h1, body.page-subscribe main.main-content .section-block.grid--full .h1 {
      font-size: 4em; }
  body.page-subscribe .site-footer {
    bottom: 0; }

  #join-our-mission #PageContainer .shell {
    margin: 25px 25px 65px; } }
@media screen and (max-width: 600px) {
  body.page-subscribe main.main-content {
    padding: 30px 0; }
    body.page-subscribe main.main-content .grid.section-block h1, body.page-subscribe main.main-content .section-block.grid--rev h1, body.page-subscribe main.main-content .section-block.grid--full h1, body.page-subscribe main.main-content .grid.section-block .h1, body.page-subscribe main.main-content .section-block.grid--rev .h1, body.page-subscribe main.main-content .section-block.grid--full .h1 {
      font-size: 3.2em; }
    body.page-subscribe main.main-content .grid.section-block p, body.page-subscribe main.main-content .section-block.grid--rev p, body.page-subscribe main.main-content .section-block.grid--full p {
      font-size: 1.1em; } }
@media screen and (max-width: 500px) {
  body.page-subscribe main.main-content {
    padding: 10px 0 40px; }
    body.page-subscribe main.main-content .grid.section-block h1, body.page-subscribe main.main-content .section-block.grid--rev h1, body.page-subscribe main.main-content .section-block.grid--full h1, body.page-subscribe main.main-content .grid.section-block .h1, body.page-subscribe main.main-content .section-block.grid--rev .h1, body.page-subscribe main.main-content .section-block.grid--full .h1 {
      font-size: 3em; }
    body.page-subscribe main.main-content .grid.section-block p, body.page-subscribe main.main-content .section-block.grid--rev p, body.page-subscribe main.main-content .section-block.grid--full p {
      margin-bottom: 0; }
    body.page-subscribe main.main-content input[type="email"] {
      text-align: center; }

  #join-our-mission #PageContainer .shell {
    padding: 15px; } }
body.page-shop .shell .main-content:first-child {
  padding: 0; }
body.page-shop .shell .main-content.f {
  max-width: unset;
  padding: 0; }
body.page-shop [id*='__shop-home-banner'],
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] {
  padding-bottom: 0; }
  body.page-shop [id*='__shop-home-banner'] .home-hero .content .grid__item.center,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .grid__item.center {
    text-align: left !important; }
  body.page-shop [id*='__shop-home-banner'] .home-hero .content p.supertitle,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content p.supertitle {
    margin-bottom: 1.5em; }
  body.page-shop [id*='__shop-home-banner'] .home-hero .content h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content .h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-shop [id*='__shop-home-banner'] .home-hero .content h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner'] .home-hero .content h4, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner'] .home-hero .content .h4,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content h2,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .h2,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-the-mens-collection #PageContainer .products h2,
  body.page-the-mens-collection #PageContainer .products body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content h2,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content h4,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .h4 {
    margin-bottom: 0.3em;
    font-weight: 300; }
  body.page-shop [id*='__shop-home-banner'] .home-hero .content p.subtitle.butler-s,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content p.subtitle.butler-s {
    line-height: 1.3;
    font-weight: 300; }
    body.page-shop [id*='__shop-home-banner'] .home-hero .content p.subtitle.butler-s small,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content p.subtitle.butler-s small {
      font-size: 0.54em; }
  body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer {
    width: 100%;
    margin-bottom: 30px;
    padding-left: 120px;
    padding-right: 90px; }
  body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer p,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer p {
    display: flex;
    white-space: nowrap;
    align-items: center; }
    body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer p span,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer p span {
      display: block;
      width: 100%;
      height: 1px;
      margin-left: 20px;
      margin-right: 20px;
      border-bottom: 1px solid black; }
  @media screen and (max-width: 480px) {
    body.page-shop [id*='__shop-home-banner'] .home-hero .content .grid__item.center,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .grid__item.center {
      margin-left: 0; }
    body.page-shop [id*='__shop-home-banner'] .home-hero .content p.supertitle,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content p.supertitle {
      margin-bottom: 1.2em;
      margin-top: 10%; }
    body.page-shop [id*='__shop-home-banner'] .home-hero .content h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content .h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-shop [id*='__shop-home-banner'] .home-hero .content h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner'] .home-hero .content h4, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner'] .home-hero .content .h4,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content h2,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .h2,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-the-mens-collection #PageContainer .products h2,
    body.page-the-mens-collection #PageContainer .products body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content h2,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content h4,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .h4 {
      margin-bottom: 0 !important;
      line-height: 1.2em; }
    body.page-shop [id*='__shop-home-banner'] .home-hero .content p.subtitle.butler-s,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content p.subtitle.butler-s {
      font-size: 0.85em;
      max-width: 50%;
      margin-bottom: 10%; }
    body.page-shop [id*='__shop-home-banner'] .home-hero .content .btn, body.page-shop [id*='__shop-home-banner'] .home-hero .content .btn--secondary, body.page-shop [id*='__shop-home-banner'] .home-hero .content .btn--alt, body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [id*='__shop-home-banner'] .home-hero .content .btn,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .btn,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .btn--secondary,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .btn--alt,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__shop-press"] .section-container .home-title .grid__item .btn,
    body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .btn {
      min-width: calc(50% - 15px) !important; } }
  body.page-shop [id*='__shop-home-banner'] + .main-content.d,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] + .main-content.d {
    display: none; }
body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .main-content {
  padding-bottom: 0; }
body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .home-hero .content p:first-child {
  margin-bottom: 1.2em; }
body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content h2, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content .h2, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content h2, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content h4, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .content .h4 {
  margin-bottom: 1.2em; }
@media screen and (max-width: 480px) {
  body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] .wrapper .grid__item.center > *, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] [id*='__shop-home-banner'] .home-hero .content .footer .grid__item.center > *, body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__28407ead-9824-442d-b20e-129eff020126'] .footer .grid__item.center > *,
  body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item.center > *,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__28407ead-9824-442d-b20e-129eff020126'] .footer .grid__item.center > * {
    max-width: 15em;
    margin-left: auto;
    margin-right: auto; }
  body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] a.btn.btn--x-wide.btn--inverse, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] a.btn--x-wide.btn--inverse.btn--secondary, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] a.btn--x-wide.btn--inverse.btn--alt, body.page-shop [id*='__28407ead-9824-442d-b20e-129eff020126'] [id*="__shop-press"] .section-container .home-title .grid__item a.btn--x-wide.btn--inverse.btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [id*='__28407ead-9824-442d-b20e-129eff020126'] a.btn--x-wide.btn--inverse.btn {
    max-width: 100%; } }
body.page-shop [id*='__shop-home-banner'] .home-hero .content .grid__item.center {
  text-align: center !important; }
@media screen and (min-width: 480px) and (max-width: 1350px) {
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content h2.butler-xl, body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content .butler-xl.h2, body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content body.page-the-mens-collection #PageContainer .products h2.butler-xl, body.page-the-mens-collection #PageContainer .products body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content h2.butler-xl, body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.butler-xl, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content h4.butler-xl, body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .butler-xl.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content .butler-xl.h4 {
    font-size: 5.195em;
    line-height: 1em;
    margin-bottom: 0.1em; }
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content p.sans-head-l {
    font-size: 1.393em;
    margin-bottom: 1em; }
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content p.butler-s {
    font-size: 1.5em; }
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content p:last-child.with-subtitle {
    margin-top: 2em; } }
@media screen and (min-width: 1000px) and (max-width: 1350px) {
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-title > .wrapper, body.page-shop [id*='__shop-home-banner-bfcm'] [id*='__shop-home-banner'] .home-hero .content .home-title > .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__shop-home-banner-bfcm'] .home-title > .footer,
  body.page-shop [id*='__shop-home-banner-bfcm'] [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .home-title > .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__shop-home-banner-bfcm'] .home-title > .footer {
    padding-top: 70px; }
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content .grid__item.center {
    margin-left: 60px; } }
@media screen and (min-width: 480px) and (max-width: 999px) {
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-title > .wrapper, body.page-shop [id*='__shop-home-banner-bfcm'] [id*='__shop-home-banner'] .home-hero .content .home-title > .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__shop-home-banner-bfcm'] .home-title > .footer,
  body.page-shop [id*='__shop-home-banner-bfcm'] [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .home-title > .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__shop-home-banner-bfcm'] .home-title > .footer {
    padding-top: 30px; }
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content .grid__item.center {
    margin-left: 30px; }
  body.page-shop [id*='__shop-home-banner-bfcm'] .grid__item.large--six-twelfths {
    width: unset; }
  body.page-shop [id*='__shop-home-banner-bfcm'] .home-hero .content .footer {
    padding-top: 10px;
    padding-left: 60px;
    padding-right: 60px; } }
body.page-shop [id*='__shop-candle-video-banner'] {
  padding-bottom: 0; }
body.page-shop [id*='__shop-home-text-banner'] {
  padding-bottom: 10px; }
  @media screen and (max-width: 480px) {
    body.page-shop [id*='__shop-home-text-banner'] {
      padding-bottom: 0; } }
body.page-shop .wrapper.materials-section .grid__item.intro, body.page-shop [id*='__shop-home-banner'] .home-hero .content .materials-section.footer .grid__item.intro,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .materials-section.footer .grid__item.intro {
  margin-top: 0; }
body.page-shop [id*='__shop-product-grid'] .items .title {
  margin-top: 10px;
  align-items: flex-end;
  font-size: 1.15em; }
body.page-shop [id*='__shop-product-grid'] .buttons {
  text-align: center !important; }
body.page-shop [id*='__shop-product-grid'] .item .btn, body.page-shop [id*='__shop-product-grid'] .item .btn--secondary, body.page-shop [id*='__shop-product-grid'] .item .btn--alt, body.page-shop [id*='__shop-product-grid'] .item [id*="__shop-press"] .section-container .home-title .grid__item .btn, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [id*='__shop-product-grid'] .item .btn {
  background-color: #A42A22;
  border: none;
  color: #ffffff; }
  body.page-shop [id*='__shop-product-grid'] .item .btn:hover, body.page-shop [id*='__shop-product-grid'] .item .btn--secondary:hover, body.page-shop [id*='__shop-product-grid'] .item .btn--alt:hover, body.page-shop [id*='__shop-product-grid'] .item [id*="__shop-press"] .section-container .home-title .grid__item .btn:hover, body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item [id*='__shop-product-grid'] .item .btn:hover {
    background-color: #a12921; }
body.page-shop [id*='__shop-serrano-backpack'] h2, body.page-shop [id*='__shop-serrano-backpack'] .h2, body.page-shop [id*='__shop-serrano-backpack'] body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-shop [id*='__shop-serrano-backpack'] h2, body.page-shop [id*='__shop-serrano-backpack'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-serrano-backpack'] h4, body.page-shop [id*='__shop-serrano-backpack'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-serrano-backpack'] .h4 {
  margin-bottom: 0.25em; }
body.page-shop [id*='__shop-banner-collection-slider'] {
  padding-bottom: 0; }
  @media screen and (max-width: 480px) {
    body.page-shop [id*='__shop-banner-collection-slider'] .scroll-area {
      flex-wrap: wrap; }
    body.page-shop [id*='__shop-banner-collection-slider'] .item.intro {
      width: 100%; } }
body.page-shop [id*="__shop-press"] .section-container {
  margin-top: 60px !important;
  margin-bottom: 30px !important; }
body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item p {
  margin-bottom: 45px; }
body.page-shop [id*="__shop-press"] .slick-dots {
  margin-left: 15px;
  bottom: -75px; }
@media screen and (min-width: 480px) {
  body.page-shop [id*="__shop-press"] .section-container > div > .grid__item:not(:nth-child(2)) .btn, body.page-shop [id*="__shop-press"] .section-container > div > .grid__item:not(:nth-child(2)) .btn--secondary, body.page-shop [id*="__shop-press"] .section-container > div > .grid__item:not(:nth-child(2)) .btn--alt {
    display: none; }
  body.page-shop [id*="__shop-press"] .section-container .home-title .grid__item p {
    margin-bottom: 75px; } }
body.page-shop .hero-text-slider {
  padding-top: 0;
  padding-bottom: 0; }
  @media screen and (max-width: 480px) {
    body.page-shop .hero-text-slider .slick-slider .slick-list {
      margin: 0; }
    body.page-shop .hero-text-slider .slide-content {
      margin: 0 0 0 -30px;
      text-align: center; }
    body.page-shop .hero-text-slider img {
      padding: 0; } }
body.page-shop .hero-text-slider .slick-slider {
  margin: 0; }
body.page-shop [id*='__shop-swatch-banner'] {
  margin-top: 0;
  padding-bottom: 0; }
  body.page-shop [id*='__shop-swatch-banner'] + .main-content.d {
    display: none; }
  body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h2.small, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content .small.h2, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-technik #PageContainer .main-content .title h1.h2, body.page-technik #PageContainer .main-content .title body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h1.h2, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-technik #PageContainer .main-content .title .h2.h1, body.page-technik #PageContainer .main-content .title body.page-shop [id*='__shop-swatch-banner'] .home-hero .content .h2.h1, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-technik body.page-the-mens-collection #PageContainer .main-content .title .products h2.h1, body.page-technik body.page-the-mens-collection #PageContainer .main-content .title .products body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h2.h1, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-the-mens-collection body.page-technik #PageContainer .main-content .title .products h2.h1, body.page-the-mens-collection body.page-technik #PageContainer .main-content .title .products body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h2.h1, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-technik body.page-the-mens-collection #PageContainer .products .main-content .title h2.h1, body.page-technik body.page-the-mens-collection #PageContainer .products .main-content .title body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h2.h1, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-the-mens-collection body.page-technik #PageContainer .products .main-content .title h2.h1, body.page-the-mens-collection body.page-technik #PageContainer .products .main-content .title body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h2.h1, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-technik #PageContainer .main-content .title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.h1, body.page-technik #PageContainer .main-content .title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h4.h1, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .title h4.h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .title body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h4.h1, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-technik #PageContainer .main-content .title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h1.h4, body.page-technik #PageContainer .main-content .title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-swatch-banner'] .home-hero .content .h1.h4, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .title .h1.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .title body.page-shop [id*='__shop-swatch-banner'] .home-hero .content .h1.h4, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-the-mens-collection #PageContainer .products h2.small, body.page-the-mens-collection #PageContainer .products body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h2.small, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.small, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h4.small, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .small.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-swatch-banner'] .home-hero .content .small.h4, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .title h1.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .title body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h1.h4, body.page-shop [id*='__shop-swatch-banner'] .home-hero .content body.page-technik #PageContainer .main-content .title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h1.h4, body.page-technik #PageContainer .main-content .title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-swatch-banner'] .home-hero .content h1.h4 {
    max-width: 95%;
    margin: 0 auto 1em; }
  body.page-shop [id*='__shop-swatch-banner'] .home-hero .content p:first-child {
    margin-bottom: 1.5em; }
  body.page-shop [id*='__shop-swatch-banner'] .home-title > .footer,
  body.page-shop [id*='__shop-swatch-banner'] .home-title > .footer p {
    margin-bottom: 0 !important; }

body.page-material-struktur-leather .shell {
  padding-top: 0; }
body.page-material-struktur-leather [id*="__sl-banner"] {
  padding-bottom: 0; }
  body.page-material-struktur-leather [id*="__sl-banner"] + .wrapper.d.home-banner, body.page-material-struktur-leather body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__sl-banner"] + .d.home-banner.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-material-struktur-leather [id*="__sl-banner"] + .d.home-banner.footer,
  body.page-material-struktur-leather body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__sl-banner"] + .d.home-banner.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-material-struktur-leather [id*="__sl-banner"] + .d.home-banner.footer {
    display: none; }
  body.page-material-struktur-leather [id*="__sl-banner"] .content p.supertitle {
    margin-bottom: 30px; }
  body.page-material-struktur-leather [id*="__sl-banner"] .subtitle:not(.supertitle) {
    max-width: 23em;
    margin-top: 1em; }
body.page-material-struktur-leather [id*="__sl-swatches"] h4, body.page-material-struktur-leather [id*="__sl-swatches"] .h4 {
  text-align: left;
  margin-bottom: 5px !important;
  margin-left: 10px; }
body.page-material-struktur-leather [id*="sl-2up-"] .two-up > .grid, body.page-material-struktur-leather [id*="sl-2up-"] .two-up > .grid--rev, body.page-material-struktur-leather [id*="sl-2up-"] .two-up > .grid--full {
  padding: 30px 0;
  display: flex; }
@media screen and (max-width: 480px) {
  body.page-material-struktur-leather [id*="sl-2up-"] .two-up {
    padding: 0; }
    body.page-material-struktur-leather [id*="sl-2up-"] .two-up > .grid, body.page-material-struktur-leather [id*="sl-2up-"] .two-up > .grid--rev, body.page-material-struktur-leather [id*="sl-2up-"] .two-up > .grid--full {
      padding: 30px 0;
      flex-direction: column; } }
body.page-material-struktur-leather [id*="sl-2up-"] h5:after, body.page-material-struktur-leather [id*="sl-2up-"] .h5:after {
  content: '';
  display: block;
  border-right: 1px solid #000000;
  height: 43px;
  width: 1px;
  margin: 30px auto; }
body.page-material-struktur-leather [id*="sl-2up-"] .content.block {
  padding: 5% 6%; }
  body.page-material-struktur-leather [id*="sl-2up-"] .content.block > img {
    padding: 0; }
  @media screen and (max-width: 480px) {
    body.page-material-struktur-leather [id*="sl-2up-"] .content.block {
      padding: 0; } }
body.page-material-struktur-leather [id*="sl-2up-feel"] {
  padding-top: 0; }
  @media screen and (max-width: 480px) {
    body.page-material-struktur-leather [id*="sl-2up-feel"] {
      padding: 0; } }
body.page-material-struktur-leather [id*="sl-2up-looks"] .two-up {
  flex-direction: row-reverse; }
body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title h2, body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title .h2, body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title h2, body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title h4, body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-struktur-leather [id*="sl-2up-loves"] .two-up .hero .home-title .h4 {
  max-width: 15em !important; }
body.page-material-struktur-leather [id*="sl-collection-slider"] .super-title {
  display: none; }
@media screen and (max-width: 480px) {
  body.page-material-struktur-leather [id*="sl-content-grid-section"] .content.block .grid__item {
    text-align: center !important; } }
@media screen and (max-width: 480px) {
  body.page-material-struktur-leather [id*="sl-content-grid-section"] .section-container .grid .grid__item:nth-of-type(3) .home-title, body.page-material-struktur-leather [id*="sl-content-grid-section"] .section-container .grid--rev .grid__item:nth-of-type(3) .home-title, body.page-material-struktur-leather [id*="sl-content-grid-section"] .section-container .grid--full .grid__item:nth-of-type(3) .home-title {
    margin-top: 0; } }
body.page-material-struktur-leather [id*="__sl-content-grid"] > .main-content {
  padding-bottom: 0; }
body.page-material-struktur-leather #shopify-section-template--15018915332207__sl-content-grid .section-container {
  margin-top: 30px;
  margin-bottom: 30px; }
body.page-material-struktur-leather #content-block-cd11d105-03f7-4942-a0e6-8fec67141dd0 .grid--full > .grid__item {
  margin-top: 90px;
  margin-bottom: 80px; }
body.page-material-struktur-leather #content-block-0ecc15b5-06f5-414a-9609-1c3c4046b00e .home-title {
  display: none !important; }
body.page-material-struktur-leather [id*='__sl-comparison-table-sl'] + .wrapper.d, body.page-material-struktur-leather body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__sl-comparison-table-sl'] + .d.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-material-struktur-leather [id*='__sl-comparison-table-sl'] + .d.footer,
body.page-material-struktur-leather body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__sl-comparison-table-sl'] + .d.footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-material-struktur-leather [id*='__sl-comparison-table-sl'] + .d.footer {
  display: none; }
body.page-material-struktur-leather [id*="__sl-try-sl-banner"] {
  margin-top: 0;
  padding-bottom: 0; }
  body.page-material-struktur-leather [id*="__sl-try-sl-banner"] + .main-content.d {
    display: none; }

body.page-technik #PageContainer {
  margin: 0;
  width: 100%;
  overflow: hidden; }
  @media screen and (min-width: 480px) {
    body.page-technik #PageContainer {
      padding-top: 0; }
      body.page-technik #PageContainer.has-banner {
        padding-top: 40px; }
      body.page-technik #PageContainer.has-double-banner {
        padding-top: 80px; } }
  body.page-technik #PageContainer #hero {
    background-color: transparent;
    width: 100%;
    overflow: hidden; }
    body.page-technik #PageContainer #hero .grid__item {
      margin-top: 50px; }
    body.page-technik #PageContainer #hero .push--large--five-eighths {
      left: 50%; }
    body.page-technik #PageContainer #hero .large--one-quarter {
      width: 50%; }
    @media screen and (min-width: 1000px) {
      body.page-technik #PageContainer #hero .push--large--five-eighths {
        left: 55%; }
      body.page-technik #PageContainer #hero .large--one-quarter {
        width: 40%; } }
    @media screen and (min-width: 1300px) {
      body.page-technik #PageContainer #hero .push--large--five-eighths {
        left: 62.5%; }
      body.page-technik #PageContainer #hero .large--one-quarter {
        width: 25%; } }
    @media screen and (max-width: 480px) {
      body.page-technik #PageContainer #hero > img {
        max-width: inherit;
        width: 150%; } }
    body.page-technik #PageContainer #hero .title {
      line-height: 1.8; }
      body.page-technik #PageContainer #hero .title h1, body.page-technik #PageContainer #hero .title .h1 {
        font-size: 2.75em;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1em; }
      @media screen and (max-width: 1300px) {
        body.page-technik #PageContainer #hero .title h4:last-child, body.page-technik #PageContainer #hero .title .h4:last-child {
          margin-top: 1.5em; } }
      @media screen and (min-width: 800px) and (max-width: 1100px) {
        body.page-technik #PageContainer #hero .title h1, body.page-technik #PageContainer #hero .title .h1 {
          font-size: 2em; }
        body.page-technik #PageContainer #hero .title h5, body.page-technik #PageContainer #hero .title .h5 {
          font-size: 0.8em; } }
      @media screen and (max-width: 799px) {
        body.page-technik #PageContainer #hero .title {
          font-size: 0.7em; }
          body.page-technik #PageContainer #hero .title h1, body.page-technik #PageContainer #hero .title .h1 {
            font-size: 2.25em; }
          body.page-technik #PageContainer #hero .title h4:last-child, body.page-technik #PageContainer #hero .title .h4:last-child {
            margin-top: 3em; } }
      @media screen and (max-width: 480px) {
        body.page-technik #PageContainer #hero .title {
          position: relative;
          font-size: 1em;
          margin-top: 3em;
          border-bottom: 1px solid #d9d9d9;
          padding-bottom: 3em; }
          body.page-technik #PageContainer #hero .title .grid__item {
            top: 0;
            position: relative;
            transform: none; }
          body.page-technik #PageContainer #hero .title h1, body.page-technik #PageContainer #hero .title .h1 {
            margin-bottom: 0.7em; }
          body.page-technik #PageContainer #hero .title h4:last-child, body.page-technik #PageContainer #hero .title .h4:last-child {
            margin-top: 2em; } }
      body.page-technik #PageContainer #hero .title a {
        padding: 8px 30px;
        line-height: 2.4;
        border-bottom: 1px solid #000; }
        body.page-technik #PageContainer #hero .title a:hover, body.page-technik #PageContainer #hero .title a:focus {
          border-bottom-color: #959595; }
          body.page-technik #PageContainer #hero .title a:hover.btn--secondary, body.page-technik #PageContainer #hero .title a:focus.btn--secondary {
            border-color: #3e3e3e;
            color: #3e3e3e; }

body.page-technik #PageContainer .main-content {
  padding: 0;
  top: 0;
  height: 100%;
  max-width: 100%; }
  body.page-technik #PageContainer .main-content .title h1, body.page-technik #PageContainer .main-content .title .h1 {
    font-weight: 800;
    margin-top: .5em; }
  body.page-technik #PageContainer .main-content .three-features .grid__item {
    margin-bottom: 30px; }
  body.page-technik #PageContainer .main-content .three-features img {
    height: 110px;
    margin-bottom: 40px; }
  body.page-technik #PageContainer .main-content .three-features p {
    padding: 0 30px 30px; }
  @media screen and (max-width: 480px) {
    body.page-technik #PageContainer .main-content .three-features .grid__item {
      margin-bottom: 45px; }
    body.page-technik #PageContainer .main-content .three-features img {
      height: 110px;
      margin-bottom: 15px; } }
  @media screen and (min-width: 480px) {
    body.page-technik #PageContainer .main-content .quote img {
      max-width: 130px; } }
  body.page-technik #PageContainer .main-content .quote .grid, body.page-technik #PageContainer .main-content .quote .grid--rev, body.page-technik #PageContainer .main-content .quote .grid--full {
    margin-bottom: 0; }
  body.page-technik #PageContainer .main-content .quote .well, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup {
    background-color: #efede9;
    padding: 6em 2.7em;
    margin-bottom: 0; }
    body.page-technik #PageContainer .main-content .quote .well h1, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup h1, body.page-technik #PageContainer .main-content .quote .well .h1, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .h1 {
      margin: 0;
      line-height: 1;
      letter-spacing: 0; }
      body.page-technik #PageContainer .main-content .quote .well h1:nth-of-type(2), body.page-technik #PageContainer .main-content .quote .sidebar-email-signup h1:nth-of-type(2), body.page-technik #PageContainer .main-content .quote .well .h1:nth-of-type(2), body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .h1:nth-of-type(2) {
        margin-top: 0.5em; }
    body.page-technik #PageContainer .main-content .quote .well h3, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup h3, body.page-technik #PageContainer .main-content .quote .well .h3, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .h3, body.page-technik #PageContainer .main-content .quote .well .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.page-technik #PageContainer .main-content .quote .well .shopify-challenge__message, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .shopify-challenge__message, body.page-technik #PageContainer .main-content .quote .well #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .quote .well h5, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .quote .sidebar-email-signup h5, body.page-technik #PageContainer .main-content .quote .well #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .quote .well .h5, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .h5 {
      font-size: 2.4em;
      text-transform: none;
      letter-spacing: 0.05em;
      font-weight: 600;
      max-width: 700px;
      margin: 0 auto; }
    body.page-technik #PageContainer .main-content .quote .well img, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup img {
      margin-top: 1em;
      max-width: 140px; }
    body.page-technik #PageContainer .main-content .quote .well .btn, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .btn, body.page-technik #PageContainer .main-content .quote .well .btn--secondary, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .btn--secondary, body.page-technik #PageContainer .main-content .quote .well .btn--alt, body.page-technik #PageContainer .main-content .quote .sidebar-email-signup .btn--alt {
      margin-top: 6em; }
  body.page-technik #PageContainer .main-content .grid, body.page-technik #PageContainer .main-content .grid--rev, body.page-technik #PageContainer .main-content .grid--full {
    position: relative;
    margin-bottom: 75px; }
    @media screen and (max-width: 480px) {
      body.page-technik #PageContainer .main-content .grid, body.page-technik #PageContainer .main-content .grid--rev, body.page-technik #PageContainer .main-content .grid--full {
        margin-bottom: 3em; } }
    body.page-technik #PageContainer .main-content .grid.features .hide, body.page-technik #PageContainer .main-content .features.grid--rev .hide, body.page-technik #PageContainer .main-content .features.grid--full .hide {
      display: none; }
    body.page-technik #PageContainer .main-content .grid.features h1, body.page-technik #PageContainer .main-content .features.grid--rev h1, body.page-technik #PageContainer .main-content .features.grid--full h1, body.page-technik #PageContainer .main-content .grid.features .h1, body.page-technik #PageContainer .main-content .features.grid--rev .h1, body.page-technik #PageContainer .main-content .features.grid--full .h1 {
      cursor: pointer; }
      body.page-technik #PageContainer .main-content .grid.features h1.plus-minus, body.page-technik #PageContainer .main-content .features.grid--rev h1.plus-minus, body.page-technik #PageContainer .main-content .features.grid--full h1.plus-minus, body.page-technik #PageContainer .main-content .grid.features .plus-minus.h1, body.page-technik #PageContainer .main-content .features.grid--rev .plus-minus.h1, body.page-technik #PageContainer .main-content .features.grid--full .plus-minus.h1 {
        width: 43px;
        height: 43px;
        margin: 0.5em auto 1em;
        background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/plus-minus.png?v=16927630096260457381626026702);
        background-size: cover;
        background-position: left; }
        body.page-technik #PageContainer .main-content .grid.features h1.plus-minus.minus, body.page-technik #PageContainer .main-content .features.grid--rev h1.plus-minus.minus, body.page-technik #PageContainer .main-content .features.grid--full h1.plus-minus.minus, body.page-technik #PageContainer .main-content .grid.features .plus-minus.minus.h1, body.page-technik #PageContainer .main-content .features.grid--rev .plus-minus.minus.h1, body.page-technik #PageContainer .main-content .features.grid--full .plus-minus.minus.h1 {
          background-position: right; }
    body.page-technik #PageContainer .main-content .grid.features p, body.page-technik #PageContainer .main-content .features.grid--rev p, body.page-technik #PageContainer .main-content .features.grid--full p {
      font-size: 1.5em;
      text-transform: none;
      line-height: 1.75;
      letter-spacing: 0.05em;
      font-weight: 400;
      margin-bottom: 0; }
    body.page-technik #PageContainer .main-content .grid.section-block, body.page-technik #PageContainer .main-content .section-block.grid--rev, body.page-technik #PageContainer .main-content .section-block.grid--full {
      margin-top: 0; }
  body.page-technik #PageContainer .main-content > .grid, body.page-technik #PageContainer .main-content > .grid--rev, body.page-technik #PageContainer .main-content > .grid--full {
    margin-bottom: 0; }
  @media screen and (max-width: 480px) {
    body.page-technik #PageContainer .main-content h1, body.page-technik #PageContainer .main-content .h1 {
      letter-spacing: .14em;
      margin-bottom: 0.5em; } }
body.page-technik #PageContainer .grid__item.image {
  float: right; }
  @media screen and (max-width: 480px) {
    body.page-technik #PageContainer .grid__item.image {
      margin-bottom: 30px; } }
body.page-technik #PageContainer .grid__item.text {
  margin-top: 3em; }
  @media screen and (max-width: 480px) {
    body.page-technik #PageContainer .grid__item.text {
      margin-top: 1em; } }
  body.page-technik #PageContainer .grid__item.text .v-center > div {
    text-align: center;
    margin: 0; }
    body.page-technik #PageContainer .grid__item.text .v-center > div h3, body.page-technik #PageContainer .grid__item.text .v-center > div .h3, body.page-technik #PageContainer .grid__item.text .v-center > div .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.page-technik #PageContainer .grid__item.text .v-center > div .shopify-challenge__message, body.page-technik #PageContainer .grid__item.text .v-center > div #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center > div h5, body.page-technik #PageContainer .grid__item.text .v-center > div #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center > div .h5 {
      margin-bottom: 1em; }
    body.page-technik #PageContainer .grid__item.text .v-center > div h4, body.page-technik #PageContainer .grid__item.text .v-center > div .h4 {
      margin-top: 3em;
      margin-bottom: 1.5em; }
    body.page-technik #PageContainer .grid__item.text .v-center > div p:last-child {
      margin-top: 6em; }
      @media screen and (max-width: 480px) {
        body.page-technik #PageContainer .grid__item.text .v-center > div p:last-child {
          margin-top: 2em; } }
    body.page-technik #PageContainer .grid__item.text .v-center > div.freedom h3, body.page-technik #PageContainer .grid__item.text .v-center > div.freedom .h3, body.page-technik #PageContainer .grid__item.text .v-center > div.freedom .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.page-technik #PageContainer .grid__item.text .v-center > div.freedom .shopify-challenge__message, body.page-technik #PageContainer .grid__item.text .v-center > div.freedom #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center > div.freedom h5, body.page-technik #PageContainer .grid__item.text .v-center > div.freedom #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center > div.freedom .h5 {
      padding-top: 3em; }
  @media screen and (min-width: 800px) {
    body.page-technik #PageContainer .grid__item.text {
      position: absolute;
      height: 100%;
      padding-bottom: 0;
      margin-top: 0; }
      body.page-technik #PageContainer .grid__item.text:before, body.page-technik #PageContainer .grid__item.text:after {
        display: block;
        content: '';
        margin: 0 -10px 0 0;
        height: 1px;
        border-bottom: 1px solid #d9d9d9; }
      body.page-technik #PageContainer .grid__item.text .v-center {
        height: 100%;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d; }
        body.page-technik #PageContainer .grid__item.text .v-center > div {
          margin: 0 60px;
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          transform: translateY(-50%); } }
  @media screen and (min-width: 1001px) and (max-width: 1070px) {
    body.page-technik #PageContainer .grid__item.text .v-center.freedom > div h3, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .h3, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .shopify-challenge__message, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center.freedom > div h5, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .h5 {
      padding-top: 1em; }
    body.page-technik #PageContainer .grid__item.text .v-center.freedom > div p:last-child {
      margin-top: 2em; } }
  @media screen and (min-width: 800px) and (max-width: 1000px) {
    body.page-technik #PageContainer .grid__item.text .v-center.freedom > div {
      margin: 0;
      font-size: 0.95em; }
      body.page-technik #PageContainer .grid__item.text .v-center.freedom > div h3, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .h3, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .shopify-challenge__container .shopify-challenge__message, .shopify-challenge__container body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .shopify-challenge__message, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center.freedom > div h5, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .h5 {
        padding-top: 0.5em; }
      body.page-technik #PageContainer .grid__item.text .v-center.freedom > div h4, body.page-technik #PageContainer .grid__item.text .v-center.freedom > div .h4 {
        margin-top: 2em;
        margin-bottom: 1em; }
      body.page-technik #PageContainer .grid__item.text .v-center.freedom > div p:last-child {
        margin-top: 1em; } }
body.page-technik #PageContainer #VideoImageRow .grid__item.text {
  right: 0; }
  body.page-technik #PageContainer #VideoImageRow .grid__item.text .v-center > div {
    margin: 0 40px; }
    @media screen and (max-width: 799px) {
      body.page-technik #PageContainer #VideoImageRow .grid__item.text .v-center > div {
        margin: 0; } }
  body.page-technik #PageContainer #VideoImageRow .grid__item.text .banner img {
    max-height: 640px;
    width: auto; }
body.page-technik #PageContainer #VideoImageRow .grid__item.image {
  max-height: 640px;
  position: relative;
  float: left; }
  body.page-technik #PageContainer #VideoImageRow .grid__item.image img.full {
    width: auto;
    max-height: 640px; }
  body.page-technik #PageContainer #VideoImageRow .grid__item.image video {
    max-height: 640px; }
body.page-technik #PageContainer .environment .well, body.page-technik #PageContainer .environment .sidebar-email-signup {
  background-color: #efede9;
  padding: 5em 2.7em;
  margin-bottom: 0; }
  @media screen and (max-width: 480px) {
    body.page-technik #PageContainer .environment .well, body.page-technik #PageContainer .environment .sidebar-email-signup {
      padding: 4em; } }
  body.page-technik #PageContainer .environment .well p, body.page-technik #PageContainer .environment .sidebar-email-signup p {
    max-width: 450px;
    margin: 30px auto 50px; }
  body.page-technik #PageContainer .environment .well a, body.page-technik #PageContainer .environment .sidebar-email-signup a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid black; }
  body.page-technik #PageContainer .environment .well img, body.page-technik #PageContainer .environment .sidebar-email-signup img {
    display: inline-block;
    padding: 0 30px;
    vertical-align: middle;
    width: 32%; }
    @media screen and (max-width: 480px) {
      body.page-technik #PageContainer .environment .well img, body.page-technik #PageContainer .environment .sidebar-email-signup img {
        padding: 0 15px; } }
    body.page-technik #PageContainer .environment .well img:nth-of-type(1), body.page-technik #PageContainer .environment .sidebar-email-signup img:nth-of-type(1) {
      padding-left: 0;
      max-width: 209.5px; }
    body.page-technik #PageContainer .environment .well img:nth-of-type(2), body.page-technik #PageContainer .environment .sidebar-email-signup img:nth-of-type(2) {
      max-width: 156.5px; }
    body.page-technik #PageContainer .environment .well img:nth-of-type(3), body.page-technik #PageContainer .environment .sidebar-email-signup img:nth-of-type(3) {
      max-width: 177px;
      padding-right: 0; }

#the-banbu-leather-candle.page-candle .shell > .wrapper:first-child, #the-banbu-leather-candle.page-candle body.page-shop [id*='__shop-home-banner'] .home-hero .content .shell > .footer:first-child, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell > .footer:first-child,
#the-banbu-leather-candle.page-candle body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .shell > .footer:first-child,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell > .footer:first-child,
#the-banbu-leather-candle.page-candle .shell > .wrapper:last-child,
#the-banbu-leather-candle.page-candle body.page-shop [id*='__shop-home-banner'] .home-hero .content .shell > .footer:last-child,
body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell > .footer:last-child,
#the-banbu-leather-candle.page-candle body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .shell > .footer:last-child,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell > .footer:last-child,
#the-banbu-leather-candle.page-candle .shell > [id*="__candle-video"] + .wrapper,
#the-banbu-leather-candle.page-candle body.page-shop [id*='__shop-home-banner'] .home-hero .content .shell > [id*="__candle-video"] + .footer,
body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell > [id*="__candle-video"] + .footer,
#the-banbu-leather-candle.page-candle body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .shell > [id*="__candle-video"] + .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell > [id*="__candle-video"] + .footer {
  display: none; }
#the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] {
  padding-bottom: 0; }
  @media screen and (max-width: 480px) {
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] {
      padding-bottom: 0; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] .wrapper, #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] .footer,
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
      body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] .footer {
        margin-top: 7%; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] .grid__item.center {
        margin-top: 31%; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] .home-hero .content p:first-child {
        font-size: 0.85em; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-hero"] .home-hero .content p:last-child.no-subtitle {
        margin-top: 30%; } }
#the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] {
  padding-bottom: 0; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] + .wrapper, #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__candle-intro-text"] + .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] + .footer,
  #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__candle-intro-text"] + .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] + .footer {
    padding-bottom: 30px; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] h2, #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .h2, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-intro-text"] #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] #aboutTLFeatures h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-intro-text"] h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-intro-text"] h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-intro-text"] #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] #aboutTLFeatures .h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-intro-text"] .h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-intro-text"] .h4 {
    margin-bottom: 20px; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] p {
    margin-top: 20px; }
  @media screen and (max-width: 480px) {
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] {
      margin-bottom: 1px solid #000; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .wrapper, #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .footer,
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
      body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .footer {
        padding: 0; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .grid.section-block, #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .section-block.grid--rev, #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .section-block.grid--full {
        margin-top: 3em;
        margin-bottom: 0; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] h2.butler-l, #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] .butler-l.h2, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-intro-text"] #aboutTLFeatures h4.butler-l, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] #aboutTLFeatures h4.butler-l, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-intro-text"] h4.butler-l, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-intro-text"] h4.butler-l, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-intro-text"] #aboutTLFeatures .butler-l.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] #aboutTLFeatures .butler-l.h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-intro-text"] .butler-l.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-intro-text"] .butler-l.h4 {
        font-size: 2.5em !important;
        margin: 20px auto;
        max-width: 10em; }
      #the-banbu-leather-candle.page-candle .shell [id*="__candle-intro-text"] p.butler-m {
        font-size: 1.5em; } }
#the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .grid--full > .grid__item {
  padding: 0 15%; }
#the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title h2, #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title .h2, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="candle-2up-"] .home-title #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title #aboutTLFeatures h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="candle-2up-"] .home-title h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="candle-2up-"] .home-title h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="candle-2up-"] .home-title #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title #aboutTLFeatures .h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="candle-2up-"] .home-title .h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="candle-2up-"] .home-title .h4 {
  margin-bottom: 0.5em !important; }
  #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title h2 br, #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title .h2 br, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="candle-2up-"] .home-title #aboutTLFeatures h4 br, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title #aboutTLFeatures h4 br, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="candle-2up-"] .home-title h4 br, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="candle-2up-"] .home-title h4 br, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="candle-2up-"] .home-title #aboutTLFeatures .h4 br, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title #aboutTLFeatures .h4 br, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="candle-2up-"] .home-title .h4 br, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="candle-2up-"] .home-title .h4 br {
    display: none; }
#the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title p.sans-l {
  margin-bottom: 1.5em; }
#the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title p.sans-m {
  font-size: 3.15em; }
@media screen and (max-width: 480px) {
  #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .grid--full > .grid__item {
    padding: 0;
    text-align: center !important; }
  #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title {
    padding-top: 0 !important;
    padding-bottom: 40px !important; }
    #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title h2.h2.butler-m, #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title .h2.butler-m, #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title body.page-the-mens-collection #PageContainer .products h2.butler-m, body.page-the-mens-collection #PageContainer .products #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title h2.butler-m, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="candle-2up-"] .home-title #aboutTLFeatures h4.butler-m, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title #aboutTLFeatures h4.butler-m, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="candle-2up-"] .home-title h4.butler-m, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="candle-2up-"] .home-title h4.butler-m, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="candle-2up-"] .home-title #aboutTLFeatures .butler-m.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="candle-2up-"] .home-title #aboutTLFeatures .butler-m.h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="candle-2up-"] .home-title .butler-m.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="candle-2up-"] .home-title .butler-m.h4 {
      margin-bottom: 0.5em !important; } }
@media screen and (max-width: 480px) {
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] {
    border-top: 1px solid black;
    margin-top: 50px; }
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] .wrapper, #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] .footer,
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] .footer {
      padding: 10px 0; } }
#the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] > .wrapper, #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__candle-2up-memories"] > .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] > .footer,
#the-banbu-leather-candle.page-candle .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__candle-2up-memories"] > .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] > .footer,
#the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-our-smell"] > .wrapper,
#the-banbu-leather-candle.page-candle .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__candle-2up-our-smell"] > .footer,
body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-our-smell"] > .footer,
#the-banbu-leather-candle.page-candle .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__candle-2up-our-smell"] > .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-our-smell"] > .footer {
  padding: 120px 0; }
  @media screen and (max-width: 480px) {
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] > .wrapper, #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__candle-2up-memories"] > .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] > .footer,
    #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__candle-2up-memories"] > .footer,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-memories"] > .footer,
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-our-smell"] > .wrapper,
    #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__candle-2up-our-smell"] > .footer,
    body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-our-smell"] > .footer,
    #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__candle-2up-our-smell"] > .footer,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-our-smell"] > .footer {
      padding: 30px 0; } }
#the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-future"] .block:last-of-type .home-title {
  display: none; }
@media screen and (max-width: 480px) {
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-future"] .content.block .home-title {
    padding-bottom: 0 !important; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-future"] .block:first-of-type .btn, #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-future"] .block:first-of-type .btn--secondary, #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-future"] .block:first-of-type .btn--alt {
    display: none; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-2up-future"] .block:last-of-type .home-title {
    display: block; } }
#the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] {
  padding-bottom: 30px; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] .simple-video {
    padding-bottom: 0; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] h2.butler-l, #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] .butler-l.h2, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-unlimited"] #aboutTLFeatures h4.butler-l, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] #aboutTLFeatures h4.butler-l, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-unlimited"] h4.butler-l, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-unlimited"] h4.butler-l, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-unlimited"] #aboutTLFeatures .butler-l.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] #aboutTLFeatures .butler-l.h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-unlimited"] .butler-l.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-unlimited"] .butler-l.h4 {
    font-size: 5em;
    margin-bottom: 0.2em; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] p.butler-m {
    font-size: 3.15em;
    margin: 0 auto; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] .btn, #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] .btn--secondary, #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] .btn--alt {
    margin-top: 10px; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] + .wrapper, #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__candle-unlimited"] + .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] + .footer,
  #the-banbu-leather-candle.page-candle .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__candle-unlimited"] + .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] + .footer {
    display: none; }
  @media screen and (max-width: 480px) {
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] h2.butler-l, #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] .butler-l.h2, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-unlimited"] #aboutTLFeatures h4.butler-l, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] #aboutTLFeatures h4.butler-l, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-unlimited"] h4.butler-l, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-unlimited"] h4.butler-l, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-unlimited"] #aboutTLFeatures .butler-l.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] #aboutTLFeatures .butler-l.h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-unlimited"] .butler-l.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-unlimited"] .butler-l.h4 {
      font-size: 2.5em !important;
      margin-top: 20px;
      max-width: 10em; }
    #the-banbu-leather-candle.page-candle .shell [id*="__candle-unlimited"] p.butler-m {
      font-size: 1.5em; } }
#the-banbu-leather-candle.page-candle .shell [id*="__candle-banner"] {
  padding-bottom: 0; }
#the-banbu-leather-candle.page-candle .shell [id*="__candle-video"] {
  padding-bottom: 0; }
  #the-banbu-leather-candle.page-candle .shell [id*="__candle-video"] h2.default, #the-banbu-leather-candle.page-candle .shell [id*="__candle-video"] .default.h2, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-video"] #aboutTLFeatures h4.default, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-video"] #aboutTLFeatures h4.default, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-video"] h4.default, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-video"] h4.default, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell [id*="__candle-video"] #aboutTLFeatures .default.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell [id*="__candle-video"] #aboutTLFeatures .default.h4, #the-banbu-leather-candle.page-candle #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures [id*="__candle-video"] .default.h4, #the-watch-band-portfolio.page-watch-band-portfolio #the-banbu-leather-candle.page-candle .shell #aboutTLFeatures [id*="__candle-video"] .default.h4 {
    margin-bottom: 0.75em; }

html {
  height: -webkit-fill-available; }

body.page-the-mens-collection #quickview.video {
  max-width: unset;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  padding: 82% 0 0 0;
  padding: 0;
  align-items: center;
  margin: 0;
  z-index: 10001; }
  body.page-the-mens-collection #quickview.video .video.youtube {
    width: 100%;
    height: 100%; }
  body.page-the-mens-collection #quickview.video .yt-player.video-wrapper {
    width: 100%; }
    body.page-the-mens-collection #quickview.video .yt-player.video-wrapper iframe {
      height: calc(100vh + 200px); }
  @media screen and (max-width: 600px) {
    body.page-the-mens-collection #quickview.video .yt-player.video-wrapper {
      padding: 177.47% 0 0 0; } }
  @media screen and (max-width: 1000px) {
    body.page-the-mens-collection #quickview.video {
      align-items: flex-start;
      top: 0;
      left: 0;
      padding: 0;
      margin: 0 auto;
      max-height: 100vh !important;
      height: 100vh !important;
      transform: none;
      background-color: #ffffff;
      /* mobile viewport bug fix */
      min-height: -webkit-fill-available !important; }
      body.page-the-mens-collection #quickview.video .close {
        top: 0;
        left: 0;
        right: auto; } }

body.page-the-mens-collection #quickview-screen {
  opacity: 0.95;
  z-index: 10000; }

body.page-the-mens-collection #PageContainer #hero {
  background-color: #221f20; }
  body.page-the-mens-collection #PageContainer #hero .slideshows {
    display: flex;
    position: relative; }
  body.page-the-mens-collection #PageContainer #hero .slideshow {
    width: 50%;
    margin-bottom: 0; }
    body.page-the-mens-collection #PageContainer #hero .slideshow:not(.slick-initialized) > img:not(:first-child), body.page-the-mens-collection #PageContainer #hero .slideshow.slick-loading .slick-track {
      display: none; }
    body.page-the-mens-collection #PageContainer #hero .slideshow .slick-slide > div {
      line-height: 0; }
    body.page-the-mens-collection #PageContainer #hero .slideshow#Slideshow0 {
      display: none; }
    @media screen and (max-width: 1000px) {
      body.page-the-mens-collection #PageContainer #hero .slideshow {
        width: 100%; }
        body.page-the-mens-collection #PageContainer #hero .slideshow#Slideshow0 {
          display: block; }
        body.page-the-mens-collection #PageContainer #hero .slideshow#Slideshow1 {
          display: none; }
        body.page-the-mens-collection #PageContainer #hero .slideshow#Slideshow2 {
          display: none; } }
  body.page-the-mens-collection #PageContainer #hero .title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
    body.page-the-mens-collection #PageContainer #hero .title > .grid__item {
      flex-basis: 55%;
      padding: 0 30px; }
  body.page-the-mens-collection #PageContainer #hero h1, body.page-the-mens-collection #PageContainer #hero .h1 {
    font-weight: 400; }
  body.page-the-mens-collection #PageContainer #hero h2, body.page-the-mens-collection #PageContainer #hero .h2, body.page-the-mens-collection #PageContainer #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer #hero h4, body.page-the-mens-collection #PageContainer #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer #hero .h4 {
    text-transform: lowercase !important;
    cursor: pointer; }
  body.page-the-mens-collection #PageContainer #hero .play-button {
    width: 25px;
    display: inline-block;
    vertical-align: middle; }
  @media screen and (max-width: 1000px) {
    body.page-the-mens-collection #PageContainer #hero .title > .grid__item {
      flex-basis: 60%;
      padding: 0 30px; }
    body.page-the-mens-collection #PageContainer #hero h1, body.page-the-mens-collection #PageContainer #hero .h1 {
      font-size: 3em;
      margin-bottom: 20px; }
    body.page-the-mens-collection #PageContainer #hero h2, body.page-the-mens-collection #PageContainer #hero .h2, body.page-the-mens-collection #PageContainer #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer #hero h4, body.page-the-mens-collection #PageContainer #hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer #hero .h4 {
      font-size: 1.8em; }
    body.page-the-mens-collection #PageContainer #hero .play-button {
      width: 20px; } }
body.page-the-mens-collection #PageContainer .main-content {
  padding-bottom: 0; }
body.page-the-mens-collection #PageContainer .alt-bg {
  background-color: #efefef;
  padding: 0; }
  body.page-the-mens-collection #PageContainer .alt-bg .main-content {
    padding-right: 0;
    padding-left: 0; }
body.page-the-mens-collection #PageContainer .items .product-embed .details h2, body.page-the-mens-collection #PageContainer .items .product-embed .details .h2, body.page-the-mens-collection #PageContainer .items .product-embed .details #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .items .product-embed .details h4, body.page-the-mens-collection #PageContainer .items .product-embed .details #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .items .product-embed .details .h4 {
  font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
body.page-the-mens-collection #PageContainer .items .promo-item,
body.page-the-mens-collection #PageContainer .items .promo-item .product-embed {
  display: flex; }
body.page-the-mens-collection #PageContainer .items .promo-item .grid, body.page-the-mens-collection #PageContainer .items .promo-item .grid--rev, body.page-the-mens-collection #PageContainer .items .promo-item .grid--full {
  padding-left: 30px;
  flex-direction: column; }
body.page-the-mens-collection #PageContainer .items .promo-item .grid__item {
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  color: #000;
  text-align: center;
  padding-left: 0;
  padding-top: 90px;
  padding-bottom: 90px; }
body.page-the-mens-collection #PageContainer .items .promo-item p {
  max-width: 80%;
  margin: 0 auto 20px;
  line-height: 1.5; }
@media screen and (max-width: 480px) {
  body.page-the-mens-collection #PageContainer .items .promo-item .grid__item {
    margin-bottom: 59px;
    padding-top: 60px;
    padding-bottom: 60px; }
  body.page-the-mens-collection #PageContainer .items .promo-item p {
    line-height: 1.5; } }
body.page-the-mens-collection #PageContainer .product-embed .info {
  text-transform: uppercase; }
body.page-the-mens-collection #PageContainer .product-embed .link {
  float: right;
  text-transform: uppercase; }
  body.page-the-mens-collection #PageContainer .product-embed .link a {
    font-weight: 600; }
body.page-the-mens-collection #PageContainer .product-embed .view-more {
  display: none; }
body.page-the-mens-collection #PageContainer .product-embed .thumb {
  width: unset;
  margin-left: unset; }
body.page-the-mens-collection #PageContainer .product-embed #OtherProductColors {
  margin-top: 0;
  border-top: none;
  padding-top: 0; }
  body.page-the-mens-collection #PageContainer .product-embed #OtherProductColors label {
    display: none; }
@media screen and (max-width: 480px) {
  body.page-the-mens-collection #PageContainer .items .grid__item.product_embed {
    padding-left: 30px; }
    body.page-the-mens-collection #PageContainer .items .grid__item.product_embed .thumb {
      width: 120%;
      margin-left: -10%; }
    body.page-the-mens-collection #PageContainer .items .grid__item.product_embed button.btn-add-to-cart {
      padding: 0 10px;
      line-height: 3; }
  body.page-the-mens-collection #PageContainer .grid.product-embed, body.page-the-mens-collection #PageContainer .product-embed.grid--rev, body.page-the-mens-collection #PageContainer .product-embed.grid--full {
    border-top: none;
    padding: 30px 0; }
    body.page-the-mens-collection #PageContainer .grid.product-embed .details, body.page-the-mens-collection #PageContainer .product-embed.grid--rev .details, body.page-the-mens-collection #PageContainer .product-embed.grid--full .details {
      padding-left: 30px;
      padding-right: 0px; }
    body.page-the-mens-collection #PageContainer .grid.product-embed .link, body.page-the-mens-collection #PageContainer .product-embed.grid--rev .link, body.page-the-mens-collection #PageContainer .product-embed.grid--full .link {
      display: none; }
    body.page-the-mens-collection #PageContainer .grid.product-embed .view-more, body.page-the-mens-collection #PageContainer .product-embed.grid--rev .view-more, body.page-the-mens-collection #PageContainer .product-embed.grid--full .view-more {
      display: block; }
  body.page-the-mens-collection #PageContainer .products .grid.product-embed .view-more, body.page-the-mens-collection #PageContainer .products .product-embed.grid--rev .view-more, body.page-the-mens-collection #PageContainer .products .product-embed.grid--full .view-more {
    margin-bottom: 60px; } }
body.page-the-mens-collection #PageContainer .products main {
  padding-bottom: 0; }
body.page-the-mens-collection #PageContainer .products > .grid__item {
  display: flex;
  flex-wrap: wrap; }
  body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile {
    position: relative;
    width: 50%; }
    body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .h {
      opacity: 0;
      transition: opacity 150ms; }
    body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile:hover .h {
      opacity: 1; }
    body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: 60px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .top {
        flex-grow: 2; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .centered {
        align-self: center;
        text-align: center; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content svg {
        filter: invert(1); }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .btn, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .btn--secondary, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .btn--alt {
        background-color: transparent;
        padding: 6px 24px;
        min-width: 60%;
        border-color: #fff;
        font-size: 14px; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content hr.darker {
        display: block; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content hr.small {
        display: none; }
    @media screen and (max-width: 799px) {
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile {
        width: 100%; } }
    @media screen and (min-width: 799px) and (max-width: 1000px) {
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content {
        margin: 30px; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile h2.largeish, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .largeish.h2, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile body.page-campaign-lander .rte h2, body.page-the-mens-collection #PageContainer .products > .grid__item body.page-campaign-lander .rte .product_tile h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile h2, body.page-the-mens-collection #PageContainer .products > .grid__item body.page-campaign-lander .rte .product_tile .h2, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.largeish, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile h4.largeish, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .largeish.h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .h2, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .h4 {
        font-size: 2em; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile h1.smallish, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .smallish.h1 {
        font-size: 1.5em; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile hr.darker {
        margin-bottom: 30px; } }
    @media screen and (max-width: 480px) {
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile > .grid__item {
        padding-left: 15px; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .h {
        opacity: 1; }
      body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content {
        margin: 0 15px;
        position: unset; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .top {
          position: absolute;
          top: 30px;
          margin-left: 15px; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content h2.largeish, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .largeish.h2, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content body.page-campaign-lander .rte h2, body.page-the-mens-collection #PageContainer .products > .grid__item body.page-campaign-lander .rte .product_tile .content h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content h2, body.page-the-mens-collection #PageContainer .products > .grid__item body.page-campaign-lander .rte .product_tile .content .h2, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.largeish, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content h4.largeish, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .largeish.h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .h2, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .h4, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .h4 {
          font-size: 2em; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content h1.smallish, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .smallish.h1 {
          font-size: 2em; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .centered {
          color: #000000;
          margin: 30px 0 0; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .tl-features {
          margin-left: -10px; }
          body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .tl-features > div {
            padding-left: 10px; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content svg {
          height: 40px;
          filter: none !important; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .btn, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .btn--secondary, body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content .btn--alt {
          color: #000;
          border-color: #000; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content hr.darker {
          display: none; }
        body.page-the-mens-collection #PageContainer .products > .grid__item .product_tile .content hr.small {
          display: block; } }
body.page-the-mens-collection #PageContainer .products .grid, body.page-the-mens-collection #PageContainer .products .grid--rev, body.page-the-mens-collection #PageContainer .products .grid--full {
  display: flex;
  align-items: center; }
  body.page-the-mens-collection #PageContainer .products .grid.product-embed, body.page-the-mens-collection #PageContainer .products .product-embed.grid--rev, body.page-the-mens-collection #PageContainer .products .product-embed.grid--full {
    padding: 0; }
  @media screen and (max-width: 799px) {
    body.page-the-mens-collection #PageContainer .products .grid, body.page-the-mens-collection #PageContainer .products .grid--rev, body.page-the-mens-collection #PageContainer .products .grid--full {
      flex-direction: column; } }
body.page-the-mens-collection #PageContainer .products hr.darker {
  margin: 30px 0 60px;
  border-top-color: #bebebe; }
body.page-the-mens-collection #PageContainer .products .product-main-thumb {
  display: none !important; }
body.page-the-mens-collection #PageContainer .products .product-image {
  width: 100%; }
body.page-the-mens-collection #PageContainer .products .details {
  text-align: center; }
body.page-the-mens-collection #PageContainer .products .h2, body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products h4, body.page-the-mens-collection #PageContainer .products #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products .h4 {
  margin-top: 0;
  margin-bottom: 0.5em;
  text-transform: lowercase; }
body.page-the-mens-collection #PageContainer .products .desc {
  margin-bottom: 15px; }
body.page-the-mens-collection #PageContainer .products .grouped,
body.page-the-mens-collection #PageContainer .products .props {
  max-width: 250px;
  width: 40%;
  text-align: left;
  margin: 30px auto 0; }
body.page-the-mens-collection #PageContainer .products .props {
  margin-top: 7px;
  margin-bottom: 10px; }
body.page-the-mens-collection #PageContainer .products .color-swatches {
  margin-top: 0;
  padding-top: 0;
  border-top: none; }
body.page-the-mens-collection #PageContainer .products .tl-features {
  margin-bottom: 30px; }
body.page-the-mens-collection #PageContainer .products p {
  line-height: 1.7; }
  body.page-the-mens-collection #PageContainer .products p > strong {
    display: block;
    margin-bottom: 1em; }
body.page-the-mens-collection #PageContainer .products button.btn, body.page-the-mens-collection #PageContainer .products button.btn--secondary, body.page-the-mens-collection #PageContainer .products button.btn--alt {
  margin-bottom: 45px;
  width: unset;
  min-width: 180px;
  padding: 12px 36px; }
@media screen and (max-width: 480px) {
  body.page-the-mens-collection #PageContainer .products > .grid__item {
    margin-bottom: 30px; } }
body.page-the-mens-collection #PageContainer .products .grid__item .grid__item.large--one-half:first-child {
  padding: 0; }
body.page-the-mens-collection #PageContainer .products .grid__item .grid__item.large--one-half:last-child {
  padding: 60px 60px 40px; }
@media screen and (max-width: 799px) {
  body.page-the-mens-collection #PageContainer .products .h2, body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products h4, body.page-the-mens-collection #PageContainer .products #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-the-mens-collection #PageContainer .products .h4 {
    font-size: 1.7em;
    margin-bottom: 1.2em; }
  body.page-the-mens-collection #PageContainer .products .grouped,
  body.page-the-mens-collection #PageContainer .products .props {
    text-align: center;
    width: unset; }
  body.page-the-mens-collection #PageContainer .products .tl-features p {
    line-height: 1.5; }
  body.page-the-mens-collection #PageContainer .products .grid__item .grid__item.large--one-half:last-child {
    padding: 30px 30px 30px 40px;
    text-align: center; }
  body.page-the-mens-collection #PageContainer .products button.btn, body.page-the-mens-collection #PageContainer .products button.btn--secondary, body.page-the-mens-collection #PageContainer .products button.btn--alt {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; } }
body.page-the-mens-collection #PageContainer .bio {
  margin-bottom: 0 !important; }
  body.page-the-mens-collection #PageContainer .bio .h1 {
    margin-bottom: 10px; }
  body.page-the-mens-collection #PageContainer .bio p {
    line-height: 1.5;
    max-width: 500px; }
    body.page-the-mens-collection #PageContainer .bio p.larger, body.page-the-mens-collection #PageContainer .bio body.page-technik-leather #hero p.h3, body.page-technik-leather #hero body.page-the-mens-collection #PageContainer .bio p.h3, body.page-the-mens-collection #PageContainer .bio body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message, body.page-technik-leather #hero .shopify-challenge__container body.page-the-mens-collection #PageContainer .bio p.shopify-challenge__message, body.page-the-mens-collection #PageContainer .bio .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero body.page-the-mens-collection #PageContainer .bio p.shopify-challenge__message {
      text-transform: none;
      font-weight: 300;
      margin-bottom: 40px;
      font-size: 1.3rem; }
  body.page-the-mens-collection #PageContainer .bio .btn, body.page-the-mens-collection #PageContainer .bio .btn--secondary, body.page-the-mens-collection #PageContainer .bio .btn--alt {
    padding: 4px 24px;
    min-width: 200px; }
  body.page-the-mens-collection #PageContainer .bio .grid, body.page-the-mens-collection #PageContainer .bio .grid--rev, body.page-the-mens-collection #PageContainer .bio .grid--full {
    margin-top: 120px;
    align-items: center !important;
    justify-content: center; }
    body.page-the-mens-collection #PageContainer .bio .grid .grid__item:first-child, body.page-the-mens-collection #PageContainer .bio .grid--rev .grid__item:first-child, body.page-the-mens-collection #PageContainer .bio .grid--full .grid__item:first-child {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center; }
    @media screen and (max-width: 799px) {
      body.page-the-mens-collection #PageContainer .bio .grid, body.page-the-mens-collection #PageContainer .bio .grid--rev, body.page-the-mens-collection #PageContainer .bio .grid--full {
        margin-top: 60px; }
        body.page-the-mens-collection #PageContainer .bio .grid .grid__item:first-child, body.page-the-mens-collection #PageContainer .bio .grid--rev .grid__item:first-child, body.page-the-mens-collection #PageContainer .bio .grid--full .grid__item:first-child {
          position: relative; }
        body.page-the-mens-collection #PageContainer .bio .grid .grid__item:last-child, body.page-the-mens-collection #PageContainer .bio .grid--rev .grid__item:last-child, body.page-the-mens-collection #PageContainer .bio .grid--full .grid__item:last-child {
          padding-left: 0; }
          body.page-the-mens-collection #PageContainer .bio .grid .grid__item:last-child img, body.page-the-mens-collection #PageContainer .bio .grid--rev .grid__item:last-child img, body.page-the-mens-collection #PageContainer .bio .grid--full .grid__item:last-child img {
            max-width: unset;
            margin-top: 60px; } }
    @media screen and (max-width: 480px) {
      body.page-the-mens-collection #PageContainer .bio .grid, body.page-the-mens-collection #PageContainer .bio .grid--rev, body.page-the-mens-collection #PageContainer .bio .grid--full {
        margin-top: 30px; }
        body.page-the-mens-collection #PageContainer .bio .grid .h1, body.page-the-mens-collection #PageContainer .bio .grid--rev .h1, body.page-the-mens-collection #PageContainer .bio .grid--full .h1,
        body.page-the-mens-collection #PageContainer .bio .grid p,
        body.page-the-mens-collection #PageContainer .bio .grid--rev p,
        body.page-the-mens-collection #PageContainer .bio .grid--full p {
          margin-left: 30px;
          margin-right: 30px; } }

@media screen and (max-width: 480px) {
  #warranty #hero img {
    width: 220%;
    max-width: unset; } }

@media screen and (max-width: 480px) {
  #warranty .shell .intro > .grid__item,
  body.page-faqs .shell .intro > .grid__item {
    padding-right: 30px;
    padding-left: 60px; } }
#warranty .shell h2, #warranty .shell .h2, #warranty .shell body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #warranty .shell h2, #warranty #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio #warranty .shell #aboutTLFeatures h4, #warranty #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio #warranty .shell #aboutTLFeatures .h4,
body.page-faqs .shell h2,
body.page-faqs .shell .h2,
body.page-faqs .shell body.page-the-mens-collection #PageContainer .products h2,
body.page-the-mens-collection #PageContainer .products body.page-faqs .shell h2,
body.page-faqs #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio body.page-faqs .shell #aboutTLFeatures h4,
body.page-faqs #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
#the-watch-band-portfolio.page-watch-band-portfolio body.page-faqs .shell #aboutTLFeatures .h4 {
  font-size: 2.75em; }
#warranty .shell .intro p,
#warranty .shell .tab-body,
#warranty .shell .tab-body h5,
#warranty .shell .tab-body .h5,
body.page-faqs .shell .intro p,
body.page-faqs .shell .tab-body,
body.page-faqs .shell .tab-body h5,
body.page-faqs .shell .tab-body .h5 {
  font-size: 1.4em;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.04em; }
@media screen and (min-width: 480px) {
  #warranty .shell .site-header:not(.fade-bg),
  body.page-faqs .shell .site-header:not(.fade-bg) {
    background-color: transparent;
    border-bottom-color: transparent; } }
@media screen and (max-width: 799px) {
  #warranty .shell .intro p br,
  body.page-faqs .shell .intro p br {
    display: none; } }
#warranty .shell a[name="contact_form"],
body.page-faqs .shell a[name="contact_form"] {
  display: inline-block;
  margin-top: -150px;
  margin-bottom: 150px; }
#warranty .shell #warrantyForm,
body.page-faqs .shell #warrantyForm {
  display: none; }
  #warranty .shell #warrantyForm .note,
  body.page-faqs .shell #warrantyForm .note {
    text-align: center; }
#warranty .shell .tab-body,
body.page-faqs .shell .tab-body {
  list-style: decimal-leading-zero;
  list-style-position: inside;
  margin-top: 90px; }
  #warranty .shell .tab-body > .row,
  body.page-faqs .shell .tab-body > .row {
    border-top: 1px solid #bfbfbf;
    padding-top: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    cursor: pointer; }
    #warranty .shell .tab-body > .row h5, #warranty .shell .tab-body > .row .h5,
    body.page-faqs .shell .tab-body > .row h5,
    body.page-faqs .shell .tab-body > .row .h5 {
      margin: 0;
      display: flex; }
      #warranty .shell .tab-body > .row h5 question, #warranty .shell .tab-body > .row .h5 question,
      body.page-faqs .shell .tab-body > .row h5 question,
      body.page-faqs .shell .tab-body > .row .h5 question {
        flex-grow: 2;
        padding-left: 40%; }
    #warranty .shell .tab-body > .row .content,
    body.page-faqs .shell .tab-body > .row .content {
      flex-grow: 2;
      padding-left: 5%;
      padding-right: 2%; }
    #warranty .shell .tab-body > .row .toggle,
    body.page-faqs .shell .tab-body > .row .toggle {
      margin-top: 0.5em;
      margin-bottom: -0.5em; }
      #warranty .shell .tab-body > .row .toggle .sprite,
      body.page-faqs .shell .tab-body > .row .toggle .sprite {
        line-height: 0;
        height: 19px;
        transition: transform 250ms;
        transform: rotate(90deg); }
    #warranty .shell .tab-body > .row .body,
    body.page-faqs .shell .tab-body > .row .body {
      display: none;
      margin-top: 1em;
      margin-left: 1.3em;
      padding-left: 40%;
      padding-right: 10px; }
    #warranty .shell .tab-body > .row.active .body,
    body.page-faqs .shell .tab-body > .row.active .body {
      display: block; }
    #warranty .shell .tab-body > .row.open .toggle .sprite,
    body.page-faqs .shell .tab-body > .row.open .toggle .sprite {
      transform: rotate(-90deg); }
    @media screen and (max-width: 480px) {
      #warranty .shell .tab-body > .row h5 question, #warranty .shell .tab-body > .row .h5 question,
      body.page-faqs .shell .tab-body > .row h5 question,
      body.page-faqs .shell .tab-body > .row .h5 question {
        padding-left: 5%; }
      #warranty .shell .tab-body > .row .toggle,
      body.page-faqs .shell .tab-body > .row .toggle {
        margin-right: 3%; }
      #warranty .shell .tab-body > .row .body,
      body.page-faqs .shell .tab-body > .row .body {
        padding-left: 0;
        margin-left: 0; } }
  #warranty .shell .tab-body p,
  #warranty .shell .tab-body ul,
  body.page-faqs .shell .tab-body p,
  body.page-faqs .shell .tab-body ul {
    font-family: "proxima-nova", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px; }
  #warranty .shell .tab-body a,
  body.page-faqs .shell .tab-body a {
    text-decoration: underline; }
  @media screen and (max-width: 480px) {
    #warranty .shell .tab-body,
    body.page-faqs .shell .tab-body {
      margin-bottom: 60px; }
      #warranty .shell .tab-body:before,
      body.page-faqs .shell .tab-body:before {
        border-top: 1px solid #bfbfbf;
        margin-left: -15px;
        margin-right: -15px;
        height: 1px;
        display: block;
        content: ''; }
      #warranty .shell .tab-body > .row:first-child,
      body.page-faqs .shell .tab-body > .row:first-child {
        margin-top: 0;
        border: none; } }

body.page-warranty #warrantyForm h2, body.page-warranty #warrantyForm .h2, body.page-warranty #warrantyForm body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-warranty #warrantyForm h2, body.page-warranty #warrantyForm #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-warranty #warrantyForm h4, body.page-warranty #warrantyForm #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-warranty #warrantyForm .h4 {
  font-size: 2.75em;
  margin-bottom: 30px; }
body.page-warranty #warrantyForm label {
  margin-bottom: 1em;
  margin-top: 2em; }
body.page-warranty #warrantyForm input,
body.page-warranty #warrantyForm select {
  border-color: #000;
  margin: 0; }
body.page-warranty #warrantyForm .groups {
  width: 50%;
  float: left; }
  body.page-warranty #warrantyForm .groups:first-of-type {
    margin-right: -1px; }
  body.page-warranty #warrantyForm .groups 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; }
  body.page-warranty #warrantyForm .groups label {
    border: 1px solid #b2b2b2;
    color: #b2b2b2;
    padding: 16px 18px 16px 22px;
    margin: 0;
    display: block;
    min-width: 120px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left; }
  body.page-warranty #warrantyForm .groups input[type="radio"]:checked + label {
    border: 1px solid #777777;
    color: #000000; }
  body.page-warranty #warrantyForm .groups input[type="radio"] + label img {
    opacity: 0;
    width: 13px;
    height: 10px;
    display: inline;
    float: right;
    margin-top: 2px;
    margin-left: 15px;
    transition: opacity 50ms; }
  body.page-warranty #warrantyForm .groups input[type="radio"]:checked + label img {
    opacity: 1; }
body.page-warranty #warrantyForm .opt-in {
  margin-top: 1em; }
  body.page-warranty #warrantyForm .opt-in input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 0 10px 0;
    width: 25px;
    height: 25px;
    display: block;
    outline: none;
    border: 1px solid #000000;
    margin-right: 10px;
    cursor: pointer;
    line-height: 0;
    overflow: hidden;
    float: left; }
    body.page-warranty #warrantyForm .opt-in input[type="checkbox"]:checked:before {
      content: '';
      background-image: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/vonh_site_icons.png?v=21154443252948330211626026726");
      background-position: -128px;
      height: 16px;
      width: 16px;
      background-size: cover;
      margin-left: 4.1px;
      display: block;
      margin-top: 4px; }
  body.page-warranty #warrantyForm .opt-in label {
    line-height: 2.3; }
body.page-warranty #warrantyForm input[type="date"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background-image: url("//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/ico-calendar.svg?v=152571144832281469871626026632");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center center;
  width: 18px;
  height: 18px;
  border-width: thin;
  cursor: pointer; }
  body.page-warranty #warrantyForm input[type="date"]::-webkit-calendar-picker-indicator::hover {
    background-color: #ffffff;
    opacity: 0.9; }
body.page-warranty #warrantyForm .btn, body.page-warranty #warrantyForm .btn--secondary, body.page-warranty #warrantyForm .btn--alt {
  margin: 50px auto 0;
  display: block; }

#the-watch-band-portfolio.page-watch-band-portfolio #PageContainer {
  padding-top: 0; }
  #the-watch-band-portfolio.page-watch-band-portfolio #PageContainer.has-banner {
    padding-top: 40px; }
  #the-watch-band-portfolio.page-watch-band-portfolio #PageContainer.has-double-banner {
    padding-top: 80px; }
  @media screen and (max-width: 799px) {
    #the-watch-band-portfolio.page-watch-band-portfolio #PageContainer {
      padding-top: 50px; }
      #the-watch-band-portfolio.page-watch-band-portfolio #PageContainer.has-banner {
        padding-top: 90px; }
      #the-watch-band-portfolio.page-watch-band-portfolio #PageContainer.has-double-banner {
        padding-top: 130px; } }
#the-watch-band-portfolio.page-watch-band-portfolio #hero {
  background-color: #f0ece7; }
  @media screen and (max-width: 480px) {
    #the-watch-band-portfolio.page-watch-band-portfolio #hero {
      padding-bottom: 90px; }
      #the-watch-band-portfolio.page-watch-band-portfolio #hero > img {
        width: 200%;
        max-width: unset;
        margin-left: -58%; } }
  #the-watch-band-portfolio.page-watch-band-portfolio #hero > .title {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end; }
    #the-watch-band-portfolio.page-watch-band-portfolio #hero > .title > .grid__item {
      top: unset;
      transform: unset;
      margin-bottom: 30px;
      text-align: right; }
      #the-watch-band-portfolio.page-watch-band-portfolio #hero > .title > .grid__item > figure {
        margin: 0 90px 45px auto;
        display: inline-block;
        text-align: center; }
        @media screen and (max-width: 480px) {
          #the-watch-band-portfolio.page-watch-band-portfolio #hero > .title > .grid__item > figure {
            margin: 0 50px 50px;
            display: flex;
            justify-content: space-between;
            flex-direction: row-reverse;
            align-items: flex-end; } }
        #the-watch-band-portfolio.page-watch-band-portfolio #hero > .title > .grid__item > figure figcaption {
          font-size: 10px; }
#the-watch-band-portfolio.page-watch-band-portfolio #AppleWatchIcon {
  width: 40px; }
#the-watch-band-portfolio.page-watch-band-portfolio .shell {
  padding-top: 0; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .main-content {
    padding-bottom: 0; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #AppleLogo {
    width: 20px;
    vertical-align: text-bottom;
    margin-left: 3px; }
    @media screen and (max-width: 480px) {
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #AppleLogo {
        display: block;
        margin: 15px auto 30px; } }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .btn, #the-watch-band-portfolio.page-watch-band-portfolio .shell .btn--secondary, #the-watch-band-portfolio.page-watch-band-portfolio .shell .btn--alt {
    padding: 10px 50px; }
    @media screen and (max-width: 480px) {
      #the-watch-band-portfolio.page-watch-band-portfolio .shell .btn, #the-watch-band-portfolio.page-watch-band-portfolio .shell .btn--secondary, #the-watch-band-portfolio.page-watch-band-portfolio .shell .btn--alt {
        width: 210px; } }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .mobile-cta-stripe {
    margin: none; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell .mobile-cta-stripe a {
      display: block;
      width: 100%;
      height: 50px;
      text-align: center;
      text-transform: uppercase;
      color: #000000;
      padding: 16px; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .grid.section-block, #the-watch-band-portfolio.page-watch-band-portfolio .shell .section-block.grid--rev, #the-watch-band-portfolio.page-watch-band-portfolio .shell .section-block.grid--full {
    margin-top: 0;
    margin-bottom: 0;
    padding: 75px 0; }
  @media screen and (max-width: 480px) {
    #the-watch-band-portfolio.page-watch-band-portfolio .shell .intro {
      background-color: #eeeeee; } }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video {
    position: relative; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video > img {
      margin: 0 auto;
      display: block;
      width: 100%; }
      @media screen and (max-width: 480px) {
        #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video > img {
          width: 240%;
          max-width: unset;
          margin-left: -71%; } }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video.playing {
      overflow: hidden; }
      #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video.playing > img {
        opacity: 0; }
        @media screen and (max-width: 480px) {
          #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video.playing > img {
            opacity: 1;
            filter: blur(10px); } }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      transform-style: preserve-3d;
      text-align: center; }
      #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title > .grid__item {
        display: flex;
        justify-content: center;
        align-items: center; }
      #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title .banner {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center; }
        #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title .banner.hide {
          display: none !important; }
        #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title .banner.playing #playButton {
          opacity: 0; }
      #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title .video {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0; }
        #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title .video.playing {
          display: block; }
        #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title .video .video-wrapper {
          padding-bottom: 56.05%; }
        @media screen and (max-width: 480px) {
          #the-watch-band-portfolio.page-watch-band-portfolio .shell main + .video .title .video .video-wrapper {
            padding-bottom: 56.25%;
            border-bottom: none;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            transform: translateY(-50.1%); } }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell .h1 {
    font-size: 4.5em;
    font-weight: 500;
    letter-spacing: 0; }
    @media screen and (max-width: 480px) {
      #the-watch-band-portfolio.page-watch-band-portfolio .shell h1, #the-watch-band-portfolio.page-watch-band-portfolio .shell .h1 {
        font-size: 2.5em;
        max-width: 150px;
        margin-left: auto;
        margin-right: auto; } }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell .h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #the-watch-band-portfolio.page-watch-band-portfolio .shell h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 {
    font-size: 2.6em;
    max-width: 11em; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell .h5 {
    font-size: 17px;
    vertical-align: text-bottom;
    font-weight: 400; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell p.large {
    font-size: 17px;
    font-weight: 400; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell ul {
    margin: 35px 0 50px 20px;
    font-size: 17px;
    font-weight: 400; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell ul li {
      margin-bottom: 0.8em; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .set-1 {
    margin-bottom: 15px; }
    @media screen and (max-width: 480px) {
      #the-watch-band-portfolio.page-watch-band-portfolio .shell .set-1 img {
        padding: 45px 30px; } }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div {
    margin-left: 60px;
    .margin-bottom: 30px; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div .h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .details-1 > div h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .details-1 > div .h4 {
      text-align: left; }
    @media screen and (max-width: 480px) {
      #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 45px;
        text-align: center; }
        #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div .h2, #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .details-1 > div h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .details-1 > div .h4 {
          font-size: 2.5em;
          max-width: 9em; }
        #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div ul {
          margin-top: 25px;
          margin-right: 60px;
          margin-bottom: 75px;
          font-size: 13px;
          text-align: left; }
          #the-watch-band-portfolio.page-watch-band-portfolio .shell .details-1 > div ul li {
            margin-bottom: 0.5em;
            line-height: 1.7; } }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .alt-bg {
    background-color: #eeeeee; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures {
    padding: 90px 0 155px;
    display: flex;
    flex-wrap: wrap; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .header {
      margin-bottom: 60px;
      border: none; }
    @media screen and (max-width: 480px) {
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures {
        padding: 20px 20px 30px; }
        #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .header {
          margin-bottom: 40px; } }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 {
      border: none;
      margin-left: auto;
      margin-right: auto; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5 {
      font-size: 17px;
      font-weight: 400; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures img {
      height: 35px; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p {
      margin-top: 40px;
      text-transform: uppercase; }
      #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures p br {
        display: none; }
  #the-watch-band-portfolio.page-watch-band-portfolio .shell .two-up {
    display: flex;
    flex-wrap: wrap; }
    #the-watch-band-portfolio.page-watch-band-portfolio .shell .two-up > div {
      width: 50%; }

body#we-love-moms .site-header {
  border-bottom: none;
  background: none; }
body#we-love-moms #PageContainer {
  background-image: url("//cdn.shopify.com/s/files/1/0996/2856/files/mothersday-bg3.jpg?v=17096591815794057147");
  padding-top: 0;
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 799px) {
    body#we-love-moms #PageContainer {
      background-image: none; } }
  body#we-love-moms #PageContainer.has-banner {
    padding-top: 40px; }
  body#we-love-moms #PageContainer.has-double-banner {
    padding-top: 80px; }
body#we-love-moms .shell {
  padding-top: 0; }
body#we-love-moms .wrapper.main-content, body#we-love-moms body.page-shop [id*='__shop-home-banner'] .home-hero .content .main-content.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body#we-love-moms .main-content.footer,
body#we-love-moms body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .main-content.footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body#we-love-moms .main-content.footer {
  max-width: 100%;
  padding: 0; }
body#we-love-moms .moms-hero {
  position: relative;
  margin-bottom: 5em;
  line-height: 0;
  overflow: hidden; }
  @media screen and (max-width: 480px) {
    body#we-love-moms .moms-hero {
      margin-bottom: 4em;
      padding-bottom: 3em;
      overflow: hidden;
      width: 100%; } }
  @media screen and (max-width: 799px) {
    body#we-love-moms .moms-hero {
      border-bottom: none; } }
  body#we-love-moms .moms-hero > div > img:first-child {
    width: 100%; }
    @media screen and (max-width: 480px) {
      body#we-love-moms .moms-hero > div > img:first-child {
        width: 150%;
        max-width: inherit;
        margin-top: -9%; } }
    @media screen and (min-width: 480px) and (max-width: 799px) {
      body#we-love-moms .moms-hero > div > img:first-child {
        width: 145%;
        margin-top: -14%;
        max-width: inherit; } }
  body#we-love-moms .moms-hero h1.small, body#we-love-moms .moms-hero .small.h1, body#we-love-moms .moms-hero body.page-technik #PageContainer .main-content .title h1, body.page-technik #PageContainer .main-content .title body#we-love-moms .moms-hero h1, body#we-love-moms .moms-hero body.page-technik #PageContainer .main-content .title .h1, body.page-technik #PageContainer .main-content .title body#we-love-moms .moms-hero .h1 {
    margin: 0 auto 0.7em; }
    @media screen and (max-width: 799px) {
      body#we-love-moms .moms-hero h1.small, body#we-love-moms .moms-hero .small.h1, body#we-love-moms .moms-hero body.page-technik #PageContainer .main-content .title h1, body.page-technik #PageContainer .main-content .title body#we-love-moms .moms-hero h1, body#we-love-moms .moms-hero body.page-technik #PageContainer .main-content .title .h1, body.page-technik #PageContainer .main-content .title body#we-love-moms .moms-hero .h1 {
        max-width: 100%; } }
    @media screen and (min-width: 800px) and (max-width: 1200px) {
      body#we-love-moms .moms-hero h1.small, body#we-love-moms .moms-hero .small.h1, body#we-love-moms .moms-hero body.page-technik #PageContainer .main-content .title h1, body.page-technik #PageContainer .main-content .title body#we-love-moms .moms-hero h1, body#we-love-moms .moms-hero body.page-technik #PageContainer .main-content .title .h1, body.page-technik #PageContainer .main-content .title body#we-love-moms .moms-hero .h1 {
        font-size: 1.7em;
        margin-bottom: 1em; } }
  body#we-love-moms .moms-hero p {
    margin-bottom: 2em; }
    @media screen and (min-width: 800px) and (max-width: 1100px) {
      body#we-love-moms .moms-hero p {
        margin-bottom: 1em;
        font-size: 0.8em; } }
  body#we-love-moms .moms-hero .moms-title {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    padding-top: 140px;
    line-height: 1.6; }
    @media screen and (max-width: 799px) {
      body#we-love-moms .moms-hero .moms-title {
        position: relative;
        margin: 5em 0 0;
        padding: 0 30px; } }
    @media screen and (min-width: 800px) and (max-width: 1200px) {
      body#we-love-moms .moms-hero .moms-title {
        padding-top: 190px; } }
    body#we-love-moms .moms-hero .moms-title img {
      width: 130px;
      max-width: 100%;
      margin-bottom: 30px; }
      @media screen and (min-width: 800px) and (max-width: 1200px) {
        body#we-love-moms .moms-hero .moms-title img {
          width: 75px;
          margin: -10px 15px 0px 0;
          float: left; } }
      @media screen and (min-width: 800px) and (max-width: 1003px) {
        body#we-love-moms .moms-hero .moms-title img {
          margin: 10px 15px 0px 0; } }
  body#we-love-moms .moms-hero .message {
    font-style: normal; }
  body#we-love-moms .moms-hero .fields {
    margin-left: 30px;
    margin-right: 30px; }
  body#we-love-moms .moms-hero .btn, body#we-love-moms .moms-hero .btn--secondary, body#we-love-moms .moms-hero .btn--alt {
    background-color: transparent;
    margin-top: 30px;
    padding: 10px 30px;
    width: auto;
    transition: background-color 0.05s cubic-bezier(0.33, 0.66, 0.66, 0.5);
    border-bottom: none; }
    body#we-love-moms .moms-hero .btn:hover, body#we-love-moms .moms-hero .btn--secondary:hover, body#we-love-moms .moms-hero .btn--alt:hover {
      background-color: rgba(255, 255, 255, 0.3);
      color: #000; }
    @media screen and (min-width: 800px) and (max-width: 1100px) {
      body#we-love-moms .moms-hero .btn, body#we-love-moms .moms-hero .btn--secondary, body#we-love-moms .moms-hero .btn--alt {
        width: auto; } }
    @media screen and (max-width: 480px) {
      body#we-love-moms .moms-hero .btn, body#we-love-moms .moms-hero .btn--secondary, body#we-love-moms .moms-hero .btn--alt {
        padding: 10px 15px; } }

#XXXXour-story .v-center > div {
  text-align: center;
  margin: 0px 80px; }
  @media screen and (max-width: 800px) {
    #XXXXour-story .v-center > div {
      margin: 0 60px; } }
  @media screen and (max-width: 799px) {
    #XXXXour-story .v-center > div {
      margin: 0; } }
  #XXXXour-story .v-center > div p {
    margin-bottom: 1.5em; }
    #XXXXour-story .v-center > div p:last-child {
      margin-bottom: 0; }
#XXXXour-story .grid__item.advantages {
  margin-bottom: 10px; }
  #XXXXour-story .grid__item.advantages .well, #XXXXour-story .grid__item.advantages .sidebar-email-signup {
    padding: 55px 25px;
    margin-bottom: 0; }
    @media screen and (max-width: 799px) {
      #XXXXour-story .grid__item.advantages .well, #XXXXour-story .grid__item.advantages .sidebar-email-signup {
        background-color: transparent;
        padding: 1em 0 0; }
        #XXXXour-story .grid__item.advantages .well span, #XXXXour-story .grid__item.advantages .sidebar-email-signup span {
          visibility: hidden; }
          #XXXXour-story .grid__item.advantages .well span:after, #XXXXour-story .grid__item.advantages .sidebar-email-signup span:after {
            content: '';
            display: block;
            clear: both; } }
    #XXXXour-story .grid__item.advantages .well h4, #XXXXour-story .grid__item.advantages .sidebar-email-signup h4, #XXXXour-story .grid__item.advantages .well .h4, #XXXXour-story .grid__item.advantages .sidebar-email-signup .h4 {
      margin-bottom: 0.7em; }

#our-story #PageContainer .shell h5, #our-story #PageContainer .shell .h5,
#our-story #PageContainer .shell .h5,
body.page-materials #PageContainer .shell h5,
body.page-materials #PageContainer .shell .h5,
body.page-materials #PageContainer .shell .h5,
.page-material-innovators-judges #PageContainer .shell h5,
.page-material-innovators-judges #PageContainer .shell .h5,
.page-material-innovators-judges #PageContainer .shell .h5 {
  margin-bottom: 3em; }
#our-story #PageContainer .shell h2, #our-story #PageContainer .shell .h2, #our-story #PageContainer #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio #our-story #PageContainer .shell #aboutTLFeatures h4, #our-story #PageContainer #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio #our-story #PageContainer .shell #aboutTLFeatures .h4,
body.page-materials #PageContainer .shell h2,
body.page-materials #PageContainer .shell .h2,
body.page-materials #PageContainer #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio body.page-materials #PageContainer .shell #aboutTLFeatures h4,
body.page-materials #PageContainer #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
#the-watch-band-portfolio.page-watch-band-portfolio body.page-materials #PageContainer .shell #aboutTLFeatures .h4,
.page-material-innovators-judges #PageContainer .shell h2,
.page-material-innovators-judges #PageContainer .shell .h2,
.page-material-innovators-judges body.page-the-mens-collection #PageContainer .shell .products h2,
body.page-the-mens-collection .page-material-innovators-judges #PageContainer .shell .products h2,
.page-material-innovators-judges body.page-the-mens-collection #PageContainer .products .shell h2,
body.page-the-mens-collection .page-material-innovators-judges #PageContainer .products .shell h2,
.page-material-innovators-judges #PageContainer #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio .page-material-innovators-judges #PageContainer .shell #aboutTLFeatures h4,
.page-material-innovators-judges #PageContainer #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
#the-watch-band-portfolio.page-watch-band-portfolio .page-material-innovators-judges #PageContainer .shell #aboutTLFeatures .h4 {
  font-size: 2.75em;
  text-transform: lowercase; }
#our-story #PageContainer .shell p,
body.page-materials #PageContainer .shell p,
.page-material-innovators-judges #PageContainer .shell p {
  font-size: 17px;
  line-height: 1.9; }
@media screen and (min-width: 480px) {
  #our-story #PageContainer .shell .site-header:not(.fade-bg),
  body.page-materials #PageContainer .shell .site-header:not(.fade-bg),
  .page-material-innovators-judges #PageContainer .shell .site-header:not(.fade-bg) {
    background-color: transparent;
    border-bottom-color: transparent; } }
#our-story #PageContainer .shell,
body.page-materials #PageContainer .shell,
.page-material-innovators-judges #PageContainer .shell {
  padding-top: 0; }
#our-story #PageContainer .alt-bg,
body.page-materials #PageContainer .alt-bg,
.page-material-innovators-judges #PageContainer .alt-bg {
  background-color: #eeeeee;
  padding-top: 120px;
  padding-bottom: 115px; }
@media screen and (max-width: 480px) {
  #our-story #PageContainer .alt-bg,
  body.page-materials #PageContainer .alt-bg,
  .page-material-innovators-judges #PageContainer .alt-bg {
    padding-top: 60px;
    padding-bottom: 60px; }
    #our-story #PageContainer .alt-bg.intro,
    body.page-materials #PageContainer .alt-bg.intro,
    .page-material-innovators-judges #PageContainer .alt-bg.intro {
      background-color: #FFFFFF; }
  #our-story #PageContainer .wrapper, #our-story #PageContainer body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #our-story #PageContainer .footer,
  #our-story #PageContainer body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #our-story #PageContainer .footer,
  body.page-materials #PageContainer .wrapper,
  body.page-materials #PageContainer body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer,
  body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-materials #PageContainer .footer,
  body.page-materials #PageContainer body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-materials #PageContainer .footer,
  .page-material-innovators-judges #PageContainer .wrapper,
  .page-material-innovators-judges #PageContainer body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer,
  body.page-shop [id*='__shop-home-banner'] .home-hero .content .page-material-innovators-judges #PageContainer .footer,
  .page-material-innovators-judges #PageContainer body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .page-material-innovators-judges #PageContainer .footer {
    padding: inherit 0; } }
#our-story #PageContainer .main-content,
body.page-materials #PageContainer .main-content,
.page-material-innovators-judges #PageContainer .main-content {
  padding-bottom: 0; }
#our-story #PageContainer .two-up,
body.page-materials #PageContainer .two-up,
.page-material-innovators-judges #PageContainer .two-up {
  display: flex; }
  #our-story #PageContainer .two-up.reverse,
  body.page-materials #PageContainer .two-up.reverse,
  .page-material-innovators-judges #PageContainer .two-up.reverse {
    flex-direction: row-reverse; }
  #our-story #PageContainer .two-up > div,
  body.page-materials #PageContainer .two-up > div,
  .page-material-innovators-judges #PageContainer .two-up > div {
    width: 50%; }
    #our-story #PageContainer .two-up > div.image img,
    body.page-materials #PageContainer .two-up > div.image img,
    .page-material-innovators-judges #PageContainer .two-up > div.image img {
      display: block;
      object-fit: cover;
      height: 100%; }
    #our-story #PageContainer .two-up > div.text,
    body.page-materials #PageContainer .two-up > div.text,
    .page-material-innovators-judges #PageContainer .two-up > div.text {
      display: flex;
      align-items: center; }
      #our-story #PageContainer .two-up > div.text > div,
      body.page-materials #PageContainer .two-up > div.text > div,
      .page-material-innovators-judges #PageContainer .two-up > div.text > div {
        text-align: left; }
        @media screen and (min-width: 799px) {
          #our-story #PageContainer .two-up > div.text > div,
          body.page-materials #PageContainer .two-up > div.text > div,
          .page-material-innovators-judges #PageContainer .two-up > div.text > div {
            width: 80%;
            max-width: 40em;
            margin: 30px auto; } }
  @media screen and (max-width: 799px) {
    #our-story #PageContainer .two-up, #our-story #PageContainer .two-up.reverse,
    body.page-materials #PageContainer .two-up,
    body.page-materials #PageContainer .two-up.reverse,
    .page-material-innovators-judges #PageContainer .two-up,
    .page-material-innovators-judges #PageContainer .two-up.reverse {
      flex-direction: column; }
    #our-story #PageContainer .two-up > div,
    body.page-materials #PageContainer .two-up > div,
    .page-material-innovators-judges #PageContainer .two-up > div {
      width: auto; }
      #our-story #PageContainer .two-up > div.text,
      body.page-materials #PageContainer .two-up > div.text,
      .page-material-innovators-judges #PageContainer .two-up > div.text {
        padding: 85px 50px 80px;
        text-align: center; } }
#our-story #PageContainer .signature,
body.page-materials #PageContainer .signature,
.page-material-innovators-judges #PageContainer .signature {
  width: 197px;
  max-width: 60%; }
@media screen and (max-width: 480px) {
  #our-story #PageContainer .wrapper-items,
  body.page-materials #PageContainer .wrapper-items,
  .page-material-innovators-judges #PageContainer .wrapper-items {
    padding: 0 50px; } }
#our-story #PageContainer .items,
body.page-materials #PageContainer .items,
.page-material-innovators-judges #PageContainer .items {
  margin-top: 100px;
  margin-bottom: 60px; }
  #our-story #PageContainer .items h5, #our-story #PageContainer .items .h5,
  body.page-materials #PageContainer .items h5,
  body.page-materials #PageContainer .items .h5,
  .page-material-innovators-judges #PageContainer .items h5,
  .page-material-innovators-judges #PageContainer .items .h5 {
    margin-bottom: 8em; }
  #our-story #PageContainer .items > .title,
  body.page-materials #PageContainer .items > .title,
  .page-material-innovators-judges #PageContainer .items > .title {
    padding-left: 60px; }
  @media screen and (max-width: 480px) {
    #our-story #PageContainer .items,
    body.page-materials #PageContainer .items,
    .page-material-innovators-judges #PageContainer .items {
      margin: 70px 25px 70px -5px; }
      #our-story #PageContainer .items > .title,
      body.page-materials #PageContainer .items > .title,
      .page-material-innovators-judges #PageContainer .items > .title {
        padding-left: 30px; }
      #our-story #PageContainer .items h5, #our-story #PageContainer .items .h5,
      body.page-materials #PageContainer .items h5,
      body.page-materials #PageContainer .items .h5,
      .page-material-innovators-judges #PageContainer .items h5,
      .page-material-innovators-judges #PageContainer .items .h5 {
        margin-bottom: 4em; } }

body.page-campaign-lander #hero .wrapper .grid__item h4.vline, body.page-campaign-lander #hero body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item h4.vline, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item h4.vline,
body.page-campaign-lander #hero body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item h4.vline,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item h4.vline, body.page-campaign-lander #hero .wrapper .grid__item .vline.h4, body.page-campaign-lander #hero body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item .vline.h4, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item .vline.h4,
body.page-campaign-lander #hero body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item .vline.h4,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item .vline.h4 {
  border-right-width: 1px;
  border-right-style: solid;
  height: 600px;
  display: inline-block;
  font-size: 0;
  margin-bottom: -600px; }
@media screen and (max-width: 480px) {
  body.page-campaign-lander #hero .wrapper .grid__item h1, body.page-campaign-lander #hero body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item h1, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item h1,
  body.page-campaign-lander #hero body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item h1,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item h1, body.page-campaign-lander #hero .wrapper .grid__item .h1, body.page-campaign-lander #hero body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item .h1, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item .h1,
  body.page-campaign-lander #hero body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item .h1,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-campaign-lander #hero .footer .grid__item .h1 {
    font-size: 3.1em; } }
body.page-campaign-lander#studies-shown-a-total-of-608-cows-live-a-happier-life-with-von-holzhau #hero h1, body.page-campaign-lander#studies-shown-a-total-of-608-cows-live-a-happier-life-with-von-holzhau #hero .h1 {
  max-width: 16em;
  margin-left: auto;
  margin-right: auto; }
body.page-campaign-lander .shell:before {
  content: '';
  display: block;
  border-right: 1px solid black;
  height: 150px;
  margin: -50px auto 40px;
  width: 1px; }
  @media screen and (max-width: 480px) {
    body.page-campaign-lander .shell:before {
      margin: -100px auto 20px; } }
@media screen and (max-width: 480px) {
  body.page-campaign-lander .main-content {
    padding-bottom: 0; } }
body.page-campaign-lander .rte h2, body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4 {
  margin: 1em auto;
  line-height: 1.4;
  max-width: 30em;
  width: 80%; }
  @media screen and (max-width: 480px) {
    body.page-campaign-lander .rte h2, body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-campaign-lander .rte h2, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4 {
      width: 90%;
      font-size: 1.3rem; } }
body.page-campaign-lander .rte p {
  width: 75%;
  margin: 0 auto;
  max-width: 550px; }
body.page-campaign-lander .grid.items .section-header, body.page-campaign-lander .items.grid--rev .section-header, body.page-campaign-lander .items.grid--full .section-header {
  padding-left: 30px; }
  @media screen and (max-width: 480px) {
    body.page-campaign-lander .grid.items .section-header, body.page-campaign-lander .items.grid--rev .section-header, body.page-campaign-lander .items.grid--full .section-header {
      padding-left: 0; } }
body.page-campaign-lander .collection-slider,
body.page-campaign-lander #reviewsContainer {
  margin-bottom: 120px; }
body.page-campaign-lander .reviews-section {
  background-color: #fafafa; }
  body.page-campaign-lander .reviews-section .wrapper, body.page-campaign-lander .reviews-section body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-campaign-lander .reviews-section .footer,
  body.page-campaign-lander .reviews-section body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-campaign-lander .reviews-section .footer {
    padding: 0; }
  body.page-campaign-lander .reviews-section .reviewsContainer {
    padding: 0 !important; }
  @media screen and (min-width: 799px) {
    body.page-campaign-lander .reviews-section #stamped-main-widget {
      margin: 0 30px; } }
  body.page-campaign-lander .reviews-section .stamped-container {
    margin: 1em 15px;
    background-color: #fafafa;
    padding: 90px 0 !important; }
    body.page-campaign-lander .reviews-section .stamped-container[data-count="0"] {
      display: none !important; }
body.page-campaign-lander .wrapper.last, body.page-campaign-lander body.page-shop [id*='__shop-home-banner'] .home-hero .content .last.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-campaign-lander .last.footer,
body.page-campaign-lander body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .last.footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-campaign-lander .last.footer {
  padding: 0;
  margin-top: 0; }

body.page-liquidplant #hero .title h1, body.page-liquidplant #hero .title .h1 {
  font-size: 3.4em;
  color: white; }
  @media screen and (max-width: 480px) {
    body.page-liquidplant #hero .title h1, body.page-liquidplant #hero .title .h1 {
      font-size: 2.7em; } }
body.page-liquidplant #hero .title p {
  color: white; }
  @media screen and (max-width: 480px) {
    body.page-liquidplant #hero .title p {
      font-size: 14px;
      line-height: 1.9; } }
body.page-liquidplant .shell {
  padding-top: 0; }
  body.page-liquidplant .shell .wrapper, body.page-liquidplant .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-liquidplant .shell .footer,
  body.page-liquidplant .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-liquidplant .shell .footer {
    padding-bottom: 0; }
body.page-liquidplant .benefits {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f0f0e3; }
  body.page-liquidplant .benefits h2, body.page-liquidplant .benefits .h2, body.page-liquidplant .benefits body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-liquidplant .benefits h2, body.page-liquidplant .benefits #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-liquidplant .benefits h4, body.page-liquidplant .benefits #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-liquidplant .benefits .h4 {
    margin-bottom: 1em; }
  body.page-liquidplant .benefits p {
    line-height: 1.5;
    letter-spacing: 0.5px; }
  @media screen and (max-width: 480px) {
    body.page-liquidplant .benefits {
      padding-top: 45px;
      padding-bottom: 45px; }
      body.page-liquidplant .benefits h2, body.page-liquidplant .benefits .h2, body.page-liquidplant .benefits body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-liquidplant .benefits h2, body.page-liquidplant .benefits #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-liquidplant .benefits h4, body.page-liquidplant .benefits #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-liquidplant .benefits .h4 {
        font-size: 1.4rem; }
      body.page-liquidplant .benefits p {
        font-size: 14px;
        line-height: 1.9; } }
body.page-liquidplant .shell .intro.section-block {
  background-color: transparent;
  margin-top: 70px;
  margin-bottom: 60px; }
  body.page-liquidplant .shell .intro.section-block h2, body.page-liquidplant .shell .intro.section-block .h2, body.page-liquidplant .shell .intro.section-block body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-liquidplant .shell .intro.section-block h2, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell .intro.section-block #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell .intro.section-block #aboutTLFeatures h4, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .intro.section-block h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell #aboutTLFeatures .intro.section-block h4, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell .intro.section-block #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell .intro.section-block #aboutTLFeatures .h4, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .intro.section-block .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell #aboutTLFeatures .intro.section-block .h4 {
    color: #000000;
    margin: 0px auto;
    max-width: 57rem; }
  @media screen and (max-width: 480px) {
    body.page-liquidplant .shell .intro.section-block {
      margin-bottom: 30px; }
      body.page-liquidplant .shell .intro.section-block h2, body.page-liquidplant .shell .intro.section-block .h2, body.page-liquidplant .shell .intro.section-block body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-liquidplant .shell .intro.section-block h2, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell .intro.section-block #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell .intro.section-block #aboutTLFeatures h4, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .intro.section-block h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell #aboutTLFeatures .intro.section-block h4, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell .intro.section-block #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell .intro.section-block #aboutTLFeatures .h4, body.page-liquidplant #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .intro.section-block .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-liquidplant .shell #aboutTLFeatures .intro.section-block .h4 {
        font-size: 1em !important;
        line-height: 1.8 !important; } }
body.page-liquidplant #four-up {
  text-transform: uppercase;
  margin-bottom: 20px; }
body.page-liquidplant #four-up .grid__item {
  margin-bottom: 30px; }
body.page-liquidplant #four-up img {
  margin-top: 0;
  margin-bottom: 1em;
  mix-blend-mode: darken;
  padding-top: 10%;
  padding-bottom: 6.3%; }
body.page-liquidplant #four-up .grid__item div {
  background-color: #f0f0e3; }
body.page-liquidplant #four-up p {
  font-size: 16px;
  font-weight: 500; }
body.page-liquidplant #four-up a {
  color: #000000; }
@media screen and (max-width: 480px) {
  body.page-liquidplant #four-up p {
    font-size: 13px; } }
body.page-liquidplant .text-over {
  position: relative; }
  body.page-liquidplant .text-over .positioner {
    position: absolute;
    top: 0;
    width: 100%; }
    body.page-liquidplant .text-over .positioner .text {
      margin-top: 90px;
      max-width: clamp(300px, 30%, 450px); }
      body.page-liquidplant .text-over .positioner .text p {
        font-size: 16px; }
  @media screen and (max-width: 480px) {
    body.page-liquidplant .text-over.liquidplant .positioner {
      position: relative;
      background-color: #f0f0e3; }
    body.page-liquidplant .text-over.liquidplant .text {
      margin-top: 0;
      max-width: unset; }
    body.page-liquidplant .text-over .shop-now .text {
      margin-top: 30px; }
    body.page-liquidplant .text-over .text {
      margin: 0 !important;
      padding: 30px 0 30px 45px;
      max-width: unset; }
      body.page-liquidplant .text-over .text p {
        font-size: 14px !important;
        line-height: 1.9; } }
body.page-liquidplant .grid.process, body.page-liquidplant .process.grid--rev, body.page-liquidplant .process.grid--full {
  margin-top: 90px;
  color: black; }
  body.page-liquidplant .grid.process p, body.page-liquidplant .process.grid--rev p, body.page-liquidplant .process.grid--full p {
    margin: 0;
    font-size: 1.2em;
    letter-spacing: 0.05em; }
  body.page-liquidplant .grid.process .steps, body.page-liquidplant .process.grid--rev .steps, body.page-liquidplant .process.grid--full .steps {
    display: flex;
    align-items: stretch;
    margin-top: 90px; }
    body.page-liquidplant .grid.process .steps .step, body.page-liquidplant .process.grid--rev .steps .step, body.page-liquidplant .process.grid--full .steps .step {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      margin-bottom: 60px;
      padding: 0 6%;
      width: inherit; }
      body.page-liquidplant .grid.process .steps .step div, body.page-liquidplant .process.grid--rev .steps .step div, body.page-liquidplant .process.grid--full .steps .step div {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        padding: 0 25%; }
    body.page-liquidplant .grid.process .steps .inter, body.page-liquidplant .process.grid--rev .steps .inter, body.page-liquidplant .process.grid--full .steps .inter {
      flex-grow: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 11%; }
      body.page-liquidplant .grid.process .steps .inter span, body.page-liquidplant .process.grid--rev .steps .inter span, body.page-liquidplant .process.grid--full .steps .inter span {
        margin-bottom: 30px; }
  @media screen and (max-width: 480px) {
    body.page-liquidplant .grid.process .steps, body.page-liquidplant .process.grid--rev .steps, body.page-liquidplant .process.grid--full .steps {
      flex-direction: column;
      margin-top: 60px; }
      body.page-liquidplant .grid.process .steps .step, body.page-liquidplant .process.grid--rev .steps .step, body.page-liquidplant .process.grid--full .steps .step {
        padding: 0 20%;
        margin-bottom: 30px; }
        body.page-liquidplant .grid.process .steps .step:last-child, body.page-liquidplant .process.grid--rev .steps .step:last-child, body.page-liquidplant .process.grid--full .steps .step:last-child {
          margin-bottom: 80px; }
        body.page-liquidplant .grid.process .steps .step div, body.page-liquidplant .process.grid--rev .steps .step div, body.page-liquidplant .process.grid--full .steps .step div {
          padding: 0px 28%;
          margin-bottom: 10px; }
      body.page-liquidplant .grid.process .steps .inter, body.page-liquidplant .process.grid--rev .steps .inter, body.page-liquidplant .process.grid--full .steps .inter {
        padding-bottom: 30px; }
        body.page-liquidplant .grid.process .steps .inter span, body.page-liquidplant .process.grid--rev .steps .inter span, body.page-liquidplant .process.grid--full .steps .inter span {
          transform: rotate(90deg);
          margin-bottom: 0;
          font-size: 0;
          text-indent: 0; } }
  body.page-liquidplant .grid.process .scroll-area, body.page-liquidplant .process.grid--rev .scroll-area, body.page-liquidplant .process.grid--full .scroll-area {
    padding-left: 0; }
  body.page-liquidplant .grid.process .simplebar-horizontal, body.page-liquidplant .process.grid--rev .simplebar-horizontal, body.page-liquidplant .process.grid--full .simplebar-horizontal {
    margin: 0; }
  body.page-liquidplant .grid.process .simplebar-horizontal:before, body.page-liquidplant .process.grid--rev .simplebar-horizontal:before, body.page-liquidplant .process.grid--full .simplebar-horizontal:before {
    height: 4px; }
  body.page-liquidplant .grid.process .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before, body.page-liquidplant .process.grid--rev .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before, body.page-liquidplant .process.grid--full .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    margin-top: 6px;
    height: 4px;
    border-top-width: 4px; }
  @media screen and (max-width: 480px) {
    body.page-liquidplant .grid.process .scroll-area, body.page-liquidplant .process.grid--rev .scroll-area, body.page-liquidplant .process.grid--full .scroll-area {
      flex-direction: column; }
    body.page-liquidplant .grid.process .step, body.page-liquidplant .process.grid--rev .step, body.page-liquidplant .process.grid--full .step {
      margin-right: 0;
      text-align: center; } }
body.page-liquidplant .learn-more .text {
  background-color: #f0f0e3;
  padding: 90px 60px 70px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; }
@media screen and (min-width: 601px) {
  body.page-liquidplant .learn-more .image {
    padding-left: 0; } }
body.page-liquidplant .learn-more h2, body.page-liquidplant .learn-more .h2, body.page-liquidplant .learn-more body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-liquidplant .learn-more h2, body.page-liquidplant .learn-more #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-liquidplant .learn-more h4, body.page-liquidplant .learn-more #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-liquidplant .learn-more .h4 {
  max-width: 90%;
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: .5px;
  font-size: 1.4rem; }
body.page-liquidplant .learn-more p,
body.page-liquidplant .learn-more li {
  font-size: 16px; }
body.page-liquidplant .learn-more.technik-leather .image {
  margin-bottom: -15%; }
body.page-liquidplant .learn-more.technik-leather li {
  margin-bottom: 30px; }
@media screen and (max-width: 480px) {
  body.page-liquidplant .learn-more .grid, body.page-liquidplant .learn-more .grid--rev, body.page-liquidplant .learn-more .grid--full {
    flex-direction: column-reverse; }
  body.page-liquidplant .learn-more p,
  body.page-liquidplant .learn-more li {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 10px !important; }
  body.page-liquidplant .learn-more .text {
    padding: 30px 30px 30px 60px; }
  body.page-liquidplant .learn-more .image {
    margin-bottom: 0 !important; } }
body.page-liquidplant #leatherVideo {
  padding-top: 160%; }
body.page-liquidplant #leatherVideo > div {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0; }
@media screen and (max-width: 600px) {
  body.page-liquidplant #leatherVideo {
    padding: 130% 0 0 0;
    margin: 0 -17%; } }
body.page-liquidplant .code .flex ul {
  margin-bottom: 30px; }
@media screen and (max-width: 480px) {
  body.page-liquidplant .code .flex {
    flex-direction: column; }
    body.page-liquidplant .code .flex ul {
      margin-bottom: 0.75em; } }

body.page-material-liquidplant .shell {
  padding-top: 0; }
body.page-material-liquidplant [id*="__liquidplant-banner"] .content p.supertitle,
body.page-material-liquidplant [id*="__liquidplant-hero-video"] .content p.supertitle {
  margin-bottom: 30px; }
body.page-material-liquidplant [id*="__liquidplant-banner"] .subtitle:not(.supertitle):before,
body.page-material-liquidplant [id*="__liquidplant-hero-video"] .subtitle:not(.supertitle):before {
  content: '';
  display: block;
  border-right: 1px solid #ffffff;
  height: 135px;
  width: 1px;
  margin: 70px auto 60px; }
  @media screen and (max-width: 1000px) {
    body.page-material-liquidplant [id*="__liquidplant-banner"] .subtitle:not(.supertitle):before,
    body.page-material-liquidplant [id*="__liquidplant-hero-video"] .subtitle:not(.supertitle):before {
      margin: 20px auto -135px; } }
  @media screen and (max-width: 799px) {
    body.page-material-liquidplant [id*="__liquidplant-banner"] .subtitle:not(.supertitle):before,
    body.page-material-liquidplant [id*="__liquidplant-hero-video"] .subtitle:not(.supertitle):before {
      margin: 50px auto; } }
body.page-material-liquidplant [id*="liquidplant-2up-"] .two-up > .grid, body.page-material-liquidplant [id*="liquidplant-2up-"] .two-up > .grid--rev, body.page-material-liquidplant [id*="liquidplant-2up-"] .two-up > .grid--full {
  padding: 30px 0;
  display: flex; }
@media screen and (max-width: 480px) {
  body.page-material-liquidplant [id*="liquidplant-2up-"] .two-up {
    padding: 0; }
    body.page-material-liquidplant [id*="liquidplant-2up-"] .two-up > .grid, body.page-material-liquidplant [id*="liquidplant-2up-"] .two-up > .grid--rev, body.page-material-liquidplant [id*="liquidplant-2up-"] .two-up > .grid--full {
      padding: 30px 0;
      flex-direction: column; } }
body.page-material-liquidplant [id*="liquidplant-2up-"] h5:after, body.page-material-liquidplant [id*="liquidplant-2up-"] .h5:after {
  content: '';
  display: block;
  border-right: 1px solid #000000;
  height: 43px;
  width: 1px;
  margin: 30px auto; }
body.page-material-liquidplant [id*="liquidplant-2up-"] .content.block {
  padding: 5% 6%; }
  body.page-material-liquidplant [id*="liquidplant-2up-"] .content.block > img {
    padding: 0; }
  @media screen and (max-width: 480px) {
    body.page-material-liquidplant [id*="liquidplant-2up-"] .content.block {
      padding: 0; } }
body.page-material-liquidplant [id*="liquidplant-2up-feel"] {
  padding-top: 5%; }
  @media screen and (max-width: 480px) {
    body.page-material-liquidplant [id*="liquidplant-2up-feel"] {
      padding: 0; } }
body.page-material-liquidplant [id*="liquidplant-2up-looks"] .two-up {
  flex-direction: row-reverse; }
body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title h2, body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title .h2, body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title h2, body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title h4, body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-liquidplant [id*="liquidplant-2up-loves"] .two-up .hero .home-title .h4 {
  max-width: 15em !important; }
body.page-material-liquidplant [id*="liquidplant-collection-slider"] .super-title {
  display: none; }
@media screen and (max-width: 480px) {
  body.page-material-liquidplant [id*="liquidplant-content-grid-section"] .content.block .grid__item {
    text-align: center !important; } }
@media screen and (max-width: 480px) {
  body.page-material-liquidplant [id*="liquidplant-content-grid-section"] .section-container .grid .grid__item:nth-of-type(3) .home-title, body.page-material-liquidplant [id*="liquidplant-content-grid-section"] .section-container .grid--rev .grid__item:nth-of-type(3) .home-title, body.page-material-liquidplant [id*="liquidplant-content-grid-section"] .section-container .grid--full .grid__item:nth-of-type(3) .home-title {
    margin-top: 0; } }
body.page-material-liquidplant [id*="__liquidplant-try-liquidplant-banner"] {
  padding-bottom: 0; }
  body.page-material-liquidplant [id*="__liquidplant-try-liquidplant-banner"] + .main-content.d {
    display: none; }

#material-inquiry .shell, #corporate-gifting .shell {
  min-height: unset; }
#material-inquiry h2.largeish, #corporate-gifting h2.largeish, #material-inquiry .largeish.h2, #corporate-gifting .largeish.h2, #material-inquiry body.page-the-mens-collection #PageContainer .products h2.largeish, body.page-the-mens-collection #PageContainer .products #material-inquiry h2.largeish, #corporate-gifting body.page-the-mens-collection #PageContainer .products h2.largeish, body.page-the-mens-collection #PageContainer .products #corporate-gifting h2.largeish, #material-inquiry #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.largeish, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #material-inquiry h4.largeish, #corporate-gifting #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.largeish, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting h4.largeish, #material-inquiry #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #material-inquiry .largeish.h4, #corporate-gifting #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .largeish.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting .largeish.h4, #material-inquiry body.page-campaign-lander .rte h2, body.page-campaign-lander .rte #material-inquiry h2, #corporate-gifting body.page-campaign-lander .rte h2, body.page-campaign-lander .rte #corporate-gifting h2, #material-inquiry body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte #material-inquiry .h2, #corporate-gifting body.page-campaign-lander .rte .h2, body.page-campaign-lander .rte #corporate-gifting .h2, #material-inquiry body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #material-inquiry h4, #corporate-gifting body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting h4, #material-inquiry #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte #material-inquiry h4, #corporate-gifting #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte #corporate-gifting h4, #material-inquiry body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #material-inquiry .h4, #corporate-gifting body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, body.page-campaign-lander .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting .h4, #material-inquiry #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte #material-inquiry .h4, #corporate-gifting #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-campaign-lander .rte #corporate-gifting .h4 {
  font-size: 2.3em;
  line-height: 1.3;
  letter-spacing: 0.01em; }
@media screen and (max-width: 480px) {
  #material-inquiry h2 + p br, #corporate-gifting h2 + p br, #material-inquiry .h2 + p br, #corporate-gifting .h2 + p br, #material-inquiry body.page-the-mens-collection #PageContainer .products h2 + p br, body.page-the-mens-collection #PageContainer .products #material-inquiry h2 + p br, #corporate-gifting body.page-the-mens-collection #PageContainer .products h2 + p br, body.page-the-mens-collection #PageContainer .products #corporate-gifting h2 + p br, #material-inquiry #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 + p br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #material-inquiry h4 + p br, #corporate-gifting #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 + p br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting h4 + p br, #material-inquiry #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 + p br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #material-inquiry .h4 + p br, #corporate-gifting #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 + p br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting .h4 + p br {
    display: none; } }
#material-inquiry form .form-error, #corporate-gifting form .form-error,
#material-inquiry form .errors,
#corporate-gifting form .errors {
  color: #d02e2e;
  background-color: transparent;
  border-color: transparent;
  padding: 0;
  margin: 40px 0 20px;
  text-transform: uppercase; }
#material-inquiry form label, #corporate-gifting form label {
  display: block;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 5px; }
#material-inquiry form ul, #corporate-gifting form ul {
  list-style: none;
  margin-left: 0; }
  #material-inquiry form ul li, #corporate-gifting form ul li {
    margin-bottom: 1.5em;
    line-height: 1; }
    @media screen and (max-width: 480px) {
      #material-inquiry form ul li, #corporate-gifting form ul li {
        margin-bottom: 2em; } }
  #material-inquiry form ul label, #corporate-gifting form ul label {
    margin-top: 10px;
    margin-left: 37px;
    text-indent: -37px; }
  #material-inquiry form ul input, #corporate-gifting form ul input {
    margin-right: 20px;
    vertical-align: text-top;
    filter: grayscale(100%); }
#material-inquiry form .btn, #corporate-gifting form .btn, #material-inquiry form .btn--secondary, #corporate-gifting form .btn--secondary, #material-inquiry form .btn--alt, #corporate-gifting form .btn--alt,
#material-inquiry form .btn + p,
#corporate-gifting form .btn + p,
#material-inquiry form .btn--secondary + p,
#corporate-gifting form .btn--secondary + p,
#material-inquiry form .btn--alt + p,
#corporate-gifting form .btn--alt + p {
  width: 22em;
  text-align: center;
  margin: 20px auto; }
#material-inquiry form .btn, #corporate-gifting form .btn, #material-inquiry form .btn--secondary, #corporate-gifting form .btn--secondary, #material-inquiry form .btn--alt, #corporate-gifting form .btn--alt {
  margin-top: 40px; }
#material-inquiry form .btn + p, #corporate-gifting form .btn + p, #material-inquiry form .btn--secondary + p, #corporate-gifting form .btn--secondary + p, #material-inquiry form .btn--alt + p, #corporate-gifting form .btn--alt + p {
  line-height: 1.3;
  text-transform: uppercase; }

#corporate-gifting .wrapper .rte h2, #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .rte h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer .rte h2,
#corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .rte h2,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer .rte h2, #corporate-gifting .wrapper .rte .h2, #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .rte .h2, body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer .rte .h2,
#corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .rte .h2,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer .rte .h2, #corporate-gifting .wrapper .rte body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #corporate-gifting .wrapper .rte h2, #corporate-gifting .wrapper .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting .wrapper .rte h4, #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .rte h4, body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer .rte h4,
#corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .rte h4,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer .rte h4, #corporate-gifting .wrapper .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting .wrapper .rte .h4, #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .rte .h4, body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer .rte .h4,
#corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .rte .h4,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer .rte #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer .rte .h4 {
  margin-top: 1.25em;
  margin-bottom: 3.5em; }
#corporate-gifting .wrapper form .btn, #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer form .btn, body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer form .btn,
#corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer form .btn,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer form .btn, #corporate-gifting .wrapper form .btn--secondary, #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer form .btn--secondary, body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer form .btn--secondary,
#corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer form .btn--secondary,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer form .btn--secondary, #corporate-gifting .wrapper form .btn--alt, #corporate-gifting body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer form .btn--alt, body.page-shop [id*='__shop-home-banner'] .home-hero .content #corporate-gifting .footer form .btn--alt,
#corporate-gifting body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer form .btn--alt,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #corporate-gifting .footer form .btn--alt {
  width: 100%;
  max-width: 240px;
  min-width: unset; }

body.page-not-a-virgin #hero .title h1, body.page-technik-leather #hero .title h1, body.page-not-a-virgin #hero .title .h1, body.page-technik-leather #hero .title .h1 {
  font-size: 5em;
  font-weight: 500; }
@media screen and (max-width: 480px) {
  body.page-not-a-virgin #hero h5, body.page-technik-leather #hero h5, body.page-not-a-virgin #hero .h5, body.page-technik-leather #hero .h5 {
    display: none; }
  body.page-not-a-virgin #hero .title, body.page-technik-leather #hero .title {
    background: transparent; }
    body.page-not-a-virgin #hero .title h1, body.page-technik-leather #hero .title h1, body.page-not-a-virgin #hero .title .h1, body.page-technik-leather #hero .title .h1 {
      font-size: 3.7em;
      max-width: 5em;
      margin: 0 auto; }
      body.page-not-a-virgin #hero .title h1:after, body.page-technik-leather #hero .title h1:after, body.page-not-a-virgin #hero .title .h1:after, body.page-technik-leather #hero .title .h1:after {
        content: unset !important; }
      body.page-not-a-virgin #hero .title h1 br, body.page-technik-leather #hero .title h1 br, body.page-not-a-virgin #hero .title .h1 br, body.page-technik-leather #hero .title .h1 br {
        display: none; } }
body.page-not-a-virgin .shell > .main-content, body.page-technik-leather .shell > .main-content {
  padding-bottom: 0; }
body.page-not-a-virgin p, body.page-technik-leather p,
body.page-not-a-virgin ol,
body.page-technik-leather ol {
  line-height: 1.9;
  font-size: 17px; }
  @media screen and (max-width: 480px) {
    body.page-not-a-virgin p, body.page-technik-leather p,
    body.page-not-a-virgin ol,
    body.page-technik-leather ol {
      font-size: 14px; } }
body.page-not-a-virgin .shell > .intro, body.page-technik-leather .shell > .intro {
  margin-top: 90px;
  margin-bottom: 60px; }
  body.page-not-a-virgin .shell > .intro h1, body.page-technik-leather .shell > .intro h1, body.page-not-a-virgin .shell > .intro .h1, body.page-technik-leather .shell > .intro .h1 {
    margin-bottom: 0.75em;
    font-weight: 500; }
    body.page-not-a-virgin .shell > .intro h1 span, body.page-technik-leather .shell > .intro h1 span, body.page-not-a-virgin .shell > .intro .h1 span, body.page-technik-leather .shell > .intro .h1 span {
      display: none; }
  @media screen and (max-width: 480px) {
    body.page-not-a-virgin .shell > .intro, body.page-technik-leather .shell > .intro {
      margin-top: 0;
      margin-bottom: 0; }
      body.page-not-a-virgin .shell > .intro h1, body.page-technik-leather .shell > .intro h1, body.page-not-a-virgin .shell > .intro .h1, body.page-technik-leather .shell > .intro .h1,
      body.page-not-a-virgin .shell > .intro p,
      body.page-technik-leather .shell > .intro p {
        font-size: 14px;
        line-height: 1.8;
        display: inline; }
      body.page-not-a-virgin .shell > .intro h1 span, body.page-technik-leather .shell > .intro h1 span, body.page-not-a-virgin .shell > .intro .h1 span, body.page-technik-leather .shell > .intro .h1 span {
        display: inline; }
      body.page-not-a-virgin .shell > .intro p span, body.page-technik-leather .shell > .intro p span {
        text-transform: lowercase; }
      body.page-not-a-virgin .shell > .intro p br, body.page-technik-leather .shell > .intro p br {
        display: none; } }
body.page-not-a-virgin .text-overlay .wrapper, body.page-technik-leather .text-overlay .wrapper, body.page-not-a-virgin .text-overlay body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-not-a-virgin .text-overlay .footer, body.page-technik-leather .text-overlay body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-technik-leather .text-overlay .footer,
body.page-not-a-virgin .text-overlay body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-not-a-virgin .text-overlay .footer,
body.page-technik-leather .text-overlay body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-technik-leather .text-overlay .footer {
  width: 100%; }
body.page-not-a-virgin .text-overlay .grid__item, body.page-technik-leather .text-overlay .grid__item {
  position: relative; }
body.page-not-a-virgin .text-overlay .title, body.page-technik-leather .text-overlay .title {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff; }
body.page-not-a-virgin .text-overlay .h1, body.page-technik-leather .text-overlay .h1 {
  margin-bottom: 0;
  font-size: 5em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em; }
@media screen and (max-width: 480px) {
  body.page-not-a-virgin .text-overlay img, body.page-technik-leather .text-overlay img {
    max-width: unset;
    width: 200%;
    margin-left: -50%; }
  body.page-not-a-virgin .text-overlay .h1, body.page-technik-leather .text-overlay .h1 {
    font-size: 3.4em; }
  body.page-not-a-virgin .text-overlay .wrapper, body.page-technik-leather .text-overlay .wrapper, body.page-not-a-virgin .text-overlay body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-not-a-virgin .text-overlay .footer, body.page-technik-leather .text-overlay body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-technik-leather .text-overlay .footer,
  body.page-not-a-virgin .text-overlay body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-not-a-virgin .text-overlay .footer,
  body.page-technik-leather .text-overlay body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-technik-leather .text-overlay .footer {
    padding: 0 45px; } }
@media screen and (min-width: 799px) {
  body.page-not-a-virgin .grid.product-header .h1, body.page-technik-leather .grid.product-header .h1, body.page-not-a-virgin .product-header.grid--rev .h1, body.page-technik-leather .product-header.grid--rev .h1, body.page-not-a-virgin .product-header.grid--full .h1, body.page-technik-leather .product-header.grid--full .h1 {
    margin-bottom: 0; } }
@media screen and (min-width: 800px) {
  body.page-not-a-virgin #featuredProducts .push--large--one-twentyfourth, body.page-technik-leather #featuredProducts .push--large--one-twentyfourth {
    left: calc(100% / 24); }
  body.page-not-a-virgin #featuredProducts .push--large--one-twelfth, body.page-technik-leather #featuredProducts .push--large--one-twelfth {
    left: 10%; } }
body.page-not-a-virgin div.grid.product-embed, body.page-technik-leather div.grid.product-embed, body.page-not-a-virgin div.product-embed.grid--rev, body.page-technik-leather div.product-embed.grid--rev, body.page-not-a-virgin div.product-embed.grid--full, body.page-technik-leather div.product-embed.grid--full {
  padding-top: 0; }
  body.page-not-a-virgin div.grid.product-embed .bundle-main-thumb .thumb, body.page-technik-leather div.grid.product-embed .bundle-main-thumb .thumb, body.page-not-a-virgin div.product-embed.grid--rev .bundle-main-thumb .thumb, body.page-technik-leather div.product-embed.grid--rev .bundle-main-thumb .thumb, body.page-not-a-virgin div.product-embed.grid--full .bundle-main-thumb .thumb, body.page-technik-leather div.product-embed.grid--full .bundle-main-thumb .thumb {
    width: 145%;
    margin-left: -20%; }
  body.page-not-a-virgin div.grid.product-embed .bundle-main-thumb form, body.page-technik-leather div.grid.product-embed .bundle-main-thumb form, body.page-not-a-virgin div.product-embed.grid--rev .bundle-main-thumb form, body.page-technik-leather div.product-embed.grid--rev .bundle-main-thumb form, body.page-not-a-virgin div.product-embed.grid--full .bundle-main-thumb form, body.page-technik-leather div.product-embed.grid--full .bundle-main-thumb form {
    display: block; }
    body.page-not-a-virgin div.grid.product-embed .bundle-main-thumb form button, body.page-technik-leather div.grid.product-embed .bundle-main-thumb form button, body.page-not-a-virgin div.product-embed.grid--rev .bundle-main-thumb form button, body.page-technik-leather div.product-embed.grid--rev .bundle-main-thumb form button, body.page-not-a-virgin div.product-embed.grid--full .bundle-main-thumb form button, body.page-technik-leather div.product-embed.grid--full .bundle-main-thumb form button {
      max-width: 80%; }
  @media screen and (max-width: 480px) {
    body.page-not-a-virgin div.grid.product-embed .bundle-main-thumb, body.page-technik-leather div.grid.product-embed .bundle-main-thumb, body.page-not-a-virgin div.product-embed.grid--rev .bundle-main-thumb, body.page-technik-leather div.product-embed.grid--rev .bundle-main-thumb, body.page-not-a-virgin div.product-embed.grid--full .bundle-main-thumb, body.page-technik-leather div.product-embed.grid--full .bundle-main-thumb {
      padding-left: 50px; }
      body.page-not-a-virgin div.grid.product-embed .bundle-main-thumb .thumb, body.page-technik-leather div.grid.product-embed .bundle-main-thumb .thumb, body.page-not-a-virgin div.product-embed.grid--rev .bundle-main-thumb .thumb, body.page-technik-leather div.product-embed.grid--rev .bundle-main-thumb .thumb, body.page-not-a-virgin div.product-embed.grid--full .bundle-main-thumb .thumb, body.page-technik-leather div.product-embed.grid--full .bundle-main-thumb .thumb {
        margin-left: -30%; } }
  body.page-not-a-virgin div.grid.product-embed .view-more, body.page-technik-leather div.grid.product-embed .view-more, body.page-not-a-virgin div.product-embed.grid--rev .view-more, body.page-technik-leather div.product-embed.grid--rev .view-more, body.page-not-a-virgin div.product-embed.grid--full .view-more, body.page-technik-leather div.product-embed.grid--full .view-more {
    display: none; }
  @media screen and (max-width: 480px) {
    body.page-not-a-virgin div.grid.product-embed, body.page-technik-leather div.grid.product-embed, body.page-not-a-virgin div.product-embed.grid--rev, body.page-technik-leather div.product-embed.grid--rev, body.page-not-a-virgin div.product-embed.grid--full, body.page-technik-leather div.product-embed.grid--full {
      margin-left: 15px;
      margin-right: 15px; } }
body.page-not-a-virgin .material, body.page-technik-leather .material,
body.page-not-a-virgin .sustainability,
body.page-technik-leather .sustainability {
  display: flex;
  flex-wrap: wrap; }
  body.page-not-a-virgin .material .intro, body.page-technik-leather .material .intro,
  body.page-not-a-virgin .sustainability .intro,
  body.page-technik-leather .sustainability .intro {
    margin-top: 100px;
    margin-bottom: 30px; }
    @media screen and (max-width: 480px) {
      body.page-not-a-virgin .material .intro, body.page-technik-leather .material .intro,
      body.page-not-a-virgin .sustainability .intro,
      body.page-technik-leather .sustainability .intro {
        margin-bottom: 0; } }
    body.page-not-a-virgin .material .intro h2, body.page-technik-leather .material .intro h2, body.page-not-a-virgin .material .intro .h2, body.page-technik-leather .material .intro .h2, body.page-not-a-virgin .material .intro body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-not-a-virgin .material .intro h2, body.page-technik-leather .material .intro body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-technik-leather .material .intro h2, body.page-not-a-virgin .material .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .material .intro h4, body.page-technik-leather .material .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .material .intro h4, body.page-not-a-virgin .material .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .material .intro .h4, body.page-technik-leather .material .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .material .intro .h4,
    body.page-not-a-virgin .sustainability .intro h2,
    body.page-technik-leather .sustainability .intro h2,
    body.page-not-a-virgin .sustainability .intro .h2,
    body.page-technik-leather .sustainability .intro .h2,
    body.page-not-a-virgin .sustainability .intro body.page-the-mens-collection #PageContainer .products h2,
    body.page-the-mens-collection #PageContainer .products body.page-not-a-virgin .sustainability .intro h2,
    body.page-technik-leather .sustainability .intro body.page-the-mens-collection #PageContainer .products h2,
    body.page-the-mens-collection #PageContainer .products body.page-technik-leather .sustainability .intro h2,
    body.page-not-a-virgin .sustainability .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .sustainability .intro h4,
    body.page-technik-leather .sustainability .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .sustainability .intro h4,
    body.page-not-a-virgin .sustainability .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .sustainability .intro .h4,
    body.page-technik-leather .sustainability .intro #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
    #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .sustainability .intro .h4 {
      text-align: center;
      text-transform: lowercase;
      font-weight: 500; }
  body.page-not-a-virgin .material .image, body.page-technik-leather .material .image,
  body.page-not-a-virgin .material .text,
  body.page-technik-leather .material .text,
  body.page-not-a-virgin .sustainability .image,
  body.page-technik-leather .sustainability .image,
  body.page-not-a-virgin .sustainability .text,
  body.page-technik-leather .sustainability .text {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  body.page-not-a-virgin .material .image, body.page-technik-leather .material .image,
  body.page-not-a-virgin .sustainability .image,
  body.page-technik-leather .sustainability .image {
    margin: 30px 0; }
  body.page-not-a-virgin .material h2, body.page-technik-leather .material h2, body.page-not-a-virgin .material .h2, body.page-technik-leather .material .h2, body.page-not-a-virgin .material body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-not-a-virgin .material h2, body.page-technik-leather .material body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-technik-leather .material h2, body.page-not-a-virgin .material #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .material h4, body.page-technik-leather .material #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .material h4, body.page-not-a-virgin .material #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .material .h4, body.page-technik-leather .material #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .material .h4,
  body.page-not-a-virgin .sustainability h2,
  body.page-technik-leather .sustainability h2,
  body.page-not-a-virgin .sustainability .h2,
  body.page-technik-leather .sustainability .h2,
  body.page-not-a-virgin .sustainability body.page-the-mens-collection #PageContainer .products h2,
  body.page-the-mens-collection #PageContainer .products body.page-not-a-virgin .sustainability h2,
  body.page-technik-leather .sustainability body.page-the-mens-collection #PageContainer .products h2,
  body.page-the-mens-collection #PageContainer .products body.page-technik-leather .sustainability h2,
  body.page-not-a-virgin .sustainability #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .sustainability h4,
  body.page-technik-leather .sustainability #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .sustainability h4,
  body.page-not-a-virgin .sustainability #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .sustainability .h4,
  body.page-technik-leather .sustainability #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .sustainability .h4 {
    margin-bottom: 0; }
  body.page-not-a-virgin .material ol, body.page-technik-leather .material ol,
  body.page-not-a-virgin .sustainability ol,
  body.page-technik-leather .sustainability ol {
    list-style-type: decimal-leading-zero;
    margin: auto 60px;
    max-width: 400px; }
    body.page-not-a-virgin .material ol li, body.page-technik-leather .material ol li,
    body.page-not-a-virgin .sustainability ol li,
    body.page-technik-leather .sustainability ol li {
      padding-left: 8px;
      margin-bottom: 1.5em; }
    @media screen and (min-width: 480px) and (max-width: 799px) {
      body.page-not-a-virgin .material ol, body.page-technik-leather .material ol,
      body.page-not-a-virgin .sustainability ol,
      body.page-technik-leather .sustainability ol {
        margin: 0 auto 60px; } }
@media screen and (max-width: 480px) {
  body.page-not-a-virgin .material, body.page-technik-leather .material {
    margin-bottom: 50px; }
    body.page-not-a-virgin .material img, body.page-technik-leather .material img {
      margin: 0 30px; } }
body.page-not-a-virgin .sustainability h5, body.page-technik-leather .sustainability h5, body.page-not-a-virgin .sustainability .h5, body.page-technik-leather .sustainability .h5 {
  margin-bottom: 40px; }
body.page-not-a-virgin .sustainability hr, body.page-technik-leather .sustainability hr {
  margin-bottom: 40px; }
body.page-not-a-virgin .sustainability .text, body.page-technik-leather .sustainability .text {
  padding-top: 170px;
  padding-bottom: 170px;
  padding-left: 90px;
  padding-right: 60px;
  max-width: 560px; }
@media screen and (max-width: 480px) {
  body.page-not-a-virgin .sustainability, body.page-technik-leather .sustainability {
    margin-top: 30px;
    margin-bottom: 20px; }
    body.page-not-a-virgin .sustainability h5, body.page-technik-leather .sustainability h5, body.page-not-a-virgin .sustainability .h5, body.page-technik-leather .sustainability .h5 {
      margin-bottom: 30px; }
    body.page-not-a-virgin .sustainability .text, body.page-technik-leather .sustainability .text {
      padding-top: 30px;
      padding-bottom: 30px; } }
body.page-not-a-virgin .stats .title, body.page-technik-leather .stats .title {
  justify-content: left; }
@media screen and (max-width: 725px) {
  body.page-not-a-virgin .stats img, body.page-technik-leather .stats img {
    max-width: unset;
    width: 200%;
    margin-left: -100%; }
  body.page-not-a-virgin .stats .title, body.page-technik-leather .stats .title {
    margin: 70px auto;
    width: 90%;
    position: relative; }
    body.page-not-a-virgin .stats .title .grid__item, body.page-technik-leather .stats .title .grid__item {
      width: 100%; } }
@media screen and (max-width: 480px) {
  body.page-not-a-virgin .stats .title, body.page-technik-leather .stats .title {
    width: 100%; }
  body.page-not-a-virgin .stats .wrapper, body.page-technik-leather .stats .wrapper, body.page-not-a-virgin .stats body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-not-a-virgin .stats .footer, body.page-technik-leather .stats body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-technik-leather .stats .footer,
  body.page-not-a-virgin .stats body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-not-a-virgin .stats .footer,
  body.page-technik-leather .stats body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-technik-leather .stats .footer {
    padding: 0 20px; } }
body.page-not-a-virgin .features, body.page-technik-leather .features {
  display: flex;
  flex-wrap: wrap;
  color: #000000; }
  body.page-not-a-virgin .features > div, body.page-technik-leather .features > div {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
    text-align: left; }
    body.page-not-a-virgin .features > div:nth-child(1), body.page-technik-leather .features > div:nth-child(1), body.page-not-a-virgin .features > div:nth-child(2), body.page-technik-leather .features > div:nth-child(2) {
      margin-bottom: 90px; }
  body.page-not-a-virgin .features svg, body.page-technik-leather .features svg {
    height: 40px;
    margin-right: 10px;
    float: left; }
  body.page-not-a-virgin .features h1, body.page-technik-leather .features h1, body.page-not-a-virgin .features .h1, body.page-technik-leather .features .h1 {
    margin: 15px 0 0;
    text-align: right;
    font-size: 3.6em;
    line-height: 1;
    margin-top: 3px;
    white-space: nowrap; }
  body.page-not-a-virgin .features hr, body.page-technik-leather .features hr {
    border-color: #b4b5b3;
    margin: 5px 0 10px; }
  @media screen and (max-width: 1000px) {
    body.page-not-a-virgin .features > div, body.page-technik-leather .features > div {
      text-align: center; }
      body.page-not-a-virgin .features > div:nth-child(1), body.page-technik-leather .features > div:nth-child(1), body.page-not-a-virgin .features > div:nth-child(2), body.page-technik-leather .features > div:nth-child(2) {
        margin-bottom: 50px; }
    body.page-not-a-virgin .features svg, body.page-technik-leather .features svg {
      height: 30px; }
    body.page-not-a-virgin .features h1, body.page-technik-leather .features h1, body.page-not-a-virgin .features .h1, body.page-technik-leather .features .h1 {
      font-size: 2.5em; } }
body.page-not-a-virgin .details .two-up, body.page-technik-leather .details .two-up {
  display: flex; }
  @media screen and (max-width: 480px) {
    body.page-not-a-virgin .details .two-up, body.page-technik-leather .details .two-up {
      flex-direction: column; } }
body.page-not-a-virgin .table, body.page-technik-leather .table {
  margin: 100px; }
  body.page-not-a-virgin .table tr:first-child th, body.page-technik-leather .table tr:first-child th,
  body.page-not-a-virgin .table tr:first-child td,
  body.page-technik-leather .table tr:first-child td {
    border-top: none; }
  body.page-not-a-virgin .table th, body.page-technik-leather .table th,
  body.page-not-a-virgin .table td,
  body.page-technik-leather .table td {
    border-right: none;
    border-left: none;
    border-color: #d4d4d4;
    font-weight: 500;
    padding: 10px 0; }
    body.page-not-a-virgin .table th:first-child, body.page-technik-leather .table th:first-child,
    body.page-not-a-virgin .table td:first-child,
    body.page-technik-leather .table td:first-child {
      padding-left: 0; }
    body.page-not-a-virgin .table th:not(:first-child), body.page-technik-leather .table th:not(:first-child),
    body.page-not-a-virgin .table td:not(:first-child),
    body.page-technik-leather .table td:not(:first-child) {
      text-align: center;
      font-size: 1.3em; }
  body.page-not-a-virgin .table h2, body.page-technik-leather .table h2, body.page-not-a-virgin .table .h2, body.page-technik-leather .table .h2, body.page-not-a-virgin .table body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-not-a-virgin .table h2, body.page-technik-leather .table body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-technik-leather .table h2, body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table h4, body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table h4, body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table .h4, body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table .h4 {
    font-weight: 500; }
    body.page-not-a-virgin .table h2:not(.mobile), body.page-technik-leather .table h2:not(.mobile), body.page-not-a-virgin .table .h2:not(.mobile), body.page-technik-leather .table .h2:not(.mobile), body.page-not-a-virgin .table body.page-the-mens-collection #PageContainer .products h2:not(.mobile), body.page-the-mens-collection #PageContainer .products body.page-not-a-virgin .table h2:not(.mobile), body.page-technik-leather .table body.page-the-mens-collection #PageContainer .products h2:not(.mobile), body.page-the-mens-collection #PageContainer .products body.page-technik-leather .table h2:not(.mobile), body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4:not(.mobile), #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table h4:not(.mobile), body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4:not(.mobile), #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table h4:not(.mobile), body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4:not(.mobile), #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table .h4:not(.mobile), body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4:not(.mobile), #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table .h4:not(.mobile) {
      margin-bottom: 0; }
    body.page-not-a-virgin .table h2.mobile, body.page-technik-leather .table h2.mobile, body.page-not-a-virgin .table .mobile.h2, body.page-technik-leather .table .mobile.h2, body.page-not-a-virgin .table body.page-the-mens-collection #PageContainer .products h2.mobile, body.page-the-mens-collection #PageContainer .products body.page-not-a-virgin .table h2.mobile, body.page-technik-leather .table body.page-the-mens-collection #PageContainer .products h2.mobile, body.page-the-mens-collection #PageContainer .products body.page-technik-leather .table h2.mobile, body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.mobile, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table h4.mobile, body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.mobile, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table h4.mobile, body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .mobile.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table .mobile.h4, body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .mobile.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table .mobile.h4 {
      margin-left: 20px; }
  body.page-not-a-virgin .table .serif, body.page-technik-leather .table .serif, body.page-not-a-virgin .table #instagram .main-content .grid__item .article-body p, #instagram .main-content .grid__item .article-body body.page-not-a-virgin .table p, body.page-technik-leather .table #instagram .main-content .grid__item .article-body p, #instagram .main-content .grid__item .article-body body.page-technik-leather .table p,
  body.page-not-a-virgin .table #instagram .main-content .grid__item .article-body li,
  #instagram .main-content .grid__item .article-body body.page-not-a-virgin .table li,
  body.page-technik-leather .table #instagram .main-content .grid__item .article-body li,
  #instagram .main-content .grid__item .article-body body.page-technik-leather .table li,
  body.page-not-a-virgin .table .template-article .main-content .grid__item .article-body p,
  .template-article .main-content .grid__item .article-body body.page-not-a-virgin .table p,
  body.page-technik-leather .table .template-article .main-content .grid__item .article-body p,
  .template-article .main-content .grid__item .article-body body.page-technik-leather .table p,
  body.page-not-a-virgin .table .template-article .main-content .grid__item .article-body li,
  .template-article .main-content .grid__item .article-body body.page-not-a-virgin .table li,
  body.page-technik-leather .table .template-article .main-content .grid__item .article-body li,
  .template-article .main-content .grid__item .article-body body.page-technik-leather .table li, body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table h5, body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table h5, body.page-not-a-virgin .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-not-a-virgin .table .h5, body.page-technik-leather .table #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h5, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-technik-leather .table .h5, body.page-not-a-virgin .table #our-story #PageContainer .shell p, #our-story #PageContainer .shell body.page-not-a-virgin .table p, body.page-technik-leather .table #our-story #PageContainer .shell p, #our-story #PageContainer .shell body.page-technik-leather .table p,
  body.page-not-a-virgin .table body.page-materials #PageContainer .shell p,
  body.page-materials #PageContainer .shell body.page-not-a-virgin .table p,
  body.page-technik-leather .table body.page-materials #PageContainer .shell p,
  body.page-materials #PageContainer .shell body.page-technik-leather .table p,
  body.page-not-a-virgin .table .page-material-innovators-judges #PageContainer .shell p,
  .page-material-innovators-judges #PageContainer .shell body.page-not-a-virgin .table p,
  body.page-technik-leather .table .page-material-innovators-judges #PageContainer .shell p,
  .page-material-innovators-judges #PageContainer .shell body.page-technik-leather .table p {
    font-size: 17px; }
  body.page-not-a-virgin .table svg, body.page-technik-leather .table svg {
    height: 18px;
    margin-top: 4px;
    margin-bottom: -4px; }
    body.page-not-a-virgin .table svg path, body.page-technik-leather .table svg path {
      fill: black;
      stroke: black;
      stroke-width: 2px; }
    body.page-not-a-virgin .table svg.off path, body.page-technik-leather .table svg.off path {
      fill: transparent; }
  @media screen and (max-width: 799px) {
    body.page-not-a-virgin .table, body.page-technik-leather .table {
      margin: 100px 30px 100px 0; } }
  @media screen and (max-width: 480px) {
    body.page-not-a-virgin .table, body.page-technik-leather .table {
      margin: 0 0 0;
      padding: 70px 0;
      border-top: 1px solid #acacac; }
      body.page-not-a-virgin .table .grid__item, body.page-technik-leather .table .grid__item {
        overflow-x: scroll; }
      body.page-not-a-virgin .table table, body.page-technik-leather .table table {
        margin-left: 20px;
        overflow-x: scroll; }
      body.page-not-a-virgin .table th, body.page-technik-leather .table th,
      body.page-not-a-virgin .table td,
      body.page-technik-leather .table td {
        padding: 10px; }
      body.page-not-a-virgin .table tr:first-child > *, body.page-technik-leather .table tr:first-child > * {
        border-top: none;
        font-size: 14px;
        white-space: nowrap; }
      body.page-not-a-virgin .table th:first-child, body.page-technik-leather .table th:first-child {
        font-size: 1.5em; } }

#serrano .shell {
  background-color: #a42a22; }
  #serrano .shell main.wrapper:first-child, #serrano .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content main.footer:first-child, body.page-shop [id*='__shop-home-banner'] .home-hero .content #serrano .shell main.footer:first-child,
  #serrano .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content main.footer:first-child,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #serrano .shell main.footer:first-child {
    display: none; }
    #serrano .shell main.wrapper:first-child + main.main-content, #serrano .shell body.page-shop [id*='__shop-home-banner'] .home-hero .content main.footer:first-child + main.main-content, body.page-shop [id*='__shop-home-banner'] .home-hero .content #serrano .shell main.footer:first-child + main.main-content,
    #serrano .shell body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content main.footer:first-child + main.main-content,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #serrano .shell main.footer:first-child + main.main-content {
      padding-bottom: 0; }
#serrano [id*='__serrano-intro-text'] {
  color: #ffffff; }
  #serrano [id*='__serrano-intro-text'] .btn.btn--wide, #serrano [id*='__serrano-intro-text'] .btn--wide.btn--secondary, #serrano [id*='__serrano-intro-text'] .btn--wide.btn--alt {
    padding-left: 60px;
    padding-right: 60px; }
#serrano [id*='__serrano-seat-lab'] .home-hero .content > img#homePageHero {
  width: 100%; }
#serrano [id*='__serrano-made-with'] {
  color: #ffffff; }
  @media screen and (max-width: 480px) {
    #serrano [id*='__serrano-made-with'] h2, #serrano [id*='__serrano-made-with'] .h2, #serrano [id*='__serrano-made-with'] body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #serrano [id*='__serrano-made-with'] h2, #serrano [id*='__serrano-made-with'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-made-with'] h4, #serrano [id*='__serrano-made-with'] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-made-with'] .h4 {
      margin-top: 0; } }
#serrano [id*='__serrano-driving-progress'] .content .home-title,
#serrano [id*='__serrano-new-hue'] .content .home-title {
  padding: 0px 10%;
  max-width: 50em; }
#serrano [id*='__serrano-driving-progress'] .content h5:first-child, #serrano [id*='__serrano-driving-progress'] .content .h5:first-child,
#serrano [id*='__serrano-new-hue'] .content h5:first-child,
#serrano [id*='__serrano-new-hue'] .content .h5:first-child {
  margin-bottom: 1.5em; }
#serrano [id*='__serrano-driving-progress'] .content h2, #serrano [id*='__serrano-driving-progress'] .content .h2, #serrano [id*='__serrano-driving-progress'] .content body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #serrano [id*='__serrano-driving-progress'] .content h2, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content h4, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content .h4,
#serrano [id*='__serrano-new-hue'] .content h2,
#serrano [id*='__serrano-new-hue'] .content .h2,
#serrano [id*='__serrano-new-hue'] .content body.page-the-mens-collection #PageContainer .products h2,
body.page-the-mens-collection #PageContainer .products #serrano [id*='__serrano-new-hue'] .content h2,
#serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content h4,
#serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content .h4 {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0.5em !important; }
  #serrano [id*='__serrano-driving-progress'] .content h2.sans-l, #serrano [id*='__serrano-driving-progress'] .content .sans-l.h2, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.sans-l, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content h4.sans-l, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .sans-l.h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content .sans-l.h4,
  #serrano [id*='__serrano-new-hue'] .content h2.sans-l,
  #serrano [id*='__serrano-new-hue'] .content .sans-l.h2,
  #serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4.sans-l,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content h4.sans-l,
  #serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .sans-l.h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content .sans-l.h4 {
    margin-bottom: 1.5em !important; }
  #serrano [id*='__serrano-driving-progress'] .content h2 a, #serrano [id*='__serrano-driving-progress'] .content .h2 a, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content h4 a, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 a, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content .h4 a,
  #serrano [id*='__serrano-new-hue'] .content h2 a,
  #serrano [id*='__serrano-new-hue'] .content .h2 a,
  #serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 a,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content h4 a,
  #serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 a,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content .h4 a {
    text-decoration: underline; }
#serrano [id*='__serrano-driving-progress'] .content .btn, #serrano [id*='__serrano-driving-progress'] .content .btn--secondary, #serrano [id*='__serrano-driving-progress'] .content .btn--alt,
#serrano [id*='__serrano-new-hue'] .content .btn,
#serrano [id*='__serrano-new-hue'] .content .btn--secondary,
#serrano [id*='__serrano-new-hue'] .content .btn--alt {
  margin-top: 2em;
  padding: 12px 60px; }
@media screen and (max-width: 480px) {
  #serrano [id*='__serrano-driving-progress'] .content .home-title,
  #serrano [id*='__serrano-new-hue'] .content .home-title {
    text-align: center; }
  #serrano [id*='__serrano-driving-progress'] .content h5:first-child, #serrano [id*='__serrano-driving-progress'] .content .h5:first-child,
  #serrano [id*='__serrano-new-hue'] .content h5:first-child,
  #serrano [id*='__serrano-new-hue'] .content .h5:first-child {
    margin-bottom: 1em; }
  #serrano [id*='__serrano-driving-progress'] .content h2, #serrano [id*='__serrano-driving-progress'] .content .h2, #serrano [id*='__serrano-driving-progress'] .content body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products #serrano [id*='__serrano-driving-progress'] .content h2, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content h4, #serrano [id*='__serrano-driving-progress'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-driving-progress'] .content .h4,
  #serrano [id*='__serrano-new-hue'] .content h2,
  #serrano [id*='__serrano-new-hue'] .content .h2,
  #serrano [id*='__serrano-new-hue'] .content body.page-the-mens-collection #PageContainer .products h2,
  body.page-the-mens-collection #PageContainer .products #serrano [id*='__serrano-new-hue'] .content h2,
  #serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content h4,
  #serrano [id*='__serrano-new-hue'] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #serrano [id*='__serrano-new-hue'] .content .h4 {
    margin-bottom: 1em !important; } }
#serrano [id*='__serrano-new-hue'] {
  margin-bottom: 30px; }
#serrano [id*='__serrano-hero'] + main.wrapper.main-content.d.home-banner, #serrano body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__serrano-hero'] + main.main-content.d.home-banner.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #serrano [id*='__serrano-hero'] + main.main-content.d.home-banner.footer,
#serrano body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__serrano-hero'] + main.main-content.d.home-banner.footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #serrano [id*='__serrano-hero'] + main.main-content.d.home-banner.footer {
  padding-bottom: 30px; }
  @media screen and (max-width: 480px) {
    #serrano [id*='__serrano-hero'] + main.wrapper.main-content.d.home-banner, #serrano body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__serrano-hero'] + main.main-content.d.home-banner.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #serrano [id*='__serrano-hero'] + main.main-content.d.home-banner.footer,
    #serrano body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__serrano-hero'] + main.main-content.d.home-banner.footer,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #serrano [id*='__serrano-hero'] + main.main-content.d.home-banner.footer {
      padding-bottom: 0; } }
@media screen and (max-width: 480px) {
  #serrano [id*='__serrano-museum'] .home-hero {
    margin-left: -15px;
    margin-right: -15px;
    width: unset; } }
#serrano [id*='__serrano-banbu-divider'],
#serrano [id*='__serrano-shop-slider'] {
  background-color: #ffffff; }
  #serrano [id*='__serrano-banbu-divider'] + .wrapper.main-content, #serrano body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__serrano-banbu-divider'] + .main-content.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content #serrano [id*='__serrano-banbu-divider'] + .main-content.footer,
  #serrano body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__serrano-banbu-divider'] + .main-content.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #serrano [id*='__serrano-banbu-divider'] + .main-content.footer,
  #serrano [id*='__serrano-shop-slider'] + .wrapper.main-content,
  #serrano body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__serrano-shop-slider'] + .main-content.footer,
  body.page-shop [id*='__shop-home-banner'] .home-hero .content #serrano [id*='__serrano-shop-slider'] + .main-content.footer,
  #serrano body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__serrano-shop-slider'] + .main-content.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #serrano [id*='__serrano-shop-slider'] + .main-content.footer {
    display: none; }
  #serrano [id*='__serrano-banbu-divider'] .super-title,
  #serrano [id*='__serrano-shop-slider'] .super-title {
    display: none; }
#serrano [id*='__serrano-banbu-divider'].text-divider {
  padding: 0 60px; }
#serrano [id*='__serrano-shop-slider'] {
  padding-bottom: 20px; }
  #serrano [id*='__serrano-shop-slider'] .collection-slider {
    padding: 0 0 30px; }
  @media screen and (max-width: 480px) {
    #serrano [id*='__serrano-shop-slider'] .collection-slider {
      padding: 60px 0 0; }
    #serrano [id*='__serrano-shop-slider'] .scroll-area {
      flex-wrap: wrap; }
    #serrano [id*='__serrano-shop-slider'] .item.intro {
      width: 100%; } }
#serrano [id*='__serrano-materials-banner'],
#serrano [id*='__serrano-materials-banner'] + main.wrapper,
#serrano body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*='__serrano-materials-banner'] + main.footer,
body.page-shop [id*='__shop-home-banner'] .home-hero .content #serrano [id*='__serrano-materials-banner'] + main.footer,
#serrano body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*='__serrano-materials-banner'] + main.footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content #serrano [id*='__serrano-materials-banner'] + main.footer {
  padding-bottom: 0; }

body.page-technik-leather #hero div > h5, body.page-technik-leather #hero div > .h5 {
  font-size: 1.05em;
  margin-bottom: 30px;
  font-weight: 300;
  display: block; }
body.page-technik-leather #hero .hero_logo {
  width: 70%;
  max-width: 630px;
  margin-bottom: 60px; }
body.page-technik-leather #hero p.h3, body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message {
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 400;
  font-family: "ButlerMedium", "Butler", "poynter-oldstyle-text", Georgia, Times, serif;
  text-transform: none;
  margin-bottom: 45px; }
@media screen and (max-width: 480px) {
  body.page-technik-leather #hero .title.additional-copy .wrapper, body.page-technik-leather #hero .title.additional-copy body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-technik-leather #hero .title.additional-copy .footer,
  body.page-technik-leather #hero .title.additional-copy body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-technik-leather #hero .title.additional-copy .footer {
    margin-bottom: 160px; } }
body.page-technik-leather #hero .wrapper.wrapper .grid__item > *:last-child:after, body.page-technik-leather #hero body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item > *:last-child:after, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-technik-leather #hero .footer .grid__item > *:last-child:after,
body.page-technik-leather #hero body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item > *:last-child:after,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-technik-leather #hero .footer .grid__item > *:last-child:after {
  border-right-color: white;
  height: 130px;
  margin-bottom: -200px; }
  @media screen and (max-width: 480px) {
    body.page-technik-leather #hero .wrapper.wrapper .grid__item > *:last-child:after, body.page-technik-leather #hero body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer .grid__item > *:last-child:after, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-technik-leather #hero .footer .grid__item > *:last-child:after,
    body.page-technik-leather #hero body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer .grid__item > *:last-child:after,
    body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-technik-leather #hero .footer .grid__item > *:last-child:after {
      height: 100px;
      border-right-color: #fff; } }
@media screen and (max-width: 480px) {
  body.page-technik-leather #hero .hero_logo {
    margin-bottom: 30px; } }
body.page-technik-leather .main-content {
  margin-top: 0;
  padding-bottom: 0; }
body.page-technik-leather .shell {
  padding-top: 0; }
  body.page-technik-leather .shell > .intro.intro {
    margin: 0; }
    body.page-technik-leather .shell > .intro.intro .section-block {
      background-color: #a4a5a7;
      padding-top: 60px;
      padding-bottom: 60px;
      margin-top: 0;
      margin-bottom: 0; }
      body.page-technik-leather .shell > .intro.intro .section-block h2, body.page-technik-leather .shell > .intro.intro .section-block .h2, body.page-technik-leather .shell > .intro.intro .section-block body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-technik-leather .shell > .intro.intro .section-block h2, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell > .intro.intro .section-block #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell > .intro.intro .section-block #aboutTLFeatures h4, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell > .intro.intro #aboutTLFeatures .section-block h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell > .intro.intro #aboutTLFeatures .section-block h4, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell > .intro.intro .section-block #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell > .intro.intro .section-block #aboutTLFeatures .h4, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell > .intro.intro #aboutTLFeatures .section-block .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell > .intro.intro #aboutTLFeatures .section-block .h4 {
        color: #ffffff;
        line-height: 1.4;
        margin: 0; }
  @media screen and (max-width: 480px) {
    body.page-technik-leather .shell .intro.intro .section-block h2, body.page-technik-leather .shell .intro.intro .section-block .h2, body.page-technik-leather .shell .intro.intro .section-block body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-technik-leather .shell .intro.intro .section-block h2, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell .intro.intro .section-block #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell .intro.intro .section-block #aboutTLFeatures h4, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .intro.intro .section-block h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell #aboutTLFeatures .intro.intro .section-block h4, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell .intro.intro .section-block #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell .intro.intro .section-block #aboutTLFeatures .h4, body.page-technik-leather #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .intro.intro .section-block .h4, #the-watch-band-portfolio.page-watch-band-portfolio body.page-technik-leather .shell #aboutTLFeatures .intro.intro .section-block .h4 {
      font-size: 1rem;
      letter-spacing: 0.05em;
      line-height: 1.5; } }
body.page-technik-leather .shopify-section .collection-slider {
  margin: 90px 0; }
  body.page-technik-leather .shopify-section .collection-slider p {
    font-size: 12px; }
  @media screen and (max-width: 480px) {
    body.page-technik-leather .shopify-section .collection-slider {
      margin-top: 0; }
      body.page-technik-leather .shopify-section .collection-slider .buttons a {
        margin-bottom: 0; } }
body.page-technik-leather #hero .hero_logo {
  width: 80%; }
body.page-technik-leather .collection-slider p {
  font-size: 12px; }
  body.page-technik-leather .collection-slider p.super-title {
    display: none; }
body.page-technik-leather .comparison-table {
  background-color: #a4a5a7; }

body.page-material-technik-leather .shell {
  padding-top: 0; }
body.page-material-technik-leather [id*="__tl-banner"] {
  padding-bottom: 0; }
  body.page-material-technik-leather [id*="__tl-banner"] + .wrapper.d.home-banner, body.page-material-technik-leather body.page-shop [id*='__shop-home-banner'] .home-hero .content [id*="__tl-banner"] + .d.home-banner.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-material-technik-leather [id*="__tl-banner"] + .d.home-banner.footer,
  body.page-material-technik-leather body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content [id*="__tl-banner"] + .d.home-banner.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-material-technik-leather [id*="__tl-banner"] + .d.home-banner.footer {
    display: none; }
  body.page-material-technik-leather [id*="__tl-banner"] .content p.supertitle {
    margin-bottom: 30px; }
  body.page-material-technik-leather [id*="__tl-banner"] .subtitle:not(.supertitle) {
    max-width: 26em;
    margin-top: 1em; }
body.page-material-technik-leather [id*="__tl-swatches"] h4, body.page-material-technik-leather [id*="__tl-swatches"] .h4 {
  text-align: left;
  margin-bottom: 5px !important;
  margin-left: 10px; }
body.page-material-technik-leather [id*="tl-2up-"] .two-up > .grid, body.page-material-technik-leather [id*="tl-2up-"] .two-up > .grid--rev, body.page-material-technik-leather [id*="tl-2up-"] .two-up > .grid--full {
  padding: 30px 0;
  display: flex; }
@media screen and (max-width: 480px) {
  body.page-material-technik-leather [id*="tl-2up-"] .two-up {
    padding: 0; }
    body.page-material-technik-leather [id*="tl-2up-"] .two-up > .grid, body.page-material-technik-leather [id*="tl-2up-"] .two-up > .grid--rev, body.page-material-technik-leather [id*="tl-2up-"] .two-up > .grid--full {
      padding: 30px 0;
      flex-direction: column; } }
body.page-material-technik-leather [id*="tl-2up-"] h5:after, body.page-material-technik-leather [id*="tl-2up-"] .h5:after {
  content: '';
  display: block;
  border-right: 1px solid #000000;
  height: 43px;
  width: 1px;
  margin: 30px auto; }
body.page-material-technik-leather [id*="tl-2up-"] .content.block {
  padding: 5% 6%; }
  body.page-material-technik-leather [id*="tl-2up-"] .content.block > img {
    padding: 0; }
  @media screen and (max-width: 480px) {
    body.page-material-technik-leather [id*="tl-2up-"] .content.block {
      padding: 0; } }
body.page-material-technik-leather [id*="tl-2up-feel"] {
  padding-top: 5%; }
  @media screen and (max-width: 480px) {
    body.page-material-technik-leather [id*="tl-2up-feel"] {
      padding: 0; } }
body.page-material-technik-leather [id*="tl-2up-looks"] .two-up {
  flex-direction: row-reverse; }
body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title h2, body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title .h2, body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title h2, body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title h4, body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-technik-leather [id*="tl-2up-loves"] .two-up .hero .home-title .h4 {
  max-width: 15em !important; }
body.page-material-technik-leather [id*="tl-collection-slider"] {
  margin-bottom: 0; }
  body.page-material-technik-leather [id*="tl-collection-slider"] .super-title {
    display: none; }
body.page-material-technik-leather .main-content.cs + .main-content.d {
  display: none; }
@media screen and (max-width: 480px) {
  body.page-material-technik-leather [id*="tl-content-grid-section"] .content.block .grid__item {
    text-align: center !important; } }
@media screen and (max-width: 480px) {
  body.page-material-technik-leather [id*="tl-content-grid-section"] .section-container .grid .grid__item:nth-of-type(3) .home-title, body.page-material-technik-leather [id*="tl-content-grid-section"] .section-container .grid--rev .grid__item:nth-of-type(3) .home-title, body.page-material-technik-leather [id*="tl-content-grid-section"] .section-container .grid--full .grid__item:nth-of-type(3) .home-title {
    margin-top: 0; } }
body.page-material-technik-leather [id*="__tl-try-tl-banner"] {
  margin-top: 0;
  padding-bottom: 0; }
  body.page-material-technik-leather [id*="__tl-try-tl-banner"] + .main-content.d {
    display: none; }
  @media screen and (max-width: 480px) {
    body.page-material-technik-leather [id*="__tl-try-tl-banner"] h2 br, body.page-material-technik-leather [id*="__tl-try-tl-banner"] .h2 br, body.page-material-technik-leather [id*="__tl-try-tl-banner"] body.page-the-mens-collection #PageContainer .products h2 br, body.page-the-mens-collection #PageContainer .products body.page-material-technik-leather [id*="__tl-try-tl-banner"] h2 br, body.page-material-technik-leather [id*="__tl-try-tl-banner"] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-technik-leather [id*="__tl-try-tl-banner"] h4 br, body.page-material-technik-leather [id*="__tl-try-tl-banner"] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-material-technik-leather [id*="__tl-try-tl-banner"] .h4 br {
      display: none; } }

#think-like-a-mother #PageContainer > .shell:first-child {
  padding-top: 0; }
#think-like-a-mother .shell > .main-content:not(.f) {
  max-width: unset;
  padding: 0; }
#think-like-a-mother .shopify-section.text-banner h2 u, #think-like-a-mother .shopify-section.text-banner .h2 u, #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #think-like-a-mother .shopify-section.text-banner h4 u, #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #think-like-a-mother .shopify-section.text-banner .h4 u,
#think-like-a-mother .home-hero h2 u,
#think-like-a-mother .home-hero .h2 u,
#think-like-a-mother .home-hero body.page-the-mens-collection #PageContainer .products h2 u,
body.page-the-mens-collection #PageContainer .products #think-like-a-mother .home-hero h2 u,
#think-like-a-mother .home-hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #think-like-a-mother .home-hero h4 u,
#think-like-a-mother .home-hero #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures #think-like-a-mother .home-hero .h4 u {
  text-decoration: none; }
@media screen and (max-width: 799px) {
  #think-like-a-mother .home-hero .content p.larger, #think-like-a-mother .home-hero .content body.page-technik-leather #hero p.h3, body.page-technik-leather #hero #think-like-a-mother .home-hero .content p.h3, #think-like-a-mother .home-hero .content body.page-technik-leather #hero .shopify-challenge__container p.shopify-challenge__message, body.page-technik-leather #hero .shopify-challenge__container #think-like-a-mother .home-hero .content p.shopify-challenge__message, #think-like-a-mother .home-hero .content .shopify-challenge__container body.page-technik-leather #hero p.shopify-challenge__message, .shopify-challenge__container body.page-technik-leather #hero #think-like-a-mother .home-hero .content p.shopify-challenge__message {
    font-size: 1.2em; } }
#think-like-a-mother .home-hero .btn.btn--med, #think-like-a-mother .home-hero .btn--med.btn--secondary, #think-like-a-mother .home-hero .btn--med.btn--alt {
  padding: 0px 70px; }
@media screen and (min-width: 480px) {
  #think-like-a-mother .home-hero.two-up .content p {
    margin-bottom: 1.2em;
    max-width: unset; } }
#think-like-a-mother .shopify-section.text-banner .grid.section-block, #think-like-a-mother .shopify-section.text-banner .section-block.grid--rev, #think-like-a-mother .shopify-section.text-banner .section-block.grid--full {
  margin-top: 0; }
@media screen and (max-width: 480px) {
  #think-like-a-mother .shopify-section.text-banner {
    padding: 0 2rem 1rem; } }

.wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h2 u, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h2 u, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h4 u, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h4 u,
.wf-shabbychic-n4-active #think-like-a-mother .section-block h2 u,
.wf-shabbychic-n4-active #think-like-a-mother .section-block .h2 u,
.wf-shabbychic-n4-active #think-like-a-mother .section-block #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .section-block h4 u,
.wf-shabbychic-n4-active #think-like-a-mother .section-block #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .section-block .h4 u,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero .content h2 u,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero .content .h2 u,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content h4 u,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content .h4 u {
  font-family: 'shabby-chic';
  font-size: 2.9em;
  text-decoration: none;
  line-height: 1;
  position: relative; }
  .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h2 u:after, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h2 u:after, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u:after, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h4 u:after, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u:after, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h4 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .section-block h2 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .section-block .h2 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .section-block #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u:after,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .section-block h4 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .section-block #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u:after,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .section-block .h4 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content h2 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content .h2 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u:after,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content h4 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u:after,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero .content .h4 u:after {
    border-bottom: 1px solid currentColor;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 30%;
    left: 0; }
.wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h2, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h2, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h4, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h4,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up h2,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up .h2,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up h4,
.wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4,
#the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up .h4 {
  margin-top: 0.4em !important; }
  .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h2 u:after, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h2 u:after, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u:after, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner h4 u:after, .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u:after, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .shopify-section.text-banner .h4 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up h2 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up .h2 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 u:after,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up h4 u:after,
  .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 u:after,
  #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .wf-shabbychic-n4-active #think-like-a-mother .home-hero.two-up .h4 u:after {
    border-bottom: 1px solid currentColor;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 30%;
    left: 0; }

body.page-unplugged-performance .shell {
  padding-top: 0; }
body.page-unplugged-performance .home-hero .content .logo-image {
  margin-bottom: 60px; }
body.page-unplugged-performance .home-hero .content .home-title {
  justify-content: center; }
body.page-unplugged-performance main.wrapper.main-content.d.home-banner, body.page-unplugged-performance body.page-shop [id*='__shop-home-banner'] .home-hero .content main.main-content.d.home-banner.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-unplugged-performance main.main-content.d.home-banner.footer,
body.page-unplugged-performance body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content main.main-content.d.home-banner.footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-unplugged-performance main.main-content.d.home-banner.footer {
  padding-bottom: 0; }
body.page-unplugged-performance [id*="__up-banner"] .content h2, body.page-unplugged-performance [id*="__up-banner"] .content .h2, body.page-unplugged-performance [id*="__up-banner"] .content body.page-the-mens-collection #PageContainer .products h2, body.page-the-mens-collection #PageContainer .products body.page-unplugged-performance [id*="__up-banner"] .content h2, body.page-unplugged-performance [id*="__up-banner"] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-unplugged-performance [id*="__up-banner"] .content h4, body.page-unplugged-performance [id*="__up-banner"] .content #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-unplugged-performance [id*="__up-banner"] .content .h4 {
  max-width: 15em;
  margin: 0 auto; }
body.page-unplugged-performance [id*="__up-banner"] .content p.supertitle {
  margin-bottom: 30px; }
body.page-unplugged-performance [id*="__up-banner"] .subtitle:not(.supertitle) {
  max-width: 23em; }
  body.page-unplugged-performance [id*="__up-banner"] .subtitle:not(.supertitle):before {
    content: '';
    display: block;
    border-right: 1px solid #ffffff;
    height: 135px;
    width: 1px;
    margin: 70px auto 60px; }
    @media screen and (max-width: 1000px) {
      body.page-unplugged-performance [id*="__up-banner"] .subtitle:not(.supertitle):before {
        margin: 20px auto -135px; } }
    @media screen and (max-width: 799px) {
      body.page-unplugged-performance [id*="__up-banner"] .subtitle:not(.supertitle):before {
        margin: 50px auto; } }
@media screen and (max-width: 480px) {
  body.page-unplugged-performance [id*="__up-banner"] {
    padding-bottom: 0; } }
body.page-unplugged-performance [id*="content-grid-section"] .main-content {
  padding-bottom: 0; }
@media screen and (max-width: 480px) {
  body.page-unplugged-performance [id*="content-grid-section"] {
    padding: 0;
    margin-left: -15px;
    margin-right: -15px; }
    body.page-unplugged-performance [id*="content-grid-section"] .section-container {
      margin-top: 0 !important; } }
body.page-unplugged-performance [id*="up-2up-"] .two-up > .grid, body.page-unplugged-performance [id*="up-2up-"] .two-up > .grid--rev, body.page-unplugged-performance [id*="up-2up-"] .two-up > .grid--full {
  padding: 30px 0;
  display: flex; }
@media screen and (max-width: 480px) {
  body.page-unplugged-performance [id*="up-2up-"] .two-up {
    padding: 0;
    margin-left: -15px;
    margin-right: -15px;
    width: unset; }
    body.page-unplugged-performance [id*="up-2up-"] .two-up > .grid, body.page-unplugged-performance [id*="up-2up-"] .two-up > .grid--rev, body.page-unplugged-performance [id*="up-2up-"] .two-up > .grid--full {
      padding: 30px 0;
      flex-direction: column; } }
body.page-unplugged-performance [id*="up-2up-"] h5:after, body.page-unplugged-performance [id*="up-2up-"] .h5:after {
  content: '';
  display: block;
  border-right: 1px solid #000000;
  height: 43px;
  width: 1px;
  margin: 30px auto; }
body.page-unplugged-performance [id*="up-2up-"] .content.block {
  padding: 5% 6%; }
  body.page-unplugged-performance [id*="up-2up-"] .content.block > img {
    padding: 0; }
  @media screen and (max-width: 480px) {
    body.page-unplugged-performance [id*="up-2up-"] .content.block {
      padding: 0; } }
body.page-unplugged-performance [id*="up-2up-feel"] {
  padding: 0; }
body.page-unplugged-performance [id*="up-2up-looks"] .two-up {
  flex-direction: row-reverse; }
body.page-unplugged-performance [id*="up-collection-slider"] + .main-content {
  display: none; }
body.page-unplugged-performance [id*="up-collection-slider"] .super-title,
body.page-unplugged-performance [id*="up-collection-slider"] .spacer {
  display: none; }
body.page-unplugged-performance .shopify-section.text-banner p {
  margin-top: 70px !important; }
@media screen and (max-width: 480px) {
  body.page-unplugged-performance .shopify-section.simple-video-player {
    padding-bottom: 0 !important; } }
body.page-unplugged-performance main[id*="__up-grid-stats"] {
  padding-bottom: 20px; }
  @media screen and (max-width: 480px) {
    body.page-unplugged-performance main[id*="__up-grid-stats"] main {
      padding-bottom: 0; }
    body.page-unplugged-performance main[id*="__up-grid-stats"] .grid > .grid__item.content.block:first-child, body.page-unplugged-performance main[id*="__up-grid-stats"] .grid--rev > .grid__item.content.block:first-child, body.page-unplugged-performance main[id*="__up-grid-stats"] .grid--full > .grid__item.content.block:first-child {
      margin: 0 -30px;
      width: unset; }
    body.page-unplugged-performance main[id*="__up-grid-stats"].main-content {
      padding-bottom: 0 !important; }
    body.page-unplugged-performance main[id*="__up-grid-stats"] .section-container {
      margin-top: 0 !important; }
      body.page-unplugged-performance main[id*="__up-grid-stats"] .section-container h5, body.page-unplugged-performance main[id*="__up-grid-stats"] .section-container .h5 {
        max-width: 20em; } }
body.page-unplugged-performance main[id*="up-water-savings"] {
  background-color: #eeeeee;
  padding: 60px; }
  body.page-unplugged-performance main[id*="up-water-savings"] #content-block-f0dbf2d1-87b5-4a50-ac4a-30f3ac4df213 .home-title {
    margin-left: 120px; }
    body.page-unplugged-performance main[id*="up-water-savings"] #content-block-f0dbf2d1-87b5-4a50-ac4a-30f3ac4df213 .home-title h1, body.page-unplugged-performance main[id*="up-water-savings"] #content-block-f0dbf2d1-87b5-4a50-ac4a-30f3ac4df213 .home-title .h1 {
      margin-bottom: 0;
      line-height: 0.8;
      font-size: 3.35em; }
      body.page-unplugged-performance main[id*="up-water-savings"] #content-block-f0dbf2d1-87b5-4a50-ac4a-30f3ac4df213 .home-title h1:before, body.page-unplugged-performance main[id*="up-water-savings"] #content-block-f0dbf2d1-87b5-4a50-ac4a-30f3ac4df213 .home-title .h1:before {
        display: inline-block;
        content: ' ';
        background-image: url(//cdn.shopify.com/s/files/1/0996/2856/t/45/assets/tl-feature-water-resistant.svg?v=1250643834473206101626026721);
        width: 0.6em;
        margin-right: 0.15em;
        height: 0.73em;
        background-repeat: no-repeat; }
    body.page-unplugged-performance main[id*="up-water-savings"] #content-block-f0dbf2d1-87b5-4a50-ac4a-30f3ac4df213 .home-title p {
      margin-left: 0;
      margin-bottom: 3em; }
  @media screen and (max-width: 480px) {
    body.page-unplugged-performance main[id*="up-water-savings"] {
      padding: 0;
      margin-top: 0; }
      body.page-unplugged-performance main[id*="up-water-savings"] .home-title {
        margin-left: 0 !important; }
        body.page-unplugged-performance main[id*="up-water-savings"] .home-title h1, body.page-unplugged-performance main[id*="up-water-savings"] .home-title .h1,
        body.page-unplugged-performance main[id*="up-water-savings"] .home-title p {
          max-width: unset !important;
          text-align: center !important; } }
@media screen and (max-width: 480px) {
  body.page-unplugged-performance main[id*="up-water-savings"] + main.wrapper.main-content.d, body.page-unplugged-performance body.page-shop [id*='__shop-home-banner'] .home-hero .content main[id*="up-water-savings"] + main.main-content.d.footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-unplugged-performance main[id*="up-water-savings"] + main.main-content.d.footer,
  body.page-unplugged-performance body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content main[id*="up-water-savings"] + main.main-content.d.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-unplugged-performance main[id*="up-water-savings"] + main.main-content.d.footer,
  body.page-unplugged-performance .text-divider + main.wrapper.main-content.d,
  body.page-unplugged-performance body.page-shop [id*='__shop-home-banner'] .home-hero .content .text-divider + main.main-content.d.footer,
  body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-unplugged-performance .text-divider + main.main-content.d.footer,
  body.page-unplugged-performance body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .text-divider + main.main-content.d.footer,
  body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-unplugged-performance .text-divider + main.main-content.d.footer {
    margin-top: 0;
    padding-bottom: 0; } }
body.page-unplugged-performance #shopify-section-template--15026210734191__1654715547020ce3bc .wrapper, body.page-unplugged-performance #shopify-section-template--15026210734191__1654715547020ce3bc body.page-shop [id*='__shop-home-banner'] .home-hero .content .footer, body.page-shop [id*='__shop-home-banner'] .home-hero .content body.page-unplugged-performance #shopify-section-template--15026210734191__1654715547020ce3bc .footer,
body.page-unplugged-performance #shopify-section-template--15026210734191__1654715547020ce3bc body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content .footer,
body.page-shop [id*='15056102260847__6c154a0e-ee33-4132-90cf-da9c62a44ef8'] .home-hero .content body.page-unplugged-performance #shopify-section-template--15026210734191__1654715547020ce3bc .footer {
  padding: 3rem 0 0; }
@media screen and (max-width: 480px) {
  body.page-unplugged-performance [id*="up-content-grid-section"] .content.block .grid__item {
    text-align: center !important; } }
@media screen and (max-width: 480px) {
  body.page-unplugged-performance [id*="up-content-grid-section"] .section-container .grid .grid__item:nth-of-type(3) .home-title, body.page-unplugged-performance [id*="up-content-grid-section"] .section-container .grid--rev .grid__item:nth-of-type(3) .home-title, body.page-unplugged-performance [id*="up-content-grid-section"] .section-container .grid--full .grid__item:nth-of-type(3) .home-title {
    margin-top: 0; } }
body.page-unplugged-performance [id*='__up-collection-slider'] {
  padding-bottom: 0; }
  @media screen and (max-width: 480px) {
    body.page-unplugged-performance [id*='__up-collection-slider'] .collection-slider {
      padding-top: 10px; }
      body.page-unplugged-performance [id*='__up-collection-slider'] .collection-slider .intro {
        padding-right: 60px; } }
body.page-unplugged-performance [id*="__up-try-up-banner"] {
  padding-bottom: 0; }
  body.page-unplugged-performance [id*="__up-try-up-banner"] + .main-content {
    display: none; }
  @media screen and (max-width: 480px) {
    body.page-unplugged-performance [id*="__up-try-up-banner"] .home-hero .content .home-title {
      padding: 100px 0 0 !important; }
    body.page-unplugged-performance [id*="__up-try-up-banner"] h2 br, body.page-unplugged-performance [id*="__up-try-up-banner"] .h2 br, body.page-unplugged-performance [id*="__up-try-up-banner"] body.page-the-mens-collection #PageContainer .products h2 br, body.page-the-mens-collection #PageContainer .products body.page-unplugged-performance [id*="__up-try-up-banner"] h2 br, body.page-unplugged-performance [id*="__up-try-up-banner"] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures h4 br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-unplugged-performance [id*="__up-try-up-banner"] h4 br, body.page-unplugged-performance [id*="__up-try-up-banner"] #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures .h4 br, #the-watch-band-portfolio.page-watch-band-portfolio .shell #aboutTLFeatures body.page-unplugged-performance [id*="__up-try-up-banner"] .h4 br {
      display: none; } }

#virtual-showroom .shell {
  padding-top: 0; }
