/** Shopify CDN: Minification failed

Line 73:3 Unexpected "zoom"

**/
/*
* Shopify Timber v1.0
* Copyright 2014 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
        * This is due to security reasons on the Shopify servers, though we are looking into it
        * Prevents you from using helpers like Compass/Bourbon, and can cause a long file
    - Helpers variables, mixins, and starter classes are provided. Change as needed.
    - The file is prepped with a CSS reset
*/
/* Table of Content
==================================================
  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Reset
  #Grid Setup
  #Basic Styles
  #Typography
  #Rich Text Editor
  #Links
  #Lists
  #Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms	
  #Buttons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Site Footer
  #Product Grid and List Views
  #Tag List
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Demo Styles - for empty store state
================================================== */
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* $xlarge: 1700px; */
/* The following are dependencies of csswizardry grid */
/* SN COLORS */
/* Button colors */
/* Text link colors */
/* Text colors */
/* Border colors */
/* Nav and dropdown link background */
/* Helper colors */
/* Width variables */
/* Radius */
/* Typography */
@font-face {
  font-family: "Bastia-Bold";
  src: url("/cdn/shop/files/Bastia-Bold.woff2?v=11563739123462345370") format("woff2"); }

.clearfix, .grid, .grid--rev, .grid--full, .grid--right, .grid--center,
.grid-uniform, .wrapper, .page-header {
  *zoom: 1; }
  .clearfix:after, .grid:after, .grid--rev:after, .grid--full:after, .grid--right:after, .grid--center:after,
  .grid-uniform:after, .wrapper:after, .page-header:after {
    content: "";
    display: table;
    clear: both; }

/*
  Dependency-free breakpoint mixin
  http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

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

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

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

code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 0.5em;
  margin: 0 0 1em; }

html, body {
  height: 100%; }

i {
  font-style: italic; }

/* Force clearfix on grids */
/* Manual grid-item clearfix */
.grid-item.clear {
  clear: both; }

/* You do not need to edit anything from this line onward; csswizardry-grids is good to go. Happy griddin! */
/**
 * Drop relative positioning into silent classes which cant 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--right, .grid--center,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -24px; }

.grid-item {
  float: left;
  padding-left: 24px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

/* Align the entire grid to the right. */
.grid--right {
  direction: rtl;
  text-align: right; }
  .grid--right > .grid-item {
    direction: ltr;
    float: right;
    text-align: left; }

/* Centered grids align grid items centrally without needing to use push or pull classes. */
.grid--center {
  text-align: center; }
  .grid--center > .grid-item {
    text-align: left; }

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

/* Halves */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/* Thirds */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/* Quarters */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

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

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

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

.five-sixths, .ten-twelfths {
  width: 83.333%; }

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

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/* Ninths */
.one-ninth {
  width: 11.11%; }

.two-ninths {
  width: 22.22%; }

.three-ninths {
  width: 33.33%; }

.four-ninths {
  width: 44.44%; }

.five-ninths {
  width: 55.55%; }

.six-ninths {
  width: 66.66%; }

.seven-ninths {
  width: 77.77%; }

.eight-ninths {
  width: 88.88%; }

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

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

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

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

  /* Halves */
  .small--one-half, .small--two-quarters, .small--three-sixths, .small--four-eighths, .small--five-tenths, .small--six-twelfths {
    width: 50%; }

  /* Thirds */
  .small--one-third, .small--two-sixths, .small--four-twelfths {
    width: 33.333%; }

  .small--two-thirds, .small--four-sixths, .small--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .small--one-quarter, .small--two-eighths, .small--three-twelfths {
    width: 25%; }

  .small--three-quarters, .small--six-eighths, .small--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

  /* Ninths */
  .small--one-ninth {
    width: 11.11%; }

  .small--two-ninths {
    width: 22.22%; }

  .small--three-ninths {
    width: 33.33%; }

  .small--four-ninths {
    width: 44.44%; }

  .small--five-ninths {
    width: 55.55%; }

  .small--six-ninths {
    width: 66.66%; }

  .small--seven-ninths {
    width: 77.77%; }

  .small--eight-ninths {
    width: 88.88%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .grid-uniform .small--one-half:nth-child(2n+1), .grid-uniform .small--two-quarters:nth-child(2n+1), .grid-uniform .small--three-sixths:nth-child(2n+1), .grid-uniform .small--four-eighths:nth-child(2n+1), .grid-uniform .small--five-tenths:nth-child(2n+1), .grid-uniform .small--six-twelfths:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--two-tenths:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-twelfths: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 (max-width: 1040px) {
  /** Whole */
  .petit-down--one-whole {
    width: 100%; }

  /* Halves */
  .petit-down--one-half, .petit-down--two-quarters, .petit-down--three-sixths, .petit-down--four-eighths, .petit-down--five-tenths, .petit-down--six-twelfths {
    width: 50%; }

  /* Thirds */
  .petit-down--one-third, .petit-down--two-sixths, .petit-down--four-twelfths {
    width: 33.333%; }

  .petit-down--two-thirds, .petit-down--four-sixths, .petit-down--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .petit-down--one-quarter, .petit-down--two-eighths, .petit-down--three-twelfths {
    width: 25%; }

  .petit-down--three-quarters, .petit-down--six-eighths, .petit-down--nine-twelfths {
    width: 75%; }

  /* Fifths */
  .petit-down--one-fifth, .petit-down--two-tenths {
    width: 20%; }

  .petit-down--two-fifths, .petit-down--four-tenths {
    width: 40%; }

  .petit-down--three-fifths, .petit-down--six-tenths {
    width: 60%; }

  .petit-down--four-fifths, .petit-down--eight-tenths {
    width: 80%; }

  /* Sixths */
  .petit-down--one-sixth, .petit-down--two-twelfths {
    width: 16.666%; }

  .petit-down--five-sixths, .petit-down--ten-twelfths {
    width: 83.333%; }

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

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

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

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

  /* Ninths */
  .petit-down--one-ninth {
    width: 11.11%; }

  .petit-down--two-ninths {
    width: 22.22%; }

  .petit-down--three-ninths {
    width: 33.33%; }

  .petit-down--four-ninths {
    width: 44.44%; }

  .petit-down--five-ninths {
    width: 55.55%; }

  .petit-down--six-ninths {
    width: 66.66%; }

  .petit-down--seven-ninths {
    width: 77.77%; }

  .petit-down--eight-ninths {
    width: 88.88%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .petit-up--one-half, .petit-up--two-quarters, .petit-up--three-sixths, .petit-up--four-eighths, .petit-up--five-tenths, .petit-up--six-twelfths {
    width: 50%; }

  /* Thirds */
  .petit-up--one-third, .petit-up--two-sixths, .petit-up--four-twelfths {
    width: 33.333%; }

  .petit-up--two-thirds, .petit-up--four-sixths, .petit-up--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .petit-up--one-quarter, .petit-up--two-eighths, .petit-up--three-twelfths {
    width: 25%; }

  .petit-up--three-quarters, .petit-up--six-eighths, .petit-up--nine-twelfths {
    width: 75%; }

  /* Fifths */
  .petit-up--one-fifth, .petit-up--two-tenths {
    width: 20%; }

  .petit-up--two-fifths, .petit-up--four-tenths {
    width: 40%; }

  .petit-up--three-fifths, .petit-up--six-tenths {
    width: 60%; }

  .petit-up--four-fifths, .petit-up--eight-tenths {
    width: 80%; }

  /* Sixths */
  .petit-up--one-sixth, .petit-up--two-twelfths {
    width: 16.666%; }

  .petit-up--five-sixths, .petit-up--ten-twelfths {
    width: 83.333%; }

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

  .petit-up--three-eighths {
    width: 37.5%; }

  .petit-up--five-eighths {
    width: 62.5%; }

  .petit-up--seven-eighths {
    width: 87.5%; }

  /* Ninths */
  .petit-up--one-ninth {
    width: 11.11%; }

  .petit-up--two-ninths {
    width: 22.22%; }

  .petit-up--three-ninths {
    width: 33.33%; }

  .petit-up--four-ninths {
    width: 44.44%; }

  .petit-up--five-ninths {
    width: 55.55%; }

  .petit-up--six-ninths {
    width: 66.66%; }

  .petit-up--seven-ninths {
    width: 77.77%; }

  .petit-up--eight-ninths {
    width: 88.88%; }

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

  .petit-up--three-tenths {
    width: 30%; }

  .petit-up--seven-tenths {
    width: 70%; }

  .petit-up--nine-tenths {
    width: 90%; }

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

  .petit-up--five-twelfths {
    width: 41.666%; }

  .petit-up--seven-twelfths {
    width: 58.333%; }

  .petit-up--eleven-twelfths {
    width: 91.666%; }

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

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

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

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

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

  .petit-up--left {
    float: left !important; }

  .petit-up--right {
    float: right !important; }

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

  /* Halves */
  .medium--one-half, .medium--two-quarters, .medium--three-sixths, .medium--four-eighths, .medium--five-tenths, .medium--six-twelfths {
    width: 50%; }

  /* Thirds */
  .medium--one-third, .medium--two-sixths, .medium--four-twelfths {
    width: 33.333%; }

  .medium--two-thirds, .medium--four-sixths, .medium--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .medium--one-quarter, .medium--two-eighths, .medium--three-twelfths {
    width: 25%; }

  .medium--three-quarters, .medium--six-eighths, .medium--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

  /* Ninths */
  .medium--one-ninth {
    width: 11.11%; }

  .medium--two-ninths {
    width: 22.22%; }

  .medium--three-ninths {
    width: 33.33%; }

  .medium--four-ninths {
    width: 44.44%; }

  .medium--five-ninths {
    width: 55.55%; }

  .medium--six-ninths {
    width: 66.66%; }

  .medium--seven-ninths {
    width: 77.77%; }

  .medium--eight-ninths {
    width: 88.88%; }

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

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

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

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

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

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

  .medium--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1), .grid-uniform .medium--three-sixths:nth-child(2n+1), .grid-uniform .medium--four-eighths:nth-child(2n+1), .grid-uniform .medium--five-tenths:nth-child(2n+1), .grid-uniform .medium--six-twelfths:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--two-tenths:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-twelfths: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 (min-width: 701px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%; }

  /* Halves */
  .medium-up--one-half, .medium-up--two-quarters, .medium-up--three-sixths, .medium-up--four-eighths, .medium-up--five-tenths, .medium-up--six-twelfths {
    width: 50%; }

  /* Thirds */
  .medium-up--one-third, .medium-up--two-sixths, .medium-up--four-twelfths {
    width: 33.333%; }

  .medium-up--two-thirds, .medium-up--four-sixths, .medium-up--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .medium-up--one-quarter, .medium-up--two-eighths, .medium-up--three-twelfths {
    width: 25%; }

  .medium-up--three-quarters, .medium-up--six-eighths, .medium-up--nine-twelfths {
    width: 75%; }

  /* Fifths */
  .medium-up--one-fifth, .medium-up--two-tenths {
    width: 20%; }

  .medium-up--two-fifths, .medium-up--four-tenths {
    width: 40%; }

  .medium-up--three-fifths, .medium-up--six-tenths {
    width: 60%; }

  .medium-up--four-fifths, .medium-up--eight-tenths {
    width: 80%; }

  /* Sixths */
  .medium-up--one-sixth, .medium-up--two-twelfths {
    width: 16.666%; }

  .medium-up--five-sixths, .medium-up--ten-twelfths {
    width: 83.333%; }

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

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

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

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

  /* Ninths */
  .medium-up--one-ninth {
    width: 11.11%; }

  .medium-up--two-ninths {
    width: 22.22%; }

  .medium-up--three-ninths {
    width: 33.33%; }

  .medium-up--four-ninths {
    width: 44.44%; }

  .medium-up--five-ninths {
    width: 55.55%; }

  .medium-up--six-ninths {
    width: 66.66%; }

  .medium-up--seven-ninths {
    width: 77.77%; }

  .medium-up--eight-ninths {
    width: 88.88%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .medium-down--one-half, .medium-down--two-quarters, .medium-down--three-sixths, .medium-down--four-eighths, .medium-down--five-tenths, .medium-down--six-twelfths {
    width: 50%; }

  /* Thirds */
  .medium-down--one-third, .medium-down--two-sixths, .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--two-thirds, .medium-down--four-sixths, .medium-down--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .medium-down--one-quarter, .medium-down--two-eighths, .medium-down--three-twelfths {
    width: 25%; }

  .medium-down--three-quarters, .medium-down--six-eighths, .medium-down--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

  /* Ninths */
  .medium-down--one-ninth {
    width: 11.11%; }

  .medium-down--two-ninths {
    width: 22.22%; }

  .medium-down--three-ninths {
    width: 33.33%; }

  .medium-down--four-ninths {
    width: 44.44%; }

  .medium-down--five-ninths {
    width: 55.55%; }

  .medium-down--six-ninths {
    width: 66.66%; }

  .medium-down--seven-ninths {
    width: 77.77%; }

  .medium-down--eight-ninths {
    width: 88.88%; }

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

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

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

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

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

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

  .medium-down--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1), .grid-uniform .medium-down--three-sixths:nth-child(2n+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--six-twelfths:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--two-tenths:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-twelfths: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: 1201px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

  /* Halves */
  .large--one-half, .large--two-quarters, .large--three-sixths, .large--four-eighths, .large--five-tenths, .large--six-twelfths {
    width: 50%; }

  /* Thirds */
  .large--one-third, .large--two-sixths, .large--four-twelfths {
    width: 33.333%; }

  .large--two-thirds, .large--four-sixths, .large--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .large--one-quarter, .large--two-eighths, .large--three-twelfths {
    width: 25%; }

  .large--three-quarters, .large--six-eighths, .large--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

  /* Ninths */
  .large--one-ninth {
    width: 11.11%; }

  .large--two-ninths {
    width: 22.22%; }

  .large--three-ninths {
    width: 33.33%; }

  .large--four-ninths {
    width: 44.44%; }

  .large--five-ninths {
    width: 55.55%; }

  .large--six-ninths {
    width: 66.66%; }

  .large--seven-ninths {
    width: 77.77%; }

  .large--eight-ninths {
    width: 88.88%; }

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

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

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

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

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

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

  .large--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1), .grid-uniform .large--three-sixths:nth-child(2n+1), .grid-uniform .large--four-eighths:nth-child(2n+1), .grid-uniform .large--five-tenths:nth-child(2n+1), .grid-uniform .large--six-twelfths:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--two-tenths:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-twelfths: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.
 */
/* Not a particularly great selector, but the DRYest way to do things. */
[class*="push--"] {
  position: relative; }

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

/* Halves */
.push--one-half, .push--two-quarters, .push--three-sixths, .push--four-eighths, .push--five-tenths, .push--six-twelfths {
  left: 50%; }

/* Thirds */
.push--one-third, .push--two-sixths, .push--four-twelfths {
  left: 33.333%; }

.push--two-thirds, .push--four-sixths, .push--eight-twelfths {
  left: 66.666%; }

/* Quarters */
.push--one-quarter, .push--two-eighths, .push--three-twelfths {
  left: 25%; }

.push--three-quarters, .push--six-eighths, .push--nine-twelfths {
  left: 75%; }

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

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

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

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

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

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

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

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

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

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

/* Ninths */
.push--one-ninth {
  left: 11.11%; }

.push--two-ninths {
  left: 22.22%; }

.push--three-ninths {
  left: 33.33%; }

.push--four-ninths {
  left: 44.44%; }

.push--five-ninths {
  left: 55.55%; }

.push--six-ninths {
  left: 66.66%; }

.push--seven-ninths {
  left: 77.77%; }

.push--eight-ninths {
  left: 88.88%; }

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

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

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

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

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

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

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

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

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

  /* Halves */
  .push--small--one-half, .push--small--two-quarters, .push--small--three-sixths, .push--small--four-eighths, .push--small--five-tenths, .push--small--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--small--one-third, .push--small--two-sixths, .push--small--four-twelfths {
    left: 33.333%; }

  .push--small--two-thirds, .push--small--four-sixths, .push--small--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--small--one-quarter, .push--small--two-eighths, .push--small--three-twelfths {
    left: 25%; }

  .push--small--three-quarters, .push--small--six-eighths, .push--small--nine-twelfths {
    left: 75%; }

  /* Fifths */
  .push--small--one-fifth, .push--small--two-tenths {
    left: 20%; }

  .push--small--two-fifths, .push--small--four-tenths {
    left: 40%; }

  .push--small--three-fifths, .push--small--six-tenths {
    left: 60%; }

  .push--small--four-fifths, .push--small--eight-tenths {
    left: 80%; }

  /* Sixths */
  .push--small--one-sixth, .push--small--two-twelfths {
    left: 16.666%; }

  .push--small--five-sixths, .push--small--ten-twelfths {
    left: 83.333%; }

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

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

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

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

  /* Ninths */
  .push--small--one-ninth {
    left: 11.11%; }

  .push--small--two-ninths {
    left: 22.22%; }

  .push--small--three-ninths {
    left: 33.33%; }

  .push--small--four-ninths {
    left: 44.44%; }

  .push--small--five-ninths {
    left: 55.55%; }

  .push--small--six-ninths {
    left: 66.66%; }

  .push--small--seven-ninths {
    left: 77.77%; }

  .push--small--eight-ninths {
    left: 88.88%; }

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

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

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

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

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

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

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

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

  /* Halves */
  .push--petit-down--one-half, .push--petit-down--two-quarters, .push--petit-down--three-sixths, .push--petit-down--four-eighths, .push--petit-down--five-tenths, .push--petit-down--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--petit-down--one-third, .push--petit-down--two-sixths, .push--petit-down--four-twelfths {
    left: 33.333%; }

  .push--petit-down--two-thirds, .push--petit-down--four-sixths, .push--petit-down--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--petit-down--one-quarter, .push--petit-down--two-eighths, .push--petit-down--three-twelfths {
    left: 25%; }

  .push--petit-down--three-quarters, .push--petit-down--six-eighths, .push--petit-down--nine-twelfths {
    left: 75%; }

  /* Fifths */
  .push--petit-down--one-fifth, .push--petit-down--two-tenths {
    left: 20%; }

  .push--petit-down--two-fifths, .push--petit-down--four-tenths {
    left: 40%; }

  .push--petit-down--three-fifths, .push--petit-down--six-tenths {
    left: 60%; }

  .push--petit-down--four-fifths, .push--petit-down--eight-tenths {
    left: 80%; }

  /* Sixths */
  .push--petit-down--one-sixth, .push--petit-down--two-twelfths {
    left: 16.666%; }

  .push--petit-down--five-sixths, .push--petit-down--ten-twelfths {
    left: 83.333%; }

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

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

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

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

  /* Ninths */
  .push--petit-down--one-ninth {
    left: 11.11%; }

  .push--petit-down--two-ninths {
    left: 22.22%; }

  .push--petit-down--three-ninths {
    left: 33.33%; }

  .push--petit-down--four-ninths {
    left: 44.44%; }

  .push--petit-down--five-ninths {
    left: 55.55%; }

  .push--petit-down--six-ninths {
    left: 66.66%; }

  .push--petit-down--seven-ninths {
    left: 77.77%; }

  .push--petit-down--eight-ninths {
    left: 88.88%; }

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

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

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

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

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

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

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

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

  /* Halves */
  .push--petit-up--one-half, .push--petit-up--two-quarters, .push--petit-up--three-sixths, .push--petit-up--four-eighths, .push--petit-up--five-tenths, .push--petit-up--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--petit-up--one-third, .push--petit-up--two-sixths, .push--petit-up--four-twelfths {
    left: 33.333%; }

  .push--petit-up--two-thirds, .push--petit-up--four-sixths, .push--petit-up--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--petit-up--one-quarter, .push--petit-up--two-eighths, .push--petit-up--three-twelfths {
    left: 25%; }

  .push--petit-up--three-quarters, .push--petit-up--six-eighths, .push--petit-up--nine-twelfths {
    left: 75%; }

  /* Fifths */
  .push--petit-up--one-fifth, .push--petit-up--two-tenths {
    left: 20%; }

  .push--petit-up--two-fifths, .push--petit-up--four-tenths {
    left: 40%; }

  .push--petit-up--three-fifths, .push--petit-up--six-tenths {
    left: 60%; }

  .push--petit-up--four-fifths, .push--petit-up--eight-tenths {
    left: 80%; }

  /* Sixths */
  .push--petit-up--one-sixth, .push--petit-up--two-twelfths {
    left: 16.666%; }

  .push--petit-up--five-sixths, .push--petit-up--ten-twelfths {
    left: 83.333%; }

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

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

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

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

  /* Ninths */
  .push--petit-up--one-ninth {
    left: 11.11%; }

  .push--petit-up--two-ninths {
    left: 22.22%; }

  .push--petit-up--three-ninths {
    left: 33.33%; }

  .push--petit-up--four-ninths {
    left: 44.44%; }

  .push--petit-up--five-ninths {
    left: 55.55%; }

  .push--petit-up--six-ninths {
    left: 66.66%; }

  .push--petit-up--seven-ninths {
    left: 77.77%; }

  .push--petit-up--eight-ninths {
    left: 88.88%; }

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

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

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

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

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

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

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

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

  /* Halves */
  .push--medium--one-half, .push--medium--two-quarters, .push--medium--three-sixths, .push--medium--four-eighths, .push--medium--five-tenths, .push--medium--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--medium--one-third, .push--medium--two-sixths, .push--medium--four-twelfths {
    left: 33.333%; }

  .push--medium--two-thirds, .push--medium--four-sixths, .push--medium--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--medium--one-quarter, .push--medium--two-eighths, .push--medium--three-twelfths {
    left: 25%; }

  .push--medium--three-quarters, .push--medium--six-eighths, .push--medium--nine-twelfths {
    left: 75%; }

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

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

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

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

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

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

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

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

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

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

  /* Ninths */
  .push--medium--one-ninth {
    left: 11.11%; }

  .push--medium--two-ninths {
    left: 22.22%; }

  .push--medium--three-ninths {
    left: 33.33%; }

  .push--medium--four-ninths {
    left: 44.44%; }

  .push--medium--five-ninths {
    left: 55.55%; }

  .push--medium--six-ninths {
    left: 66.66%; }

  .push--medium--seven-ninths {
    left: 77.77%; }

  .push--medium--eight-ninths {
    left: 88.88%; }

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

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

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

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

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

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

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

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

  /* Halves */
  .push--medium-up--one-half, .push--medium-up--two-quarters, .push--medium-up--three-sixths, .push--medium-up--four-eighths, .push--medium-up--five-tenths, .push--medium-up--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--medium-up--one-third, .push--medium-up--two-sixths, .push--medium-up--four-twelfths {
    left: 33.333%; }

  .push--medium-up--two-thirds, .push--medium-up--four-sixths, .push--medium-up--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--medium-up--one-quarter, .push--medium-up--two-eighths, .push--medium-up--three-twelfths {
    left: 25%; }

  .push--medium-up--three-quarters, .push--medium-up--six-eighths, .push--medium-up--nine-twelfths {
    left: 75%; }

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

  .push--medium-up--two-fifths, .push--medium-up--four-tenths {
    left: 40%; }

  .push--medium-up--three-fifths, .push--medium-up--six-tenths {
    left: 60%; }

  .push--medium-up--four-fifths, .push--medium-up--eight-tenths {
    left: 80%; }

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

  .push--medium-up--five-sixths, .push--medium-up--ten-twelfths {
    left: 83.333%; }

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

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

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

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

  /* Ninths */
  .push--medium-up--one-ninth {
    left: 11.11%; }

  .push--medium-up--two-ninths {
    left: 22.22%; }

  .push--medium-up--three-ninths {
    left: 33.33%; }

  .push--medium-up--four-ninths {
    left: 44.44%; }

  .push--medium-up--five-ninths {
    left: 55.55%; }

  .push--medium-up--six-ninths {
    left: 66.66%; }

  .push--medium-up--seven-ninths {
    left: 77.77%; }

  .push--medium-up--eight-ninths {
    left: 88.88%; }

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

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

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

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

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

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

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

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

  /* Halves */
  .push--medium-down--one-half, .push--medium-down--two-quarters, .push--medium-down--three-sixths, .push--medium-down--four-eighths, .push--medium-down--five-tenths, .push--medium-down--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--medium-down--one-third, .push--medium-down--two-sixths, .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--two-thirds, .push--medium-down--four-sixths, .push--medium-down--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--medium-down--one-quarter, .push--medium-down--two-eighths, .push--medium-down--three-twelfths {
    left: 25%; }

  .push--medium-down--three-quarters, .push--medium-down--six-eighths, .push--medium-down--nine-twelfths {
    left: 75%; }

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

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

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

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

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

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

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

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

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

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

  /* Ninths */
  .push--medium-down--one-ninth {
    left: 11.11%; }

  .push--medium-down--two-ninths {
    left: 22.22%; }

  .push--medium-down--three-ninths {
    left: 33.33%; }

  .push--medium-down--four-ninths {
    left: 44.44%; }

  .push--medium-down--five-ninths {
    left: 55.55%; }

  .push--medium-down--six-ninths {
    left: 66.66%; }

  .push--medium-down--seven-ninths {
    left: 77.77%; }

  .push--medium-down--eight-ninths {
    left: 88.88%; }

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

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

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

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

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

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

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

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

  /* Halves */
  .push--large--one-half, .push--large--two-quarters, .push--large--three-sixths, .push--large--four-eighths, .push--large--five-tenths, .push--large--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--large--one-third, .push--large--two-sixths, .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--two-thirds, .push--large--four-sixths, .push--large--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--large--one-quarter, .push--large--two-eighths, .push--large--three-twelfths {
    left: 25%; }

  .push--large--three-quarters, .push--large--six-eighths, .push--large--nine-twelfths {
    left: 75%; }

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

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

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

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

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

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

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

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

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

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

  /* Ninths */
  .push--large--one-ninth {
    left: 11.11%; }

  .push--large--two-ninths {
    left: 22.22%; }

  .push--large--three-ninths {
    left: 33.33%; }

  .push--large--four-ninths {
    left: 44.44%; }

  .push--large--five-ninths {
    left: 55.55%; }

  .push--large--six-ninths {
    left: 66.66%; }

  .push--large--seven-ninths {
    left: 77.77%; }

  .push--large--eight-ninths {
    left: 88.88%; }

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*------------------------------------*\
  $PULL
\*------------------------------------*/
/* Pull classes, to move grid items back to the left by certain amounts. */
/*
$footerHeight : 1290px;
$footerHeight-tab : 740px;
$footerHeight-desk : 625px;*/
#wrap {
  min-height: 100%; }

main {
  overflow: hidden;
  /*this was set to auto, but setting to hidden fixed issue....*/
  padding-bottom: 1000px;
  /* must be same height as the footer */ }

main.appstore {
  padding-bottom: 0; }

footer {
  position: relative;
  margin-top: -1000px;
  /* negative value of footer height */
  height: 1000px;
  clear: both; }

@media screen and (min-width: 1200px) {
  main {
    padding-bottom: 445px;
    /* must be same height as the footer */ }

  footer {
    margin-top: -445px;
    /* negative value of footer height */
    height: 445px; } }
@media screen and (min-width: 700px) and (max-width: 1200px) {
  main {
    padding-bottom: 610px;
    /* must be same height as the footer */ }

  footer {
    margin-top: -610px;
    /* negative value of footer height */
    height: 610px; } }
body {
  background-color: #f4f1ea; }

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center; }
  @media screen and (min-width: 700px) {
    .wrapper {
      padding: 0 60px; } }

.main-content {
  display: block;
  padding-top: 0;
  background-color: #f4f1ea;
  /*   padding-bottom: 0; */
  /*   overflow: hidden; */ }

.left {
  float: left; }

.right {
  float: right; }

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

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

body,
input,
textarea,
button,
select {
  font-size: 87.5%;
  line-height: 1.6;
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.4; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: none; }
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
      text-decoration: underline; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit; }

h1 {
  font-size: 3em; }

h2 {
  font-size: 2.429em; }

h3 {
  font-size: 2em; }

h4 {
  font-size: 1.429em; }

h5 {
  font-size: 1em; }

h6 {
  font-size: 0.857em; }

p {
  margin: 0 0 0.75em 0; }

p img {
  margin: 0; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

small {
  font-size: 80%; }

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  color: #777777;
  font-style: italic;
  margin: 0 0 24px;
  padding: 12px 24px;
  border-left: 1px solid #b3b3b3; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 12px; }
  blockquote cite {
    display: block;
    font-size: 0.75em;
    color: #777777; }
    blockquote cite:before {
      content: "\2014 \0020"; }

hr {
  clear: both;
  border-top: solid #b3b3b3;
  border-width: 1px 0 0;
  margin: 48px 0; }
  hr.hr-small {
    margin: 24px 0; }
  hr.hr-clear {
    border-top: 0 none; }

.page-header h1 {
  color: black;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.78em;
  text-align: left;
  margin-bottom: 5px; }
@media screen and (min-width: 700px) {
  .page-header h1 {
    font-size: 2.4em; } }

h2.lined {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.42em;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  padding-top: 27px;
  overflow: hidden;
  padding-bottom: 10px;
  margin-bottom: 15px;
  line-height: 1em; }
  h2.lined span {
    display: inline-block;
    position: relative; }
  h2.lined span:before,
  h2.lined span:after {
    content: "";
    position: absolute;
    height: 5px;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    top: 0;
    width: 600px;
    margin-top: .4em; }
  h2.lined span:before {
    right: 100%;
    margin-right: 15px; }
  h2.lined span:after {
    left: 100%;
    margin-left: 15px; }
  @media screen and (min-width: 700px) {
    h2.lined {
      font-size: 2.5em;
      margin-bottom: 20px;
      padding-top: 47px; } }

.rte {
  margin-bottom: 1em; }

a, a:visited {
  color: #515151;
  text-decoration: underline; }

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

ul, ol {
  margin-bottom: 1em; }

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

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

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

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

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

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

li {
  margin-bottom: 0.25em; }

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

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

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 12px;
  border: 1px solid #b3b3b3; }

.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

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

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

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

img.auto,
.grid-item img,
.grid-item iframe {
  max-width: 100%;
  height: auto; }

form {
  margin-bottom: 24px; }

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

input,
select,
textarea {
  font-size: 1.4em;
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding: 8px 14px;
  line-height: 1.42;
  /*   maybe wonky.... */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

fieldset {
  padding: 12px 0; }

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

/* Input width and border */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="telephone"],
textarea,
select {
  border: 1px solid #b3b3b3;
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 1em;
  padding-right: 30px; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="file"]:focus,
  input[type="number"]:focus,
  input[type="telephone"]:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #ee5b28;
    outline: none; }
  input[type="text"][disabled], input[type="text"].disabled,
  input[type="password"][disabled],
  input[type="password"].disabled,
  input[type="email"][disabled],
  input[type="email"].disabled,
  input[type="file"][disabled],
  input[type="file"].disabled,
  input[type="number"][disabled],
  input[type="number"].disabled,
  input[type="telephone"][disabled],
  input[type="telephone"].disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }

select {
  /* 	maybe more wonky */
  background-image: url(/cdn/shop/t/6/assets/select_bk.png?v=147001991839291420591494353717);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 21px 20px;
  background-color: white; }

/* DONT DO THIS ON FIREFOX AS THERE IS NO WAY TO REMOVE THE BROWSER ARROW */
/*
@-moz-document url-prefix() {
  select {
     background-image: none;
  }
}
*/
textarea {
  min-height: 100px; }

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

/* Form labels */
label,
legend {
  display: block;
  margin-bottom: 2px;
  font-weight: bold; }
  label.inline,
  legend.inline {
    display: inline; }

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

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

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

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

label.error {
  color: #dc0000; }

/* Input Groups */
.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[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 {
    border-radius: 6px 0 0 6px; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn-secondary {
    border-radius: 0 6px 6px 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

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

.input-group .btn, .input-group .btn-secondary,
.input-group .input-group-field {
  height: 37px; }

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

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

input[type="checkbox"] {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  color: #000;
  border: 1px solid #b3b3b3;
  border-radius: 8px;
  appearance: none;
  outline: 0;
  cursor: pointer;
  padding: 2px 14px;
  background-color: #fff; }
  input[type="checkbox"]::before {
    position: absolute;
    content: '';
    display: block;
    top: 5px;
    left: 10px;
    width: 9px;
    height: 15px;
    border-style: solid;
    border-color: #ee5b28;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    opacity: 0; }
  input[type="checkbox"]:checked::before {
    opacity: 1; }
  input[type="checkbox"]:checked ~ label::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

.btn, .btn-secondary,
a.btn-secondary,
a.btn,
a.btn-secondary {
  display: inline-block;
  padding: 8px 10px;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  border-radius: 6px;
  background-color: #ee5b28; }
  .btn.small, .small.btn-secondary,
  a.btn.small,
  a.small.btn-secondary {
    padding: 4px 5px;
    font-size: 0.75em; }
  .btn.full, .full.btn-secondary,
  a.btn.full,
  a.full.btn-secondary {
    width: 100%; }
  .btn:hover, .btn-secondary:hover,
  a.btn:hover,
  a.btn-secondary:hover {
    background-color: #87bfcc;
    color: #fff; }
  .btn:active, .btn-secondary:active,
  a.btn:active,
  a.btn-secondary:active {
    background-color: #87bfcc;
    color: #fff; }
  .btn[disabled], [disabled].btn-secondary, .btn.disabled, .disabled.btn-secondary,
  a.btn[disabled],
  a[disabled].btn-secondary,
  a.btn.disabled,
  a.disabled.btn-secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn-secondary,
a.btn-secondary {
  background-color: #59595b; }
  .btn-secondary:hover,
  a.btn-secondary:hover {
    background-color: #404041;
    color: #fff; }
  .btn-secondary:active,
  a.btn-secondary:active {
    background-color: #272727;
    color: #fff; }

.text-link {
  display: inline;
  border: 0 none;
  background: none;
  text-decoration: underline;
  padding: 0;
  margin: 0; }

.product-video-button .video-play-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  display: inline-block;
  border: none;
  border-radius: 50%;
  float: left;
  background-color: rgba(50, 50, 50, 0.59);
  border: 5px solid white;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.38); }
  .product-video-button .video-play-icon div {
    border: 10px solid transparent;
    border-left: 14px solid #FFFFFF;
    position: relative;
    top: 10px;
    left: 16px; }
  .product-video-button .video-play-icon:hover {
    background-color: rgba(133, 133, 133, 0.29); }
.product-video-button .video-button-title {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.50em;
  color: white;
  text-transform: uppercase;
  display: inline-block;
  float: left;
  margin-top: 8px;
  text-shadow: #525252 1px 1px 3px; }
  .product-video-button .video-button-title:hover {
    text-decoration: underline; }

.appstore-button {
  background: url(/cdn/shop/t/6/assets/appstore_button.png?v=182322462446856625161465855924) no-repeat 0 0;
  background-size: 270px 40px;
  width: 135px;
  height: 40px; }
  .appstore-button:hover {
    background-position-x: -135px; }

.pagination {
  margin-bottom: 1em; }

/* Custom Pagination */
.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 0 0 24px;
  border-radius: 6px; }

.pagination-custom > li {
  display: inline; }

.pagination-custom > li > a,
.pagination-custom > li > span {
  position: relative;
  float: left;
  padding: 5px 10px;
  margin-left: -1px;
  line-height: 1.42;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #b3b3b3; }

.pagination-custom > li:first-child > a,
.pagination-custom > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px; }

.pagination-custom > li:last-child > a,
.pagination-custom > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.pagination-custom > li > a:hover,
.pagination-custom > li > span:hover,
.pagination-custom > li > a:focus,
.pagination-custom > li > span:focus {
  background-color: #eeeeee; }

.pagination-custom > .active > a,
.pagination-custom > .active > span,
.pagination-custom > .active > a:hover,
.pagination-custom > .active > span:hover,
.pagination-custom > .active > a:focus,
.pagination-custom > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  cursor: default;
  background-color: #ee5b28;
  border-color: #ee5b28; }

.pagination-custom > .disabled > span,
.pagination-custom > .disabled > a,
.pagination-custom > .disabled > a:hover,
.pagination-custom > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed;
  background-color: #f6f6f6; }

.pagination-custom-lg > li > a,
.pagination-custom-lg > li > span {
  padding: 10px 16px;
  font-size: 1.28em; }

.pagination-custom-lg > li:first-child > a,
.pagination-custom-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

.pagination-custom-lg > li:last-child > a,
.pagination-custom-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.pagination-custom-sm > li > a,
.pagination-custom-sm > li > span {
  padding: 5px 10px;
  font-size: 0.75em; }

.pagination-custom-sm > li:first-child > a,
.pagination-custom-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.pagination-custom-sm > li:last-child > a,
.pagination-custom-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.site-header {
  padding: 24px 0; }

.header-logo {
  display: block;
  position: relative;
  width: 50%;
  height: 40px;
  /*
img {
  	height: 100%;
    width: auto;
    display: inline-block;
    position: absolute;
	top: 50%;
	margin-top: -5px;
	margin-left: $gutter;
  }
*/ }
  .header-logo #logo-cont {
    height: 40px;
    width: 40px;
    display: inline-block;
    margin-top: 15px;
    margin-left: 24px; }
    .header-logo #logo-cont img {
      width: 100%;
      height: 100%; }
  .header-logo #logotype {
    margin-top: 4px;
    height: 40px; }
  .header-logo h1 {
    display: none;
    height: 50px;
    margin-left: 16px;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.4em;
    font-weight: 700; }
  @media screen and (min-width: 700px) {
    .header-logo {
      position: absolute;
      top: 50%;
      margin-top: -25px;
      height: 50px; }
      .header-logo #logo-cont {
        height: 45px;
        width: 45px;
        margin-top: 4px;
        margin-left: 0;
        background-size: 45px 45px; }
      .header-logo h1 {
        display: inline-block; } }
  @media screen and (min-width: 700px) and (max-width: 1040px) {
    .header-logo {
    	/*
  position: relative;
      top: 0%;
      margin-top: 0px;
      height: 75px;
      
  */ }
      .header-logo h1 {
        display: none; } }
  .header-logo a,
  .header-logo a:hover,
  .header-logo a:focus {
    color: #333333;
    text-decoration: none; }
  .header-logo a, .header-logo img {
    display: inline-block; }

.nav-bar {
  background-color: #f4f1ea;
  border-bottom: 4px solid #e2dfd9;
  position: relative; }
  .nav-bar .wrapper {
    margin: 0 0;
    padding: 0 0;
    min-height: 71px;
    position: relative;
    text-align: left; }
  @media screen and (min-width: 700px) {
    .nav-bar .wrapper {
      margin: 0 auto;
      padding: 0 60px;
      min-height: 110px; } }

.template-index .nav-bar, #about-us .nav-bar, #toolguide .nav-bar {
  border-bottom: 0px; }

.arrow-up-hamb {
  border-bottom: 6px solid white;
  height: 0;
  width: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin: 0 28px 0 auto;
  position: absolute;
  top: 65px;
  right: 0px;
  display: none; }
  .arrow-up-hamb.open {
    display: block; }
  @media screen and (min-width: 700px) {
    .arrow-up-hamb {
      display: none; }
      .arrow-up-hamb.open {
        display: none; } }

.nav-button {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: none; }
  .nav-button .nav-icon-bar {
    width: 18px;
    height: 2px;
    background-color: black;
    display: block;
    padding: 0;
    margin: 4px auto 0px auto; }
  @media screen and (min-width: 700px) {
    .nav-button {
      display: none; } }

.site-nav {
  font-size: 1.2em;
  margin-bottom: 0;
  display: none; }
  .site-nav li {
    margin: 0;
    padding: 0 0px;
    display: block;
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 1.0em;
    background-color: white;
    text-transform: uppercase; }
    .site-nav li :hover,
    .site-nav li :active {
      background-color: #f7f7f7; }
    .site-nav li.nav-top-level-list .plus-minus-icon {
      width: 20px;
      height: 20px;
      float: right;
      margin-right: 24px;
      margin-top: 12px;
      background-image: url(/cdn/shop/t/6/assets/plus-minus.png?v=104363895308819807081501268151);
      background-size: 40px 20px;
      border: none; }
    @media screen and (max-width: 700px) {
      .site-nav li.nav-top-level-list.sublistOpen .plus-minus-icon {
        background-position-x: -20px; }
      .site-nav li.nav-top-level-list ul {
        display: none; }
        .site-nav li.nav-top-level-list ul.sublistttOpen {
          display: block; } }
    @media screen and (min-width: 700px) {
      .site-nav li.nav-top-level-list:focus-within ul.site-nav-dropdown {
        display: block; }
      .site-nav li.nav-top-level-list ul {
        display: none; }
        .site-nav li.nav-top-level-list ul.sublistttOpen {
          display: block; } }
  .site-nav #cartCount {
    font-size: .8em; }
  .site-nav > li {
    position: relative;
    display: block; }
  .site-nav > li:first-child > a {
    /*     display: none; */
    border-top: 0px; }
  .site-nav a {
    display: block;
    text-decoration: none;
    white-space: nowrap;
    padding-left: 24px;
    color: black;
    padding: 9px 15px;
    border-top: 1px solid #e0ddd7; }
  @media screen and (max-width: 700px) {
    .site-nav ul li a {
      border-top: 1px solid #e0ddd7;
      padding-left: 30px;
      text-transform: none; } }
  @media screen and (min-width: 700px) {
    .site-nav {
      position: absolute;
      text-align: right;
      right: 60px;
      height: 60px;
      top: 50%;
      margin-top: -6px;
      display: block;
      /* cart overrides */ }
      .site-nav .plus-minus-icon {
        display: none; }
      .site-nav li {
        display: inline-block;
        padding: 0 0 0 39px;
        background-color: inherit;
        color: #5a5958;
        font-size: .83em;
        font-weight: 800;
        text-transform: uppercase; }
        .site-nav li :hover,
        .site-nav li :active {
          background-color: inherit; }
        .site-nav li a:hover {
          border-bottom: 2px solid #f7f7f7; }
      .site-nav li.active a {
        border-bottom: 2px solid #e0ddd7; }
      .site-nav li.cart.active a {
        border-bottom: 2px solid #5a5958; }
      .site-nav li.cart:hover {
        color: #272728; }
      .site-nav li.cart a:hover {
        color: #272728;
        border-bottom: 2px solid #272728; }
      .site-nav > li:hover a {
        border-bottom: none; }
      .site-nav a {
        color: inherit;
        border-top: 0px;
        padding: 0px 0px;
        line-height: 1.1em; }
      .site-nav > li > a {
        display: inline-block; } }
  @media screen and (min-width: 700px) and (max-width: 1040px) {
    .site-nav li {
      font-size: 1.20em;
      padding: 0 0 0 18px; } }

.site-nav.open {
  display: block;
  margin-top: 30px; }
  @media screen and (min-width: 700px) {
    .site-nav.open {
      margin-top: -6px; } }

.site-nav-dropdown {
  margin: 0;
  background-color: transparent;
  cursor: pointer; }
  .site-nav-dropdown li {
    background-color: white;
    padding: 0px;
    color: black;
    text-align: left;
    width: 100%;
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    min-height: 68px; }
    .site-nav-dropdown li .nav-drop-content {
      display: inline-block;
      vertical-align: top;
      margin-top: 11px;
      max-width: 80%;
      overflow: hidden; }
    .site-nav-dropdown li .nav-drop-thumb-cont {
      display: inline-block;
      width: 46px;
      height: 46px;
      margin-top: 4px;
      border-radius: 23px;
      border-width: 4px;
      float: right;
      background-size: cover;
      border: 2px solid #E0DDD7; }
    .site-nav-dropdown li .nav-drop-text-only {
      margin-top: 14px; }
    .site-nav-dropdown li p {
      margin: 0;
      line-height: .95em; }
    .site-nav-dropdown li .nav-subtitle {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: .7em;
      font-weight: 600;
      color: #656565;
      font-size: .55em;
      letter-spacing: .05em; }
  .site-nav-dropdown li a {
    padding-top: 6px;
    padding-bottom: 6px; }
  .site-nav-dropdown li a.active {
    text-decoration: underline; }
  .site-nav-dropdown .arrow-up {
    border-bottom: 6px solid white;
    height: 0;
    width: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    margin: 0 28px 0 auto;
    position: absolute;
    top: -6px;
    right: 0px;
    display: none; }
  @media screen and (min-width: 700px) {
    .site-nav-dropdown {
      position: absolute;
      left: 10px;
      z-index: 95;
      width: 270px;
      padding-top: 5px;
      left: 10px;
      display: none; }
      .site-nav li:hover .site-nav-dropdown {
        display: block; }
      .site-nav-dropdown li {
        padding: 0px 0px;
        font-size: 1.1em; }
        .site-nav-dropdown li .nav-break {
          margin: 0 0px;
          height: 1px;
          background-color: #e4e4e4; }
      .site-nav-dropdown li:hover {
        background-color: #f7f7f7; }
      .site-nav-dropdown .arrow-up {
        margin: 0 0 0 39px;
        left: 0px;
        top: 0px;
        display: block; }
      .site-nav-dropdown a {
        padding: 9px 15px;
        border-top: none;
        line-height: inherit !important;
        border-bottom: none !important; } }
  @media screen and (min-width: 700px) and (max-width: 1040px) {
    .site-nav-dropdown {
      width: 210px; }
      .site-nav-dropdown .arrow-up {
        margin: 0 0 0 24px; } }

.nav-search {
  padding: 7px 0; }
  @media screen and (max-width: 700px) {
    .nav-search {
      padding: 0 0 12px;
      margin: 0 auto;
      text-align: center; } }
  @media screen and (min-width: 700px) {
    .nav-search {
      float: right; } }
  .nav-search .input-group,
  .nav-search .input-group-field {
    margin-bottom: 0; }
  .nav-search .search-bar {
    max-width: 300px; }
    @media screen and (max-width: 700px) {
      .nav-search .search-bar {
        margin: 0 auto; } }

.site-footer {
  background-color: black;
  border-top: 0px;
  text-align: center;
  padding: 24px 0;
  color: gray;
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.15em; }
  .site-footer #signifyd-badge {
    margin-top: 10px; }
  .site-footer .wrapper {
    text-align: left; }
  .site-footer .grid-item {
    margin-bottom: 30px; }
  .site-footer h5 {
    text-transform: uppercase;
    font-weight: 800;
    color: white; }
  .site-footer li {
    margin-bottom: 0.45em; }
  .site-footer a, .site-footer p {
    text-transform: uppercase;
    font-weight: 700;
    color: #87bfcc;
    text-decoration: none;
    padding-bottom: .7em; }
  .site-footer a:hover {
    text-decoration: underline; }
  .site-footer .footer-breadcrumb {
    text-align: center;
    margin-top: 30px;
    bottom: 26px;
    position: absolute;
    width: 100%; }
    .site-footer .footer-breadcrumb img {
      width: 30px;
      height: 30px;
      margin-bottom: 6px; }
    .site-footer .footer-breadcrumb p {
      color: #9b9a9f;
      padding: 0;
      margin: 0;
      padding-bottom: 6px; }
    .site-footer .footer-breadcrumb a {
      color: #9b9a9f;
      font-weight: #9b9a9f;
      text-transform: capitalize; }
  .site-footer #mc_embed_signup #mce-EMAIL {
    background-color: black;
    border: 2px solid #414042;
    color: white;
    width: 50%;
    float: left;
    height: 40px; }
  .site-footer #mc_embed_signup #mc-embedded-subscribe {
    margin-left: 10px;
    border: 0;
    background-color: #87bfcc;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 700;
    height: 40px;
    padding: 8px 16px; }
  .site-footer .newsletter-blurb {
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 700;
    width: 100%;
    margin-bottom: 5px; }
  @media screen and (min-width: 700px) {
    .site-footer {
      padding: 48px 0;
      text-align: left; }
      .site-footer .footer-breadcrumb {
        margin-top: 30px; }
      .site-footer .shift {
        padding-left: 60px; }
      .site-footer #mc_embed_signup #mce-EMAIL {
        width: 70%; }
      .site-footer .newsletter-blurb {
        width: 85%; } }
  @media screen and (max-width: 450px) {
    .site-footer #mc_embed_signup #mce-EMAIL {
      width: 100%; }
    .site-footer #mc_embed_signup #mc-embedded-subscribe {
      margin-left: 0;
      width: 100%; } }

.payment-icons li {
  width: 48px;
  margin: 0 6px; }

.lt-ie9 .payment-icons {
  display: none; }

.product-list-thumb {
  display: block;
  float: left;
  margin-right: 24px;
  margin-bottom: 24px; }

.product-grid-image {
  display: block; }
  .product-grid-image img {
    margin: 0 auto; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-lightbox-wrapper:target {
  /* Lightbox using: http://schier.co/post/creating-pure-css-lightboxes-with-the-:target-selector */
  display: block;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: black;
  background: rgba(0, 0, 0, 0.85); }
  .video-lightbox-wrapper:target .center-wrapper {
    /* http://css-tricks.com/centering-in-the-unknown/ */
    vertical-align: middle;
    padding: 8%;
    display: inline-block;
    width: 100%; }
  .video-lightbox-wrapper:target:before {
    /* http://css-tricks.com/centering-in-the-unknown/ */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
    /* Adjusts for spacing */ }
  .video-lightbox-wrapper:target .videoWrapper {
    display: block; }

.active-tag {
  font-weight: bold; }

.breadcrumb {
  font-size: 0.75em;
  margin-bottom: 1em; }

.product-price {
  font-weight: bold; }

.product-photo-container {
  margin-bottom: 24px; }

.product-photo-container a, .product-photo-container img,
.product-photo-thumbs a,
.product-photo-thumbs img {
  display: block; }
.product-photo-container li,
.product-photo-thumbs li {
  margin-bottom: 24px; }

.single-option-selector {
  margin: 20px auto; }

.note,
.errors {
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 1em;
  border: 1px solid transparent; }
  .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: #b3b3b3; }

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

.form-success {
  color: #0a942a;
  background-color: #ecfef0;
  border-color: #0a942a; }

.form-error,
.errors {
  color: #dc0000;
  background-color: #fff6f6;
  border-color: #dc0000; }

.section-home-hero {
  background-color: #414042; }

.section-home-callout {
  background-color: #ee5b28;
  color: white;
  font-size: 1.14em;
  display: none; }
  .section-home-callout .quote {
    font-size: 1.41em;
    font-weight: 600;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 10px;
    padding-top: 14px;
    line-height: 1.1em;
    font-style: italic; }
  .section-home-callout .credit {
    font-size: .8em;
    font-weight: 400;
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }
  @media screen and (min-width: 700px) {
    .section-home-callout .wrapper {
      padding: 0 120px; }
    .section-home-callout .quote {
      font-size: 2.0em; }
    .section-home-callout .credit {
      font-size: 0.9em; } }

.section-project-gallery {
  padding-top: 20px;
  background-color: #f4f1ea; }
  .section-project-gallery h2.lined {
    color: #414042; }
    .section-project-gallery h2.lined span:before,
    .section-project-gallery h2.lined span:after {
      border-bottom: 1px solid #414042;
      border-top: 1px solid #414042; }
  .section-project-gallery h3.why-we-make {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.25em;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    color: #414042;
    max-width: 300px;
    margin: 0 auto; }
    @media screen and (min-width: 700px) {
      .section-project-gallery h3.why-we-make {
        margin: 0 auto;
        font-size: 1.75em;
        margin-bottom: 20px;
        max-width: 550px;
        margin-top: 12px; } }
  .section-project-gallery .homepage-break {
    background-color: #a2a2a2;
    height: 2px;
    width: 64px;
    margin: 0px auto;
    margin-top: 30px; }
    @media screen and (min-width: 700px) {
      .section-project-gallery .homepage-break {
        width: 124px; } }
  .section-project-gallery .grid-uniform {
    padding: 40px 0; }

.section-home-bio {
  background: url(/cdn/shop/t/6/assets/about-us-header-2.jpg?v=167446464902680754411465855923) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px; }
  .section-home-bio .bio-circle {
    border-radius: 50%;
    background-color: rgba(4, 49, 59, 0.8);
    height: 280px;
    width: 280px;
    margin: auto;
    padding: 22px;
    color: white;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.3em; }
    .section-home-bio .bio-circle img {
      width: 60px;
      height: auto;
      margin-bottom: 4px;
      margin-top: 6px; }
    .section-home-bio .bio-circle .bio-break {
      width: 50px;
      height: 0px;
      border-top: 2px solid rgba(255, 255, 255, 0.6);
      margin: 8px auto; }
    .section-home-bio .bio-circle .bio-button a {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: .65em;
      font-weight: 700;
      text-decoration: none;
      color: white; }
    .section-home-bio .bio-circle .bio-button a:hover {
      text-decoration: underline; }
    .section-home-bio .bio-circle .bio-button:after {
      content: "";
      display: inline-block;
      background: url(/cdn/shop/t/6/assets/chevron_right.png?v=22365770830372314171465855940) center no-repeat;
      background-size: 7px auto;
      width: 7px;
      height: 14px;
      margin: 0 0 0 6px;
      position: relative;
      top: 3px; }
  @media screen and (min-width: 700px) {
    .section-home-bio {
      padding-top: 55px;
      padding-bottom: 55px; }
      .section-home-bio .bio-circle {
        height: 500px;
        width: 500px;
        font-size: 2em;
        padding: 54px; }
        .section-home-bio .bio-circle img {
          width: 120px;
          height: auto;
          margin-bottom: 14px; }
        .section-home-bio .bio-circle .bio-break {
          width: 100px;
          border-top: 4px solid rgba(255, 255, 255, 0.6);
          margin: 16px auto; }
        .section-home-bio .bio-circle .bio-button a {
          font-weight: 800;
          font-size: .75em; }
        .section-home-bio .bio-circle .bio-button:after {
          background-size: 10px auto;
          width: 10px;
          height: 20px;
          margin: 0 0 0 8px;
          top: 3px; } }

.guide-circle {
  margin-bottom: 30px; }
  .guide-circle .circle-outline {
    width: 224px;
    height: 224px;
    border-radius: 50%;
    border: 10px solid rgba(42, 42, 42, 0.1);
    margin: 0 auto; }
    .guide-circle .circle-outline:hover {
      border: 10px solid rgba(42, 42, 42, 0.25); }
  .guide-circle .circle-mask {
    width: 204px;
    height: 204px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    background: white center no-repeat;
    background-size: 204px auto; }
    .guide-circle .circle-mask img {
      border-radius: 50%; }
  @media screen and (min-width: 1040px) {
    .guide-circle {
      float: left;
      margin-right: 60px;
      margin-top: 15px;
      margin-bottom: 0px; }
      .guide-circle .circle-outline {
        width: 250px;
        height: 250px; }
      .guide-circle .circle-mask {
        width: 230px;
        height: 230px;
        background-size: 230px auto; } }

.product-circle {
  text-align: center;
  margin-bottom: 32px; }
  .product-circle .circle-outline {
    width: 244px;
    height: 244px;
    border-radius: 50%;
    border: 10px solid rgba(42, 42, 42, 0.1);
    margin: 0 auto; }
    .product-circle .circle-outline:hover {
      border: 10px solid rgba(42, 42, 42, 0.25); }
  .product-circle .circle-mask {
    width: 224px;
    height: 224px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    background: white center no-repeat;
    background-size: 224px auto; }
    .product-circle .circle-mask img {
      border-radius: 50%; }
  .product-circle .circle-point {
    background-color: transparent;
    border-top: 18px solid white;
    height: 0;
    width: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    margin: 0 auto;
    position: relative;
    top: -11px; }
  .product-circle .product-title {
    margin-top: 7px; }
    .product-circle .product-title a {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 800;
      font-size: 1.71em;
      color: #414042;
      text-decoration: none;
      width: 224px;
      text-transform: uppercase;
      line-height: 1.1em; }
    .product-circle .product-title a:hover {
      text-decoration: underline; }
  .product-circle .product-break {
    width: 42px;
    border-top: 2px solid rgba(42, 42, 42, 0.6);
    height: 1px;
    margin: 4px auto; }
  .product-circle .product-subtitle {
    font-size: 1.28em;
    font-weight: 400;
    line-height: 1.3em;
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #414042;
    width: 224px;
    margin: 0 auto; }
  @media screen and (min-width: 1040px) {
    .product-circle {
      margin-bottom: 70px; }
      .product-circle .product-title a {
        font-size: 1.75em; }
      .product-circle .circle-outline {
        width: 300px;
        height: 300px; }
      .product-circle .circle-mask {
        width: 280px;
        height: 280px;
        background-size: 280px auto; } }

#panobook .quantity-label, #panopad .quantity-label, #notebook .quantity-label, #totebook .quantity-label {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 1.3em;
  font-weight: 800;
  display: inline-block;
  margin-right: 12px; }
#panobook .purchase-type-container input[type=radio], #panopad .purchase-type-container input[type=radio], #notebook .purchase-type-container input[type=radio], #totebook .purchase-type-container input[type=radio] {
  -webkit-appearance: radio; }
#panobook .selector-wrapper, #panopad .selector-wrapper, #notebook .selector-wrapper, #totebook .selector-wrapper {
  width: 80%; }
#panobook #addToCartForm, #panopad #addToCartForm, #notebook #addToCartForm, #totebook #addToCartForm {
  max-width: 290px;
  margin: auto;
  text-align: left; }
  #panobook #addToCartForm select, #panopad #addToCartForm select, #notebook #addToCartForm select, #totebook #addToCartForm select {
    display: inline-block;
    margin-bottom: 2px;
    margin-top: 9px; }
  #panobook #addToCartForm ul.purchase-type-container, #panopad #addToCartForm ul.purchase-type-container, #notebook #addToCartForm ul.purchase-type-container, #totebook #addToCartForm ul.purchase-type-container {
    margin-top: 10px; }
  #panobook #addToCartForm ul.purchase-type-container li, #panopad #addToCartForm ul.purchase-type-container li, #notebook #addToCartForm ul.purchase-type-container li, #totebook #addToCartForm ul.purchase-type-container li {
    color: #414042;
    display: block;
    position: relative;
    float: left;
    margin-bottom: 0; }
  #panobook #addToCartForm ul.purchase-type-container li input[type=radio], #panopad #addToCartForm ul.purchase-type-container li input[type=radio], #notebook #addToCartForm ul.purchase-type-container li input[type=radio], #totebook #addToCartForm ul.purchase-type-container li input[type=radio] {
    position: absolute;
    visibility: hidden; }
  #panobook #addToCartForm ul.purchase-type-container li label, #panopad #addToCartForm ul.purchase-type-container li label, #notebook #addToCartForm ul.purchase-type-container li label, #totebook #addToCartForm ul.purchase-type-container li label {
    display: block;
    position: relative;
    font-size: 1.30em;
    padding-left: 33px;
    margin: 2px auto;
    z-index: 9;
    cursor: pointer; }
    #panobook #addToCartForm ul.purchase-type-container li label span, #panopad #addToCartForm ul.purchase-type-container li label span, #notebook #addToCartForm ul.purchase-type-container li label span, #totebook #addToCartForm ul.purchase-type-container li label span {
      font-size: .75em; }
  #panobook #addToCartForm ul.purchase-type-container li .check, #panopad #addToCartForm ul.purchase-type-container li .check, #notebook #addToCartForm ul.purchase-type-container li .check, #totebook #addToCartForm ul.purchase-type-container li .check {
    display: block;
    position: absolute;
    border: 1px solid #6d6d6d;
    border-radius: 100%;
    height: 22px;
    width: 22px;
    top: 5px;
    z-index: 5;
    background: white; }
  #panobook #addToCartForm ul.purchase-type-container li .check::before, #panopad #addToCartForm ul.purchase-type-container li .check::before, #notebook #addToCartForm ul.purchase-type-container li .check::before, #totebook #addToCartForm ul.purchase-type-container li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 14px;
    width: 14px;
    top: 3px;
    left: 3px;
    margin: auto; }
  #panobook #addToCartForm .labelSubtitle, #panopad #addToCartForm .labelSubtitle, #notebook #addToCartForm .labelSubtitle, #totebook #addToCartForm .labelSubtitle {
    font-size: .8em;
    opacity: 50%;
    line-height: .8em;
    margin-bottom: 8px; }
  #panobook #addToCartForm input[type=radio]:checked ~ .check::before, #panopad #addToCartForm input[type=radio]:checked ~ .check::before, #notebook #addToCartForm input[type=radio]:checked ~ .check::before, #totebook #addToCartForm input[type=radio]:checked ~ .check::before {
    background: #ec5c33; }
  #panobook #addToCartForm .rule, #panopad #addToCartForm .rule, #notebook #addToCartForm .rule, #totebook #addToCartForm .rule {
    height: 1px;
    width: 100%;
    background-color: #b3b3b3;
    margin-top: 10px; }
  #panobook #addToCartForm .price-button-cont, #panopad #addToCartForm .price-button-cont, #notebook #addToCartForm .price-button-cont, #totebook #addToCartForm .price-button-cont {
    padding-top: 22px; }
    #panobook #addToCartForm .price-button-cont #addToCart, #panobook #addToCartForm .price-button-cont #productPrice, #panopad #addToCartForm .price-button-cont #addToCart, #panopad #addToCartForm .price-button-cont #productPrice, #notebook #addToCartForm .price-button-cont #addToCart, #notebook #addToCartForm .price-button-cont #productPrice, #totebook #addToCartForm .price-button-cont #addToCart, #totebook #addToCartForm .price-button-cont #productPrice {
      display: inline-block; }
    #panobook #addToCartForm .price-button-cont #addToCart, #panopad #addToCartForm .price-button-cont #addToCart, #notebook #addToCartForm .price-button-cont #addToCart, #totebook #addToCartForm .price-button-cont #addToCart {
      float: right;
      margin: 0; }
    #panobook #addToCartForm .price-button-cont #productPrice, #panopad #addToCartForm .price-button-cont #productPrice, #notebook #addToCartForm .price-button-cont #productPrice, #totebook #addToCartForm .price-button-cont #productPrice {
      margin-top: -3px; }
  #panobook #addToCartForm #deliverySelect, #panopad #addToCartForm #deliverySelect, #notebook #addToCartForm #deliverySelect, #totebook #addToCartForm #deliverySelect {
    margin-top: 10px;
    width: 68%; }

#panobook #addToCart, #panopad #addToCart, #notebook #addToCart, #totebook #addToCart {
  float: right;
  margin: 0;
  width: 73%; }
#panobook #qtySelect, #panopad #qtySelect, #notebook #qtySelect, #totebook #qtySelect {
  margin: 0 !important;
  width: 24%; }
#panobook #productPrice, #panopad #productPrice, #notebook #productPrice, #totebook #productPrice {
  margin: 18px auto 10px auto;
  text-align: center;
  display: block;
  top: 6px; }

.aspect-fix-wrapper {
  width: 100%;
  display: block;
  position: relative; }

.aspect-fix-wrapper:after {
  padding-top: 56.25%;
  display: block;
  content: ''; }

/*
@include at-query($min, $petit) {
	.aspect-fix-wrapper:after {
	    display: none;
	}
}
*/
.aspect-fix-content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0; }

/*
@include at-query($min, $petit) {
	.aspect-fix:after {
	    display: none;
	}
}
*/
.section-product-hero {
  background-color: #f4f1ea;
  position: relative; }
  .section-product-hero .product-hero-item {
    /* 		background-color: #e2dfd9; */
    width: 100%;
    height: 100%; }
    .section-product-hero .product-hero-item .wrapper {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: 100%;
      padding: 0; }
    .section-product-hero .product-hero-item .product-hero-callout {
      max-width: 300px;
      text-align: left;
      top: 80px;
      left: 12%;
      position: relative; }
      .section-product-hero .product-hero-item .product-hero-callout .product-hero-callout--title {
        font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 700;
        font-size: 5.57em;
        color: white;
        text-transform: uppercase;
        line-height: 0.87em;
        text-shadow: #525252 1px 1px 6px; }
      .section-product-hero .product-hero-item .product-hero-callout .product-hero-callout--break {
        height: 0px;
        width: 100%;
        border-top: 2px solid #F7941E;
        margin-top: 10px; }
      .section-product-hero .product-hero-item .product-hero-callout .product-hero-callout--tagline {
        font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 600;
        font-size: 2.15em;
        color: white;
        line-height: 1.1em;
        text-shadow: #525252 1px 1px 3px; }
      .section-product-hero .product-hero-item .product-hero-callout .product-video-button {
        margin-top: 10px; }
  .section-product-hero .product-video-wrapper {
    background-color: black;
    top: 0;
    height: 100%;
    width: 100%;
    position: relative; }
    .section-product-hero .product-video-wrapper .video-iframe-wrapper {
      padding: 0;
      height: 100%; }
  .section-product-hero .wrapper {
    padding: 0; }
  @media screen and (min-width: 1040px) {
    .section-product-hero {
      /* 		height: 600px; */
      /*
      		
      		.videoWrapper {
      			display: none;
      		}
      */ }
      .section-product-hero .product-hero-item {
        display: block; }
      .section-product-hero .product-video-wrapper {
        display: none;
        position: absolute; }
      .section-product-hero .wrapper {
        padding: 0 24px; } }
  @media screen and (min-width: 1200px) {
    .section-product-hero .product-hero-item .product-hero-callout {
      max-width: 400px; } }
  @media screen and (min-width: 1500px) {
    .section-product-hero {
      /* 		height: 600px; */ } }

#product-hero:target .product-video-wrapper {
  display: block; }
  #product-hero:target .product-video-wrapper .video-iframe-wrapper {
    margin: auto; }
@media screen and (min-width: 1040px) {
  #product-hero:target .video-close {
    width: 34px;
    height: 34px;
    background: url(/cdn/shop/t/6/assets/remove_button_white.png?v=37050916117253293921465855990) no-repeat 0 0;
    background-size: 60px 30px;
    background-position-x: 0;
    margin: auto;
    position: absolute;
    top: 10px;
    right: 20px;
    /* background-color: white; */
    border: 2px solid white;
    border-radius: 50%; }
    #product-hero:target .video-close:hover {
      background-position-x: -30px; }
  #product-hero:target .product-video-wrapper .product-video-center-wrapper {
    margin: auto; } }

/* if the product is an app, and not a product sold on SN.com */
.ecomm-discontinued {
  min-height: 1em; }
  @media screen and (min-width: 700px) {
    .ecomm-discontinued {
      min-height: 2em; } }

.section-product-ecomm.app .app-icon-wrapper {
  text-align: center; }
  .section-product-ecomm.app .app-icon-wrapper .app-icon {
    height: 256px;
    width: auto;
    margin: 35px auto; }
.section-product-ecomm.app a div.appstore-button {
  margin: 25px auto; }
@media screen and (min-width: 1040px) {
  .section-product-ecomm.app .app-icon-wrapper {
    text-align: right; }
    .section-product-ecomm.app .app-icon-wrapper .app-icon {
      margin-top: 50px;
      margin-right: 60px;
      width: 100%;
      height: auto;
      max-width: 400px; } }

/* if a regular product sold on SN.com */
.link_btn {
  width: 135px;
  height: 45px;
  border-radius: 6;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6em;
  line-height: 1.9em;
  font-weight: 800;
  font-style: italic;
  margin: 26px auto 0px auto;
  display: block;
  background-color: #ee5b28;
  padding: 0px 10px;
  cursor: pointer; }

.section-product-ecomm {
  background-color: #f4f1ea;
  min-height: 400px;
  margin-bottom: 16px;
  /* This lets us vertically center the .ecomm-container */
  /* http://css-tricks.com/centering-in-the-unknown/ */
  /*
  	.ecomm-container-parent:before {
  		content: '';
  		display: inline-block;
  		height: 90%;
  		vertical-align: middle;
  		margin-right: -0.25em;
  	}
  */ }
  .section-product-ecomm .ecomm-container-parent {
    height: 100%;
    text-align: center; }
  .section-product-ecomm .wrapper {
    padding-top: 0px;
    padding-bottom: 30px; }
  .section-product-ecomm .ecomm-container {
    display: inline-block;
    vertical-align: middle;
    max-width: 330px;
    padding-top: 21px;
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    margin: 0px auto 0 auto; }
    .section-product-ecomm .ecomm-container h1 {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 800;
      color: #414042;
      font-size: 2.5em;
      margin-bottom: 0px;
      position: relative;
      top: -315px; }
    .section-product-ecomm .ecomm-container .product-icon {
      padding: 0px 0; }
      .section-product-ecomm .ecomm-container .product-icon img {
        width: 73px;
        height: auto; }
    .section-product-ecomm .ecomm-container .product-tagline {
      font-weight: 600;
      text-transform: uppercase;
      color: #414042;
      font-size: .85em;
      line-height: 1.13em;
      margin-top: .25em;
      position: relative;
      top: -315px; }
    .section-product-ecomm .ecomm-container .product-desc {
      font-weight: 400;
      color: #414042;
      font-size: 1.2em;
      line-height: 1.3em;
      margin: 45px auto 0px auto; }
      .section-product-ecomm .ecomm-container .product-desc span {
        color: #ee5b28;
        font-style: italic; }
    .section-product-ecomm .ecomm-container .selection-title {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 600;
      font-style: italic; }
    .section-product-ecomm .ecomm-container input.btn, .section-product-ecomm .ecomm-container input.btn-secondary, .section-product-ecomm .ecomm-container div.btn, .section-product-ecomm .ecomm-container div.btn-secondary {
      width: 135px;
      height: 45px;
      border-radius: 6;
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.6em;
      line-height: 1.9em;
      font-weight: 800;
      font-style: italic;
      margin: 26px auto 0px auto;
      display: block;
      background-color: #ee5b28;
      padding: 0px 10px; }
    .section-product-ecomm .ecomm-container input.btn.custom, .section-product-ecomm .ecomm-container input.custom.btn-secondary, .section-product-ecomm .ecomm-container div.btn.custom, .section-product-ecomm .ecomm-container div.custom.btn-secondary {
      background: url(/cdn/shop/t/6/assets/buy_button_custom.png?v=64339538204031638281465855938) 0 2px no-repeat;
      width: 112px;
      height: 32px;
      background-size: 224px 28px;
      border-radius: 0;
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.4em;
      font-weight: 800;
      font-style: italic;
      padding: 0 0 0 5px;
      margin: 36px auto 0px auto;
      display: block; }
    .section-product-ecomm .ecomm-container input.btn:hover, .section-product-ecomm .ecomm-container input.btn-secondary:hover, .section-product-ecomm .ecomm-container div.btn:hover, .section-product-ecomm .ecomm-container div.btn-secondary:hover {
      background-color: #87bfcc; }
    .section-product-ecomm .ecomm-container input.btn.soldout, .section-product-ecomm .ecomm-container input.soldout.btn-secondary, .section-product-ecomm .ecomm-container div.btn.soldout, .section-product-ecomm .ecomm-container div.soldout.btn-secondary {
      background: none;
      width: 125px;
      border-radius: 0;
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 2em;
      font-weight: 800;
      font-style: italic;
      padding: 0 0 0 5px; }
    .section-product-ecomm .ecomm-container input.btn.soldout:hover, .section-product-ecomm .ecomm-container input.soldout.btn-secondary:hover, .section-product-ecomm .ecomm-container div.btn.soldout:hover, .section-product-ecomm .ecomm-container div.soldout.btn-secondary:hover {
      background-color: none; }
    .section-product-ecomm .ecomm-container input.btn.custom:hover, .section-product-ecomm .ecomm-container input.custom.btn-secondary:hover, .section-product-ecomm .ecomm-container div.btn.custom:hover, .section-product-ecomm .ecomm-container div.custom.btn-secondary:hover {
      background-color: #87bfcc; }
    .section-product-ecomm .ecomm-container form {
      padding-top: 18px;
      margin-bottom: 32px; }
      .section-product-ecomm .ecomm-container form .single-option-selector {
        margin: 10px auto; }
      .section-product-ecomm .ecomm-container form .selector-wrapper {
        display: inline-block;
        width: 260px; }
      .section-product-ecomm .ecomm-container form .product-price {
        font-weight: 700;
        color: #414042;
        font-size: 3em;
        display: block;
        line-height: 1em;
        font-style: italic;
        font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
        .section-product-ecomm .ecomm-container form .product-price.inline {
          position: relative;
          top: -4px;
          margin: 20px auto; }
        .section-product-ecomm .ecomm-container form .product-price .price-strikethrough {
          text-decoration: line-through;
          opacity: 0.3; }
      .section-product-ecomm .ecomm-container form .price-detail {
        text-transform: uppercase;
        font-size: 1em;
        font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 600;
        font-style: normal;
        margin-top: 1px; }
    .section-product-ecomm .ecomm-container .product-break {
      height: 0;
      margin-right: 110px;
      margin-left: 110px;
      border-top: 2px solid #414042;
      margin-bottom: 10px; }
    .section-product-ecomm .ecomm-container .product-shipping {
      font-weight: 400;
      color: #696a6e;
      font-size: 1.1em;
      line-height: 1.3em;
      max-width: 300px;
      margin: 0 auto;
      margin-top: 5px; }
      .section-product-ecomm .ecomm-container .product-shipping span {
        color: red; }
  .section-product-ecomm .product-carousel {
    width: 260px;
    height: 260px;
    margin: 0px auto 47px auto;
    position: relative;
    top: 120px; }
    .section-product-ecomm .product-carousel .slick-dots {
      bottom: -50px; }
      .section-product-ecomm .product-carousel .slick-dots li {
        background-color: #b3b3b3; }
        .section-product-ecomm .product-carousel .slick-dots li button {
          color: #000; }
      .section-product-ecomm .product-carousel .slick-dots li.slick-active {
        background-color: #333; }
        .section-product-ecomm .product-carousel .slick-dots li.slick-active button {
          color: #fff; }
      .section-product-ecomm .product-carousel .slick-dots li:focus-within {
        background-color: #999; }
        .section-product-ecomm .product-carousel .slick-dots li:focus-within button {
          color: #fff; }
    .section-product-ecomm .product-carousel img {
      height: 100%; }
  .section-product-ecomm .product-carousel.slick-slider .slick-list {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    overflow: hidden;
    /*-webkit-mask-box-image: url( /cdn/shop/t/6/assets/circle-mask.png?v=74561468605840737941465855940 );  for webkit, because the border-radius does not clip */
    width: 260px;
    height: 260px; }
  @media screen and (min-width: 700px) {
    .section-product-ecomm .ecomm-container {
      top: 0px; }
      .section-product-ecomm .ecomm-container h1 {
        top: 0px; }
      .section-product-ecomm .ecomm-container .product-tagline {
        top: 0px; }
      .section-product-ecomm .ecomm-container form {
        margin-bottom: 35px; }
    .section-product-ecomm .product-carousel {
      top: 0px; } }
  @media screen and (min-width: 1040px) {
    .section-product-ecomm {
      min-height: 550px; }
      .section-product-ecomm .wrapper {
        padding-top: 0px;
        padding-bottom: 0px; }
      .section-product-ecomm .ecomm-container-parent {
        height: 100%;
        text-align: left; }
      .section-product-ecomm .ecomm-container {
        max-width: 450px;
        margin: 60px auto 40px 30px; }
        .section-product-ecomm .ecomm-container h1 {
          font-size: 2.7em; }
        .section-product-ecomm .ecomm-container .product-tagline {
          font-size: 1em; }
        .section-product-ecomm .ecomm-container .product-desc {
          font-size: 1.7em; }
        .section-product-ecomm .ecomm-container form {
          padding-top: 21px; }
          .section-product-ecomm .ecomm-container form .product-price {
            font-size: 2.9em; }
            .section-product-ecomm .ecomm-container form .product-price .price-strikethrough {
              text-decoration: line-through;
              opacity: 0.3; }
          .section-product-ecomm .ecomm-container form input.btn, .section-product-ecomm .ecomm-container form input.btn-secondary, .section-product-ecomm .ecomm-container form div.btn, .section-product-ecomm .ecomm-container form div.btn-secondary {
            margin: 28px auto 0px auto; }
      .section-product-ecomm .product-carousel {
        width: 500px;
        height: 500px;
        margin: 58px 13px 54px auto; }
        .section-product-ecomm .product-carousel .slick-dots {
          bottom: -50px; }
      .section-product-ecomm .product-carousel.slick-slider .slick-list {
        width: 500px;
        height: 500px; } }
  @media screen and (min-width: 700px) and (max-width: 1040px) {
    .section-product-ecomm .ecomm-container {
      max-width: 340px;
      margin-top: 30px;
      float: left; }
    .section-product-ecomm .product-carousel {
      margin-right: 0px; } }
  @media screen and (min-width: 700px) and (max-width: 850px) {
    .section-product-ecomm .product-carousel {
      width: 300px;
      height: 300px;
      margin-top: 100px; }
    .section-product-ecomm .product-carousel.slick-slider .slick-list {
      width: 300px;
      height: 300px; } }
  @media screen and (min-width: 850px) and (max-width: 1040px) {
    .section-product-ecomm .product-carousel {
      width: 350px;
      height: 350px;
      margin-top: 70px;
      margin-bottom: 30px; }
    .section-product-ecomm .product-carousel.slick-slider .slick-list {
      width: 350px;
      height: 350px; } }

.product-detail-container {
  background-color: #f4f1ea;
  overflow: hidden; }

.product-detail-header {
  background-color: #292929;
  padding: 24px 0 0px 0; }
  .product-detail-header h4 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.3em;
    font-weight: 600;
    color: #87bfcc;
    text-align: center;
    line-height: 1.1em;
    margin: 0; }
  .product-detail-header .header-break {
    background-color: #414042;
    height: 2px;
    margin: 20px 75px 0 75px; }
  .product-detail-header .detail-header-desc {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.29em;
    font-weight: 400;
    line-height: 1.3em;
    text-align: center;
    color: white;
    margin: 14px auto 0 auto; }
  .product-detail-header .detail-header-arrow-title {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #ee5b28;
    text-transform: uppercase;
    margin: 16px 0 0 0; }
  .product-detail-header img {
    margin: 1px auto 0 auto;
    width: 12px;
    height: 12px; }
  @media screen and (min-width: 700px) {
    .product-detail-header {
      font-size: 1.75em; }
      .product-detail-header .detail-header-desc {
        max-width: 770px; }
      .product-detail-header img {
        margin: 1px auto 0 auto;
        width: 18px;
        height: 18px; } }
  @media screen and (min-width: 700px) and (max-width: 1040px) {
    .product-detail-header h4 {
      font-size: 2.5em; } }

.product-detail-header-point {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  margin: 0 auto 0 auto;
  border-top: 15px solid #292929;
  border-left: 13px solid transparent;
  border-right: 15px solid transparent; }
  @media screen and (min-width: 700px) {
    .product-detail-header-point {
      border-top: 22px solid #292929;
      border-left: 25px solid transparent;
      border-right: 25px solid transparent; } }

.product-detail-bottom-gradient {
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  background-image: url(/cdn/shop/t/6/assets/bottom-gradient.png?v=154052581362312256491471552067);
  background-repeat: repeat-x;
  background-position: 0 100%; }

.product-detail-section {
  padding: 0;
  position: relative;
  padding-top: 30px; }
  .product-detail-section .wrapper {
    min-height: 500px; }
  .product-detail-section .wrapper.unlimited {
    height: auto; }
  .product-detail-section .detail-info-wrapper {
    max-width: 540px;
    margin: auto; }
    .product-detail-section .detail-info-wrapper .detail-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto;
      position: relative;
      z-index: 1; }
    .product-detail-section .detail-info-wrapper .detail-section-title {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 2.14em;
      font-weight: 600;
      line-height: 1.1em;
      color: black;
      text-align: center;
      margin: 18px 0 0 0;
      position: relative;
      z-index: 1; }
    .product-detail-section .detail-info-wrapper .detail-section-subtitle {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.71em;
      font-weight: 400;
      color: black;
      text-align: center;
      line-height: 1.3em;
      margin: 20px 0 0 0;
      position: relative;
      z-index: 1; }
    .product-detail-section .detail-info-wrapper .detail-section-desc {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.29em;
      font-weight: 400;
      color: #414042;
      text-align: left;
      line-height: 1.3em;
      margin: 5px 0 0 0;
      position: relative;
      z-index: 1; }
  .product-detail-section .detail-img-pos-container {
    position: relative;
    float: right;
    right: 50%;
    margin-top: 20px;
    height: 220px;
    z-index: 0; }
    .product-detail-section .detail-img-pos-container .detail-section-img {
      height: 100%;
      width: auto;
      margin: 0;
      padding: 0;
      position: relative;
      right: -50%; }
  .product-detail-section .detail-image-block {
    margin-bottom: 10px; }
    .product-detail-section .detail-image-block img {
      width: 100%; }
  .product-detail-section .detail-text-block {
    margin-bottom: 60px; }
    .product-detail-section .detail-text-block .detail-text-block-title {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.71em;
      font-weight: 400;
      color: black;
      text-align: left;
      line-height: 1.3em;
      margin-bottom: 5px; }
    .product-detail-section .detail-text-block .detail-text-block-desc {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.29em;
      font-weight: 400;
      color: #414042;
      text-align: left;
      line-height: 1.3em; }
  .product-detail-section .short {
    min-height: inherit; }
  @media screen and (min-width: 700px) and (max-width: 1040px) {
    .product-detail-section .detail-img-pos-container {
      height: 400px; }
    .product-detail-section .short {
      max-width: 800px; } }
  @media screen and (min-width: 1040px) {
    .product-detail-section {
      padding: 0;
      font-size: 1.10em; }
      .product-detail-section .wrapper {
        text-align: left;
        position: relative;
        height: 500px; }
      .product-detail-section .short {
        height: 380px;
        min-height: 380px; }
      .product-detail-section .detail-info-wrapper {
        width: 40%;
        padding-top: 40px;
        margin-left: 10%; }
        .product-detail-section .detail-info-wrapper .detail-icon {
          /* 				margin-left: 0px; */
          /* 				display: inline-block; */
          display: block; }
        .product-detail-section .detail-info-wrapper .detail-section-title {
          /* 				margin-left: 10px; */
          /* 				display: inline-block; */ }
        .product-detail-section .detail-info-wrapper .detail-section-subtitle {
          margin: 10px 0 0 0; }
      .product-detail-section .simple {
        padding-left: 40px;
        padding-top: 60px; }
      .product-detail-section .detail-img-pos-container {
        margin-top: 0px;
        position: absolute;
        margin-left: 0;
        /* right: 32%; */
        bottom: 0;
        height: 100%;
        left: 50%; }
        .product-detail-section .detail-img-pos-container .detail-section-img {
          position: relative;
          /* right: -50%; */
          left: 0; }
      .product-detail-section .short {
        height: 380px;
        min-height: 380px; }
      .product-detail-section .detail-image-block {
        position: relative;
        height: 300px;
        float: left; }
        .product-detail-section .detail-image-block img {
          height: 100%;
          width: auto; }
      .product-detail-section .detail-text-block {
        max-width: 500px;
        float: left;
        margin-left: 40px;
        margin-top: 40px; }
      .product-detail-section #img-mk2-posted {
        left: 54%; }
      .product-detail-section .detail-info-wrapper.rightSide {
        float: right;
        margin-left: 0;
        margin-right: 10%; }
      .product-detail-section .detail-img-pos-container.rightSide {
        left: inherit;
        right: 50%;
        float: left; }
        .product-detail-section .detail-img-pos-container.rightSide .detail-section-img {
          left: inherit;
          right: 0;
          float: right; } }
  .product-detail-section .detail-info-wrapper.centered {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    width: auto;
    padding-bottom: 30px; }
    .product-detail-section .detail-info-wrapper.centered .detail-section-desc {
      margin-right: 20%;
      margin-left: 20%;
      margin-top: 30px; }
      .product-detail-section .detail-info-wrapper.centered .detail-section-desc span a {
        color: #ee5b28;
        text-decoration: none; }
    .product-detail-section .detail-info-wrapper.centered img {
      width: 100%; }
    .product-detail-section .detail-info-wrapper.centered .detail-section-bottom-spacer {
      height: 60px; }

.product-lifestyle-gallery-section {
  /* 	background-color: $colorDarkGray; */
  	/*
  @include at-query($min, $small) {
  		.wrapper {
  			padding: 0 $gutter-desktop;
  		}
  	}
  */ }
  .product-lifestyle-gallery-section .wrapper {
    padding: 0; }
  .product-lifestyle-gallery-section .grid, .product-lifestyle-gallery-section .grid--rev, .product-lifestyle-gallery-section .grid--full, .product-lifestyle-gallery-section .grid--right, .product-lifestyle-gallery-section .grid--center {
    margin: 0; }
  .product-lifestyle-gallery-section .grid-item {
    padding: 0;
    margin: 0; }

.product-lifestyle-gallery-padded-section {
  padding: 30px 10px; }
  .product-lifestyle-gallery-padded-section .wrapper {
    padding: 0; }
    .product-lifestyle-gallery-padded-section .wrapper .grid-uniform {
      margin: 0; }
      .product-lifestyle-gallery-padded-section .wrapper .grid-uniform .grid-item {
        padding: 10px; }

.product-pullquote-section {
  /* 	background-color: #fbfbf8; */
  position: relative; }
  .product-pullquote-section .product-detail-bottom-gradient {
    pointer-events: none; }
  .product-pullquote-section .wrapper {
    padding-top: 43px;
    padding-bottom: 54px; }
  .product-pullquote-section .bigquote {
    color: #ee5b28;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 3em;
    font-weight: 800;
    display: inline-block;
    width: 6%;
    line-height: .4em;
    position: relative;
    top: 11px;
    /* 	    display: none; */
    vertical-align: top; }
    .product-pullquote-section .bigquote.r {
      top: 6px;
      vertical-align: bottom; }
  .product-pullquote-section .quote-cont {
    display: inline-block;
    width: 68%; }
    .product-pullquote-section .quote-cont .q {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #757575;
      font-size: 1.45em;
      font-style: italic;
      line-height: 1.3em;
      text-align: center;
      font-weight: 800; }
  .product-pullquote-section .q-attr {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #414042;
    font-size: .75em;
    line-height: 1.3em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: .08em; }
    .product-pullquote-section .q-attr a {
      text-decoration: none;
      color: #414042; }
      .product-pullquote-section .q-attr a:hover {
        color: #333; }
  @media screen and (min-width: 700px) {
    .product-pullquote-section .wrapper {
      padding-top: 62px;
      padding-bottom: 95px; }
    .product-pullquote-section .product-detail-bottom-gradient {
      display: none; }
    .product-pullquote-section .bigquote {
      display: inline;
      font-size: 13em;
      width: 11%;
      top: 28px; }
      .product-pullquote-section .bigquote.r {
        top: 38px; }
    .product-pullquote-section .quote-cont {
      width: 68%; }
      .product-pullquote-section .quote-cont .q {
        font-size: 2.1em; }
    .product-pullquote-section .q-attr {
      font-size: 1.1em; } }

.product-whatsincluded-section {
  background-color: #E6E7E8;
  padding-bottom: 20px; }
  .product-whatsincluded-section h2.lined {
    color: #414042; }
    .product-whatsincluded-section h2.lined span:before,
    .product-whatsincluded-section h2.lined span:after {
      border-bottom: 1px solid #414042;
      border-top: 1px solid #414042; }
  .product-whatsincluded-section .grid-item {
    text-align: center; }
  .product-whatsincluded-section img {
    height: auto;
    width: 284px;
    margin: 10px auto; }
  .product-whatsincluded-section img.v {
    height: 130px;
    width: auto; }
  .product-whatsincluded-section h4 {
    color: #414042;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1.3em;
    margin-bottom: 0; }
  .product-whatsincluded-section p {
    color: #414042;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 10px; }
  @media screen and (min-width: 700px) {
    .product-whatsincluded-section img {
      margin: 20px auto; }
    .product-whatsincluded-section img.v {
      height: 183px;
      margin: 20px auto; }
    .product-whatsincluded-section h4 {
      font-size: 1.1em; }
    .product-whatsincluded-section p {
      font-size: 1.1em;
      margin-bottom: 30px; } }

.relaydetails {
  padding-bottom: 60px; }

.product-signup-section {
  position: relative;
  font-size: .85em; }
  .product-signup-section .signup-cont {
    padding-top: 120px;
    padding-bottom: 130px; }
  .product-signup-section h3 {
    font-size: 1.4em;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 2.2em;
    margin: 10px auto 30px auto;
    text-align: center; }
  .product-signup-section .product-signup-cont {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto; }
  .product-signup-section .mini {
    padding-top: 0px;
    padding-bottom: 0px; }
    .product-signup-section .mini h3 {
      font-size: 1.8em;
      margin: 0px; }

.product-thedetails-section {
  position: relative;
  font-size: .85em; }
  .product-thedetails-section h3 {
    font-size: 1.4em;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 2.2em;
    margin: 10px auto 20px auto;
    text-align: center; }
    .product-thedetails-section h3 span {
      border-bottom: 2px #414042 solid;
      padding-bottom: .9em; }
  .product-thedetails-section .thedetails-cont {
    width: 100%;
    margin: 10px auto 50px auto; }
    .product-thedetails-section .thedetails-cont ul {
      margin-left: 20px;
      text-align: left;
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 400;
      list-style: disc;
      position: relative;
      float: left;
      display: block;
      left: 50%;
      font-size: 1.6em;
      line-height: 1.3em;
      margin-top: 1.3em; }
      .product-thedetails-section .thedetails-cont ul li {
        position: relative;
        right: 50%; }
  @media screen and (min-width: 700px) {
    .product-thedetails-section .thedetails-cont {
      margin: 38px auto 80px auto; }
    .product-thedetails-section h3 {
      margin: 10px auto 30px auto; } }

.comparison-table {
  border-collapse: collapse;
  border-style: hidden;
  font-size: 1.0em;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 0.75em; }
  .comparison-table th {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-style: italic; }
  .comparison-table span {
    left: 100px;
    position: absolute;
    top: 18px; }
  .comparison-table .firstCol {
    display: none; }
  .comparison-table .dock-icon {
    height: 40px; }

.table-note {
  text-align: center;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: italic; }

@media screen and (min-width: 700px) {
  .comparison-table {
    font-size: 1.5em; }
    .comparison-table .firstCol {
      display: table-cell;
      width: 100px;
      position: relative;
      border-right: 0px solid; }
    .comparison-table .secondCol {
      border-left: 0px solid; }
    .comparison-table td, .comparison-table th {
      padding-right: 30px;
      padding-left: 30px;
      border: 1px dotted #b3b3b3; } }
.product-specs-section {
  position: relative;
  padding-bottom: 60px; }
  .product-specs-section h3 {
    text-transform: uppercase;
    font-size: 1.4em;
    margin: 10px auto 20px auto;
    text-align: center;
    font-weight: 600;
    letter-spacing: .05em; }
    .product-specs-section h3 span {
      border-bottom: 2px #414042 solid; }
  .product-specs-section .specs-cont {
    width: 100%;
    margin: 10px auto 50px auto; }
    .product-specs-section .specs-cont ul {
      margin-left: 20px;
      text-align: left;
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 400;
      font-size: .9em;
      line-height: 1.5em;
      list-style: disc;
      position: relative;
      float: left;
      display: block;
      left: 50%; }
      .product-specs-section .specs-cont ul li {
        position: relative;
        right: 50%; }
        .product-specs-section .specs-cont ul li b {
          font-weight: bold; }
  @media screen and (min-width: 700px) {
    .product-specs-section .specs-cont {
      margin: 38px auto 80px auto; }
      .product-specs-section .specs-cont ul {
        font-size: 1.29em; }
    .product-specs-section h3 {
      font-size: 1.6em;
      margin: 10px auto 30px auto; } }

.product-carousel-large .carou-large-cont {
  text-align: center; }
  .product-carousel-large .carou-large-cont img {
    width: 100%;
    max-width: 375px; }

.ecomm-container.large .product-tagline a {
  color: white; }
.ecomm-container.large h1 {
  font-size: 2em; }
.ecomm-container.large .product-tagline {
  margin-top: 15px;
  font-size: 1.7em; }
@media screen and (min-width: 700px) {
  .ecomm-container.large {
    margin-top: 90px; } }
@media screen and (min-width: 1040px) {
  .ecomm-container.large {
    margin-top: 120px; } }

@media screen and (min-width: 1040px) {
  #muddler .section-product-ecomm .wrapper, #lewis .section-product-ecomm .wrapper, #chisel .section-product-ecomm .wrapper {
    padding: 0 120px; } }
#muddler .product-hero-callout, #lewis .product-hero-callout, #chisel .product-hero-callout {
  display: none; }

#tray .section-product-ecomm .ecomm-container h1 {
  font-size: 2em; }

.template-cart .main-content {
  background-color: #f4f1ea; }
.template-cart .page-header h1 {
  margin-top: 44px; }
.template-cart .cart-header-row {
  display: none;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 800;
  color: #414042;
  text-transform: uppercase;
  margin-top: 19px; }
  .template-cart .cart-header-row .first {
    text-align: left; }
  .template-cart .cart-header-row .last {
    text-align: right; }
.template-cart .line {
  border-top: 1px solid black;
  width: 100%; }
.template-cart .line.head {
  display: none; }
.template-cart .cart-row .grid-item {
  height: 100%;
  padding-top: 18px; }
.template-cart .cart-row .item-content {
  font-size: 1.71em;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
.template-cart .cart-row .item-info {
  text-align: left;
  font-size: 1.71em; }
  .template-cart .cart-row .item-info img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    display: inline-block; }
  .template-cart .cart-row .item-info h5 {
    display: inline-block;
    line-height: 1.3em;
    margin-left: 12px;
    position: relative;
    top: -18px;
    margin-bottom: 20px; }
    .template-cart .cart-row .item-info h5 a {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 800;
      color: black;
      text-transform: uppercase; }
      .template-cart .cart-row .item-info h5 a small {
        font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        color: #59595b;
        text-transform: capitalize; }
.template-cart .cart-row .item-price, .template-cart .cart-row .item-qty {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #414042;
  text-align: left; }
.template-cart .cart-row .item-qty {
  text-align: center; }
  .template-cart .cart-row .item-qty input {
    text-align: center;
    width: 60px;
    margin: auto;
    font-size: 1em;
    padding: 4px; }
.template-cart .cart-row .remove-button {
  width: 30px;
  height: 30px;
  background: url(/cdn/shop/t/6/assets/remove_button.png?v=133260660187765549161465855990) no-repeat 0 0;
  background-size: 60px 30px;
  background-position-x: 0;
  margin: auto; }
  .template-cart .cart-row .remove-button:hover {
    background-position-x: -30px; }
.template-cart .cart-row .item-total {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: black;
  text-align: right; }
.template-cart .cart-row p.local-head {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #414042;
  text-transform: uppercase;
  top: -18px;
  position: relative; }
.template-cart .cart-footer-row {
  margin-bottom: 40px; }
  .template-cart .cart-footer-row .shipping-estimator {
    text-align: left;
    border: 1px solid #b3b3b3;
    border-radius: 6px;
    padding: 18px 9px 29px 9px; }
    .template-cart .cart-footer-row .shipping-estimator .title-icon {
      width: 16px;
      height: auto;
      margin-right: 8px;
      position: relative;
      top: 3px; }
    .template-cart .cart-footer-row .shipping-estimator h2 {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 700;
      font-size: 1.28em;
      color: #59595b;
      text-align: center;
      margin-bottom: 0; }
    .template-cart .cart-footer-row .shipping-estimator .estimator-grid {
      margin-top: 15px; }
    .template-cart .cart-footer-row .shipping-estimator #address_zip {
      width: 50%;
      display: inline-block;
      margin: 0;
      max-width: 180px; }
    .template-cart .cart-footer-row .shipping-estimator .get-rates {
      margin: 0;
      margin-left: 10px;
      vertical-align: top; }
    .template-cart .cart-footer-row .shipping-estimator label {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      color: #59595b; }
    .template-cart .cart-footer-row .shipping-estimator #wrapper-response {
      border-top: black solid 1px;
      margin-top: 20px;
      padding-top: 20px; }
    .template-cart .cart-footer-row .shipping-estimator #shipping-rates-feedback {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 400;
      font-size: 1.28em;
      color: #ee5b28; }
    .template-cart .cart-footer-row .shipping-estimator #shipping-rates .grid-item {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 400;
      font-size: 1em;
      color: #59595b;
      margin-bottom: 10px; }
      .template-cart .cart-footer-row .shipping-estimator #shipping-rates .grid-item span {
        font-weight: 700;
        font-size: 2.0em;
        color: #ee5b28;
        line-height: 1em; }
  .template-cart .cart-footer-row h5 {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.71em;
    color: black;
    margin: 30px 0 40px 0; }
  .template-cart .cart-footer-row .summary {
    margin-bottom: 30px;
    text-align: right; }
    .template-cart .cart-footer-row .summary input {
      width: 48%; }
    .template-cart .cart-footer-row .summary .btn-secondary {
      float: left; }
@media screen and (min-width: 1040px) {
  .template-cart .cart-header-row {
    display: block; }
  .template-cart p.local-head {
    display: none; }
  .template-cart .cart-row {
    height: 97px; }
    .template-cart .cart-row .grid-item {
      padding-top: 0px; }
  .template-cart .cart-footer-row .shipping-estimator {
    padding: 18px 26px 29px 26px;
    margin-top: 25px; }
    .template-cart .cart-footer-row .shipping-estimator .title-icon {
      width: 18px; }
    .template-cart .cart-footer-row .shipping-estimator h2 {
      font-size: 1.71em; }
  .template-cart .cart-footer-row .summary input {
    width: 35%;
    min-width: 130px; }
  .template-cart .cart-footer-row .summary .btn-secondary, .template-cart .cart-footer-row .summary .btn, .template-cart .cart-footer-row .summary .btn-secondary {
    margin-left: 10px;
    margin-bottom: 10px; }
  .template-cart .cart-footer-row .summary .btn-secondary {
    float: none; }
  .template-cart .line.bottom {
    margin-top: 20px; }
  .template-cart .line.top {
    display: none; }
  .template-cart .line.head {
    display: block; } }

.wrapper.empty {
  min-height: 300px;
  margin-bottom: 60px; }

.empty-cart-cont {
  text-align: center;
  color: #414042;
  padding-top: 50px; }
  .empty-cart-cont h2 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.28em;
    font-weight: 700;
    margin-bottom: 18px; }
  .empty-cart-cont p {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.57em;
    line-height: 1.3em; }
    .empty-cart-cont p a {
      text-decoration: underline;
      font-style: italic; }
  .empty-cart-cont p.flag {
    color: white;
    font-size: .7em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px; }
    .empty-cart-cont p.flag span {
      background-color: #414042;
      padding: 6px; }
    .empty-cart-cont p.flag:after {
      content: "";
      display: inline-block;
      position: relative;
      border-bottom: 12px solid #414042;
      border-top: 12px solid #414042;
      border-right: 12px solid transparent;
      border-left: 12px solid #414042;
      top: 8px; }
    .empty-cart-cont p.flag:before {
      content: "";
      display: inline-block;
      position: relative;
      border-bottom: 12px solid #414042;
      border-top: 12px solid #414042;
      border-left: 12px solid transparent;
      border-right: 12px solid #414042;
      top: 8px;
      right: -1px; }

@media screen and (min-width: 700px) {
  .wrapper.empty {
    min-height: 400px; }

  .empty-cart-cont {
    padding-top: 100px; }
    .empty-cart-cont h2 {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 4.28em; } }
.slick-dots li {
  border: none;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  width: 10px;
  height: 10px;
  margin: 0px 5px; }
  .slick-dots li button:before {
    display: none; }

.slick-track {
  height: 100%; }

.hero-carousel .slick-dots {
  /* 		max-width: $siteWidth; */
  margin: 0 auto;
  padding: 0 24px;
  /* 		position: relative; */
  bottom: 40px;
  height: 0;
  text-align: center;
  position: absolute;
  top: 195px;
  max-width: inherit; }
.hero-carousel .wrapper {
  padding: 0px; }
.hero-carousel .hero-carousel-item {
  min-height: 300px; }
  .hero-carousel .hero-carousel-item .hero-bk {
    width: 100%;
    height: 220px;
    background-size: cover; }
  .hero-carousel .hero-carousel-item .callout {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 16px; }
    .hero-carousel .hero-carousel-item .callout h3 {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: none;
      font-weight: 700;
      font-size: 1.75em;
      color: white;
      text-align: center;
      line-height: 1.1em;
      padding: 0;
      margin: 0;
      margin-bottom: 5px;
      text-shadow: #525252 1px 1px 6px; }
    .hero-carousel .hero-carousel-item .callout p {
      margin: 0px; }
    .hero-carousel .hero-carousel-item .callout p a {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 800;
      font-size: 16px;
      color: white;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none; }
      .hero-carousel .hero-carousel-item .callout p a span {
        background-color: #ee5b28;
        padding: 4px; }
    .hero-carousel .hero-carousel-item .callout p a:after {
      content: "";
      display: inline-block;
      position: relative;
      border-bottom: 14px solid transparent;
      border-left: 14px solid #ee5b28;
      border-top: 14px solid transparent;
      top: 8px;
      left: -1px; }
    .hero-carousel .hero-carousel-item .callout p a:before {
      content: "";
      display: inline-block;
      position: relative;
      border-bottom: 14px solid #ee5b28;
      border-top: 14px solid #ee5b28;
      border-left: 14px solid transparent;
      border-right: 4px solid #ee5b28;
      top: 8px; }
    .hero-carousel .hero-carousel-item .callout p a:hover {
      text-decoration: underline; }
@media screen and (min-width: 1040px) {
  .hero-carousel .slick-dots {
    top: 560px; }
  .hero-carousel .wrapper {
    padding: 0 60px; }
  .hero-carousel .hero-carousel-item .hero-bk {
    height: 600px;
    position: absolute; }
  .hero-carousel .hero-carousel-item .callout-container {
    height: 600px; }
  .hero-carousel .hero-carousel-item .callout {
    width: 480px;
    top: 100px;
    left: 0px;
    padding: 20px;
    background-color: transparent; }
    .hero-carousel .hero-carousel-item .callout h3 {
      font-size: 4.1em;
      margin-bottom: 10px; }
    .hero-carousel .hero-carousel-item .callout p a {
      font-size: 1.71em; }
    .hero-carousel .hero-carousel-item .callout p a:after {
      border-bottom: 18px solid transparent;
      border-left: 19px solid #ee5b28;
      border-top: 19px solid transparent;
      top: 10px; }
    .hero-carousel .hero-carousel-item .callout p a:before {
      border-bottom: 18px solid #ee5b28;
      border-top: 19px solid #ee5b28;
      border-left: 19px solid transparent;
      border-right: 4px solid #ee5b28;
      top: 10px; } }
@media screen and (min-width: 2200px) {
  .hero-carousel .slick-dots {
    top: 760px; }
  .hero-carousel .hero-carousel-item .hero-bk {
    height: 800px; }
  .hero-carousel .hero-carousel-item .callout-container {
    height: 800px; } }

#home-hero-1 .hero-bk {
  background: url(/cdn/shop/t/6/assets/heroImage_neatice_pour_2.jpg?v=174908126929330331601465855949) center no-repeat;
  background-size: cover; }
#home-hero-1 .callout {
  float: right;
  margin-right: 0px; }
  @media screen and (min-width: 1040px) {
    #home-hero-1 .callout {
      margin-right: 0px;
      text-align: right;
      top: 50px; }
      #home-hero-1 .callout h3 {
        text-align: right; } }

#home-hero-2 .hero-bk {
  background: url(/cdn/shop/t/6/assets/heroImage_cosmo.jpg?v=156832627533529678201465855945) center no-repeat;
  background-size: cover; }
#home-hero-2 .callout {
  top: 0px;
  left: 0px;
  width: 100%; }

#home-hero-3 .hero-bk {
  background: url(/cdn/shop/t/6/assets/heroImage_glif_austin.jpg?v=1975414577444683291465855947) center no-repeat;
  background-size: cover; }
#home-hero-3 .callout {
  top: 0px;
  float: left; }
  @media screen and (min-width: 1040px) {
    #home-hero-3 .callout {
      text-align: left; }
      #home-hero-3 .callout h3 {
        text-align: left;
        				/*
        text-shadow: none;
        				color: $colorDarkGray;
        */ } }
  @media screen and (min-width: 1500px) {
    #home-hero-3 .callout {
      top: 30px; } }

#home-hero-4 .hero-bk {
  background: url(/cdn/shop/t/6/assets/heroImage_toolguide_2.jpg?v=100420514885602483171465855952) center no-repeat;
  background-size: cover; }
#home-hero-4 .callout {
  float: right;
  margin-right: 0px; }
  @media screen and (min-width: 1040px) {
    #home-hero-4 .callout {
      margin-right: 0px;
      text-align: right;
      top: 20px; }
      #home-hero-4 .callout h3 {
        text-align: right; } }

#home-hero-5 .hero-bk {
  background: url(/cdn/shop/t/6/assets/blog_sskstopmotion_header.jpg?v=39622848163833014361465855937) center no-repeat;
  background-size: cover; }
#home-hero-5 .callout {
  float: right;
  margin-right: 0px; }
  @media screen and (min-width: 1040px) {
    #home-hero-5 .callout {
      margin-right: 0px;
      text-align: right;
      top: 20px; }
      #home-hero-5 .callout h3 {
        text-align: right; } }

#home-hero-6 .hero-bk {
  background: url(/cdn/shop/t/6/assets/heroImage_atvs.jpg?v=165016465727346753981465855944) center no-repeat;
  background-size: cover; }
#home-hero-6 .callout {
  top: 0px;
  float: left; }
  @media screen and (min-width: 1040px) {
    #home-hero-6 .callout {
      text-align: left; }
      #home-hero-6 .callout h3 {
        text-align: left; } }
  @media screen and (min-width: 1500px) {
    #home-hero-6 .callout {
      top: 30px; } }

#home-hero-dock .hero-bk {
  background: url(/cdn/shop/t/6/assets/heroImage_dock_table.jpg?v=152578228607574453381473796938) center no-repeat;
  background-size: cover; }
#home-hero-dock .callout {
  float: right;
  margin-right: 0px; }
  @media screen and (min-width: 1040px) {
    #home-hero-dock .callout {
      margin-right: 0px;
      text-align: right;
      top: 20px;
      left: -76px; }
      #home-hero-dock .callout h3 {
        text-align: right; } }

#home-hero-glif2016 .hero-bk {
  background: url(/cdn/shop/t/6/assets/heroimage_glif2016_bridge_wide.jpg?v=107885322276210045581495489596) center no-repeat;
  background-size: cover;
  background-position-x: 85%; }
#home-hero-glif2016 .callout {
  float: left;
  margin-left: 0px; }
  @media screen and (min-width: 1040px) {
    #home-hero-glif2016 .callout {
      margin-right: 0px;
      text-align: left;
      top: 60px;
      left: 69px; }
      #home-hero-glif2016 .callout h3 {
        text-align: left;
        font-size: 5em; }
      #home-hero-glif2016 .callout .hero-bk {
        background-position-x: 50%; } }

#home-hero-qdock .hero-bk {
  background: url(/cdn/shop/t/6/assets/product-hero-docks-qi-tabletop.jpg?v=30678902435183757041543215182) center no-repeat;
  background-size: cover;
  background-position-x: 50%; }
#home-hero-qdock .callout {
  width: 100%;
  color: green; }
  #home-hero-qdock .callout p a:after {
    display: none; }
  #home-hero-qdock .callout p a:before {
    display: none; }
  #home-hero-qdock .callout span {
    background: #104569;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 12px;
    padding-bottom: 6px; }
  @media screen and (min-width: 1040px) {
    #home-hero-qdock .callout {
      text-align: center;
      padding-top: 9%;
      margin: auto;
      width: 100%;
      top: 29%; }
      #home-hero-qdock .callout div.butt {
        position: relative;
        top: -2px; }
      #home-hero-qdock .callout h3 {
        text-align: center;
        font-size: 3em; }
      #home-hero-qdock .callout .hero-bk {
        background-position-x: 51.8%; } }
  @media screen and (min-width: 2200px) {
    #home-hero-qdock .callout {
      padding-top: 11%; } }

#home-hero-panobook .hero-bk {
  background: url(/cdn/shop/t/6/assets/Panobook-Desk.jpg?v=113393782555747679121516252205) center no-repeat;
  background-size: cover;
  background-position-x: 50%; }
#home-hero-panobook .hero-carousel-item .callout {
  width: 100%; }
@media screen and (min-width: 1040px) {
  #home-hero-panobook .callout {
    text-align: center;
    padding-top: 9%;
    margin: auto;
    width: 100%;
    top: 29%; }
    #home-hero-panobook .callout div.butt {
      position: relative;
      top: -2px; }
    #home-hero-panobook .callout h3 {
      text-align: center;
      font-size: 3em; }
    #home-hero-panobook .callout .hero-bk {
      background-position-x: 51.8%; } }
@media screen and (min-width: 2200px) {
  #home-hero-panobook .callout {
    padding-top: 11%; } }

#home-hero-totebook .hero-bk {
  background: url(/cdn/shop/t/6/assets/Totebook-Hero-Table.jpg?v=4007276458159574111558973720) center no-repeat;
  background-size: cover;
  background-position-x: 50%; }
#home-hero-totebook .callout p a:after {
  display: none; }
#home-hero-totebook .callout p a:before {
  display: none; }
#home-hero-totebook .callout span {
  background: #104569;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 12px;
  padding-bottom: 6px; }
@media screen and (min-width: 1040px) {
  #home-hero-totebook .callout {
    text-align: center;
    margin: auto;
    top: 12%; }
    #home-hero-totebook .callout div.butt {
      position: relative;
      top: -2px; }
    #home-hero-totebook .callout h3 {
      text-align: center;
      font-size: 3em; }
    #home-hero-totebook .callout .hero-bk {
      background-position-x: 51.8%; } }
@media screen and (min-width: 2200px) {
  #home-hero-totebook .callout {
    padding-top: 11%; } }

#le007-banner .hero-bk {
  background: url(/cdn/shop/t/6/assets/MK1%20LE%20007%20Hero%20Banner%20Mobile.jpg?v=56113180918985839301673976704) center no-repeat;
  background-size: cover; }
  @media screen and (min-width: 700px) {
    #le007-banner .hero-bk {
      background: url(/cdn/shop/t/6/assets/MK1%20LE%20007%20Hero%20Banner.jpg?v=166665212639040341171673976521) center no-repeat;
      background-size: cover; } }
#le007-banner .callout a {
  text-decoration: none; }
@media screen and (min-width: 1040px) {
  #le007-banner .callout h3 {
    color: #ffffff;
    text-shadow: none;
    display: block;
    font-size: 3.75em;
    margin-top: 0%; } }
@media screen and (min-width: 1040px) {
  #le007-banner .callout {
    top: 54%;
    width: 100%; } }
#le007-banner .callout div {
  background-color: #4b1b67;
  max-width: 360px;
  height: 50px;
  padding: 8px;
  margin: auto;
  border-radius: 6px;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none; }
  #le007-banner .callout div.desk-button {
    display: none; }
  #le007-banner .callout div.mobile-button {
    display: block; }
  @media screen and (min-width: 1040px) {
    #le007-banner .callout div {
      margin: 16px auto 0px auto;
      max-width: 390px; }
      #le007-banner .callout div.desk-button {
        display: block;
        margin-top: 0px; }
      #le007-banner .callout div.mobile-button {
        display: none; } }
  #le007-banner .callout div:hover {
    background-color: #000; }

#kit-banner .hero-bk {
  background: url(/cdn/shop/t/6/assets/Starter%20Kit%20Hero%20Mobile.jpg?v=133569091483075783441669647572) center no-repeat;
  background-size: cover; }
  @media screen and (min-width: 700px) {
    #kit-banner .hero-bk {
      background: url(/cdn/shop/t/6/assets/Starter%20Kit%20Hero.jpg?v=179393790492986339151669647358) center no-repeat;
      background-size: cover; } }
#kit-banner .callout a {
  text-decoration: none; }
@media screen and (min-width: 1040px) {
  #kit-banner .callout h3 {
    color: #363636;
    text-shadow: none;
    display: block;
    font-size: 3.75em;
    margin-top: 0%; } }
@media screen and (min-width: 1040px) {
  #kit-banner .callout {
    top: 0%;
    width: 100%; } }
#kit-banner .callout div {
  background-color: #fff;
  max-width: 360px;
  height: 50px;
  padding: 8px;
  margin: auto;
  border-radius: 6px;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none; }
  #kit-banner .callout div.desk-button {
    display: none; }
  #kit-banner .callout div.mobile-button {
    display: block; }
  @media screen and (min-width: 1040px) {
    #kit-banner .callout div {
      margin: 16px auto 0px auto;
      max-width: 390px; }
      #kit-banner .callout div.desk-button {
        display: block;
        margin-top: 0px; }
      #kit-banner .callout div.mobile-button {
        display: none; } }
  #kit-banner .callout div:hover {
    background-color: #eee; }

#ks-banner .hero-bk {
  background: url(/cdn/shop/t/6/assets/MK3%20Hero%20Floating%20wide%20web.jpg?v=139055699812674656941656612829) center no-repeat;
  background-size: cover; }
#ks-banner .callout a {
  text-decoration: none; }
@media screen and (min-width: 1040px) {
  #ks-banner .callout h3 {
    color: #363636;
    text-shadow: none;
    display: block;
    font-size: 3.75em;
    margin-top: 35%; } }
@media screen and (min-width: 1040px) {
  #ks-banner .callout {
    top: 0%;
    width: 100%; } }
#ks-banner .callout div {
  background-color: #034752;
  max-width: 360px;
  height: 50px;
  padding: 8px;
  margin: auto;
  border-radius: 6px;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none; }
  #ks-banner .callout div.desk-button {
    display: none; }
  #ks-banner .callout div.mobile-button {
    display: block; }
  @media screen and (min-width: 1040px) {
    #ks-banner .callout div {
      margin: 16px auto 0px auto;
      max-width: 390px; }
      #ks-banner .callout div.desk-button {
        display: block;
        margin-top: 0px; }
      #ks-banner .callout div.mobile-button {
        display: none; } }
  #ks-banner .callout div:hover {
    background-color: #03353e; }

#home-hero-7 .hero-bk {
  background: url(/cdn/shop/t/6/assets/Hero_Stocking_Full.jpg?v=84220356486384063141465855954) center no-repeat;
  background-size: cover; }
#home-hero-7 .callout p b {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: .80em;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none; }
  #home-hero-7 .callout p b span {
    background-color: #ee5b28;
    padding: 4px; }
#home-hero-7 .callout p b:after {
  content: "";
  display: inline-block;
  position: relative;
  border-bottom: 11px solid #ee5b28;
  border-top: 11px solid #ee5b28;
  border-right: 11px solid transparent;
  border-left: 4px solid #ee5b28;
  top: 7px;
  left: -1px; }
#home-hero-7 .callout p b:before {
  content: "";
  display: inline-block;
  position: relative;
  border-bottom: 11px solid #ee5b28;
  border-top: 11px solid #ee5b28;
  border-left: 11px solid transparent;
  border-right: 4px solid #ee5b28;
  top: 7px; }
#home-hero-7 .callout i {
  font-style: normal;
  font-size: 1.2em; }
#home-hero-7 .callout {
  top: 0px;
  float: left; }
  @media screen and (min-width: 1040px) {
    #home-hero-7 .callout {
      text-align: left;
      width: 600px; }
      #home-hero-7 .callout h3 {
        text-align: left;
        font-size: 6em;
        margin-bottom: 0;
        text-shadow: #000000 2px 2px 8px; }
      #home-hero-7 .callout p b {
        font-size: 1.2em; }
      #home-hero-7 .callout p b:after {
        border-bottom: 14px solid #ee5b28;
        border-top: 14px solid #ee5b28;
        border-right: 14px solid transparent;
        border-left: 4px solid #ee5b28;
        top: 8px; }
      #home-hero-7 .callout p b:before {
        border-bottom: 14px solid #ee5b28;
        border-top: 14px solid #ee5b28;
        border-left: 14px solid transparent;
        border-right: 4px solid #ee5b28;
        top: 8px; } }
  @media screen and (min-width: 1500px) {
    #home-hero-7 .callout {
      top: 30px; } }

.section-app-info .app-details-wrapper {
  max-width: 440px;
  text-align: center;
  color: black;
  margin-left: auto;
  margin-right: auto; }
  .section-app-info .app-details-wrapper .app-icon {
    width: 132px;
    height: auto;
    margin-top: 117px;
    margin-left: auto;
    margin-right: auto; }
  .section-app-info .app-details-wrapper h1 {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 6px; }
  .section-app-info .app-details-wrapper h2 {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 36px; }
  .section-app-info .app-details-wrapper h1, .section-app-info .app-details-wrapper h2 {
    font-size: 1.7em;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto; }
  .section-app-info .app-details-wrapper .appstore-button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px; }
  .section-app-info .app-details-wrapper .app-price {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 1.7em;
    color: #ee5b28;
    margin-bottom: 50px; }
  .section-app-info .app-details-wrapper .app-desc {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.7em;
    color: #4f4f4f;
    line-height: 1.3em;
    margin-bottom: 50px; }
  .section-app-info .app-details-wrapper .product-break {
    height: 0;
    margin-right: 60px;
    margin-left: 60px;
    border-top: 2px solid #414042;
    margin-bottom: 10px; }
  .section-app-info .app-details-wrapper .product-shipping {
    font-weight: 400;
    color: #696a6e;
    font-size: 1.1em;
    line-height: 1.3em;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 5px; }
    .section-app-info .app-details-wrapper .product-shipping span {
      color: red; }
  @media screen and (min-width: 1040px) {
    .section-app-info .app-details-wrapper .app-icon {
      margin-top: 177px; } }
.section-app-info .app-gallery-wrapper {
  max-width: 440px;
  position: relative;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto; }
  .section-app-info .app-gallery-wrapper .aspectWrapper {
    background: url(/cdn/shop/t/6/assets/app-phone-bk.jpg?v=29414637671341790821465855924) center no-repeat;
    background-size: 100%;
    width: 270px;
    height: 540px;
    padding-top: 64px;
    padding-left: 18px;
    margin-right: auto;
    margin-left: auto; }
  .section-app-info .app-gallery-wrapper .app-gallery-cont {
    width: 230px;
    height: 330px; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-slide img {
      border: 2px solid black; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-slider .slick-list {
      width: 233px;
      height: 330px; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-slide img, .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-slide video {
      width: 100%;
      height: auto; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots li {
      background: transparent;
      border-radius: 0; }
      .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots li button {
        background: #b3b3b3;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        margin: 0;
        padding: 0;
        color: #000; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots li.slick-active {
      top: 0px; }
      .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots li.slick-active button {
        background: #333;
        height: 14px;
        width: 14px;
        color: #fff; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots li.video button {
      background-color: transparent;
      border-left: 8px solid #b3b3b3;
      height: 0;
      width: 0;
      border-top: 5.5px solid transparent;
      border-bottom: 5.5px solid transparent;
      background: transparent;
      border-radius: 0; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots li.video.slick-active button {
      border-left: 10px solid #333;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots {
      bottom: 102px; }
  .section-app-info .app-gallery-wrapper .app-gallery-desc {
    margin-top: 120px;
    margin-bottom: 60px;
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #4f4f4f;
    font-style: italic;
    text-align: center; }
  .section-app-info .app-gallery-wrapper .app-gallery-bottom-pad {
    height: 120px; }
  @media screen and (min-width: 700px) {
    .section-app-info .app-gallery-wrapper .aspectWrapper {
      width: 360px;
      height: 718px;
      padding-top: 85px;
      padding-left: 24px; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont {
      width: 307px;
      height: 178px; }
      .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-slider .slick-list {
        width: 309px;
        height: 542px; }
      .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots {
        bottom: 102px; }
    .section-app-info .app-gallery-wrapper .app-gallery-desc {
      margin-top: 140px; }
    .section-app-info .app-gallery-wrapper .app-gallery-bottom-pad {
      height: 140px; } }
  @media screen and (min-width: 1040px) {
    .section-app-info .app-gallery-wrapper .aspectWrapper {
      width: 440px;
      height: 880px;
      padding-top: 120px;
      padding-left: 30px; }
    .section-app-info .app-gallery-wrapper .app-gallery-cont {
      width: 380px;
      height: 220px; }
      .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-slider .slick-list {
        width: 382px;
        height: 670px; }
      .section-app-info .app-gallery-wrapper .app-gallery-cont .app-carousel .slick-dots {
        bottom: 90px; }
    .section-app-info .app-gallery-wrapper .app-gallery-desc {
      margin-top: 160px; } }

/* detail img adjustments */
@media screen and (min-width: 1040px) {
  #img-glif-kickstand {
    right: -71px; }

  #img-glif-port {
    right: 90px; }

  #img-glif-access {
    right: 16px; }

  #img-glif-adjust {
    left: -700px; }

  #img-glif-lever {
    left: 9px;
    top: -25px; } }
#glif .product-hero-callout {
  top: 180px; }
  @media screen and (min-width: 1500px) {
    #glif .product-hero-callout {
      top: 280px; } }

.product-whereitsmade-section {
  background-color: #87bfcc;
  padding-bottom: 20px; }
  .product-whereitsmade-section .map {
    display: none;
    width: 100%;
    margin: 0 auto; }
    .product-whereitsmade-section .map img {
      width: 100%;
      height: auto; }
  .product-whereitsmade-section .map-info {
    display: block;
    text-align: left;
    margin-top: 20px; }
    .product-whereitsmade-section .map-info h4 {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 2.14em;
      font-weight: 600;
      color: black;
      margin-bottom: 0; }
    .product-whereitsmade-section .map-info p {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.28em;
      font-weight: 400;
      color: #414042; }
    .product-whereitsmade-section .map-info .product-video-button {
      display: none; }
  @media screen and (min-width: 1040px) {
    .product-whereitsmade-section {
      padding-bottom: 55px; }
      .product-whereitsmade-section .videoWrapper {
        display: none; }
      .product-whereitsmade-section .map {
        float: left;
        width: 55%;
        display: block; }
      .product-whereitsmade-section .map-info {
        float: left;
        width: 40%;
        margin-left: 3%;
        margin-top: 50px; }
        .product-whereitsmade-section .map-info h4 {
          font-size: 3.8em; }
        .product-whereitsmade-section .map-info p {
          font-size: 1.71em;
          line-height: 1.3em;
          margin-bottom: 40px; }
        .product-whereitsmade-section .map-info .product-video-button {
          display: block; } }

/* detail img adjustments */
@media screen and (min-width: 1040px) {
  #img-canopy-light {
    left: 124px; }

  #img-canopy-material {
    left: -55px; }

  #img-canopy-devices {
    left: -42px; } }
.custom-program-header {
  margin-top: 3em; }

.custom-program-hero-cont {
  max-width: 800px;
  margin: auto; }
  .custom-program-hero-cont img {
    width: 100%; }

.custom-program-info {
  max-width: 600px;
  margin: auto; }
  .custom-program-info h2 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: #414042;
    font-size: 2.5em;
    margin-bottom: .25em;
    margin-top: 0em;
    line-height: 1.1em; }
  .custom-program-info .custom-program-desc {
    margin-bottom: 2em;
    font-weight: 400;
    font-size: 1.29em;
    line-height: 1.3em; }

@media screen and (min-width: 1040px) {
  .custom-program-header {
    margin-bottom: 2em; }

  .custom-program-hero-cont {
    margin-top: 0em; }

  .custom-program-info h2 {
    margin-top: .2em; } }
.stand-alone, .cta-button {
  min-width: 140px;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6em;
  line-height: 1.9em;
  font-weight: 800;
  font-style: italic; }

.cta-button {
  margin-top: 2em !important; }

.custom-prog-detail-section {
  position: relative; }

.custom-program-detail-section .custom-prgram-detail-title {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  color: #414042;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 3em;
  margin-bottom: 2em; }
  .custom-program-detail-section .custom-prgram-detail-title span {
    border-bottom: 2px #414042 solid;
    padding-bottom: .9em; }
  @media screen and (min-width: 1040px) {
    .custom-program-detail-section .custom-prgram-detail-title {
      font-size: 1.75em;
      margin-top: 4em;
      margin-bottom: 4em; } }
.custom-program-detail-section .detail-text-block .detail-text-block-title {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.14em;
  font-weight: 600;
  line-height: 1.1em;
  color: #000;
  text-align: center;
  margin-top: 3em;
  margin-bottom: .5em; }
.custom-program-detail-section .detail-text-block .detail-text-block-desc {
  max-width: 80%;
  margin: auto;
  margin-bottom: 2em;
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.3em; }
.custom-program-detail-section .cont-detail-item {
  margin-bottom: 4em; }
.custom-program-detail-section .detail-image-block img {
  width: 100%; }
@media screen and (min-width: 1040px) {
  .custom-program-detail-section .detail-text-block {
    width: 50%;
    float: left; }
    .custom-program-detail-section .detail-text-block.right {
      float: right; }
  .custom-program-detail-section .detail-image-block {
    width: 50%;
    float: right; } }

@media screen and (min-width: 1040px) {
  /* detail img shifts */
  #img-cosmo-wide {
    left: -60px; }

  #img-cosmo-tip {
    right: -400px; } }
#cosmonaut .product-hero-callout {
  left: inherit;
  max-width: inherit;
  float: right;
  right: 10%; }

@media screen and (min-width: 1040px) {
  #product-cosmo-firmtip .wrapper {
    min-height: 600px; }
  #product-cosmo-firmtip .detail-img-pos-container {
    height: 100%; } }

#product-cosmo-builttolast .wrapper {
  min-height: 500px; }
  #product-cosmo-builttolast .wrapper .detail-info-wrapper ol {
    margin-top: 20px;
    text-align: left; }
  #product-cosmo-builttolast .wrapper .detail-info-wrapper li {
    line-height: 1.3em;
    margin-bottom: 0.75em; }
    #product-cosmo-builttolast .wrapper .detail-info-wrapper li span {
      font-weight: 700; }
  #product-cosmo-builttolast .wrapper .detail-img-pos-container {
    height: auto;
    float: none;
    right: inherit;
    margin: auto; }
  #product-cosmo-builttolast .wrapper .annotation-container div {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    text-align: center;
    line-height: 1.7em;
    background-color: #ee5b28;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    position: absolute;
    color: white; }
  #product-cosmo-builttolast .wrapper .annotation-container #anno-1 {
    right: 9%;
    top: 22%; }
  #product-cosmo-builttolast .wrapper .annotation-container #anno-2 {
    right: 30%;
    top: 33%; }
  #product-cosmo-builttolast .wrapper .annotation-container #anno-3 {
    right: 40%;
    top: 16%; }
  #product-cosmo-builttolast .wrapper .annotation-container #anno-4 {
    right: 60%;
    top: 38%; }
  #product-cosmo-builttolast .wrapper .annotation-container #anno-5 {
    right: 89%;
    top: 34%; }
  #product-cosmo-builttolast .wrapper .detail-section-img {
    width: 100%;
    right: 0; }
@media screen and (min-width: 1040px) {
  #product-cosmo-builttolast .wrapper {
    height: auto; }
    #product-cosmo-builttolast .wrapper .detail-info-wrapper {
      margin: auto; }
    #product-cosmo-builttolast .wrapper .detail-img-pos-container {
      width: 700px;
      position: relative;
      left: 0; }
      #product-cosmo-builttolast .wrapper .detail-img-pos-container .detail-section-img {
        height: 268px;
        width: 700px;
        right: 0; } }

.product-mrrogers-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ee5b28;
  background-image: none; }
  .product-mrrogers-section .wrapper.topbar {
    display: none; }
  .product-mrrogers-section .product-video-button {
    display: none; }
  @media screen and (min-width: 700px) {
    .product-mrrogers-section {
      min-height: 500px;
      background-image: url(/cdn/shop/t/6/assets/product-cosmo-mrrogers_bk.jpg?v=172552597450688208971465855968); }
      .product-mrrogers-section .wrapper.topbar {
        display: block; }
      .product-mrrogers-section h2.lined {
        font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 5em;
        font-weight: 700;
        text-transform: capitalize;
        color: white;
        padding-top: 27px;
        overflow: hidden;
        padding-bottom: 10px;
        margin-bottom: 10px;
        text-align: left;
        margin-right: 60px;
        text-shadow: #525252 1px 1px 3px;
        line-height: 1em;
        max-width: 100%;
        padding-top: 8%;
        left: 80px;
        position: relative; }
        .product-mrrogers-section h2.lined span {
          display: block; }
        .product-mrrogers-section h2.lined span:before,
        .product-mrrogers-section h2.lined span:after {
          display: none; }
      .product-mrrogers-section .videoWrapper {
        display: none; }
      .product-mrrogers-section .product-video-button {
        display: block;
        left: 80px;
        position: relative; } }
  @media screen and (min-width: 700px) and (max-width: 1040px) {
    .product-mrrogers-section h2.lined {
      left: 0px; }
    .product-mrrogers-section .product-video-button {
      left: 0px; } }

#img-nik-split {
  right: -60%; }

@media screen and (min-width: 1040px) {
  /* detail img shifts */
  #img-nik-crush {
    left: -300px; }

  #img-nik-split {
    right: -1350px; }

  #neaticekit .product-detail-header h4 {
    font-size: 1.9em; }
  #neaticekit .product-detail-header .detail-header-desc {
    font-size: 1.2em; } }
@media screen and (min-width: 1040px) {
  /* detail img shifts */
  #img-docks-material {
    right: -93px; }

  #img-docks-wireless {
    right: 13px; }

  #img-docks-material-qi {
    left: -70px; } }
#frameographer-product-detail .detail-img-pos-container {
  top: -30px;
  margin-top: 0px; }
@media screen and (min-width: 1040px) {
  #frameographer-product-detail .detail-img-pos-container {
    top: 0px;
    margin-top: inherit; } }

#slowfast .section-product-hero .product-hero-item {
  display: block;
  min-height: 300px; }
  #slowfast .section-product-hero .product-hero-item .product-hero-callout {
    display: none; }
    @media screen and (min-width: 700px) {
      #slowfast .section-product-hero .product-hero-item .product-hero-callout {
        display: block; } }
#slowfast .product-detail-container {
  background-color: #414042; }
#slowfast .product-detail-section {
  color: white;
  /* 	page pulled over from old site */ }
  #slowfast .product-detail-section .grid-item {
    margin-bottom: 15px; }
  #slowfast .product-detail-section .desc {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 26px;
    text-align: left;
    max-width: 450px;
    margin-right: auto;
    margin-left: auto; }
    #slowfast .product-detail-section .desc ul {
      font-size: 18px;
      line-height: 23px;
      list-style-type: disc; }
      #slowfast .product-detail-section .desc ul li {
        margin-bottom: 8px;
        margin-left: 20px; }
  #slowfast .product-detail-section i {
    font-style: italic; }
  #slowfast .product-detail-section #phone_bk {
    width: 280px;
    height: 518px;
    background: url("/cdn/shop/t/6/assets/iPhone5s.png?v=18071073852089365221465855960") no-repeat;
    background-size: 280px 518px;
    margin: auto;
    position: relative; }
  #slowfast .product-detail-section #content_layer {
    position: absolute;
    left: 43px;
    top: 95px; }
  #slowfast .product-detail-section #video_bk {
    display: none;
    width: 280px;
    height: 518px;
    top: 0;
    left: 0;
    position: absolute; }
  #slowfast .product-detail-section #mobile_slideshow {
    display: block;
    top: 0;
    left: 0;
    /* position: absolute; */ }
  #slowfast .product-detail-section #slideshow_img {
    width: 196px;
    height: 346px; }
  #slowfast .product-detail-section #video_player {
    display: none;
    width: 196px;
    height: 346px;
    top: 0;
    left: 0;
    position: absolute; }
  #slowfast .product-detail-section #play-pause {
    position: absolute;
    left: 82px;
    top: 168px;
    background: url("/cdn/shop/t/6/assets/playpause_button.png?v=133376230496309321681465855965") no-repeat;
    width: 25px;
    height: 25px;
    background-size: 50px 25px;
    display: none; }
  #slowfast .product-detail-section #play-pause.pause {
    background-position: -25px 0px; }
  #slowfast .product-detail-section #interface_layer {
    position: absolute;
    left: 50px;
    top: 109px;
    width: 222px;
    height: 394px;
    display: none; }
  #slowfast .product-detail-section #interface_layer img {
    width: 100%;
    height: 100%; }
  #slowfast .product-detail-section .selector-cont {
    text-align: center;
    margin: auto;
    max-width: 280px; }
  #slowfast .product-detail-section .selector {
    display: inline-block;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    margin-left: 5px; }
  #slowfast .product-detail-section .selector li {
    cursor: pointer;
    float: left; }
  #slowfast .product-detail-section .selector_dot {
    width: 22px;
    height: 22px;
    background: url("/cdn/shop/t/6/assets/dot_2x.png?v=50977038819245102011465855942") no-repeat;
    background-size: 44px 22px; }
  #slowfast .product-detail-section .selector_dot.active {
    background-position: -22px 0px; }
  #slowfast .product-detail-section #caption {
    text-align: center;
    font-size: 16px;
    margin-top: 8px;
    line-height: 22px;
    font-style: italic; }
  @media screen and (min-width: 1040px) {
    #slowfast .product-detail-section .grid-item {
      margin-bottom: 35px; }
    #slowfast .product-detail-section .desc {
      margin-top: 120px; }
      #slowfast .product-detail-section .desc ul li {
        margin-left: 0px; }
    #slowfast .product-detail-section #phone_bk {
      width: 460px;
      height: 852px;
      background-size: 460px 852px;
      margin-right: 0; }
    #slowfast .product-detail-section #slideshow_img {
      width: 320px;
      height: 568px; }
    #slowfast .product-detail-section #video_player {
      display: block;
      width: 320px;
      height: 568px; }
    #slowfast .product-detail-section #video_bk {
      display: block; }
    #slowfast .product-detail-section #content_layer {
      left: 72px;
      top: 158px; }
    #slowfast .product-detail-section #mobile_slideshow {
      display: none; }
    #slowfast .product-detail-section #interface_layer {
      display: block;
      left: 72px;
      top: 158px;
      width: 320px;
      height: 568px; }
    #slowfast .product-detail-section #play-pause {
      display: block; }
    #slowfast .product-detail-section .footer_tagline {
      margin-top: 15px;
      height: 40px; }
    #slowfast .product-detail-section .selector-cont {
      max-width: 360px;
      margin-right: 50px; } }

#exhilarating .product-detail-container {
  background-color: #CCCBC5; }
#exhilarating .product-detail-section {
  padding: 10px inherit; }
  #exhilarating .product-detail-section .wrapper {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.5em;
    min-height: inherit;
    text-align: left; }
#exhilarating .product-quote-section {
  background-color: #f4f1ea; }
  #exhilarating .product-quote-section h2.lined {
    color: #414042; }
    #exhilarating .product-quote-section h2.lined span:before,
    #exhilarating .product-quote-section h2.lined span:after {
      border-bottom: 1px solid #414042;
      border-top: 1px solid #414042; }
  #exhilarating .product-quote-section .quote {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-weight: 600;
    padding-bottom: 30px;
    font-size: 1.6em;
    line-height: 1.1em; }
    #exhilarating .product-quote-section .quote span {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 0.6em; }
      #exhilarating .product-quote-section .quote span b {
        font-weight: 700; }
      #exhilarating .product-quote-section .quote span i {
        font-style: italic; }
@media screen and (min-width: 700px) {
  #exhilarating .product-detail-section .wrapper {
    font-size: 1.5em;
    padding: 20px 10%;
    line-height: 1.5em;
    height: auto; }
  #exhilarating .product-quote-section {
    background-color: #f4f1ea;
    padding-bottom: 60px; }
    #exhilarating .product-quote-section .quote {
      padding: 10px 60px;
      font-size: 1.6em;
      line-height: 1.1em; }
      #exhilarating .product-quote-section .quote span {
        font-size: 0.6em; }
    #exhilarating .product-quote-section .quote.large {
      font-size: 3em;
      padding: 60px 0px; } }

#wholesale .rte {
  font-size: 1.0em; }

.wholesaleItem .infoCont {
  float: left;
  margin-right: 20px; }
  .wholesaleItem .infoCont img {
    width: 180px; }
.wholesaleItem .tableCont {
  margin-top: 40px; }

.template-page h2.lined {
  color: #414042; }
  .template-page h2.lined span:before,
  .template-page h2.lined span:after {
    border-bottom: 1px solid #414042;
    border-top: 1px solid #414042; }
.template-page .page-general .page-header {
  max-width: 750px;
  margin: auto; }
.template-page .page-general .rte {
  text-align: left;
  max-width: 750px;
  margin: 0 auto 90px auto; }

#about-us .section-about-us-head, #about-us .section-mentorship-program-head, #mentorship-program .section-about-us-head, #mentorship-program .section-mentorship-program-head {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 250px; }
  #about-us .section-about-us-head .wrapper, #about-us .section-mentorship-program-head .wrapper, #mentorship-program .section-about-us-head .wrapper, #mentorship-program .section-mentorship-program-head .wrapper {
    position: relative;
    text-align: left;
    height: 100%; }
  #about-us .section-about-us-head .photo-credit, #about-us .section-mentorship-program-head .photo-credit, #mentorship-program .section-about-us-head .photo-credit, #mentorship-program .section-mentorship-program-head .photo-credit {
    color: white;
    opacity: 0.8;
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    position: absolute;
    bottom: 5px; }
    #about-us .section-about-us-head .photo-credit a, #about-us .section-mentorship-program-head .photo-credit a, #mentorship-program .section-about-us-head .photo-credit a, #mentorship-program .section-mentorship-program-head .photo-credit a {
      color: white; }
    #about-us .section-about-us-head .photo-credit a:hover, #about-us .section-mentorship-program-head .photo-credit a:hover, #mentorship-program .section-about-us-head .photo-credit a:hover, #mentorship-program .section-mentorship-program-head .photo-credit a:hover {
      text-decoration: underline; }
#about-us .section-about-us-head, #mentorship-program .section-about-us-head {
  background-image: url(/cdn/shop/t/6/assets/header_aboutus.jpg?v=147334837522881132221465855944); }
#about-us .section-mentorship-program-head, #mentorship-program .section-mentorship-program-head {
  background-image: url(/cdn/shop/t/6/assets/cosmo_protos.jpg?v=120680177180852229671592256585); }
#about-us .section-bio h2, #mentorship-program .section-bio h2 {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 2.57em;
  color: black;
  margin-top: 35px;
  margin-bottom: 32px; }
  #about-us .section-bio h2 span, #mentorship-program .section-bio h2 span {
    border-bottom: 2px solid black; }
#about-us .section-bio .bio-text, #mentorship-program .section-bio .bio-text {
  max-width: 750px;
  margin: 0 auto; }
  #about-us .section-bio .bio-text .email-link, #mentorship-program .section-bio .bio-text .email-link {
    font-weight: 600; }
    #about-us .section-bio .bio-text .email-link a, #mentorship-program .section-bio .bio-text .email-link a {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #ee5b28;
      font-size: 1.1em;
      font-weight: 800; }
#about-us .section-bio p, #mentorship-program .section-bio p {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.28em;
  color: #414042;
  text-align: left; }
  #about-us .section-bio p span, #mentorship-program .section-bio p span {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.28em;
    line-height: 1.3em; }
#about-us .section-team .metatdata-cont, #mentorship-program .section-team .metatdata-cont {
  text-align: left;
  max-width: 750px;
  margin: auto;
  margin-top: 40px; }
#about-us .section-team h2, #mentorship-program .section-team h2 {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 2.57em;
  color: black;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 32px; }
  #about-us .section-team h2 span, #mentorship-program .section-team h2 span {
    border-bottom: 2px solid black; }
#about-us .section-team .team-circle, #mentorship-program .section-team .team-circle {
  padding: 0;
  margin-bottom: 0; }
  #about-us .section-team .team-circle .team-headshot, #mentorship-program .section-team .team-circle .team-headshot {
    width: 140px;
    height: 140px;
    background-color: #fff;
    border-radius: 50%;
    margin: auto; }
    #about-us .section-team .team-circle .team-headshot img, #mentorship-program .section-team .team-circle .team-headshot img {
      border: solid;
      border-color: #d1d1d1;
      border-width: 4px;
      border-radius: 50%; }
  #about-us .section-team .team-circle .team-name, #about-us .section-team .team-circle .team-role, #mentorship-program .section-team .team-circle .team-name, #mentorship-program .section-team .team-circle .team-role {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.28em;
    color: #414042;
    text-align: center; }
  #about-us .section-team .team-circle .team-role, #mentorship-program .section-team .team-circle .team-role {
    font-style: italic; }
  #about-us .section-team .team-circle .team-name, #mentorship-program .section-team .team-circle .team-name {
    margin-top: 9px;
    font-weight: 700; }
#about-us .section-metadata .metatdata-cont, #mentorship-program .section-metadata .metatdata-cont {
  text-align: left;
  max-width: 750px;
  margin: auto;
  margin-top: 40px; }
  #about-us .section-metadata .metatdata-cont h2, #mentorship-program .section-metadata .metatdata-cont h2 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 2.57em;
    color: #464646;
    margin-bottom: 6px; }
  #about-us .section-metadata .metatdata-cont ul, #mentorship-program .section-metadata .metatdata-cont ul {
    list-style: disc; }
  #about-us .section-metadata .metatdata-cont li, #mentorship-program .section-metadata .metatdata-cont li {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2em; }
#about-us .main-content .grid-item, #mentorship-program .main-content .grid-item {
  margin-top: 20px;
  margin-bottom: 20px; }
#about-us .video-play-icon, #mentorship-program .video-play-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #414042;
  border-radius: 50%;
  margin: auto; }
  #about-us .video-play-icon div, #mentorship-program .video-play-icon div {
    border: 6px solid transparent;
    border-left: 8px solid #ee5b28;
    position: relative;
    top: 8px;
    left: 11px; }
  #about-us .video-play-icon:hover, #mentorship-program .video-play-icon:hover {
    background-color: #414042; }
#about-us .section-talks .talk-logo, #mentorship-program .section-talks .talk-logo {
  height: 80px;
  width: auto;
  margin-bottom: 8px; }
#about-us .section-talks .talk-title, #mentorship-program .section-talks .talk-title {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.71em;
  color: black;
  line-height: 1.3em;
  max-width: 300px;
  margin: auto;
  margin-bottom: 6px; }
#about-us .section-talks .talk-venue, #mentorship-program .section-talks .talk-venue {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.14em;
  color: #414042;
  text-transform: uppercase;
  line-height: 1.3em;
  max-width: 300px;
  margin: auto;
  margin-bottom: 6px; }
#about-us .section-podcasts a, #mentorship-program .section-podcasts a {
  text-decoration: none; }
#about-us .section-podcasts a:hover, #mentorship-program .section-podcasts a:hover {
  text-decoration: underline; }
#about-us .section-podcasts .pod-logo, #mentorship-program .section-podcasts .pod-logo {
  height: 50px;
  width: auto;
  margin-bottom: 0px; }
#about-us .section-podcasts .pod-title, #mentorship-program .section-podcasts .pod-title {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.42em;
  color: black;
  line-height: 1.3em;
  max-width: 300px;
  margin: auto;
  margin-bottom: 6px; }
  #about-us .section-podcasts .pod-title span, #mentorship-program .section-podcasts .pod-title span {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #b3b3b3; }
#about-us .section-press, #mentorship-program .section-press {
  margin-bottom: 80px; }
  #about-us .section-press a, #mentorship-program .section-press a {
    text-decoration: none; }
  #about-us .section-press a:hover, #mentorship-program .section-press a:hover {
    text-decoration: underline; }
  #about-us .section-press .press-logo, #mentorship-program .section-press .press-logo {
    height: 80px;
    width: auto;
    margin-bottom: 8px; }
  #about-us .section-press .press-title, #mentorship-program .section-press .press-title {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.42em;
    color: black;
    line-height: 1.3em;
    max-width: 300px;
    margin: auto;
    margin-bottom: 6px; }
@media screen and (min-width: 1040px) {
  #about-us .section-about-us-head, #about-us .section-mentorship-program-head, #mentorship-program .section-about-us-head, #mentorship-program .section-mentorship-program-head {
    height: 550px; }
  #about-us .section-bio h2, #mentorship-program .section-bio h2 {
    margin-top: 85px; }
  #about-us .section-podcasts .pod-logo, #mentorship-program .section-podcasts .pod-logo {
    height: 100px;
    width: auto;
    margin-bottom: 8px; }
  #about-us .main-content .grid-item, #mentorship-program .main-content .grid-item {
    margin-top: 40px;
    margin-bottom: 40px; } }
@media screen and (min-width: 1500px) {
  #about-us .section-about-us-head, #about-us .section-mentorship-program-head, #mentorship-program .section-about-us-head, #mentorship-program .section-mentorship-program-head {
    height: 650px; } }

.template-article .main-content, .template-blog .main-content {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.3em;
  color: #414042; }
  .template-article .main-content .page-header, .template-blog .main-content .page-header {
    margin-top: 30px; }
    .template-article .main-content .page-header .wrapper, .template-blog .main-content .page-header .wrapper {
      height: 100%; }
  .template-article .main-content .wrapper, .template-blog .main-content .wrapper {
    max-width: 880px;
    text-align: left; }
    .template-article .main-content .wrapper img, .template-blog .main-content .wrapper img {
      width: 100%; }
    .template-article .main-content .wrapper figure, .template-blog .main-content .wrapper figure {
      margin: 25px 0; }
    .template-article .main-content .wrapper figcaption, .template-blog .main-content .wrapper figcaption {
      margin: 10px 30px;
      font-style: italic;
      font-size: 0.9em;
      color: #59595b; }
    .template-article .main-content .wrapper a, .template-blog .main-content .wrapper a {
      color: #ee5b28; }
      .template-article .main-content .wrapper a:hover, .template-blog .main-content .wrapper a:hover {
        color: #87bfcc; }
  .template-article .main-content .vid-wrapper, .template-blog .main-content .vid-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; }
    .template-article .main-content .vid-wrapper iframe, .template-blog .main-content .vid-wrapper iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0; }
  .template-article .main-content .vid-wrapper.fourthirds, .template-blog .main-content .vid-wrapper.fourthirds {
    padding-bottom: 75%; }
  .template-article .main-content h1, .template-blog .main-content h1 {
    margin-bottom: 10px;
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1em; }
  .template-article .main-content h2, .template-blog .main-content h2 {
    font-size: 1.71em;
    font-weight: 700;
    padding-bottom: 30px;
    line-height: 1.1em; }
  .template-article .main-content h4, .template-blog .main-content h4 {
    text-transform: uppercase;
    color: black;
    font-weight: 800;
    font-size: 1em;
    margin-top: 20px; }
  .template-article .main-content .head-break, .template-blog .main-content .head-break {
    border-bottom: 2px solid black; }
  .template-article .main-content .user-avatar, .template-blog .main-content .user-avatar {
    width: 60px;
    height: 60px;
    border: 2px #ee5b28 solid;
    border-radius: 50%;
    float: left;
    margin: 30px 0; }
    .template-article .main-content .user-avatar .user-img, .template-blog .main-content .user-avatar .user-img {
      width: 50px;
      height: 50px;
      background-color: gray;
      border-radius: 50%;
      margin: 3px;
      background-size: 50px; }
  .template-article .main-content .byline, .template-blog .main-content .byline {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    float: left;
    margin-left: 13px;
    margin-top: 42px;
    line-height: 1.1em;
    font-weight: 700;
    color: #59595b; }
    .template-article .main-content .byline time, .template-blog .main-content .byline time {
      font-style: italic;
      font-size: .85em; }
.template-article .main-content .page-header.bk-img, .template-blog .main-content .page-header.bk-img {
  background-size: cover;
  background-position: center;
  height: 300px;
  margin-top: 0px; }
  .template-article .main-content .page-header.bk-img .wrapper, .template-blog .main-content .page-header.bk-img .wrapper {
    position: relative; }
    .template-article .main-content .page-header.bk-img .wrapper .wrap, .template-blog .main-content .page-header.bk-img .wrapper .wrap {
      position: absolute;
      bottom: 0; }
  .template-article .main-content .page-header.bk-img h1, .template-blog .main-content .page-header.bk-img h1 {
    color: white;
    font-size: 2.4em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.63); }
  .template-article .main-content .page-header.bk-img h2, .template-blog .main-content .page-header.bk-img h2 {
    color: white;
    font-size: 1.28em;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.63); }
  .template-article .main-content .page-header.bk-img .head-break, .template-blog .main-content .page-header.bk-img .head-break {
    border-bottom: none; }
  @media screen and (min-width: 1040px) {
    .template-article .main-content .page-header.bk-img, .template-blog .main-content .page-header.bk-img {
      height: 450px; }
      .template-article .main-content .page-header.bk-img h1, .template-blog .main-content .page-header.bk-img h1 {
        font-size: 2.9em; } }
  @media screen and (min-width: 1200px) {
    .template-article .main-content .page-header.bk-img, .template-blog .main-content .page-header.bk-img {
      height: 500px; }
      .template-article .main-content .page-header.bk-img h1, .template-blog .main-content .page-header.bk-img h1 {
        font-size: 2.9em; } }
.template-article .main-content hr, .template-blog .main-content hr {
  clear: both;
  border-top: solid #414042;
  border-width: 2px 0 0;
  margin: 30px 0; }
.template-article .main-content .post-nav, .template-blog .main-content .post-nav {
  margin-bottom: 60px; }
.template-article .main-content .post-arrow, .template-blog .main-content .post-arrow {
  margin-top: 20px; }
  .template-article .main-content .post-arrow .arrow_wrapper, .template-blog .main-content .post-arrow .arrow_wrapper {
    display: inline-block; }
    .template-article .main-content .post-arrow .arrow_wrapper img, .template-blog .main-content .post-arrow .arrow_wrapper img {
      width: 22px;
      height: 40px; }
  @media screen and (min-width: 1040px) {
    .template-article .main-content .post-arrow, .template-blog .main-content .post-arrow {
      max-width: 50%; } }
  .template-article .main-content .post-arrow .post-arrow-info, .template-blog .main-content .post-arrow .post-arrow-info {
    display: inline-block;
    float: none;
    margin: 0 12px;
    max-width: 85%; }
    .template-article .main-content .post-arrow .post-arrow-info .where, .template-blog .main-content .post-arrow .post-arrow-info .where {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 0.6em;
      font-weight: 600;
      text-transform: uppercase; }
    .template-article .main-content .post-arrow .post-arrow-info .title, .template-blog .main-content .post-arrow .post-arrow-info .title {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.0em;
      line-height: 1.1em;
      font-weight: 700; }
  .template-article .main-content .post-arrow.left, .template-blog .main-content .post-arrow.left {
    text-align: left; }
    .template-article .main-content .post-arrow.left img, .template-blog .main-content .post-arrow.left img {
      float: left; }
    .template-article .main-content .post-arrow.left .arrow_wrapper, .template-blog .main-content .post-arrow.left .arrow_wrapper {
      float: left; }
  .template-article .main-content .post-arrow.right, .template-blog .main-content .post-arrow.right {
    text-align: right; }
    .template-article .main-content .post-arrow.right img, .template-blog .main-content .post-arrow.right img {
      float: right; }
    .template-article .main-content .post-arrow.right .arrow_wrapper, .template-blog .main-content .post-arrow.right .arrow_wrapper {
      float: right; }

.template-blog .main-content .page-header {
  margin-bottom: 60px; }
.template-blog .main-content h1 {
  display: inline; }
.template-blog .main-content .subscribe {
  float: right;
  display: inline;
  text-align: right;
  margin-top: 34px;
  font-size: .8em; }
  .template-blog .main-content .subscribe a {
    text-decoration: none;
    color: #ee5b28; }
    .template-blog .main-content .subscribe a:hover {
      color: #87bfcc; }
.template-blog .main-content .wrapper h3 {
  font-weight: 700;
  font-size: 1.7em;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: .1em; }
  .template-blog .main-content .wrapper h3 a {
    color: black; }
.template-blog .main-content .blog-read-more {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  color: #ee5b28; }
  .template-blog .main-content .blog-read-more:hover {
    color: #87bfcc; }
.template-blog .main-content hr {
  border-width: 0;
  margin-bottom: 40px; }
.template-blog .main-content .head-break {
  margin-top: 10px; }

.template-article ul {
  list-style: disc none outside;
  padding-left: 20px; }
.template-article h3 {
  font-size: 1.4em;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: .2em;
  text-transform: uppercase;
  line-height: 1.4em;
  letter-spacing: .05em; }
.template-article p.thinImg {
  text-align: center; }
  .template-article p.thinImg img {
    width: 40% !important; }

.section-tool-guide-head {
  background-image: url(/cdn/shop/t/6/assets/tool-guide_Header_Img.jpg?v=56964362995494229881465856001);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .section-tool-guide-head #tool-title {
    margin-top: 9%;
    width: 100%;
    height: auto;
    margin-bottom: 7%; }
  @media screen and (min-width: 700px) {
    .section-tool-guide-head #tool-title {
      width: 70%; } }

.section-tool-guide-tools .guide-intro, .section-tool-guide-tools .guide-footer {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.35em;
  font-style: italic;
  color: black;
  margin: 30px 0px;
  line-height: 1.5em; }
  .section-tool-guide-tools .guide-intro b, .section-tool-guide-tools .guide-footer b {
    font-weight: bold; }
.section-tool-guide-tools .guide-footer {
  border-top: 1px solid #d7d7d7;
  padding: 40px 0;
  margin: 0; }
.section-tool-guide-tools h2 {
  /*
  		font-size: 1.75em;
  		text-transform: uppercase;
  		font-family: verlag;
  		font-weight: 700;
  */
  letter-spacing: .2em;
  margin: 120px 0 20px 0;
  line-height: 1.6em; }
  .section-tool-guide-tools h2.lined span:before, .section-tool-guide-tools h2.lined span:after {
    margin-top: .7em; }
.section-tool-guide-tools .guide-tool-cont {
  border-top: 1px solid #d7d7d7;
  margin-bottom: 30px;
  padding: 20px 0; }
  .section-tool-guide-tools .guide-tool-cont.noline {
    border-top: 1px solid black; }
  .section-tool-guide-tools .guide-tool-cont a {
    color: #ee5b28; }
  .section-tool-guide-tools .guide-tool-cont a:hover {
    color: black; }
  .section-tool-guide-tools .guide-tool-cont img {
    width: 200px;
    height: auto;
    margin-right: 20px; }
  .section-tool-guide-tools .guide-tool-cont .guide-tool-info h3 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 2em;
    color: black;
    text-transform: uppercase;
    margin-bottom: 0px; }
  .section-tool-guide-tools .guide-tool-cont .guide-tool-info h4 {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.42em;
    color: black;
    margin-bottom: 20px; }
    .section-tool-guide-tools .guide-tool-cont .guide-tool-info h4 a {
      text-decoration: none; }
  .section-tool-guide-tools .guide-tool-cont .guide-tool-info .guide-tool-desc {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.4em;
    color: black;
    line-height: 1.3em;
    text-align: left; }
@media screen and (min-width: 1040px) {
  .section-tool-guide-tools h2 {
    font-size: 2.0em;
    margin: 130px 0 80px 0;
    line-height: 1.0em;
    line-height: 1.6em; }
  .section-tool-guide-tools .guide-intro {
    font-size: 1.42em;
    margin: 60px; }
  .section-tool-guide-tools .guide-footer {
    padding: 80px 0 110px 0; }
  .section-tool-guide-tools .guide-tool-cont {
    text-align: left; }
    .section-tool-guide-tools .guide-tool-cont.noline {
      border-top: none; }
    .section-tool-guide-tools .guide-tool-cont img {
      width: 300px;
      float: left; }
    .section-tool-guide-tools .guide-tool-cont .guide-tool-info {
      margin-top: 40px; } }
@media screen and (min-width: 700px) {
  .section-tool-guide-tools .guide-tool-cont img {
    width: 300px; } }

#ssk-preorder .btn, #ssk-preorder .btn-secondary {
  background: url(/cdn/shop/t/6/assets/buy_button.png?v=54962463198335087791465855938) 0 2px no-repeat;
  width: 140px;
  height: 39px;
  background-size: 280px 34px;
  border-radius: 0;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4em;
  font-weight: 800;
  font-style: italic;
  padding: 0 0 0 5px;
  margin: 20px 0; }
#ssk-preorder .btn:hover, #ssk-preorder .btn-secondary:hover {
  background-position-x: -140px; }

#simplesyrupkit .header-point-cont {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%; }
#simplesyrupkit .product-video-button {
  float: right; }
#simplesyrupkit .product-hero-callout--title {
  font-size: 4.8em; }

#detail-ssk-measure {
  background-color: #4b4b4b; }

#detail-ssk-pour {
  background-color: #4f4f4f; }

#detail-ssk-date {
  background-color: #505050; }

@media screen and (min-width: 1040px) {
  #detail-ssk-date .detail-info-wrapper {
    width: 50%;
    margin-right: 0; }

  /* detail img shifts */
  #img-ssk-measure {
    left: 200px; }

  #img-ssk-pour {
    left: -400px; }

  #img-ssk-date {
    left: 650px; } }
#remote .product-hero-callout {
  left: inherit;
  max-width: inherit;
  float: right;
  right: 20%;
  max-width: 600px; }

@media screen and (max-width: 1040px) {
  #remote .ecomm-container h1 {
    font-size: 2em; } }
#atvs-texas-bk, #atvs-material-bk {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%; }

#atvs-texas-bk {
  background-image: url(/cdn/shop/t/6/assets/product-detail-atvs-madeinaustin.jpg?v=12657460658996401241465855969); }
  #atvs-texas-bk .wrapper {
    height: 535px; }
  #atvs-texas-bk .product-detail-bottom-gradient {
    height: 60px; }
  #atvs-texas-bk .detail-info-wrapper {
    height: 100%;
    padding-top: 5%;
    margin-left: auto; }
    @media screen and (min-width: 1040px) {
      #atvs-texas-bk .detail-info-wrapper {
        margin-left: 10%; } }
    #atvs-texas-bk .detail-info-wrapper .detail-section-title, #atvs-texas-bk .detail-info-wrapper .detail-section-subtitle, #atvs-texas-bk .detail-info-wrapper .detail-section-desc {
      color: white; }
    #atvs-texas-bk .detail-info-wrapper .detail-trans-overlay {
      background-color: rgba(0, 0, 0, 0.55);
      padding: 20px;
      padding-left: 30px;
      height: 90%; }
      #atvs-texas-bk .detail-info-wrapper .detail-trans-overlay .product-video-button {
        margin-top: 18px; }
        #atvs-texas-bk .detail-info-wrapper .detail-trans-overlay .product-video-button .video-play-icon {
          width: 40px;
          height: 40px;
          margin-right: 11px; }
          #atvs-texas-bk .detail-info-wrapper .detail-trans-overlay .product-video-button .video-play-icon div {
            top: 5px;
            left: 10px; }
        #atvs-texas-bk .detail-info-wrapper .detail-trans-overlay .product-video-button .video-button-title {
          font-size: 1.3em;
          margin-top: 5px; }

#atvs-material-bk {
  background-image: url(/cdn/shop/t/6/assets/product-detail-atvs-wood.jpg?v=36999986320211442011465855970); }
  #atvs-material-bk .detail-info-wrapper {
    margin-left: auto;
    width: 80%; }
    #atvs-material-bk .detail-info-wrapper .detail-section-title, #atvs-material-bk .detail-info-wrapper .detail-section-subtitle, #atvs-material-bk .detail-info-wrapper .detail-section-desc {
      color: white;
      text-align: center; }

#section-tray-fill {
  background-color: #353535; }
  #section-tray-fill .product-detail-header-point {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -15px; }
    @media screen and (min-width: 1040px) {
      #section-tray-fill .product-detail-header-point {
        margin-left: -26px; } }
  @media screen and (min-width: 1040px) {
    #section-tray-fill .detail-img-pos-container {
      left: 50%;
      margin-left: -58px; } }

#section-tray-prepare {
  background-color: #3C3C3C; }
  @media screen and (min-width: 1040px) {
    #section-tray-prepare .detail-img-pos-container {
      margin-right: -100px; } }

#section-tray-rim {
  background-color: #2D2D2D; }
  @media screen and (min-width: 1040px) {
    #section-tray-rim .detail-img-pos-container {
      margin-left: -53px; } }

.section-cocktail-head {
  background-image: url(/cdn/shop/t/6/assets/heroimg_cocktail_page.jpg?v=100915762395267856201465855953);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 240px; }
  .section-cocktail-head .cocktail-title {
    margin-top: 9%;
    width: 100%;
    height: auto;
    margin-bottom: 7%; }
  @media screen and (min-width: 700px) {
    .section-cocktail-head {
      height: 400px; }
      .section-cocktail-head .cocktail-title {
        width: 70%; } }
  @media screen and (min-width: 1040px) {
    .section-cocktail-head {
      height: 560px; } }
  @media screen and (min-width: 1500px) {
    .section-cocktail-head {
      height: 760px; } }

.section-cocktail-subtitle {
  background-color: #1C1C1C;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #87bfcc;
  min-height: 166px;
  padding-top: 39px; }
  .section-cocktail-subtitle h2 {
    padding: 22px 0;
    margin: auto;
    color: white;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 3.3em;
    line-height: .5em;
    margin-bottom: 23px; }
    .section-cocktail-subtitle h2 span {
      font-size: .3em;
      font-style: italic;
      font-weight: 400; }
    @media screen and (min-width: 700px) {
      .section-cocktail-subtitle h2 {
        font-size: 6em;
        margin-bottom: 26px; } }

.section-cocktail-main {
  background-color: #585858;
  padding-bottom: 30px; }
  .section-cocktail-main .product-detail-header-point {
    border-top-color: #1C1C1C; }
  .section-cocktail-main .cocktail-main-cont {
    padding: 30px 0 20px 0; }
    .section-cocktail-main .cocktail-main-cont .cocktail-main-hero {
      width: 100%;
      max-width: 400px;
      height: auto; }
    .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont {
      text-align: center;
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: white; }
      .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont a {
        text-decoration: none;
        color: white; }
        .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont a:hover {
          text-decoration: underline; }
        .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont a h4 {
          font-size: 2.4em;
          font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
          text-transform: uppercase;
          font-weight: 700;
          margin-bottom: 8px;
          margin-top: 0px; }
      .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont h5 {
        font-size: 1.6em;
        max-width: 250px;
        margin-right: auto;
        margin-left: auto;
        line-height: 1.1em;
        margin-bottom: 0; }
      .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont button {
        margin: 20px auto;
        font-weight: 800;
        font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-style: italic;
        font-size: 1.3em;
        border-radius: 6px; }
      .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont .cocktail-main-vid {
        width: 213px;
        height: 120px;
        background-color: black;
        margin: auto; }
    @media screen and (min-width: 1040px) {
      .section-cocktail-main .cocktail-main-cont {
        padding: 10px 0 15px 0; }
        .section-cocktail-main .cocktail-main-cont .cocktail-main-hero {
          width: 44%;
          float: left;
          margin-left: 8%; }
        .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont {
          width: 36%;
          float: left; }
          .section-cocktail-main .cocktail-main-cont .cocktail-main-info-cont a h4 {
            margin-top: 107px; } }
  .section-cocktail-main .cocktail-break {
    height: 1px;
    width: 100%;
    background-color: #666666;
    margin: auto;
    margin-top: 0px; }

.section-cocktail-main.r {
  /* 	background-color: #272727; */ }
  .section-cocktail-main.r .cocktail-main-cont {
    		/*
    @include at-query($min, $petit) {
    			.cocktail-main-hero{
    				float: right;
    			}
    			.cocktail-main-info-cont{
    				float: right;
    			}
    		}
    */ }

.section-cocktail-accessory-title {
  background-color: #585858;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 20px 0; }
  .section-cocktail-accessory-title h2.lined {
    color: white;
    font-size: 2em;
    margin: 0; }
    .section-cocktail-accessory-title h2.lined span:after, .section-cocktail-accessory-title h2.lined span:before {
      border-bottom: 1px solid white;
      border-top: 1px solid white; }

.section-cocktail-accessory {
  background-color: #585858;
  padding-top: 40px; }
  .section-cocktail-accessory .product-circle .product-subtitle {
    color: white; }
  .section-cocktail-accessory .product-circle .product-title a {
    color: white; }
  .section-cocktail-accessory .product-circle .product-break {
    border-top: 2px solid rgba(255, 255, 255, 0.2); }
  @media screen and (min-width: 1040px) {
    .section-cocktail-accessory .wrapper {
      padding: 0 120px; } }

.section-cocktail-tools {
  background-image: url(/cdn/shop/t/6/assets/tool-guide_Header_Img.jpg?v=56964362995494229881465856001);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer; }
  .section-cocktail-tools .cocktail-title {
    margin-top: 9%;
    width: 100%;
    height: auto;
    margin-bottom: 7%;
    cursor: pointer; }
  @media screen and (min-width: 700px) {
    .section-cocktail-tools .cocktail-title {
      width: 70%; } }

video::-webkit-media-controls-start-playback-button {
  display: none; }

.video-player {
  width: 100%;
  height: 100%;
  position: relative; }

video {
  width: 100%;
  height: 100%; }

.watchButtonContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 242px;
  height: 60px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%); }
  .watchButtonContainer a {
    text-decoration: none; }

.watchButton {
  width: 100%;
  height: 100%;
  padding: 5px;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 1.8em;
  font-weight: 800;
  background-color: rgba(0, 0, 0, 0.5);
  border: solid 4px white;
  color: white;
  text-decoration: none; }

.watchButton:hover {
  background-color: rgba(0, 0, 0, 0.75); }

#shipping-notice {
  background-color: #ee5b28;
  color: white;
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .9em;
  line-height: 1.1em;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding-top: 4px;
  padding-bottom: 5px; }

#shipping-header {
  display: none;
  background-color: white;
  color: #2C2C2C;
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .65em;
  font-weight: 700;
  text-transform: uppercase;
  height: 18px;
  width: 100%;
  text-align: center;
  padding-top: 2px;
  letter-spacing: 2px; }
  @media screen and (min-width: 700px) {
    #shipping-header {
      position: absolute;
      top: 0px;
      left: 0;
      z-index: 999;
      background-color: transparent; }
      #shipping-header .shipping-top-flag {
        max-width: 360px;
        float: right;
        right: -18px;
        position: relative; }
        #shipping-header .shipping-top-flag div {
          background-color: white;
          padding: 4px 7px 0 9px;
          height: 20px;
          display: inline-block; }
        #shipping-header .shipping-top-flag:after {
          content: "";
          display: inline-block;
          position: relative;
          border-bottom: 10px solid white;
          border-right: 10px solid transparent;
          border-top: 10px solid white;
          top: 6px; }
        #shipping-header .shipping-top-flag:before {
          content: "";
          display: inline-block;
          position: relative;
          border-bottom: 10px solid white;
          border-left: 10px solid transparent;
          border-top: 10px solid white;
          top: 6px; } }

#free-shipping-ecom {
  display: none;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4em;
  line-height: 1.1em;
  color: #ee5b28; }
  #free-shipping-ecom a, #free-shipping-ecom a:visited {
    color: #ee5b28; }
  @media screen and (min-width: 700px) {
    #free-shipping-ecom {
      font-size: 1.4em; } }

.gradient-pad {
  height: 50px;
  pointer-events: none; }

#limited #productPrice, #limited007 #productPrice, #limited006 #productPrice, #limited005 #productPrice, #limited004 #productPrice, #limited003 #productPrice, #limited002 #productPrice, #limited001 #productPrice {
  display: none; }

#limited-qty-remain {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4em;
  line-height: 1.1em;
  color: #59595b;
  margin-top: 1em; }
  #limited-qty-remain a, #limited-qty-remain a:visited {
    color: #59595b; }
  @media screen and (min-width: 700px) {
    #limited-qty-remain {
      font-size: 1.4em; } }
  #limited-qty-remain span {
    font-size: 3em;
    line-height: .9em;
    color: #ee5b28; }

#free-shipping-cart {
  display: none;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.1em;
  color: #ee5b28;
  text-align: center; }
  @media screen and (min-width: 700px) {
    #free-shipping-cart {
      font-size: 1.4em; } }

#shipping-header {
  display: block; }

#free-shipping-ecom {
  display: block; }

#free-shipping-cart {
  display: block; }

#atp .section-atp-coltails-head {
  background-color: #3e3e3e; }
  #atp .section-atp-coltails-head .wrapper {
    padding: 60px 0;
    padding-bottom: 40px; }
    #atp .section-atp-coltails-head .wrapper img {
      width: 80%;
      max-width: 650px;
      height: auto; }
    #atp .section-atp-coltails-head .wrapper h2 {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.6em;
      color: white;
      font-weight: 400;
      line-height: 1.0em;
      margin: 5px 15px; }
#atp .section-atp-drinkimages {
  background-color: #3e3e3e; }
  #atp .section-atp-drinkimages .wrapper {
    padding-bottom: 60px; }
    #atp .section-atp-drinkimages .wrapper .grid-item img {
      width: 100%;
      max-width: 400px;
      height: auto;
      margin-bottom: 30px; }
  #atp .section-atp-drinkimages .atp_highball p {
    font-size: 2em;
    color: white;
    max-width: 650px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 40px;
    line-height: 1.3em; }
  #atp .section-atp-drinkimages .atp_highball a {
    color: white;
    text-decoration: none; }
    #atp .section-atp-drinkimages .atp_highball a:hover {
      text-decoration: underline; }
  #atp .section-atp-drinkimages .atp_highball img {
    height: 166px;
    width: auto; }
#atp .drink-section {
  color: white;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 400px;
  padding-top: 40px;
  padding-bottom: 40px; }
  #atp .drink-section .title-container img {
    height: 180px;
    width: auto; }
  #atp .drink-section .title-container .drink-subtitle {
    font-weight: 500;
    font-style: italic;
    text-align: center;
    font-size: 1.2em;
    text-transform: uppercase;
    margin-bottom: 30px; }
  #atp .drink-section .ingred-cont {
    width: 250px;
    margin: auto;
    margin-bottom: 30px; }
  #atp .drink-section .drinkimg-img-container img {
    height: 300px;
    width: auto; }
  #atp .drink-section .directions-container {
    margin-top: 30px; }
  #atp .drink-section h3 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 4.2em;
    line-height: 0.9em;
    margin-bottom: 10px; }
  #atp .drink-section h4 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.6em; }
  #atp .drink-section ul {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1em;
    font-size: 1.3em; }
  #atp .drink-section .directions {
    padding: 0 15px; }
    #atp .drink-section .directions p {
      font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 400;
      text-align: left;
      font-size: 1.4em;
      line-height: 1.15em; }
#atp .product-detail-header h4 {
  font-size: 3.0em; }
#atp .tool-guide {
  padding-bottom: 40px;
  padding-top: 40px; }
  #atp .tool-guide h5 {
    letter-spacing: 0em;
    font-size: 1.4em;
    font-weight: 400;
    font-style: italic;
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: black;
    text-align: center;
    margin-bottom: 5px; }
  #atp .tool-guide h4 {
    text-transform: uppercase;
    font-size: 3em;
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: black;
    text-align: center;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0; }
  #atp .tool-guide img {
    height: 180px;
    width: auto; }
@media screen and (min-width: 1200px) {
  #atp .tool-guide {
    padding-top: 40px; } }
@media screen and (min-width: 700px) {
  #atp .section-atp-coltails-head .wrapper h2 {
    font-size: 2.0em;
    margin-top: 10px; }
  #atp .drinkimg-img-container img {
    height: 400px;
    width: auto;
    margin-top: 40px; }
  #atp .directions {
    margin-left: 20px; } }
#atp #the-liss {
  background-color: #72BD3C; }
#atp #the-siracusa {
  background-color: #54AECD; }
#atp #the-arment {
  background-color: #C0482A; }

#faq .rte h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 4px; }
#faq .rte p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.3em; }
#faq .rte a {
  color: #ee5b28; }

#glifaccessories .section-tool-guide-head-photo {
  margin-top: 25px; }
  #glifaccessories .section-tool-guide-head-photo img {
    width: 100%;
    height: auto; }
#glifaccessories .guide-intro {
  margin-top: 15px;
  font-size: 1.15em; }
@media screen and (min-width: 1040px) {
  #glifaccessories .section-tool-guide-head-photo {
    margin-top: 45px; }
  #glifaccessories .guide-intro {
    margin-top: 30px;
    font-size: 1.35em; }
    #glifaccessories .guide-intro br {
      display: none; }
  #glifaccessories .guide-tool-cont {
    padding-top: 35px; }
    #glifaccessories .guide-tool-cont .guide-circle.long {
      margin-bottom: 45px; }
    #glifaccessories .guide-tool-cont .guide-circle.xlong {
      margin-bottom: 95px; } }

#section-pano-panoramic {
  border-top: 1px solid #e2e2e2; }

#details-section-custom {
  margin-bottom: 90px; }

.app-wrapping-label {
  display: inline-block;
  margin-left: 10px; }

.section-gazette-head .wrapper {
  max-width: 540px;
  padding: 0 20px 0 20px;
  text-align: left; }
.section-gazette-head .title-cont {
  padding: 50px 0px 10px 0px; }
  .section-gazette-head .title-cont .title-the {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.6em;
    color: black;
    font-style: italic;
    font-weight: 300;
    margin-left: 6px; }
  .section-gazette-head .title-cont .title-sn {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.0em;
    color: black;
    font-style: normal;
    font-weight: 600;
    line-height: 0.75em; }
  .section-gazette-head .title-cont .title-gazette {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    color: black;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
.section-gazette-head .gazette-desc {
  color: black;
  font-size: 1.3em;
  line-height: 1.6em; }

#thankyou-popover {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 300px;
  line-height: 200px;
  height: 200px;
  margin-left: -150px;
  margin-top: -100px;
  background-color: white;
  text-align: center;
  color: black;
  z-index: 1000;
  /* keep on top of other elements on the page */
  outline: 9999px solid rgba(0, 0, 0, 0.75);
  padding: 20px; }
  #thankyou-popover .big {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 5em;
    font-style: italic;
    line-height: 1.5em; }
  #thankyou-popover .little {
    font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3em; }

.popover-active {
  display: block !important; }

@media screen and (min-width: 700px) {
  #thankyou-popover {
    width: 600px;
    height: 400px;
    margin-left: -300px;
    margin-top: -200px;
    padding: 80px; }
    #thankyou-popover .big {
      font-size: 8em;
      line-height: 1.5em; }
    #thankyou-popover .little {
      font-size: 1.3em;
      line-height: 1.3em; }

  #gazette .section-gazette-head #mc_embed_signup #mce-EMAIL {
    width: 65%; }
  #gazette .section-gazette-head #mc_embed_signup #mc-embedded-subscribe {
    width: inherit;
    margin-left: 10px; } }
.appstoreCart {
  display: none; }
  .appstoreCart.show {
    display: block; }
  .appstoreCart .appstoreCartIcon {
    background-image: url(/cdn/shop/t/6/assets/appstore-cart-icon.png?v=75904435306958145801484026124);
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    margin: auto;
    text-align: center;
    color: #f4f1ea;
    font-weight: 800;
    font-size: .6em;
    padding-top: 7px;
    padding-left: 3px;
    margin-top: 22px; }

.descSection {
  text-align: center;
  margin: 1.4em 8%;
  margin-top: 1.1em;
  font-size: 1.3em;
  line-height: 1.4em;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 600; }

a.product-row-link {
  text-decoration: none; }
  a.product-row-link:hover {
    text-decoration: underline; }

.product-row {
  width: 92%;
  height: 100%;
  position: relative;
  padding-top: 16%;
  background-size: cover;
  background-position: center;
  margin: auto; }

.product-row-titleblock {
  width: 92%;
  min-height: 60px;
  background-color: white;
  margin: auto;
  margin-bottom: 45px;
  text-align: center; }
  .product-row-titleblock h2 span, .product-row-titleblock h3 span {
    padding: 0 8px; }
  .product-row-titleblock h2 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 2.1em;
    margin-bottom: -2px;
    padding-top: 2px;
    color: #414042; }
  .product-row-titleblock h3 {
    font-size: .85em;
    margin-top: 0;
    font-weight: 600;
    padding-bottom: 8px;
    text-transform: uppercase;
    color: #999; }
    .product-row-titleblock h3 span {
      padding-bottom: 2px; }

.continue-shopping {
  display: none;
  margin-bottom: 100px; }
  .continue-shopping a {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #414042;
    font-size: 2em;
    font-style: italic;
    font-weight: 600; }

#followus .grid-item {
  text-align: center; }
#followus h2 {
  font-size: 4em;
  margin-bottom: 2px;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-top: 40px; }
#followus h3 {
  font-size: 2em;
  margin-bottom: 2px;
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800; }
#followus .follow-individual {
  margin: 40px auto 0 auto;
  max-width: 500px; }
#followus p {
  font-size: 1.2em;
  line-height: 1.4em; }
#followus .followIndivCont {
  text-align: center; }
  #followus .followIndivCont a {
    font-size: 1.5em;
    text-decoration: none; }
    #followus .followIndivCont a:hover {
      text-decoration: underline; }
  #followus .followIndivCont .follow-indv-cont {
    margin-top: 16px; }
    #followus .followIndivCont .follow-indv-cont img {
      max-height: 300px; }
#followus .follow-sq-cont {
  margin-top: 16px; }
  #followus .follow-sq-cont img {
    max-height: 300px; }
#followus .section-follow-us-head {
  background-image: url(/cdn/shop/t/6/assets/product-detail-atvs-madeinaustin.jpg?v=12657460658996401241465855969);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 250px; }
#followus .followItemCont {
  margin: 0 auto;
  padding: 0 10px;
  text-align: left;
  margin-bottom: 51px; }
@media screen and (min-width: 1040px) {
  #followus .section-follow-us-head {
    height: 350px; }
  #followus .followItemCont {
    max-width: 420px;
    padding: 0 20px; }
  #followus .follow-sq-cont img {
    max-height: 440px; } }
@media screen and (min-width: 1500px) {
  #followus .section-follow-us-head {
    height: 450px; }
  #followus .followItemCont {
    max-width: 500px; } }
#followus .section-follow-intro p {
  font-size: 1.4em;
  line-height: 1.4em;
  max-width: 700px;
  margin: 0 auto 32px auto; }
#followus #follow-us-bottom {
  height: 60px; }

#shipping-alert {
  background-color: #ee5b28;
  color: white;
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 5px 0;
  font-size: 1.2em; }

#custom .detail-info-wrapper {
  margin-left: 5%; }
#custom .detail-info-wrapper.rightSide {
  margin-right: 5%; }

#kit01 .wrapping-check-cont {
  margin-top: 2px;
  margin-bottom: 20px; }
#kit01 .pen-color-label, #kit01 .tag-label {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 1.3em;
  font-weight: 800;
  display: inline-block;
  margin-right: 12px; }
#kit01 .add-wrapping-label {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.3em; }
#kit01 .tag-field {
  max-width: 260px;
  margin: auto;
  margin-bottom: 12px; }
#kit01 .gift-wrap-tag-fields {
  margin-top: 30px; }
#kit01 .handwritten-label-cont {
  margin-bottom: 8px; }
#kit01 .product-carousel {
  margin-top: 100px; }

#section-kit-hero, #section-kit-wrapping {
  border-top: 1px solid #e2e2e2; }
  #section-kit-hero .wrapper, #section-kit-wrapping .wrapper {
    height: initial;
    min-height: initial;
    text-align: center; }
    #section-kit-hero .wrapper img, #section-kit-wrapping .wrapper img {
      width: 100%; }
    #section-kit-hero .wrapper h3, #section-kit-wrapping .wrapper h3 {
      font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 600;
      font-style: italic;
      font-size: 2.2em;
      position: relative;
      max-width: 300px;
      text-align: center;
      margin: auto;
      margin-top: 1em;
      margin-bottom: 1em; }
    #section-kit-hero .wrapper h3:before, #section-kit-wrapping .wrapper h3:before {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #414042;
      left: 0;
      top: 50%;
      position: absolute; }
    #section-kit-hero .wrapper h3:after, #section-kit-wrapping .wrapper h3:after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #414042;
      right: 0;
      top: 50%;
      position: absolute; }
    #section-kit-hero .wrapper .wrap-desc, #section-kit-wrapping .wrapper .wrap-desc {
      margin: auto;
      margin-top: 2em;
      margin-bottom: 4em;
      font-size: 1.3em;
      text-align: left; }
    @media screen and (min-width: 700px) {
      #section-kit-hero .wrapper img, #section-kit-wrapping .wrapper img {
        width: auto;
        max-height: 620px; }
      #section-kit-hero .wrapper h3, #section-kit-wrapping .wrapper h3 {
        font-size: 2.5em;
        max-width: 430px;
        margin-top: 2em; }
      #section-kit-hero .wrapper h3:before, #section-kit-wrapping .wrapper h3:before {
        width: 60px; }
      #section-kit-hero .wrapper h3:after, #section-kit-wrapping .wrapper h3:after {
        width: 60px; }
      #section-kit-hero .wrapper .wrap-desc, #section-kit-wrapping .wrapper .wrap-desc {
        max-width: 560px;
        margin-bottom: 6em; } }

#refcandy-candyjar {
  width: 96%;
  height: 400px;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  margin-bottom: 8em; }
  @media screen and (min-width: 700px) {
    #refcandy-candyjar {
      width: 600px; } }

.ref-how-cont {
  width: 100%;
  display: block;
  margin-bottom: 4em; }
  @media screen and (min-width: 700px) {
    .ref-how-cont {
      width: 33%;
      display: inline-block;
      margin-bottom: 0em; } }

.section-ref-note, .section-ref-works, .section-ref-header {
  position: relative; }

.section-ref-header {
  background: url(/cdn/shop/t/6/assets/Tools%20Background%20crop.jpg?v=121273879149923579381669403567) no-repeat center center #eeeeee;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 3em; }
  .section-ref-header h1 {
    font-family: "Bastia-Bold", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.2em;
    margin: auto;
    margin-top: 0em;
    margin-bottom: 1em;
    color: white; }
    @media screen and (min-width: 700px) {
      .section-ref-header h1 {
        font-size: 4em;
        margin-top: 0em;
        margin-bottom: 1.1em; } }

.section-ref-works h3 {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2em;
  font-weight: 800;
  text-align: center;
  font-style: italic;
  color: #414042;
  margin-top: 2em;
  margin-bottom: 2em; }
.section-ref-works .ref-how-steps {
  margin-bottom: 6em; }
.section-ref-works .ref-how-cont {
  padding-right: 40px;
  padding-left: 40px; }
  .section-ref-works .ref-how-cont img {
    width: 80px;
    height: 80px; }
  .section-ref-works .ref-how-cont h4 {
    font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    font-weight: 800;
    text-align: center;
    font-style: italic;
    margin-top: .7em;
    margin-bottom: .7em; }
  .section-ref-works .ref-how-cont p {
    font-size: 1.3em; }

.ref-letter-cont {
  max-width: 500px;
  margin: auto;
  margin-top: 5em;
  margin-bottom: 5em;
  padding: 30px;
  background-color: white;
  font-size: 1.0em;
  filter: drop-shadow(0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.1)); }
  .ref-letter-cont .ref-letter-body {
    text-align: left;
    line-height: 1.9em;
    margin-bottom: 2em; }
  .ref-letter-cont .ref-letter-from {
    max-width: 410px;
    text-align: right;
    margin: auto;
    padding-right: 40px; }
  @media screen and (min-width: 700px) {
    .ref-letter-cont {
      padding: 50px;
      font-size: 1.3em;
      margin-top: 6em;
      margin-bottom: 8em; } }

.star-container {
  height: 0px; }

.jdgm-prev-badge {
  font-size: 0.8em;
  padding-top: 10px;
  position: relative;
  top: -315px; }

@media screen and (min-width: 700px) {
  .jdgm-prev-badge {
    top: 0px; } }
.jdgm-rev__icon {
  display: none !important; }

.jdgm-prev-badge__text {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
  padding-left: 5px; }

.section-product-reviews .jdgm-rev-widg {
  padding: 0; }
.section-product-reviews .jdgm-form-wrapper {
  text-align: left; }
.section-product-reviews .jdgm-form__title, .section-product-reviews h2.jdgm-rev-widg__title {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-align: center;
  font-weight: 600;
  letter-spacing: .05em;
  text-decoration-thickness: 2.2px;
  margin-top: 20px;
  margin-bottom: 44px !important; }
.section-product-reviews .jdgm-rev__title {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 800;
  line-height: 1.1em;
  color: #000; }
.section-product-reviews .jdgm-rev__body {
  font-family: "Verlag A", "Verlag B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.3em;
  line-height: 1.1em; }
.section-product-reviews .wrapper {
  text-align: left;
  margin-bottom: 24px; }
.section-product-reviews .jdgm-write-rev-link {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 1.3em;
  border-radius: 6px !important; }
.section-product-reviews .jdgm-btn {
  font-family: "Archer A", "Archer B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 1.3em;
  border-radius: 6px !important; }
.section-product-reviews .jdgm-rev__buyer-badge {
  border-radius: 3px; }

.demo-image {
  background: url("//cdn.shopify.com/s/files/1/0383/9765/t/1/assets/blankslate-producticon.png?4") no-repeat center center #eeeeee;
  display: block;
  text-align: center;
  padding: 100px 0;
  color: #aaa;
  font-size: 0.875em;
  text-decoration: none; }
