/*============================================================================
  Shopify Timber v2.1.0
  Copyright 2015 Shopify Inc.
  Author Carson Shold @cshold
  Built with Sass - http://sass-lang.com/

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

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Site Footer
  #Email Popup
  #Cookies Popup
  #Page Container
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Subnav
  #Product Page
  #Home Page
  #Blog Article
  #Features
  #Speaking Page
  #About Page
  #Contact Page
  #Book Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
  #Top Bar
  #Book Promo Banner

==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'DomaineDisplayWeb';
  src: url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/DomaineDisplayWeb-Bold.eot?v=11000530789120379001");
  src: url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/DomaineDisplayWeb-Bold.eot?v=11000530789120379001#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/DomaineDisplayWeb-Bold.woff?v=8068825569662404766") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/icons.eot?v=16890949409939918739");
  src: url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/icons.eot?v=16890949409939918739#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/icons.woff?v=8429045935635525503") format("woff"), url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/icons.ttf?v=11757329140437735797") format("truetype"), url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/icons.svg?v=18410227389540156247#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix, .speaking-page, .about-page {
  *zoom: 1; }
  .clearfix:after, .speaking-page:after, .about-page:after {
    content: '';
    display: table;
    clear: both; }

/*============================================================================
  Dependency-free breakpoint mixin
    - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

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

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

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

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

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

/* Manual grid__item clearfix */
.grid__item.clear, .speaking-page .clear.workshop, .speaking-page .story .clear.h, .speaking-page .story .clear.details, .speaking-page .story img.clear, .speaking-page .bios > .clear.h, .speaking-page .bios .clear.positions, .speaking-page .bios .clear.bio, .speaking-page .press .clear.h, .speaking-page .speaking .clear.h, .speaking-page .press p.clear, .speaking-page .speaking p.clear, .speaking-page .press ul.clear, .speaking-page .speaking ul.clear, .about-page .story .clear.h, .about-page .story .clear.details, .about-page .story img.clear, .about-page .bios > .clear.h, .about-page .bios .clear.positions, .about-page .bios .clear.bio, .about-page .press .clear.h, .about-page .speaking .clear.h, .about-page .press p.clear, .about-page .speaking p.clear, .about-page .press ul.clear, .about-page .speaking ul.clear {
  clear: both; }

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

.grid__item, .speaking-page .workshop, .speaking-page .story .h, .speaking-page .story .details, .speaking-page .story img, .speaking-page .bios > .h, .speaking-page .bios .positions, .speaking-page .bios .bio, .speaking-page .press .h, .speaking-page .speaking .h, .speaking-page .press p, .speaking-page .speaking p, .speaking-page .press ul, .speaking-page .speaking ul, .about-page .story .h, .about-page .story .details, .about-page .story img, .about-page .bios > .h, .about-page .bios .positions, .about-page .bios .bio, .about-page .press .h, .about-page .speaking .h, .about-page .press p, .about-page .speaking p, .about-page .press ul, .about-page .speaking ul {
  float: left;
  min-height: 1px;
  padding-left: 20px;
  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, .speaking-page .grid--rev > .workshop, .speaking-page .story .grid--rev > .h, .speaking-page .story .grid--rev > .details, .speaking-page .story .grid--rev > img, .speaking-page .bios.grid--rev > .h, .speaking-page .bios .grid--rev > .positions, .speaking-page .bios .grid--rev > .bio, .speaking-page .press .grid--rev > .h, .speaking-page .speaking .grid--rev > .h, .speaking-page .press .grid--rev > p, .speaking-page .speaking .grid--rev > p, .speaking-page .press .grid--rev > ul, .speaking-page .speaking .grid--rev > ul, .about-page .story .grid--rev > .h, .about-page .story .grid--rev > .details, .about-page .story .grid--rev > img, .about-page .bios.grid--rev > .h, .about-page .bios .grid--rev > .positions, .about-page .bios .grid--rev > .bio, .about-page .press .grid--rev > .h, .about-page .speaking .grid--rev > .h, .about-page .press .grid--rev > p, .about-page .speaking .grid--rev > p, .about-page .press .grid--rev > ul, .about-page .speaking .grid--rev > ul {
    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, .speaking-page .grid--full > .workshop, .speaking-page .story .grid--full > .h, .speaking-page .story .grid--full > .details, .speaking-page .story .grid--full > img, .speaking-page .bios.grid--full > .h, .speaking-page .bios .grid--full > .positions, .speaking-page .bios .grid--full > .bio, .speaking-page .press .grid--full > .h, .speaking-page .speaking .grid--full > .h, .speaking-page .press .grid--full > p, .speaking-page .speaking .grid--full > p, .speaking-page .press .grid--full > ul, .speaking-page .speaking .grid--full > ul, .about-page .story .grid--full > .h, .about-page .story .grid--full > .details, .about-page .story .grid--full > img, .about-page .bios.grid--full > .h, .about-page .bios .grid--full > .positions, .about-page .bios .grid--full > .bio, .about-page .press .grid--full > .h, .about-page .speaking .grid--full > .h, .about-page .press .grid--full > p, .about-page .speaking .grid--full > p, .about-page .press .grid--full > ul, .about-page .speaking .grid--full > ul {
    padding-left: 0; }

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .large--one-half, .speaking-page .story .h, .speaking-page .story .details, .speaking-page .bios .positions, .speaking-page .bios .bio, .about-page .story .h, .about-page .story .details, .about-page .bios .positions {
    width: 50%; }

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

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

  /* Quarters */
  .large--one-quarter, .about-page .bios .bio {
    width: 25%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .grid-uniform .large--one-half:nth-child(2n+1), .grid-uniform .speaking-page .story .h:nth-child(2n+1), .speaking-page .story .grid-uniform .h:nth-child(2n+1), .grid-uniform .speaking-page .story .details:nth-child(2n+1), .speaking-page .story .grid-uniform .details:nth-child(2n+1), .grid-uniform .speaking-page .bios .positions:nth-child(2n+1), .speaking-page .bios .grid-uniform .positions:nth-child(2n+1), .grid-uniform .speaking-page .bios .bio:nth-child(2n+1), .speaking-page .bios .grid-uniform .bio:nth-child(2n+1), .grid-uniform .about-page .story .h:nth-child(2n+1), .about-page .story .grid-uniform .h:nth-child(2n+1), .grid-uniform .about-page .story .details:nth-child(2n+1), .about-page .story .grid-uniform .details:nth-child(2n+1), .grid-uniform .about-page .bios .positions:nth-child(2n+1), .about-page .bios .grid-uniform .positions:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .about-page .bios .bio:nth-child(4n+1),
  .about-page .bios .grid-uniform .bio:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html {
  background-color: #222222; }

body {
  background-color: white; }

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

.wrapper, .blog-article .media-wrapper, .contact-page > section {
  *zoom: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; }
  .wrapper:after, .blog-article .media-wrapper:after, .contact-page > section:after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block;
  margin-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 0; }

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

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

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

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

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.expanded-image {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto; }
  .expanded-image img {
    display: block;
    width: 100%;
    height: auto; }

.expanded-image-pair {
  *zoom: 1;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto; }
  .expanded-image-pair:after {
    content: '';
    display: table;
    clear: both; }
  .expanded-image-pair img {
    display: block;
    float: left;
    width: 50%;
    height: auto; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.35;
  font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.4; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

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

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

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

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

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

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

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  line-height: 1.3;
  margin: 0;
  padding: 0; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 20px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 20px;
  margin: 0 0 40px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #e5e5e5;
  border-width: 1px 0 0;
  margin: 40px 0;
  height: 0; }
  hr.hr--small {
    margin: 20px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

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

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

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

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

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

.section-header__right .form-horizontal,
.section-header__right .collection-view {
  display: inline-block;
  vertical-align: middle; }
@media screen and (min-width: 481px) {
  .section-header__right label + select,
  .section-header__right .collection-view {
    margin-left: 20px; } }

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

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

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

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

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

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

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

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary,
#shappify_bundle#shappify_bundle .bundle-total button {
  display: inline-block;
  padding: 5px 14px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /*================ Set primary button colors - can override later ================*/
  background-color: #f92517;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  #shappify_bundle#shappify_bundle .bundle-total button:hover {
    background-color: #d71306;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  #shappify_bundle#shappify_bundle .bundle-total button:active,
  #shappify_bundle#shappify_bundle .bundle-total button:focus {
    background-color: #a60e04;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  #shappify_bundle#shappify_bundle .bundle-total button[disabled],
  #shappify_bundle#shappify_bundle .bundle-total button.disabled {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #bbbbbb; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #a2a2a2;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #888888;
    color: white; }

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

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

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

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

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

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

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

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

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

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

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

img.auto,
.grid__item img,
.speaking-page .workshop img,
.speaking-page .story .h img,
.speaking-page .story .details img,
.speaking-page .story img img,
.speaking-page .bios > .h img,
.speaking-page .bios .positions img,
.speaking-page .bios .bio img,
.speaking-page .press .h img,
.speaking-page .speaking .h img,
.speaking-page .press p img,
.speaking-page .speaking p img,
.speaking-page .press ul img,
.speaking-page .speaking ul img,
.about-page .story .h img,
.about-page .story .details img,
.about-page .story img img,
.about-page .bios > .h img,
.about-page .bios .positions img,
.about-page .bios .bio img,
.about-page .press .h img,
.about-page .speaking .h img,
.about-page .press p img,
.about-page .speaking p img,
.about-page .press ul img,
.about-page .speaking ul img,
.grid__item iframe,
.speaking-page .workshop iframe,
.speaking-page .story .h iframe,
.speaking-page .story .details iframe,
.speaking-page .story img iframe,
.speaking-page .bios > .h iframe,
.speaking-page .bios .positions iframe,
.speaking-page .bios .bio iframe,
.speaking-page .press .h iframe,
.speaking-page .speaking .h iframe,
.speaking-page .press p iframe,
.speaking-page .speaking p iframe,
.speaking-page .press ul iframe,
.speaking-page .speaking ul iframe,
.about-page .story .h iframe,
.about-page .story .details iframe,
.about-page .story img iframe,
.about-page .bios > .h iframe,
.about-page .bios .positions iframe,
.about-page .bios .bio iframe,
.about-page .press .h iframe,
.about-page .speaking .h iframe,
.about-page .press p iframe,
.about-page .speaking p iframe,
.about-page .press ul iframe,
.about-page .speaking ul iframe {
  max-width: 100%; }

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

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

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

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

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

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

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

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

fieldset {
  border: 1px solid #e5e5e5;
  padding: 20px; }

legend {
  border: 0;
  padding: 0; }

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

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

textarea {
  min-height: 100px; }

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

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

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

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

select {
  -webkit-border-radius: 0.3em;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0.3em;
  -moz-background-clip: padding;
  border-radius: 0.3em;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/ico-select.svg?v=13906435742707990163");
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-color: #fafafa;
  background-size: 0.8em;
  padding: 0.6em 1.6em 0.6em 0.6em;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  color: #676767;
  font-weight: bold;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

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

label[for] {
  cursor: pointer; }

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

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

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group input[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: 0 0 0 0; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary {
    border-radius: 0 0 0 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

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

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

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

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

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

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.supports.fontface .icon-fallback-text .fallback-text {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.icon:before {
  display: none; }

.supports.fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-linkedin:before {
  content: "\e609"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-icons li {
  margin: 0 20px 20px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 30px;
    line-height: 26px; }
  .social-icons li a {
    color: #bbbbbb; }
    .social-icons li a:hover {
      color: #a2a2a2; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em; }

/*================ Custom Pagination ================*/
.bottom-pagination {
  margin-bottom: -15px; }

.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 0;
  font-size: 1.78571em; }
  @media screen and (min-width: 769px) {
    .pagination-custom {
      font-size: 1.28571em; } }

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

.pagination-custom > li > a,
.pagination-custom > li > span {
  position: relative;
  float: left;
  padding: 0 6px;
  margin-left: -1px;
  line-height: 1.42;
  text-decoration: none;
  color: #333333; }

.pagination-custom > li:first-child > a,
.pagination-custom > li:first-child > span {
  margin-left: 0;
  margin-right: 10px; }

.pagination-custom > li:last-child > a,
.pagination-custom > li:last-child > span {
  margin-left: 10px; }

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

.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 {
  cursor: default;
  color: #f92517; }

.pagination-custom > .disabled > a,
.pagination-custom > .disabled > span,
.pagination-custom > .disabled > a:hover,
.pagination-custom > .disabled > span:hover,
.pagination-custom > .disabled > a:focus,
.pagination-custom > .disabled > span:focus {
  color: #C3C3C3;
  cursor: default; }

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

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

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

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

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

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

/*============================================================================
  #back to top
==============================================================================*/
@-webkit-keyframes bttanimation {
  0% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  37% {
    background-position: 0 1px;
    animation-timing-function: ease-out; }

  55% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  73% {
    background-position: 0 6px;
    animation-timing-function: ease-out; }

  82% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  91% {
    background-position: 0 8px;
    animation-timing-function: ease-out; }

  96% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  100% {
    background-position: 0 10px; } }

@-moz-keyframes bttanimation {
  0% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  37% {
    background-position: 0 1px;
    animation-timing-function: ease-out; }

  55% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  73% {
    background-position: 0 6px;
    animation-timing-function: ease-out; }

  82% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  91% {
    background-position: 0 8px;
    animation-timing-function: ease-out; }

  96% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  100% {
    background-position: 0 10px; } }

@-o-keyframes bttanimation {
  0% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  37% {
    background-position: 0 1px;
    animation-timing-function: ease-out; }

  55% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  73% {
    background-position: 0 6px;
    animation-timing-function: ease-out; }

  82% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  91% {
    background-position: 0 8px;
    animation-timing-function: ease-out; }

  96% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  100% {
    background-position: 0 10px; } }

@keyframes bttanimation {
  0% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  37% {
    background-position: 0 1px;
    animation-timing-function: ease-out; }

  55% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  73% {
    background-position: 0 6px;
    animation-timing-function: ease-out; }

  82% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  91% {
    background-position: 0 8px;
    animation-timing-function: ease-out; }

  96% {
    background-position: 0 10px;
    animation-timing-function: ease-in; }

  100% {
    background-position: 0 10px; } }

.back-to-top {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 10px;
  box-sizing: content-box;
  padding-top: 10px;
  padding-bottom: 15px;
  text-indent: 30px;
  line-height: 30px;
  vertical-align: bottom;
  background: transparent url(" //cdn.shopify.com/s/files/1/0201/8578/t/10/assets/back-to-top.png?v=2745856757286413865 ") no-repeat 0 10px; }
  .back-to-top:hover {
    -webkit-animation: bttanimation 750ms;
    -moz-animation: bttanimation 750ms;
    -o-animation: bttanimation 750ms;
    -ms-animation: bttanimation 750ms;
    animation: bttanimation 750ms; }
  .back-to-top:focus, .back-to-top:active {
    outline: none; }

.template-list-collections .back-to-top-container,
.template-collection .back-to-top-container,
.template-product .back-to-top-container,
.template-article .back-to-top-container {
  max-width: 1100px;
  position: relative;
  margin: 0 auto; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  background: rgba(255, 255, 255, 0.975);
  border-bottom: 1px solid #dedede;
  border-top: 0px solid #212121;
  height: 107px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out; }
  .site-header.slide-up {
    -webkit-transform: translateY(-107px);
    -moz-transform: translateY(-107px);
    -ms-transform: translateY(-107px);
    -o-transform: translateY(-107px);
    transform: translateY(-107px); }
    @media screen and (max-width: 768px) {
      .site-header.slide-up {
        -webkit-transform: translateY(-90px);
        -moz-transform: translateY(-90px);
        -ms-transform: translateY(-90px);
        -o-transform: translateY(-90px);
        transform: translateY(-90px); } }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item, .site-header .speaking-page .grid--table > .workshop, .speaking-page .site-header .grid--table > .workshop, .site-header .speaking-page .story .grid--table > .h, .speaking-page .story .site-header .grid--table > .h, .site-header .speaking-page .story .grid--table > .details, .speaking-page .story .site-header .grid--table > .details, .site-header .speaking-page .story .grid--table > img, .speaking-page .story .site-header .grid--table > img, .site-header .speaking-page .bios.grid--table > .h, .speaking-page .site-header .bios.grid--table > .h, .site-header .speaking-page .bios .grid--table > .positions, .speaking-page .bios .site-header .grid--table > .positions, .site-header .speaking-page .bios .grid--table > .bio, .speaking-page .bios .site-header .grid--table > .bio, .site-header .speaking-page .press .grid--table > .h, .speaking-page .press .site-header .grid--table > .h, .site-header .speaking-page .speaking .grid--table > .h, .speaking-page .speaking .site-header .grid--table > .h, .site-header .speaking-page .press .grid--table > p, .speaking-page .press .site-header .grid--table > p, .site-header .speaking-page .speaking .grid--table > p, .speaking-page .speaking .site-header .grid--table > p, .site-header .speaking-page .press .grid--table > ul, .speaking-page .press .site-header .grid--table > ul, .site-header .speaking-page .speaking .grid--table > ul, .speaking-page .speaking .site-header .grid--table > ul, .site-header .about-page .story .grid--table > .h, .about-page .story .site-header .grid--table > .h, .site-header .about-page .story .grid--table > .details, .about-page .story .site-header .grid--table > .details, .site-header .about-page .story .grid--table > img, .about-page .story .site-header .grid--table > img, .site-header .about-page .bios.grid--table > .h, .about-page .site-header .bios.grid--table > .h, .site-header .about-page .bios .grid--table > .positions, .about-page .bios .site-header .grid--table > .positions, .site-header .about-page .bios .grid--table > .bio, .about-page .bios .site-header .grid--table > .bio, .site-header .about-page .press .grid--table > .h, .about-page .press .site-header .grid--table > .h, .site-header .about-page .speaking .grid--table > .h, .about-page .speaking .site-header .grid--table > .h, .site-header .about-page .press .grid--table > p, .about-page .press .site-header .grid--table > p, .site-header .about-page .speaking .grid--table > p, .about-page .speaking .site-header .grid--table > p, .site-header .about-page .press .grid--table > ul, .about-page .press .site-header .grid--table > ul, .site-header .about-page .speaking .grid--table > ul, .about-page .speaking .site-header .grid--table > ul {
      float: none;
      display: table-cell;
      vertical-align: middle; }
  .site-header .site-header__logo {
    text-align: center;
    margin: 0 auto;
    max-width: 100%; }
    .site-header .site-header__logo a {
      line-height: 106px; }
    .site-header .site-header__logo a,
    .site-header .site-header__logo a:hover,
    .site-header .site-header__logo a:focus,
    .site-header .site-header__logo a:active {
      text-decoration: none;
      outline: none; }
    .site-header .site-header__logo a, .site-header .site-header__logo img {
      display: inline-block; }
    .site-header .site-header__logo img {
      margin: -7px auto 0;
      vertical-align: middle; }
  @media screen and (max-width: 768px) {
    .site-header {
      height: 90px; }
      .site-header .site-header__logo a {
        line-height: 89px; }
      .site-header .site-header__logo img {
        width: 50px;
        height: 50px; } }

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

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

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

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

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  background-color: rgba(255, 255, 255, 0); }

.site-nav {
  font-size: 1.14286em;
  cursor: default;
  margin: 0 0 0 -20px;
  text-align: right; }
  .site-nav li {
    margin: 0;
    display: block; }
  .site-nav > li {
    position: relative;
    display: inline-block; }

.site-nav__link {
  display: inline-block;
  text-decoration: none;
  padding-top: 10px;
  margin: 0 8.51064px;
  white-space: nowrap;
  color: #333333;
  font-size: 1.02em;
  font-weight: 700; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #f92517; }
  li:last-child .site-nav__link {
    margin-right: 0; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 10px; }
  .site-nav--active > .site-nav__link {
    font-weight: bold;
    color: #f92517; }

.site-nav__link.account-link {
  color: #c3c3c3; }
  .site-nav__link.account-link:hover {
    color: #f92517; }
  .site-nav__link.account-link .account-link-txt {
    border-bottom: 1px solid #f1f1f1; }

.site-nav--mobile .site-nav__link {
  display: inline-block;
  color: #ddd;
  text-transform: uppercase;
  padding: 0;
  font-size: 1.57143em;
  margin: 0; }
.site-nav--mobile .icon-hamburger {
  font-size: 21px;
  vertical-align: middle; }
.site-nav--mobile .cart-txt {
  border-bottom: 1px solid #f1f1f1; }
.site-nav--mobile .cart-qty {
  display: inline-block;
  color: #fff;
  background-color: #ddd;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  text-align: center;
  line-height: 2em; }

@media screen and (min-width: 769px) {
  #mainNavMobile {
    display: none; } }
@media screen and (max-width: 768px) {
  html.main-nav-open,
  body.main-nav-open {
    overflow: hidden; }

  body.main-nav-open {
    position: relative; }

  .main-nav {
    display: block !important;
    position: fixed;
    left: -100%;
    top: -200%;
    width: 100%;
    height: 200%;
    opacity: 0;
    z-index: 1000;
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out; }

  .main-nav--show-mobile {
    opacity: 1;
    left: 0;
    top: 0;
    background: rgba(34, 34, 34, 0.98); }
    .main-nav--show-mobile .close {
      display: block;
      position: absolute;
      left: 20px;
      top: 31px;
      z-index: 1;
      font-size: 28px; }
      .main-nav--show-mobile .close .fallback-text {
        clip: rect(0, 0, 0, 0);
        overflow: hidden;
        position: absolute;
        height: 1px;
        width: 1px; }
    .main-nav--show-mobile .site-nav {
      padding-top: 22px; }
    .main-nav--show-mobile .site-nav > li {
      display: block;
      text-align: center; }
    .main-nav--show-mobile .site-nav__link {
      display: inline-block;
      color: #fff;
      font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 3.714em;
      font-weight: bold;
      text-align: center;
      padding: 0;
      text-transform: none; }
      .main-nav--show-mobile .site-nav__link.account-link {
        color: #999; }
        .main-nav--show-mobile .site-nav__link.account-link .account-link-txt {
          border-bottom: none; } }
/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 5; }
  .supports.no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
    background-color: rgba(255, 255, 255, 0); }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      background-color: rgba(230, 230, 230, 0); }

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

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

.mobile-nav__search {
  padding: 20px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }

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

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #333333;
  padding: 20px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #0d0d0d; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: #e9e9e9; }

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

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

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

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

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

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

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: #222222;
  padding: 30px 0 0;
  color: #676767;
  font-size: 14px; }
  .site-footer .store-txt,
  .site-footer .newsletter h3,
  .site-footer .newsletter .h3 {
    color: #fff;
    font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.28571em;
    font-weight: 700; }
    @media screen and (min-width: 769px) {
      .site-footer .store-txt,
      .site-footer .newsletter h3,
      .site-footer .newsletter .h3 {
        line-height: 22px; } }
  .site-footer .store-txt {
    padding-right: 20px; }
    .site-footer .store-txt a {
      border-bottom: 1px solid rgba(249, 37, 23, 0.5); }
  .site-footer .newsletter {
    margin-top: 30px; }
    @media screen and (min-width: 769px) {
      .site-footer .newsletter {
        margin-top: 0; } }
    .site-footer .newsletter h3, .site-footer .newsletter .h3 {
      margin-bottom: 15px; }
    .site-footer .newsletter input[type="email"] {
      border: 1px solid #676767;
      border-radius: 0;
      background-color: transparent;
      width: 100%;
      color: #fff; }
    .site-footer .newsletter .btn, .site-footer .newsletter .btn--secondary {
      margin-top: 1em;
      text-transform: uppercase;
      font-size: 1.14286em; }
      @media screen and (min-width: 769px) {
        .site-footer .newsletter .btn, .site-footer .newsletter .btn--secondary {
          font-size: 1em; } }
  .site-footer .trade-copy {
    margin-top: 50px;
    font-size: 0.85714em;
    color: #999; }
    .site-footer .trade-copy a {
      color: #999;
      white-space: nowrap; }

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 1.07143em;
  font-weight: bold;
  line-height: 1.75em;
  white-space: nowrap; }
  .footer-nav li {
    margin: 0;
    padding: 0; }
  @media screen and (min-width: 769px) {
    .footer-nav {
      line-height: 22px;
      padding-top: 1px; } }
  .footer-nav.footer-red {
    color: #f92517; }
    .footer-nav.footer-red .footer-nav__link {
      color: #f92517; }
      .footer-nav.footer-red .footer-nav__link:hover {
        color: #fb6b62; }

.footer-nav__link {
  color: #999; }

.footer-nav__link:hover {
  color: #c3c3c3; }

/*============================================================================
  #Slideshow
==============================================================================*/
.slideshow {
  display: none;
  position: relative;
  margin-bottom: 40px; }
  .slideshow .slidesjs-navigation {
    margin-top: 3px; }
  .slideshow .slidesjs-title {
    margin: 20px 0 0;
    float: left;
    color: #222;
    font-size: 0.92857em; }
  .slideshow .slidesjs-pagination {
    margin: 20px 0 0;
    float: right;
    list-style: none; }
  .slideshow .slidesjs-pagination li {
    float: left;
    margin: 0 0 0 14px; }
  .slideshow .slidesjs-pagination a {
    color: #222;
    font-size: 0.92857em; }
  .slideshow .slidesjs-pagination a:link,
  .slideshow .slidesjs-pagination a:visited {
    display: block;
    padding-bottom: 2px;
    padding: 1px; }
  .slideshow .slidesjs-pagination a:hover,
  .slideshow .slidesjs-pagination a:active,
  .slideshow .slidesjs-pagination a.active {
    border-bottom: 1px solid #222; }
  .slideshow .navbar {
    overflow: hidden; }
  @media screen and (max-width: 768px) {
    .slideshow .slidesjs-pagination a,
    .slideshow .slidesjs-title {
      font-size: 1.71429em; } }

/*============================================================================
  #Email Popup
==============================================================================*/
.EmailPopup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8); }

.EmailPopup-content {
  box-sizing: border-box;
  background-color: #f92517;
  width: 610px;
  height: 610px;
  padding: 50px;
  border-radius: 50%;
  position: absolute;
  top: 135px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  text-align: center; }

.EmailPopup-logo {
  margin-bottom: 40px; }

.EmailPopup-header {
  font-size: 3.21429em;
  line-height: 1;
  margin-bottom: 40px;
  font-family: "neue-haas-grotesk-text","HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700; }

.EmailPopup-description {
  font-size: 1.28571em;
  font-weight: bold;
  margin-bottom: 40px; }

.EmailPopup-form {
  text-align: center;
  margin-bottom: 80px; }

.EmailPopup-form input[type="email"] {
  background: transparent;
  border: 1px solid #fff;
  width: 310px;
  display: inline-block;
  text-align: left;
  color: #fff; }

.EmailPopup-form .input-group-btn {
  display: inline;
  vertical-align: top; }

.EmailPopup-form .btn, .EmailPopup-form .btn--secondary {
  background: transparent;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 7px 14px;
  margin-left: 20px;
  height: 37px; }

.EmailPopup-dismiss {
  color: #fff;
  border-bottom: 1px solid #fff;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 10px; }

.EmailPopup-dismiss:hover {
  color: #F58B8A;
  border-color: #F58B8A; }

.EmailPopup-dismissDescription {
  font-weight: bold;
  line-height: 1.1;
  padding: 0 120px; }

@media screen and (max-width: 610px) {
  .EmailPopup-content {
    border-radius: 0px;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    right: 20px;
    width: auto;
    height: auto; }

  .EmailPopup-form {
    margin-bottom: 40px; }

  .EmailPopup-form input[type="email"] {
    width: 100%;
    margin-bottom: 10px; }

  .EmailPopup-description {
    font-size: 1.57143em; }

  .EmailPopup-dismiss {
    font-size: 1.28571em; }

  .EmailPopup-dismissDescription {
    font-size: 1.28571em;
    padding: 0; } }
/*============================================================================
#Cookies Popup
==============================================================================*/
.CookiePopup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background-color: rgba(34, 34, 34, 0.95);
  color: #fff; }

.CookiePopup a {
  color: #fff;
  line-height: 1;
  border-bottom: 1px solid #484645; }

.CookiePopup a:hover {
  color: #f92517; }

.CookiePopup-content {
  position: relative; }

.CookiePopup-description {
  font-weight: bold; }

.CookiePopup-button {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold; }

@media screen and (max-width: 768px) {
  .CookiePopup-description {
    font-size: 1.42857em; }

  .CookiePopup-button {
    right: 0; } }
/*============================================================================
  #Page Container
==============================================================================*/
#PageContainer {
  overflow: hidden; }

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

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

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

/*============================================================================
  #Subnav
==============================================================================*/
.subnav-container {
  border-bottom: 1px solid #DEDEDE;
  margin: 0; }
  .subnav-container .trigger {
    margin: 0;
    padding: 16px 0;
    display: block;
    position: relative; }
    .subnav-container .trigger:after {
      content: '';
      display: block;
      position: absolute;
      right: 0;
      top: 50%;
      width: 0;
      height: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid #ddd;
      border-bottom: 0 solid #ddd; }
  .subnav-container.active .trigger:after {
    border-top-width: 0;
    border-bottom-width: 10px; }
  .subnav-container .subnav {
    display: none; }
  .subnav-container.active .subnav {
    display: block; }
  .subnav-container .subnav ul {
    margin: 0;
    list-style: none; }
  @media screen and (max-width: 768px) {
    .subnav-container .subnav {
      margin-left: -20px;
      margin-right: -20px; }
      .subnav-container .subnav li {
        display: block;
        margin: 0; }
      .subnav-container .subnav a {
        display: block;
        font-size: 1.78571em;
        font-weight: bold;
        color: #999;
        padding: 16px 20px;
        border-top: 1px solid #bcbcbc;
        background-color: #f4f4f4; }
        .subnav-container .subnav a a:hover {
          background-color: #e4e4e4; }
      .subnav-container .subnav li:last-child a {
        border-bottom: 1px solid #bcbcbc;
        margin-bottom: -1px; } }
  @media screen and (min-width: 769px) {
    .subnav-container {
      border-bottom: none;
      margin: 16px 0; }
      .subnav-container .trigger {
        display: none; }
      .subnav-container .subnav {
        display: block;
        text-align: right;
        /* interior subnav */ }
        .subnav-container .subnav ul {
          vertical-align: top;
          display: inline-block; }
        .subnav-container .subnav li {
          display: inline-block; }
        .subnav-container .subnav a {
          font-size: 1.21429em;
          display: block;
          padding: 0 10px;
          color: #222;
          /* DO NOT MAKE THIS VALUE WHITE */
          font-weight: bold; }
        .subnav-container .subnav a:hover,
        .subnav-container .subnav a.selected {
          color: #999; }
        .subnav-container .subnav li:last-child a {
          padding-right: 0; } }

.collections-subnav .title {
  font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2em; }
  .collections-subnav .title strong:after {
    content: ':'; }
  .collections-subnav .title em {
    color: #999;
    font-style: normal;
    font-weight: bold;
    text-transform: capitalize; }

/*============================================================================
  #Product Group Layout
==============================================================================*/
@media screen and (min-width: 769px) {
  #shappify_bundle#shappify_bundle .product-bundle {
    font-size: 0;
    margin-left: -20px; }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-title {
    margin: 40px 20px 20px;
    font-weight: bold; }
  #shappify_bundle#shappify_bundle .product-bundle .product-wrapper,
  #shappify_bundle#shappify_bundle .product-bundle .bundle-total {
    display: inline-block;
    float: left;
    vertical-align: top;
    font-size: 1rem;
    width: calc(25% - 20px);
    height: 318px;
    margin: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
    background-color: #F4F4F4;
    z-index: 0; }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-total {
    background: transparent;
    height: calc(318px - 64px); }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-total button {
    background: #fff;
    color: #f92517;
    box-shadow: none;
    border: 3px solid #f92517;
    border-radius: 50%;
    width: 135px;
    height: 135px;
    font-weight: bold;
    text-shadow: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    white-space: normal;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out; }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-total button:before {
    content: 'Add to Cart and Save';
    text-transform: uppercase; }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-total button:hover {
    background: #f92517;
    color: #fff; }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-equals {
    display: none; }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-total .top-button {
    display: none; }
  #shappify_bundle#shappify_bundle .product-bundle .product-wrapper .product-image {
    border: 0;
    min-height: 0;
    max-height: 100%;
    height: auto;
    margin-top: 0; }
  #shappify_bundle#shappify_bundle .product-bundle .product-wrapper img {
    width: 250px;
    height: auto;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -32px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  #shappify_bundle#shappify_bundle .product-bundle .product-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    height: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #fff; }
  #shappify_bundle#shappify_bundle .product-bundle .product-wrapper .bundle-name {
    margin-top: calc(318px - 64px);
    margin-bottom: 0;
    padding: 5px 0;
    font-weight: bold;
    color: #000;
    font-size: 14px;
    min-height: 0;
    max-height: 2.6em;
    overflow: hidden; }
  #shappify_bundle#shappify_bundle .product-bundle .product-wrapper .bdl-product-price {
    font-size: 12px; }
  #shappify_bundle#shappify_bundle .product-bundle .product-wrapper .bdl-product-price.sale {
    color: #f92517;
    font-weight: bold; }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-plus {
    float: left;
    position: relative;
    z-index: 2;
    width: 20px;
    margin-right: -20px;
    height: calc(318px - 64px); }
  #shappify_bundle#shappify_bundle .product-bundle .bundle-plus img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    max-width: 34px !important;
    opacity: 0.5; } }
@media screen and (max-width: 768px) {
  #shappify_bundle#shappify_bundle a:first-child {
    float: left;
    margin-right: 20px;
    width: 35%;
    max-width: 250px; }
  #shappify_bundle#shappify_bundle .product-bundle {
    padding: 0 0 30px;
    margin: 40px 0 0;
    border-bottom: 1px solid #ddd; }
  #shappify_bundle#shappify_bundle .product-wrapper {
    width: 100%;
    margin: 0; }
  #shappify_bundle#shappify_bundle .product-image {
    border: 0;
    min-height: 0;
    min-width: 0;
    max-height: 250px;
    max-width: 250px;
    line-height: auto;
    margin-top: 0;
    float: left; }
  #shappify_bundle#shappify_bundle .product-image img {
    max-height: 100%;
    width: 100%;
    height: 100%; }
  #shappify_bundle#shappify_bundle .bundle-title {
    font-weight: bold; }
  #shappify_bundle#shappify_bundle .bundle-plus {
    border: 0;
    margin-top: 0;
    line-height: 0;
    position: relative;
    width: 35% !important;
    max-width: 250px;
    font-size: 75px;
    margin-top: 0;
    opacity: 0.5; }
  #shappify_bundle#shappify_bundle .bundle-plus img {
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  #shappify_bundle#shappify_bundle .bundle-name {
    margin: 0;
    color: #222;
    line-height: 1.35em;
    font-weight: bold;
    font-size: 1.57143em; }
  #shappify_bundle#shappify_bundle .bdl-product-price {
    font-size: 1.28571em; }
  #shappify_bundle#shappify_bundle .bdl-product-price.sale {
    color: #f92517;
    font-weight: bold; }
  #shappify_bundle#shappify_bundle .bundle-total {
    width: 100% !important;
    text-align: center; }
  #shappify_bundle#shappify_bundle .bundle-total button {
    background-image: none;
    text-shadow: none;
    width: 100%;
    max-width: 100%;
    padding: 16px;
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-top: 30px;
    text-transform: uppercase; }
  #shappify_bundle#shappify_bundle .bundle-total button:hover {
    background-color: #eb1615; }
  #shappify_bundle#shappify_bundle .product-bundle button .top-button {
    border-bottom: 0;
    font-size: 1.9rem;
    padding: 0; } }
.product-collection {
  font-size: 0; }

.product-collection .product {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  width: calc(50% - 20px);
  margin: 0 0 20px 20px;
  position: relative;
  overflow: hidden; }
  .product-collection .product.large {
    width: calc(100% - 20px); }
  .product-collection .product img {
    display: block;
    width: 100%;
    height: auto; }
  .product-collection .product .product-collection-details {
    position: relative;
    background: #fff;
    padding: 5px 0;
    margin-top: -30px; }
  .product-collection .product.large .product-collection-details {
    margin-top: -65px; }
  .product-collection .product .product-collection-details .info {
    margin: 0;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 1.28571em;
    color: #f92517; }
  .product-collection .product .product-collection-details .type:after {
    content: ' / '; }
  .product-collection .product .product-collection-details .old-price {
    text-decoration: line-through;
    color: #222; }
  .product-collection .product .product-collection-details .title {
    margin: 0;
    color: #222;
    line-height: 1.35em;
    font-weight: bold;
    font-size: 1.57143em;
    min-height: 4.05em; }
  .product-collection .product .product-collection-details .title br {
    display: none; }
  .product-collection .product .product-collection-details .sold-out:before {
    content: ' / '; }

.product-collection .product-banner {
  display: block;
  float: left;
  width: calc(100% - 20px);
  margin: 0 0 40px 20px; }
  .product-collection .product-banner img {
    display: block;
    width: 100%;
    height: auto; }

@media screen and (max-width: 768px) {
  .product-collection {
    display: flex;
    flex-wrap: wrap; }

  .product-collection .product {
    flex: none; } }
@media screen and (min-width: 769px) {
  .product-collection .product {
    -webkit-transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out; }
  .product-collection:hover .product {
    opacity: 0.5; }
    .product-collection:hover .product:hover {
      opacity: 1; }
  .product-collection .product .title-content {
    border-bottom: 1px solid transparent;
    line-height: 1.4; }
  .product-collection .product:hover .title-content {
    color: #f92517;
    border-bottom-color: #999999; }
  .product-collection .product {
    width: calc(25% - 20px);
    height: 318px;
    float: left;
    background-color: #F4F4F4;
    -webkit-transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out; }
  .product-collection .product.large {
    width: calc(50% - 20px);
    height: 656px; }
  .product-collection .product img {
    width: 250px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .product-collection .product.large img {
    width: 520px; }
  .product-collection .product .product-collection-details {
    height: 64px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px 0; }
    .product-collection .product .product-collection-details .info {
      font-size: 12px; }
    .product-collection .product .product-collection-details .title {
      font-size: 15px;
      min-height: 0;
      max-height: 2.7em;
      overflow: hidden; }

  .ssrlss.large + .ssrlss.large {
    margin-top: calc(-318px - 20px); }

  .lssrss + .lssrss.large + .lssrss {
    margin-top: calc(-318px - 20px); }

  .lssrss + .lssrss.large + .lssrss + .lssrss {
    margin-top: calc(-318px - 20px);
    margin-left: calc(25% + 20px); }

  .lssssr.first + .lssssr + .lssssr + .lssssr,
  .lssssr:first-child + .lssssr + .lssssr + .lssssr,
  :not(.lssssr) + .lssssr + .lssssr + .lssssr + .lssssr {
    margin-left: calc(-100% + 20px);
    top: calc((318px + 20px) * 2); }

  .lssssr.first + .lssssr + .lssssr + .lssssr + .lssssr,
  .lssssr:first-child + .lssssr + .lssssr + .lssssr + .lssssr,
  :not(.lssssr) + .lssssr + .lssssr + .lssssr + .lssssr + .lssssr {
    margin-left: calc(-75% + 20px);
    top: calc((318px + 20px) * 2); }

  .lssssr.first {
    margin-bottom: 338px; }

  /*.ssmss:not(.large) + .ssmss:not(.large) {
    margin-left:calc(-25% + 20px);
    margin-top:calc(318px + 20px);
  }*/
  .ssmss.first + .ssmss, .ssmss:first-child + .ssmss, :not(.ssmss) + .ssmss + .ssmss {
    margin-left: calc(-25% + 20px);
    left: 75%; }

  .ssmss.large + .ssmss {
    left: -75%;
    top: calc(318px + 20px); }

  .smsss.large + .smsss + .smsss {
    margin-left: calc(-100% + 20px);
    margin-top: calc(318px + 20px); }

  .sssms.first + .sssms, .sssms:first-child + .sssms, :not(.sssms) + .sssms + .sssms {
    margin-left: calc(-25% + 20px);
    background: #222;
    left: 75%; }

  .sssms:not(.large) + .sssms:not(.large) + .sssms:not(.large) {
    margin-left: calc(-25% + 20px);
    margin-top: calc(318px + 20px);
    background: green; }

  .sssms + .sssms + .sssms + .sssms + .sssms {
    margin-top: calc(318px + 20px); }

  .slsss.first, .slsss:first-child, :not(.slsss) + .slsss {
    left: 50%; }

  .slsss.large {
    margin-left: calc(-25% + 20px); }

  .slsss.large + .slsss {
    margin-left: calc(25% + 20px); }

  .sslss.first, .sslss:first-child, :not(.sslss) + .sslss,
  .sslss.first + .sslss, .sslss:first-child + .sslss, :not(.sslss) + .sslss + .sslss {
    left: 50%; }

  .sslss.large {
    margin-left: calc(-50% + 20px); }

  .sslss.large + .sslss,
  .sslss.large + .sslss + .sslss {
    margin-top: calc(318px + 20px); }

  .ssrss.large + .ssrss,
  .ssrss.large + .ssrss + .ssrss {
    margin-top: calc(-318px - 20px); }

  .ssrss.large + .ssrss + .ssrss {
    margin-left: calc(25% + 20px); }

  .sssrs:not(.large) + .sssrs:not(.large) + .sssrs:not(.large) {
    margin-left: calc(-25% + 20px);
    margin-top: calc(318px + 20px);
    left: -25%; }

  .sssrs.large + .sssrs {
    margin-top: calc(-318px - 20px);
    margin-left: calc(25% + 20px); }

  .ssssr.first + .ssssr + .ssssr,
  .ssssr:first-child + .ssssr + .ssssr,
  :not(.ssssr) + .ssssr + .ssssr + .ssssr {
    margin-left: calc(-50% + 20px);
    margin-top: calc(318px + 20px); }

  .ssssr:not(.large) + .ssssr:not(.large) + .ssssr:not(.large) + .ssssr:not(.large) {
    margin-left: calc(-25% + 20px);
    margin-top: calc(318px + 20px); }

  :not(.ssrlss) + .ssrlss,
  :not(.lssrss) + .lssrss,
  :not(.lssssr) + .lssssr,
  :not(.ssmss) + .ssmss,
  :not(.smsss) + .smsss,
  :not(.sssms) + .sssms,
  :not(.lssss) + .lssss,
  :not(.slsss) + .slsss,
  :not(.sslss) + .sslss,
  :not(.ssssr) + .ssssr,
  :not(.sssrs) + .sssrs,
  :not(.ssrss) + .ssrss,
  .last + .first {
    clear: both; } }
/*============================================================================
  #Store Collection Page
==============================================================================*/
.template-list-collections .main-content.wrapper, .template-list-collections .blog-article .main-content.media-wrapper, .blog-article .template-list-collections .main-content.media-wrapper, .template-list-collections .contact-page > section.main-content,
.template-collection .main-content.wrapper,
.template-collection .blog-article .main-content.media-wrapper,
.blog-article .template-collection .main-content.media-wrapper,
.template-collection .contact-page > section.main-content {
  margin: 0;
  padding: 0;
  max-width: none; }

.store-landing,
.collection-landing {
  margin-bottom: 40px; }

.store-landing .section-header .wrapper, .store-landing .section-header .blog-article .media-wrapper, .blog-article .store-landing .section-header .media-wrapper, .store-landing .section-header .contact-page > section {
  position: relative; }

.store-landing .section-header {
  margin-bottom: 20px; }

.store-landing .section-header .banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%; }
  @media screen and (max-width: 480px) {
    .store-landing .section-header .banner {
      height: 400px;
      background-size: auto 400px;
      background-image: url("//cdn.shopify.com/s/files/1/0201/8578/files/Mobile-Banner_12-21-16.jpg?v=1394529679586452957"); } }
  @media screen and (min-width: 481px) and (max-width: 768px) {
    .store-landing .section-header .banner {
      height: 640px;
      background-size: auto 640px;
      background-image: url("//cdn.shopify.com/s/files/1/0201/8578/files/Tablet-Banner_12-21-16.jpg?v=12649846113420386254"); } }
  @media screen and (min-width: 769px) {
    .store-landing .section-header .banner {
      height: 640px;
      background-size: auto 640px;
      background-image: url("//cdn.shopify.com/s/files/1/0201/8578/files/Desktop-Banner_12-21-16.jpg?v=16605042267370775946"); } }

.store-landing .section-header__title {
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2em;
  font-weight: bold;
  color: #ccc;
  padding: 30px 0 0;
  margin: 0; }

.store-landing .section-header .subnav-container .title strong:after {
  content: ''; }

@media screen and (min-width: 769px) {
  .store-landing .section-header__title {
    font-size: 1.21429em; }

  .store-landing .section-header .subnav-container {
    position: absolute;
    width: 100%;
    z-index: 1;
    /* THIS IS SUBNAV HOVER STATE - I AM WHAT YOU ARE LOOKING FOR DONT MAKE WHITE */ }
    .store-landing .section-header .subnav-container .subnav a:hover {
      color: #f92517; } }
/*============================================================================
  #Product Page
==============================================================================*/
.template-product .main-content.wrapper, .template-product .blog-article .main-content.media-wrapper, .blog-article .template-product .main-content.media-wrapper, .template-product .contact-page > section.main-content {
  margin: 0;
  padding: 0;
  max-width: none; }

.product-image {
  margin-top: 30px; }
  .product-image img {
    display: block;
    margin: 0 auto; }

.template-product .product-details {
  margin-top: 30px; }
  .template-product .product-details .product-type-container {
    display: table;
    width: 100%; }
  .template-product .product-details .type {
    color: #f84342;
    margin: 0;
    text-transform: capitalize;
    font-size: 1.78571em;
    font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    display: table-cell;
    width: 100%;
    vertical-align: middle; }
  .template-product .product-details .product-nav {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    right: -6px; }
  .template-product .product-details .product-nav a {
    display: inline-block;
    font-size: 1.42857em;
    padding: 2px 0.42857em;
    color: #C3C3C3; }
  .template-product .product-details .product-nav a:hover {
    color: #676767; }
  .template-product .product-details .title {
    margin: 0;
    color: #000;
    line-height: 1.2;
    font-size: 3.57143em; }
  .template-product .product-details .description {
    color: #676767;
    line-height: 1.4;
    font-size: 2em; }
    .template-product .product-details .description :first-child {
      margin-top: 0.5em; }
    .template-product .product-details .description h6, .template-product .product-details .description .h6 {
      font-size: 0.715em;
      font-weight: normal;
      font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .template-product .product-details .pricing {
    margin: 2.5em 0 0.25em;
    font-size: 3.57143em; }
  .template-product .product-details .price {
    color: #000;
    font-weight: bold;
    vertical-align: middle; }
  .template-product .product-details .compare-price {
    color: #c3c3c3;
    font-weight: normal;
    font-size: 0.75em;
    text-decoration: line-through;
    padding-left: 10px;
    vertical-align: middle; }
  .template-product .product-details .discounted-price {
    color: #F84342; }

.template-product .related-section {
  margin: 40px 0 60px; }
  .template-product .related-section > header .h {
    font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #ccc;
    font-size: 2em;
    margin: 0 0 20px; }

@media screen and (min-width: 769px) {
  .template-product .product-details .type {
    font-size: 1em; }
  .template-product .product-details .product-nav a {
    font-size: 1.14286em; }
  .template-product .product-details .title {
    font-size: 2.71429em; }
  .template-product .product-details .description {
    font-size: 1.28571em; }
  .template-product .product-details .pricing {
    font-size: 1.57143em; }

  .template-product .related-section > header .h {
    font-size: 1.21429em; } }
#product-select-radio {
  padding-left: 19px; }

#product-select-radio input[type="radio"] {
  margin-left: -19px;
  margin-right: 1px; }

.product-fields {
  *zoom: 1;
  border: 1px solid #ddd;
  border-width: 1px 0 1px 0;
  padding: 30px 0 0 0; }
  .product-fields:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 769px) {
    .product-fields {
      padding: 15px 0; } }
  .product-fields .field {
    display: block; }
    .product-fields .field.variant label, .product-fields .field.quantity label {
      font-weight: bold; }
    .product-fields .field.quantity input {
      text-align: center; }
    .product-fields .field.submit input {
      text-transform: uppercase;
      text-align: center; }
    @media screen and (max-width: 768px) {
      .product-fields .field {
        margin-bottom: 30px; }
        .product-fields .field.variant label {
          font-size: 1.5em; }
        .product-fields .field.quantity label {
          width: 55%;
          display: inline-block;
          vertical-align: middle;
          position: relative;
          top: -10px;
          margin-right: -5px;
          font-size: 2em; }
        .product-fields .field.quantity input#quantity {
          width: 45%;
          padding: 5px 10px;
          display: inline-block;
          font-size: 3.57143em;
          margin-right: -5px; }
        .product-fields .field #product-select {
          width: 100%;
          font-size: 2.57143em;
          font-weight: bold; }
        .product-fields .field.submit input {
          width: 100%;
          padding: 16px;
          font-size: 2em;
          font-weight: bold;
          letter-spacing: 0.05em; } }
    @media screen and (min-width: 769px) {
      .product-fields .field {
        display: table-cell;
        vertical-align: middle; }
        .product-fields .field > * {
          vertical-align: middle; }
        .product-fields .field.variant {
          width: 100%; }
        .product-fields .field.quantity {
          padding: 0 15px;
          width: 1%;
          white-space: nowrap;
          padding-right: 10px; }
        .product-fields .field input#quantity {
          width: 50px;
          font-size: 0.85714em;
          padding: 6px 10px; }
        .product-fields .field #product-select {
          width: 100%; }
        .product-fields .field.submit, .product-fields .field.out-of-stock {
          width: 1%;
          white-space: nowrap; } }
  .product-fields .out-of-stock p {
    color: #f84342;
    margin: 0.3em 0;
    font-size: 2em; }
  @media screen and (min-width: 769px) {
    .product-fields .out-of-stock p {
      font-size: 1em; } }

.product-additional h3, .product-additional .h3,
.product-share-item {
  font-size: 2em;
  font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: table-cell;
  padding: 0.71429em 0; }

.product-additional h3, .product-additional .h3 {
  color: #f84342;
  width: 100%; }

.product-share-item {
  width: 1%;
  color: #c3c3c3; }

.product-share-item:not(:last-child):after {
  content: ',\00a0'; }

.product-share-item:hover {
  color: #676767; }

.product-additional-images {
  margin-top: 40px; }

.product-additional .additional.product-link {
  font-size: 1.71429em;
  text-align: right; }

.product-additional .size-chart table {
  width: 1px;
  float: right;
  white-space: nowrap; }

.product-additional .size-chart td {
  padding: 5px 10px 5px 0;
  border: 0; }

.product-additional .size-chart h3, .product-additional .size-chart .h3 {
  padding: 0;
  font-size: 2em; }

.product-additional .size-chart tbody td {
  font-size: 1.42857em; }

@media screen and (min-width: 769px) {
  .product-additional {
    font-size: 0.6em; }

  .product-additional h3, .product-additional .h3 {
    margin: 0 0.5em 0 0; }

  .product-additional h3, .product-additional .h3,
  .product-share-item {
    display: inline-block;
    width: auto;
    vertical-align: middle; }

  .product-additional .additional.product-share {
    float: left; }

  .product-additional .additional.product-link {
    margin-top: 0.71429em;
    float: right;
    font-size: 2em; } }
/*============================================================================
  #Home Page
==============================================================================*/
.home-h2 {
  color: #333333;
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.28571em;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 1em; }
  @media screen and (min-width: 769px) {
    .home-h2 {
      font-size: 1.28571em;
      margin-top: 0; } }
  .home-h2 a {
    border-bottom: 1px #f92517 solid;
    white-space: nowrap; }
  .home-h2 .grey {
    color: #999; }
  .home-h2 .red {
    color: #f92517; }

.advice-container .id {
  font-size: 1.7em;
  font-weight: bold;
  color: #ccc;
  margin: -30px 0 7px; }
.advice-container h1, .advice-container .h1 {
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 5.429em;
  font-weight: bold;
  color: #222;
  line-height: 1;
  min-height: 4em;
  margin: 0 0 20px; }
.advice-container .more-advice {
  font-size: 1.55em;
  font-weight: bold; }

.pre-order-book {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dedede; }

.pre-order-info h2 .grey, .pre-order-info .h2 .grey {
  color: #ccc; }
.pre-order-info .description p {
  color: #676767;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 1em; }
  .pre-order-info .description p:last-child {
    margin-bottom: 0; }

.pre-order-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px; }

.pre-order-buttons {
  margin: 20px 0 0;
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
  border-top: 0px solid #dedede;
  display: flex;
  flex-direction: column; }
  .template-index .pre-order-buttons {
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-bottom: none; }
  .pre-order-buttons ul, .pre-order-buttons li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; }
  .pre-order-buttons h2, .pre-order-buttons .h2, .pre-order-buttons ul {
    flex: 1; }
  .pre-order-buttons h2, .pre-order-buttons .h2 {
    font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1em;
    margin-bottom: 20px; }
  .pre-order-buttons .btn, .pre-order-buttons .btn--secondary {
    display: block;
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    padding: 0 5px;
    width: 100%; }
  @media screen and (max-width: 719px) {
    .pre-order-buttons ul {
      flex-direction: row;
      flex-wrap: wrap; }
    .pre-order-buttons li {
      flex: 0 50%; }
      .pre-order-buttons li:nth-child(odd) {
        padding: 0 5px 10px 0; }
      .pre-order-buttons li:nth-child(even) {
        padding: 0 0 10px 5px; }
      .pre-order-buttons li:nth-child(n+3) {
        padding-bottom: 0; } }
  @media screen and (min-width: 720px) {
    .pre-order-buttons li {
      flex: 0 25%; }
      .pre-order-buttons li:nth-child(1) {
        padding: 0 10.66667px 0 0; }
      .pre-order-buttons li:nth-child(2) {
        padding: 0 8px 0 5.33333px; }
      .pre-order-buttons li:nth-child(3) {
        padding: 0 5.33333px 0 8px; }
      .pre-order-buttons li:nth-child(4) {
        padding: 0 0 0 10.66667px; }
    .pre-order-buttons h2, .pre-order-buttons .h2 {
      font-size: 40px; }
    .pre-order-buttons .btn, .pre-order-buttons .btn--secondary {
      font-size: 15px;
      height: 44px;
      line-height: 44px;
      padding: 0 20px; } }
  @media screen and (min-width: 960px) {
    .pre-order-buttons {
      flex-direction: row;
      justify-content: space-between;
      align-items: center; }
      .pre-order-buttons li {
        padding: 0 !important; }
      .pre-order-buttons h2, .pre-order-buttons .h2 {
        font-size: 44px;
        margin: 0; }
      .pre-order-buttons .btn, .pre-order-buttons .btn--secondary {
        font-size: 16px;
        height: 46px;
        line-height: 46px;
        padding: 0;
        width: 160px;
        margin-left: 16px; } }
  @media screen and (min-width: 1048px) {
    .pre-order-buttons .btn, .pre-order-buttons .btn--secondary {
      width: 180px; } }

.home-section {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #dedede; }
  .home-section h2, .home-section .h2 {
    margin-bottom: 20px; }

.join-wrapper {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 769px) {
    .join-wrapper {
      align-items: stretch;
      flex-direction: row; } }

.join-us-header,
.join-us-newsletter {
  flex: 1; }

@media screen and (min-width: 769px) {
  .join-us-header {
    background: url("//cdn.shopify.com/s/files/1/0201/8578/t/10/assets/join-us.svg?v=5391750882448447594") center left no-repeat;
    background-size: contain;
    padding: 0;
    margin: 0 10px 0 0;
    width: 50%; } }
.join-us-header h2, .join-us-header .h2 {
  font-size: 32px;
  line-height: 1; }
  @media screen and (min-width: 769px) {
    .join-us-header h2, .join-us-header .h2 {
      display: none; } }

@media screen and (min-width: 769px) {
  .join-us-newsletter {
    flex: 1;
    margin: 0 0 0 10px; } }

.join-us {
  border-top: 1px solid #dedede;
  padding-top: 20px;
  padding-bottom: 20px; }
  @media screen and (min-width: 1020px) {
    .join-us {
      padding-top: 40px; } }
  .join-us h3, .join-us .h3 {
    color: #333333;
    font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.28571em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1em; }
    @media screen and (min-width: 769px) {
      .join-us h3, .join-us .h3 {
        font-size: 1.28571em; } }
    @media screen and (min-width: 1020px) {
      .join-us h3, .join-us .h3 {
        font-size: 1.5em; } }
  .join-us .newsletter form {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
  .join-us .newsletter .input-group-field {
    flex: 1; }
  .join-us .newsletter .input-group-btn {
    width: auto; }
  .join-us .newsletter .btn, .join-us .newsletter .btn--secondary {
    display: block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    margin-left: 20px; }
    @media screen and (min-width: 769px) {
      .join-us .newsletter .btn, .join-us .newsletter .btn--secondary {
        font-size: 15px;
        height: 42px;
        line-height: 42px;
        padding: 0 30px; } }
    @media screen and (min-width: 1020px) {
      .join-us .newsletter .btn, .join-us .newsletter .btn--secondary {
        font-size: 16px;
        height: 46px;
        line-height: 46px;
        padding: 0 30px; } }

.hire-us {
  background: #f4f4f4; }
  .hire-us .home-h2 {
    margin: 0;
    padding: 20px 0; }
  .hire-us .quote {
    border-bottom: 1px solid #dedede;
    border-top: 1px solid #dedede;
    padding: 20px 5%; }
    @media screen and (min-width: 769px) {
      .hire-us .quote {
        padding: 40px 5%; } }
  .hire-us .quote-text {
    font-size: 2.14286em;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 700px;
    text-align: center; }
    @media screen and (max-width: 769px) {
      .hire-us .quote-text br {
        display: none; } }

.hire-us .product-collection-details {
  padding: 5px 0;
  position: relative; }
  .hire-us .product-collection-details .info {
    color: #f92517;
    font-size: 1.28571em;
    text-transform: capitalize;
    font-weight: bold;
    margin: 0; }
    @media screen and (min-width: 769px) {
      .hire-us .product-collection-details .info {
        font-size: 12px; } }
  .hire-us .product-collection-details .type:after {
    content: ' / '; }
  .hire-us .product-collection-details .old-price {
    color: #222;
    text-decoration: line-through; }
  .hire-us .product-collection-details .title {
    color: #222;
    font-weight: bold;
    font-size: 1.57143em;
    line-height: 1.35em;
    margin: 0 0 20px; }
    .hire-us .product-collection-details .title .grey {
      color: #999; }
    @media screen and (min-width: 769px) {
      .hire-us .product-collection-details .title {
        font-size: 15px; } }

.hire-us-imgs {
  display: flex;
  flex-wrap: wrap; }
  .hire-us-imgs .hire-img {
    -webkit-transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out; }
  .hire-us-imgs:hover .hire-img {
    opacity: 0.5; }
    .hire-us-imgs:hover .hire-img:hover {
      opacity: 1; }
  .hire-us-imgs .hire-img .title-content {
    border-bottom: 1px solid transparent;
    line-height: 1.4; }
  .hire-us-imgs .hire-img:hover .title-content {
    color: #f92517;
    border-bottom-color: #999999; }
  .hire-us-imgs img {
    display: block;
    height: auto;
    width: 100%; }

.hire-img {
  flex: 1; }
  .hire-img:nth-of-type(1) {
    padding-right: 10px; }
    @media screen and (min-width: 769px) {
      .hire-img:nth-of-type(1) {
        padding-right: 13.33333px; } }
  .hire-img:nth-of-type(2) {
    padding-left: 10px; }
    @media screen and (min-width: 769px) {
      .hire-img:nth-of-type(2) {
        order: 99;
        padding-left: 13.33333px; } }
  @media screen and (min-width: 769px) {
    .hire-img:nth-of-type(3) {
      padding: 0 6.66667px; } }
  .hire-img.hire-img-1 {
    flex: 0 50%; }
    @media screen and (min-width: 769px) {
      .hire-img.hire-img-1 {
        flex: 0 25%; } }
  .hire-img.hire-img-2 {
    flex-grow: 2; }

@media screen and (min-width: 769px) {
  .hire-img-wrap {
    height: 255px;
    max-height: 370px;
    overflow: hidden; } }
@media screen and (min-width: 850px) {
  .hire-img-wrap {
    height: 280px; } }
@media screen and (min-width: 900px) {
  .hire-img-wrap {
    height: 300px; } }
@media screen and (min-width: 1000px) {
  .hire-img-wrap {
    height: 335px; } }
@media screen and (min-width: 1100px) {
  .hire-img-wrap {
    height: 370px; } }

@media screen and (min-width: 769px) {
  .flexbox.objectfit .hire-img-wrap,
  .flexbox.object-fit .hire-img-wrap {
    display: flex; }
    .flexbox.objectfit .hire-img-wrap img,
    .flexbox.object-fit .hire-img-wrap img {
      object-fit: cover; } }

.hire-us .logos {
  display: flex;
  justify-content: space-evenly;
  padding: 20px 0; }
  @media screen and (min-width: 769px) {
    .hire-us .logos {
      padding: 40px 0; } }
  .hire-us .logos img {
    display: block;
    opacity: 0.6;
    width: 9%;
    height: auto;
    align-self: center; }

.logos-btn {
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  margin: 0 auto 40px;
  width: 100%; }
  @media screen and (min-width: 769px) {
    .logos-btn {
      font-size: 16px;
      height: 46px;
      line-height: 46px;
      padding: 0;
      margin: 0 auto 80px; } }

.social,
.events {
  margin-bottom: 40px; }

.social .handle,
.events .event h3,
.events .event .h3 {
  font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.42857em;
  font-weight: normal;
  color: #222;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.social .tweet,
.events .event p {
  line-height: 1.2;
  font-weight: bold;
  color: #222;
  font-size: 2.14286em;
  word-wrap: break-word;
  overflow: hidden; }

.social .tweet img {
  max-width: 20px; }

.social .handle strong {
  font-weight: normal; }
.social .handle a {
  color: #222;
  text-decoration: none; }
.social ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
.social li {
  margin: 0;
  padding: 0; }
.social a, .social a:hover {
  color: #222;
  text-decoration: underline; }

@media screen and (min-width: 769px) {
  .advice-container .id,
  .advice-container .more-advice {
    font-size: 1.28571em; }

  .advice-container h1, .advice-container .h1 {
    font-size: 8.42857em; }

  .home-section h2, .home-section .h2 {
    font-size: 1.28571em;
    font-weight: 700; }

  .social .handle,
  .events .event h3,
  .events .event .h3 {
    font-size: 0.85714em; }

  .social .tweet,
  .events .event p {
    font-size: 1.71429em; } }
/*============================================================================
  #Blog Article
==============================================================================*/
.template-article .main-content.wrapper, .template-article .blog-article .main-content.media-wrapper, .blog-article .template-article .main-content.media-wrapper, .template-article .contact-page > section.main-content {
  margin: 0px;
  padding: 0px;
  max-width: none; }

@media screen and (max-width: 768px) {
  .blog-article .media-wrapper {
    margin: 0;
    padding: 0;
    max-width: none; } }
.blog-article .section-header .feature-media {
  width: 100%;
  display: block;
  margin-bottom: 1.42857em; }

.blog-article .author-container {
  margin: 1.42857em 0; }

.blog-article .section-header {
  margin-bottom: 0; }

.blog-article .author-container .author {
  display: table;
  margin-bottom: 1.42857em; }
.blog-article .author-container .hr {
  display: none; }
.blog-article .author-container .social {
  border-top: 1px solid #dedede;
  margin: 0 0 40px;
  padding: 20px 0 0;
  list-style-type: none; }
.blog-article .author-container .social-item {
  text-align: center;
  cursor: pointer;
  background-color: #BDBDBD;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  overflow: hidden; }
.blog-article .author-container .social-item:hover {
  background-color: #676767; }
.blog-article .author-container .social-item .icon {
  vertical-align: middle;
  position: relative; }
.blog-article .author-container .social-item .icon-facebook {
  font-size: 1.5em;
  left: -0.07em; }
.blog-article .author-container .social-item .icon-twitter {
  top: 0.1em;
  left: 0.05em; }
.blog-article .author-container .social-item .icon-linkedin {
  left: 0.05em; }
.blog-article .author-container .social-item,
.blog-article .author-container .social-count {
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
  font-size: 2em; }
.blog-article .author-container .social-count {
  margin-left: 30px; }
.blog-article .author-container .social-count.empty {
  display: none; }
.blog-article .author-container .photo {
  display: table-cell;
  width: 1%;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  margin-right: 1.42857em; }
.blog-article .author-container .info {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  font-size: 1.42857em; }
  .blog-article .author-container .info .name {
    margin: 0;
    text-transform: uppercase;
    color: #222;
    line-height: 1.2;
    letter-spacing: 0.05em; }
  .blog-article .author-container .info .tags {
    margin: 0; }
  .blog-article .author-container .info .tags, .blog-article .author-container .info .tags .tag {
    color: #c3c3c3;
    font-weight: bold;
    line-height: 1.2; }
  .blog-article .author-container .info .tags .tag:before {
    content: ' / '; }
  .blog-article .author-container .info .tags .tag:first-child:before {
    display: none; }
@media screen and (min-width: 769px) {
  .blog-article .author-container {
    display: table;
    width: 100%; }
    .blog-article .author-container .author {
      display: table-cell;
      width: 1%;
      white-space: nowrap;
      padding-right: 10px;
      vertical-align: middle; }
      .blog-article .author-container .author .photo {
        display: inline-block;
        width: 46px;
        height: 46px;
        margin-right: 10px; }
      .blog-article .author-container .author .info {
        display: inline-block;
        font-size: 12px;
        width: auto; }
        .blog-article .author-container .author .info .name, .blog-article .author-container .author .info .tags {
          display: inline-block; }
        .blog-article .author-container .author .info .tags:before {
          content: '\2022';
          display: inline-block;
          padding-right: 0.3em; }
    .blog-article .author-container .social {
      display: table-cell;
      width: 100%;
      border-top: 0;
      text-align: right;
      list-style: none;
      margin: 0;
      padding: 0 0 0 10px;
      vertical-align: middle;
      white-space: nowrap; }
    .blog-article .author-container .hr {
      display: table-cell;
      width: 100%;
      background: -moz-linear-gradient(top, rgba(222, 222, 222, 0) 0%, rgba(222, 222, 222, 0) 50%, #dedede calc(50% + 1px), rgba(222, 222, 222, 0) calc(50% + 2px), rgba(222, 222, 222, 0) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(222, 222, 222, 0)), color-stop(50%, rgba(222, 222, 222, 0)), color-stop(calc(50% + 2px), #dedede), color-stop(calc(50% + 1px), rgba(222, 222, 222, 0)), color-stop(100%, rgba(222, 222, 222, 0)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, rgba(222, 222, 222, 0) 0%, rgba(222, 222, 222, 0) 50%, #dedede calc(50% + 1px), rgba(222, 222, 222, 0) calc(50% + 2px), rgba(222, 222, 222, 0) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, rgba(222, 222, 222, 0) 0%, rgba(222, 222, 222, 0) 50%, #dedede calc(50% + 1px), rgba(222, 222, 222, 0) calc(50% + 2px), rgba(222, 222, 222, 0) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, rgba(222, 222, 222, 0) 0%, rgba(222, 222, 222, 0) 50%, #dedede calc(50% + 1px), rgba(222, 222, 222, 0) calc(50% + 2px), rgba(222, 222, 222, 0) 100%);
      /* IE10+ */
      background: linear-gradient(to bottom, rgba(222, 222, 222, 0) 0%, rgba(222, 222, 222, 0) 50%, #dedede calc(50% + 1px), rgba(222, 222, 222, 0) calc(50% + 2px), rgba(222, 222, 222, 0) 100%);
      /* W3C */ }
    .blog-article .author-container .social-item {
      font-size: 1.25em; }
    .blog-article .author-container .social-count {
      margin-left: 2px;
      font-size: 0.85714em;
      font-weight: bold; } }

.blog-article h1, .blog-article .h1,
.article-body blockquote {
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.blog-article.blog-type-video {
  font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.article-body {
  padding: 0 0 40px; }

.article-body b,
.article-body strong {
  font-weight: bold;
  color: #000; }

.article-body blockquote p,
.blog-type-image h1,
.blog-type-image .h1,
.blog-type-video h1,
.blog-type-video .h1 {
  color: #222;
  font-size: 2.5em; }

.blog-type-article h1, .blog-type-article .h1 {
  font-size: 4.28571em;
  line-height: 1; }

.article-body p {
  color: #676767;
  font-size: 2em;
  display: block; }

.article-body p,
.blog-type-image h1,
.blog-type-image .h1,
.blog-type-video h1,
.blog-type-video .h1 {
  margin: 0 0 30px; }

.article-body blockquote {
  display: block;
  font-weight: bold;
  margin: 0 0 30px; }
  .article-body blockquote p {
    position: relative; }

.article-body blockquote p:first-child:before {
  content: open-quote;
  position: absolute;
  right: 100%; }

.article-body blockquote p:last-child:after {
  content: close-quote;
  white-space: nowrap; }

.blog-article .related-features {
  border-top: 1px solid #dedede;
  padding-top: 10px; }
  @media screen and (max-width: 768px) {
    .blog-article .related-features {
      margin-left: -20px;
      margin-right: -20px;
      padding-left: 20px;
      padding-right: 20px; } }
  .blog-article .related-features .h {
    font-size: 2em;
    color: #ccc;
    margin-bottom: 20px; }

@media screen and (min-width: 769px) {
  .article-body blockquote p,
  .blog-type-image h1,
  .blog-type-image .h1,
  .blog-type-video h1,
  .blog-type-video .h1 {
    font-size: 1.71429em; }

  .blog-type-article h1, .blog-type-article .h1 {
    font-size: 8.42857em; }

  .article-body p {
    font-size: 1.28571em; }

  .article-body p,
  .blog-type-image h1,
  .blog-type-image .h1,
  .blog-type-video h1,
  .blog-type-video .h1 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; }

  .article-body blockquote {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; }
    .article-body blockquote p {
      margin-left: 0;
      margin-right: 0;
      width: auto; }

  .blog-article .related-features .h {
    font-size: 1.28571em; } }
#articleFeatureTemplate {
  display: none;
  visibility: hidden; }

/*============================================================================
  #Features (Blog Landing/Home Page)
==============================================================================*/
.features h1, .features .h1,
.features .h {
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.feature {
  margin-bottom: 40px; }

.feature img {
  display: block;
  border: 0; }

.feature a {
  color: #222; }

.feature .feature-media {
  width: 100%;
  margin-bottom: 20px; }

.feature .author,
.feature .tags {
  margin: 0;
  padding: 0;
  display: inline-block;
  white-space: nowrap;
  font-size: 1.42857em;
  line-height: 1; }

.feature .tags:before {
  color: #c3c3c3;
  content: '\2022';
  font-size: 1.42857em;
  line-height: 1;
  vertical-align: middle; }

.feature .author {
  text-transform: uppercase;
  color: #222;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-size: 1.42857em; }

.feature .tag {
  color: #C3C3C3;
  font-weight: bold;
  line-height: 1.2; }

.feature .tag + .tag:before {
  content: ' / '; }

.feature .title {
  line-height: 1.2;
  font-size: 2.85714em; }

@media screen and (min-width: 769px) {
  .features .feature {
    -webkit-transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out; }
  .features:hover .feature {
    opacity: 0.5; }
    .features:hover .feature:hover {
      opacity: 1; }
  .features .feature .title-content {
    border-bottom: 1px solid transparent;
    line-height: 1.4; }
  .features .feature:hover .title-content {
    color: #f92517;
    border-bottom-color: #999999; }

  .features .spacer {
    clear: both; }

  .feature {
    margin-bottom: 20px; }

  .features h1, .features .h1 {
    font-size: 1.71429em; }

  .feature .author,
  .feature .tags {
    font-size: 0.85714em; }

  .feature .title {
    min-height: 3.6em;
    font-size: 1.71429em; }

  .feature .feature-media {
    margin-bottom: 12px; } }
/*============================================================================
  #Speaking Page
==============================================================================*/
.speaking-page {
  padding-bottom: 40px; }
  .speaking-page .speaking-lecture .speaking-lecture-subtitle {
    margin-bottom: 8px; }
  .speaking-page .speaking-lecture .speaking-lecture-text {
    font-size: 1.57143em;
    line-height: 1.5;
    font-weight: normal;
    padding-top: 10px; }
  @media screen and (min-width: 769px) {
    .speaking-page .speaking-lecture .speaking-lecture-text {
      font-size: 1.14286em; } }
  .speaking-page .workshop {
    /*font-size:em 1.14286em; */
    line-height: 1.5;
    font-weight: normal;
    font-size: 1.57143em;
    color: #676767; }
  .speaking-page .hero-quote {
    margin-right: -20px;
    padding: 20px 20px 30px;
    border-top: 1px solid #ddd;
    font-family: 'DomaineDisplayWeb';
    font-size: 3.28571em;
    color: #222;
    text-align: center;
    line-height: 1.2; }
    @media screen and (min-width: 769px) {
      .speaking-page .hero-quote {
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0; } }
  .speaking-page .testimonial-author {
    font-size: 0.92857em;
    font-weight: bold;
    margin-top: 10px;
    text-align: center; }
    .speaking-page .testimonial-author strong {
      text-transform: uppercase; }
    .speaking-page .testimonial-author em {
      color: #bcbcbc;
      font-style: normal; }
    .speaking-page .testimonial-author em:before {
      content: "\2022";
      display: inline-block;
      padding: 0 0.25em; }
  .speaking-page .story {
    margin-bottom: 20px; }
    .speaking-page .story .h {
      font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 3.42857em;
      line-height: 1;
      font-weight: 700; }
    .speaking-page .story .details {
      margin-bottom: 20px;
      font-size: 1.85714em; }
    .speaking-page .story img {
      height: auto;
      width: calc(100% + 40px);
      margin-left: -20px; }
    @media screen and (min-width: 769px) {
      .speaking-page .story .h {
        font-size: 5.14286em; }
      .speaking-page .story .details {
        font-size: 1.28571em;
        margin-bottom: 40px; }
      .speaking-page .story img {
        margin: 0;
        width: 100%; } }
  .speaking-page .bios > .h {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 3.42857em;
    line-height: 1;
    font-weight: 700; }
  .speaking-page .bios .positions {
    color: #EF4545; }
    .speaking-page .bios .positions .h, .speaking-page .bios .positions p {
      font-size: 1.57143em; }
    .speaking-page .bios .positions .h {
      margin-bottom: 0;
      font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 700; }
  .speaking-page .bios .bio {
    position: relative;
    min-height: 103px;
    margin: 20px 0; }
    .speaking-page .bios .bio img {
      width: 103px;
      float: left; }
    .speaking-page .bios .bio .info {
      float: left;
      box-sizing: border-box;
      width: calc(100% - 103px);
      padding-left: 20px; }
    .speaking-page .bios .bio .name, .speaking-page .bios .bio .title, .speaking-page .bios .bio .social {
      line-height: 1.5;
      margin: 0; }
    .speaking-page .bios .bio .name {
      line-height: 1.3;
      font-size: 2.28571em;
      font-weight: bold; }
    .speaking-page .bios .bio .title, .speaking-page .bios .bio .social {
      text-transform: uppercase;
      font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .speaking-page .bios .bio .social {
      color: #c3c3c3; }
    .speaking-page .bios .bio .description {
      clear: left;
      padding-top: 20px;
      font-size: 1.85714em;
      color: #676767; }
  @media screen and (min-width: 769px) {
    .speaking-page .bios > .h {
      font-size: 5.14286em;
      width: 45%;
      margin-right: 55%;
      padding-bottom: 0; }
    .speaking-page .bios .positions .h, .speaking-page .bios .positions p {
      font-size: 1.14286em; }
    .speaking-page .bios .positions + .bio,
    .speaking-page .bios .positions + .bio + .bio {
      margin-top: -174px; }
    .speaking-page .bios .bio:nth-child(4n + 5) {
      clear: left; }
    .speaking-page .bios .bio img {
      float: none;
      width: 77px; }
    .speaking-page .bios .bio .info {
      float: none;
      width: auto;
      padding-left: 0; }
    .speaking-page .bios .bio .name {
      font-size: 24px; }
    .speaking-page .bios .bio .title,
    .speaking-page .bios .bio .social {
      font-size: 12px;
      letter-spacing: 0.05em; }
    .speaking-page .bios .bio .description {
      font-size: 1.14286em;
      line-height: 1.5; } }
  .speaking-page .press, .speaking-page .speaking {
    margin-right: -20px;
    padding-right: 20px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-bottom: 60px; }
    .speaking-page .press .h, .speaking-page .speaking .h {
      font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 2.14286em;
      color: #222;
      margin-bottom: 0;
      font-weight: 700; }
    .speaking-page .press p, .speaking-page .speaking p {
      font-size: 1.57143em;
      color: #676767; }
    .speaking-page .press ul, .speaking-page .speaking ul {
      margin: 0;
      list-style: none;
      -webkit-column-count: 2;
      -moz-column-count: 2;
      column-count: 2;
      min-height: initial; }
    .speaking-page .press li, .speaking-page .speaking li {
      margin: 0;
      padding: 0;
      font-size: 1.57143em;
      color: #676767; }
    .speaking-page .press .past-events, .speaking-page .speaking .past-events {
      color: #222; }
    @media screen and (min-width: 769px) {
      .speaking-page .press, .speaking-page .speaking {
        width: 50%;
        float: left;
        margin: 0; }
        .speaking-page .press .h, .speaking-page .press p, .speaking-page .press ul, .speaking-page .speaking .h, .speaking-page .speaking p, .speaking-page .speaking ul {
          padding-left: 0; }
        .speaking-page .press .h, .speaking-page .speaking .h {
          font-size: 1.71429em; }
        .speaking-page .press p, .speaking-page .press li, .speaking-page .speaking p, .speaking-page .speaking li {
          font-size: 1.14286em;
          line-height: 1.5; }
        .speaking-page .press li, .speaking-page .speaking li {
          padding-bottom: 10px; }
        .speaking-page .press .past-events, .speaking-page .speaking .past-events {
          font-size: 0.92857em;
          line-height: 1.8; } }

/*============================================================================
  #About Page
==============================================================================*/
.about-page {
  padding-bottom: 40px; }
  .about-page .hero-quote {
    margin-right: -20px;
    padding: 20px 20px 30px;
    border-top: 1px solid #ddd;
    font-family: 'DomaineDisplayWeb';
    font-size: 3.28571em;
    color: #222;
    text-align: center;
    line-height: 1.2; }
    @media screen and (min-width: 769px) {
      .about-page .hero-quote {
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0; } }
  .about-page .workshop, .about-page p {
    font-size: 0.85714em;
    font-weight: normal;
    margin-top: 20px;
    text-align: left; }
  .about-page .testimonial-author {
    font-size: 0.92857em;
    font-weight: bold;
    margin-top: 10px;
    text-align: center; }
    .about-page .testimonial-author strong {
      text-transform: uppercase; }
    .about-page .testimonial-author em {
      color: #bcbcbc;
      font-style: normal; }
    .about-page .testimonial-author em:before {
      content: "\2022";
      display: inline-block;
      padding: 0 0.25em; }
  .about-page .story {
    margin-bottom: 20px; }
    .about-page .story .h {
      font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 3.42857em;
      line-height: 1;
      font-weight: 700; }
    .about-page .story .details {
      margin-bottom: 20px;
      font-size: 1.85714em; }
    .about-page .story img {
      height: auto;
      width: calc(100% + 40px);
      margin-left: -20px; }
    @media screen and (min-width: 769px) {
      .about-page .story .h {
        font-size: 5.14286em; }
      .about-page .story .details {
        font-size: 1.28571em;
        margin-bottom: 40px; }
      .about-page .story img {
        margin: 0;
        width: 100%; } }
  .about-page .bios > .h {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 3.42857em;
    line-height: 1;
    font-weight: 700; }
  .about-page .bios .positions {
    color: #EF4545; }
    .about-page .bios .positions .h, .about-page .bios .positions p {
      font-size: 1.57143em; }
    .about-page .bios .positions .h {
      margin-bottom: 0;
      font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 700; }
  .about-page .bios .bio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 103px;
    margin: 20px 0; }
    .about-page .bios .bio img {
      width: 103px; }
    .about-page .bios .bio .info {
      box-sizing: border-box;
      width: calc(100% - 103px);
      padding-left: 20px; }
    .about-page .bios .bio .name, .about-page .bios .bio .title, .about-page .bios .bio .social {
      line-height: 1.5;
      margin: 0; }
    .about-page .bios .bio .name {
      line-height: 1.3;
      font-size: 2.28571em;
      font-weight: bold; }
    .about-page .bios .bio .title, .about-page .bios .bio .social {
      font-size: 1.35714em;
      text-transform: uppercase; }
    .about-page .bios .bio .social {
      color: #c3c3c3; }
    .about-page .bios .bio .description {
      padding-top: 20px;
      font-size: 1.85714em;
      color: #676767; }
  @media screen and (min-width: 769px) {
    .about-page .bios > .h {
      font-size: 5.14286em;
      width: 45%;
      margin-right: 55%;
      padding-bottom: 0; }
    .about-page .bios .positions .h, .about-page .bios .positions p {
      font-size: 1.14286em; }
    .about-page .bios .positions + .bio,
    .about-page .bios .positions + .bio + .bio {
      margin-top: -174px; }
    .about-page .bios .bio:nth-child(4n + 5) {
      clear: left; }
    .about-page .bios .bio img {
      float: none;
      width: 77px; }
    .about-page .bios .bio .info {
      float: none;
      width: auto;
      padding-left: 0; }
    .about-page .bios .bio .name {
      font-size: 24px; }
    .about-page .bios .bio .title,
    .about-page .bios .bio .social {
      font-size: 12px;
      letter-spacing: 0.05em; }
    .about-page .bios .bio .description {
      font-size: 1.14286em;
      line-height: 1.5; } }
  .about-page .press, .about-page .speaking {
    margin-right: -20px;
    padding-right: 20px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-bottom: 60px; }
    .about-page .press .h, .about-page .speaking .h {
      font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 2.14286em;
      color: #222;
      margin-bottom: 0;
      font-weight: 700; }
    .about-page .press p, .about-page .speaking p {
      font-size: 1.57143em;
      color: #676767; }
    .about-page .press ul, .about-page .speaking ul {
      margin: 0;
      list-style: none;
      -webkit-column-count: 2;
      -moz-column-count: 2;
      column-count: 2;
      min-height: initial; }
    .about-page .press li, .about-page .speaking li {
      margin: 0;
      padding: 0;
      font-size: 1.57143em;
      color: #676767; }
    .about-page .press .past-events, .about-page .speaking .past-events {
      color: #222; }
    @media screen and (min-width: 769px) {
      .about-page .press, .about-page .speaking {
        width: 50%;
        float: left;
        margin: 0; }
        .about-page .press .h, .about-page .press p, .about-page .press ul, .about-page .speaking .h, .about-page .speaking p, .about-page .speaking ul {
          padding-left: 0; }
        .about-page .press .h, .about-page .speaking .h {
          font-size: 1.71429em; }
        .about-page .press p, .about-page .press li, .about-page .speaking p, .about-page .speaking li {
          font-size: 1.14286em;
          line-height: 1.5; }
        .about-page .press li, .about-page .speaking li {
          padding-bottom: 10px; }
        .about-page .press .past-events, .about-page .speaking .past-events {
          font-size: 0.92857em;
          line-height: 1.8; } }

/*============================================================================
  #Contact Page
==============================================================================*/
@media screen and (max-width: 768px) {
  #contact .main-content.wrapper, #contact .blog-article .main-content.media-wrapper, .blog-article #contact .main-content.media-wrapper, #contact .contact-page > section.main-content {
    margin: 0;
    padding: 0;
    max-width: none; } }
.contact-page .h {
  font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold; }
.contact-page ul, .contact-page li, .contact-page .subnav ul, .contact-page .subnav li {
  padding: 0;
  margin: 0; }
.contact-page ul {
  padding-left: 2em; }
.contact-page p {
  margin: 0; }
.contact-page p + p {
  margin-top: 20px; }
.contact-page > section {
  margin-top: 30px;
  margin-bottom: 30px; }
.contact-page > section + section {
  margin-top: -30px;
  padding-top: 30px;
  border-top: 1px solid #bcbcbc; }
.contact-page section > .h,
.contact-page section > header .h,
.contact-page .subnav-container .h {
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.14286em;
  color: #999;
  margin-bottom: 0;
  font-weight: 700; }
.contact-page .note {
  border: 0;
  padding: 0; }
  .contact-page .note:before {
    content: "*"; }
.contact-page .subsection {
  margin: 20px 0 30px; }
  .contact-page .subsection .h {
    font-size: 2em;
    color: #222;
    margin: 0; }
.contact-page section > .h + .subsection,
.contact-page section > header + .subsection,
.contact-page section > header > .h + .subsection {
  margin-top: 0; }
.contact-page .subsection p,
.contact-page .subsection li {
  font-size: 2em;
  color: #676767; }
.contact-page .subsection .testimonial blockquote {
  position: relative;
  line-height: 1.35; }
  .contact-page .subsection .testimonial blockquote p:first-child:before {
    content: open-quote;
    position: absolute;
    right: 100%; }
  .contact-page .subsection .testimonial blockquote p:last-child:after {
    content: close-quote;
    white-space: nowrap; }
.contact-page .subsection .testimonial-author {
  font-size: 0.85714em;
  font-weight: bold;
  margin-top: 10px; }
  .contact-page .subsection .testimonial-author strong {
    text-transform: uppercase; }
  .contact-page .subsection .testimonial-author em {
    color: #bcbcbc;
    font-style: normal; }
  .contact-page .subsection .testimonial-author em:before {
    content: "\2022";
    display: inline-block;
    padding: 0 0.25em; }

@media screen and (min-width: 769px) {
  #contact .main-content.wrapper, #contact .blog-article .main-content.media-wrapper, .blog-article #contact .main-content.media-wrapper, #contact .contact-page > section.main-content {
    padding-bottom: 0; }

  .contact-page section > .h,
  .contact-page section > header .h,
  .contact-page .subnav-container .h {
    font-size: 1.71429em;
    margin-bottom: 10px; }
  .contact-page ul {
    padding-left: 1em; }
  .contact-page .subsection .h,
  .contact-page .subsection p,
  .contact-page .subsection li,
  .contact-page .subnav-container .subnav a {
    font-size: 1.14286em; }
  .contact-page .subnav-container,
  .contact-page > section > header,
  .contact-page > section > .h {
    width: 270px;
    float: left; }
  .contact-page > section {
    max-width: auto;
    margin: 30px 0 60px;
    padding: 0; }
  .contact-page .subnav-container .h {
    display: block;
    padding: 0;
    margin-top: 0; }
  .contact-page .subnav-container .h:after {
    display: none; }
  .contact-page .subnav-container .subnav {
    text-align: left; }
    .contact-page .subnav-container .subnav ul, .contact-page .subnav-container .subnav li {
      display: block;
      font-weight: normal; }
    .contact-page .subnav-container .subnav a {
      margin: 0;
      padding: 0;
      line-height: 1.5;
      font-weight: normal; }
  .contact-page > header {
    margin-top: 0; }
  .contact-page > header + section,
  .contact-page > section > .subsection {
    width: calc(100% - 270px);
    float: left;
    margin-top: 0; }
  .contact-page > section + section {
    clear: left;
    margin-top: 0; }
  .contact-page > header + section > header {
    width: auto;
    float: none; }
  .contact-page > header + section > .subsection {
    width: auto;
    float: none; }
  .contact-page > section.booking > .subsection {
    width: calc(50% - 270px / 2); }
    .contact-page > section.booking > .subsection + .subsection {
      padding-left: 20px; } }
/*============================================================================
  #Pledge Page
==============================================================================*/
.pledge-page > header {
  margin-top: -20px; }
  .pledge-page > header .hgroup {
    display: table;
    width: 100%;
    margin-bottom: 40px; }
  .pledge-page > header .h {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    font-size: 1.71429em;
    line-height: 1.2; }
  .pledge-page > header .actions {
    display: table-cell;
    width: 50px;
    vertical-align: middle;
    text-align: right;
    font-size: 1.57143em;
    text-transform: uppercase; }
  .pledge-page > header .btn, .pledge-page > header .btn--secondary {
    padding: 12px 22px; }
  .pledge-page > header .pledge-txt {
    display: block;
    font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 3.57143em;
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 700; }
.pledge-page .instructions {
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px;
  padding-bottom: 0;
  border-top: 1px solid #ddd;
  color: #676767;
  font-size: 1.71429em; }
@media screen and (min-width: 769px) {
  .pledge-page > header {
    margin-top: 0; }
    .pledge-page > header .h {
      width: 100%;
      font-size: 1.71429em; }
      .pledge-page > header .h br {
        display: none; }
    .pledge-page > header .actions {
      width: 1px;
      font-size: 0.85714em; }
    .pledge-page > header .btn, .pledge-page > header .btn--secondary {
      padding: 5px 18px; }
    .pledge-page > header .pledge-txt {
      font-size: 3.21429em;
      margin-bottom: 60px; }
  .pledge-page .instructions {
    margin: 0 0 60px;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.28571em;
    counter-reset: instructions; }
    .pledge-page .instructions li {
      display: inline-block;
      counter-increment: instructions; }
      .pledge-page .instructions li:before {
        content: counter(instructions) ". ";
        font-weight: bold; }
    .pledge-page .instructions br {
      display: none; } }
.pledge-page .pledges {
  font-size: 0;
  margin-left: -20px; }
  .pledge-page .pledges .pledge {
    display: inline-block;
    margin-left: 20px;
    margin-bottom: 20px;
    width: calc(50% - 20px);
    padding-bottom: calc(50% - 20px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  @media screen and (min-width: 769px) {
    .pledge-page .pledges .pledge {
      width: calc(25% - 20px);
      padding-bottom: calc(25% - 20px); } }

/*============================================================================
  #Wallpapers Page
==============================================================================*/
.wallpapers-page > header .grid__item, .wallpapers-page > header .speaking-page .workshop, .speaking-page .wallpapers-page > header .workshop, .wallpapers-page > header .speaking-page .story .h, .speaking-page .story .wallpapers-page > header .h, .wallpapers-page > header .speaking-page .story .details, .speaking-page .story .wallpapers-page > header .details, .wallpapers-page > header .speaking-page .story img, .speaking-page .story .wallpapers-page > header img, .wallpapers-page > header .speaking-page .bios > .h, .speaking-page .wallpapers-page > header .bios > .h, .wallpapers-page > header .speaking-page .bios .positions, .speaking-page .bios .wallpapers-page > header .positions, .wallpapers-page > header .speaking-page .bios .bio, .speaking-page .bios .wallpapers-page > header .bio, .wallpapers-page > header .speaking-page .press .h, .speaking-page .press .wallpapers-page > header .h, .wallpapers-page > header .speaking-page .speaking .h, .speaking-page .speaking .wallpapers-page > header .h, .wallpapers-page > header .speaking-page .press p, .speaking-page .press .wallpapers-page > header p, .wallpapers-page > header .speaking-page .speaking p, .speaking-page .speaking .wallpapers-page > header p, .wallpapers-page > header .speaking-page .press ul, .speaking-page .press .wallpapers-page > header ul, .wallpapers-page > header .speaking-page .speaking ul, .speaking-page .speaking .wallpapers-page > header ul, .wallpapers-page > header .about-page .story .h, .about-page .story .wallpapers-page > header .h, .wallpapers-page > header .about-page .story .details, .about-page .story .wallpapers-page > header .details, .wallpapers-page > header .about-page .story img, .about-page .story .wallpapers-page > header img, .wallpapers-page > header .about-page .bios > .h, .about-page .wallpapers-page > header .bios > .h, .wallpapers-page > header .about-page .bios .positions, .about-page .bios .wallpapers-page > header .positions, .wallpapers-page > header .about-page .bios .bio, .about-page .bios .wallpapers-page > header .bio, .wallpapers-page > header .about-page .press .h, .about-page .press .wallpapers-page > header .h, .wallpapers-page > header .about-page .speaking .h, .about-page .speaking .wallpapers-page > header .h, .wallpapers-page > header .about-page .press p, .about-page .press .wallpapers-page > header p, .wallpapers-page > header .about-page .speaking p, .about-page .speaking .wallpapers-page > header p, .wallpapers-page > header .about-page .press ul, .about-page .press .wallpapers-page > header ul, .wallpapers-page > header .about-page .speaking ul, .about-page .speaking .wallpapers-page > header ul {
  padding-bottom: 20px; }
.wallpapers-page > header .resolution-title {
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 4.28571em;
  margin: 0;
  line-height: 1.1;
  font-weight: 700; }
.wallpapers-page > header .resolution {
  font-size: 3.07143em;
  margin: 0;
  line-height: 1.1; }
.wallpapers-page > header .intro {
  font-size: 1.85714em; }
.wallpapers-page .wallpapers .hr {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  width: calc(100% + 20px); }
.wallpapers-page .wallpapers .wallpaper {
  margin-bottom: 50px; }
  .wallpapers-page .wallpapers .wallpaper .category {
    color: #f92517;
    font-size: 1.78571em;
    margin: 10px 0 0;
    font-weight: bold; }
  .wallpapers-page .wallpapers .wallpaper ul {
    list-style: 0;
    margin: 0; }
  .wallpapers-page .wallpapers .wallpaper li {
    display: inline;
    margin-right: 0.3em; }
  .wallpapers-page .wallpapers .wallpaper a {
    font-size: 1.78571em;
    color: #333;
    border-bottom: 1px solid #ddd;
    font-weight: bold; }
  .wallpapers-page .wallpapers .wallpaper a:hover {
    color: #f92517; }
@media screen and (min-width: 769px) {
  .wallpapers-page > header .resolution-title {
    font-size: 3.57143em; }
  .wallpapers-page > header .resolution {
    font-size: 2.35714em; }
  .wallpapers-page > header .intro {
    font-size: 1.28571em; }
  .wallpapers-page .wallpapers .wallpaper .category, .wallpapers-page .wallpapers .wallpaper a {
    font-size: 1em; }
  .wallpapers-page .wallpapers .hr {
    margin-left: 20px;
    width: calc(100% - 20px); } }

/*============================================================================
  #Book Page
==============================================================================*/
.template-product.template-book .product-details .title {
  margin: 0;
  line-height: 1;
  font-size: 3.57143em; }
  .template-product.template-book .product-details .title .grey {
    color: #999; }
  @media screen and (min-width: 769px) {
    .template-product.template-book .product-details .title {
      font-size: 3.57143em; } }
.template-product.template-book .description h3, .template-product.template-book .description .h3 {
  color: #000;
  font-family: "neue-haas-grotesk-text", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin: 20px 0 !important; }
.template-product.template-book .description p {
  color: #999;
  font-size: 15px;
  font-weight: 700; }
.template-product.template-book .back-to-top-container {
  display: none; }

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

.note {
  border-color: #e5e5e5; }

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

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

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

/*============================================================================
  #Cart Page
==============================================================================*/
.template-cart .main-content {
  padding-bottom: 80px; }

.cart h1, .cart .h1,
.empty-cart .h {
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.28571em;
  font-weight: 700; }

.empty-cart p {
  font-size: 1.71429em; }

.empty-cart .empty-msg {
  font-size: 1.71429em;
  color: #f92517;
  font-weight: bold;
  margin-bottom: 0; }

.cart__row {
  position: relative;
  margin-top: 30px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0;
    border-top: 0 none; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

.cart__title {
  display: inline-block;
  font-size: 1.78571em;
  color: #676767;
  margin-bottom: 20px;
  padding-left: 20px; }

.cart__quantity {
  font-size: 1.78571em;
  line-height: 2;
  color: #676767;
  margin-left: 20px; }

.cart__price,
.cart__total {
  font-size: 1.78571em;
  line-height: 2.5;
  color: #676767; }

.cart__note-container label {
  display: block;
  font-size: 1.78571em;
  color: #222;
  margin-bottom: 20px; }

.cart__note-container textarea {
  min-height: 220px; }

.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    width: 100%; }

.cart__subtotal {
  margin: 0 0 0 13.33333px;
  display: inline; }

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

.cart__remove {
  display: block; }

.js-qty-wrapper {
  margin: 0 20px; }
  .js-qty-wrapper .js-qty .js-qty__adjust, .js-qty-wrapper .ajaxcart__qty .js-qty__adjust, .js-qty-wrapper .js-qty .ajaxcart__qty-adjust, .js-qty-wrapper .ajaxcart__qty .ajaxcart__qty-adjust {
    padding: 0 12px; }
  .js-qty-wrapper .js-qty input, .js-qty-wrapper .ajaxcart__qty input {
    font-size: 2em;
    padding: 16px 40px; }

.cart__update {
  border: none;
  border-image: none;
  background: none repeat scroll 0px center transparent;
  padding: 0px;
  text-decoration: none;
  display: block;
  margin: 2px auto 0;
  color: #222;
  font-weight: bold;
  position: relative; }

.cart__shipping-at-checkout {
  color: #c3c3c3;
  font-size: 1.78571em;
  padding-top: 20px;
  margin-bottom: 30px; }

.cart__subtotal-conatiner {
  display: table;
  width: 100%;
  margin-bottom: 40px; }

.cart__subtotal-title {
  display: table-cell;
  width: 1%;
  font-size: 1.78571em;
  font-weight: bold;
  color: #222;
  vertical-align: middle; }

.cart__subtotal {
  display: table-cell;
  width: 1%;
  text-align: right;
  font-size: 2.85714em;
  color: #222;
  font-weight: bold; }

.cart__checkout {
  display: block;
  font-size: 2em;
  font-weight: bold;
  width: 100%;
  text-transform: uppercase;
  padding: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.05em; }

.cart__adtl_checkout input[type="image"] {
  width: 35%;
  border: 0 !important; }

@media screen and (min-width: 769px) {
  .cart h1, .cart .h1,
  .empty-cart .h {
    font-size: 1.71429em; }

  .empty-cart p,
  .empty-cart .empty-msg {
    font-size: 1.28571em; }

  .cart__header-labels {
    border: 0;
    padding: 0;
    font-weight: bold; }

  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item, .cart__row--table-large .speaking-page .workshop, .speaking-page .cart__row--table-large .workshop, .cart__row--table-large .speaking-page .story .h, .speaking-page .story .cart__row--table-large .h, .cart__row--table-large .speaking-page .story .details, .speaking-page .story .cart__row--table-large .details, .cart__row--table-large .speaking-page .story img, .speaking-page .story .cart__row--table-large img, .cart__row--table-large .speaking-page .bios > .h, .speaking-page .cart__row--table-large .bios > .h, .cart__row--table-large .speaking-page .bios .positions, .speaking-page .bios .cart__row--table-large .positions, .cart__row--table-large .speaking-page .bios .bio, .speaking-page .bios .cart__row--table-large .bio, .cart__row--table-large .speaking-page .press .h, .speaking-page .press .cart__row--table-large .h, .cart__row--table-large .speaking-page .speaking .h, .speaking-page .speaking .cart__row--table-large .h, .cart__row--table-large .speaking-page .press p, .speaking-page .press .cart__row--table-large p, .cart__row--table-large .speaking-page .speaking p, .speaking-page .speaking .cart__row--table-large p, .cart__row--table-large .speaking-page .press ul, .speaking-page .press .cart__row--table-large ul, .cart__row--table-large .speaking-page .speaking ul, .speaking-page .speaking .cart__row--table-large ul, .cart__row--table-large .about-page .story .h, .about-page .story .cart__row--table-large .h, .cart__row--table-large .about-page .story .details, .about-page .story .cart__row--table-large .details, .cart__row--table-large .about-page .story img, .about-page .story .cart__row--table-large img, .cart__row--table-large .about-page .bios > .h, .about-page .cart__row--table-large .bios > .h, .cart__row--table-large .about-page .bios .positions, .about-page .bios .cart__row--table-large .positions, .cart__row--table-large .about-page .bios .bio, .about-page .bios .cart__row--table-large .bio, .cart__row--table-large .about-page .press .h, .about-page .press .cart__row--table-large .h, .cart__row--table-large .about-page .speaking .h, .about-page .speaking .cart__row--table-large .h, .cart__row--table-large .about-page .press p, .about-page .press .cart__row--table-large p, .cart__row--table-large .about-page .speaking p, .about-page .speaking .cart__row--table-large p, .cart__row--table-large .about-page .press ul, .about-page .press .cart__row--table-large ul, .cart__row--table-large .about-page .speaking ul, .about-page .speaking .cart__row--table-large ul {
      display: table-cell;
      vertical-align: middle;
      float: none; }
    .cart__row--table-large .cart__header-label {
      vertical-align: bottom; }

  .cart__row {
    margin-top: 20px;
    padding-top: 20px; }

  .cart__row__main .grid__item a, .cart__row__main .speaking-page .workshop a, .speaking-page .cart__row__main .workshop a, .cart__row__main .speaking-page .story .h a, .speaking-page .story .cart__row__main .h a, .cart__row__main .speaking-page .story .details a, .speaking-page .story .cart__row__main .details a, .cart__row__main .speaking-page .story img a, .speaking-page .story .cart__row__main img a, .cart__row__main .speaking-page .bios > .h a, .speaking-page .cart__row__main .bios > .h a, .cart__row__main .speaking-page .bios .positions a, .speaking-page .bios .cart__row__main .positions a, .cart__row__main .speaking-page .bios .bio a, .speaking-page .bios .cart__row__main .bio a, .cart__row__main .speaking-page .press .h a, .speaking-page .press .cart__row__main .h a, .cart__row__main .speaking-page .speaking .h a, .speaking-page .speaking .cart__row__main .h a, .cart__row__main .speaking-page .press p a, .speaking-page .press .cart__row__main p a, .cart__row__main .speaking-page .speaking p a, .speaking-page .speaking .cart__row__main p a, .cart__row__main .speaking-page .press ul a, .speaking-page .press .cart__row__main ul a, .cart__row__main .speaking-page .speaking ul a, .speaking-page .speaking .cart__row__main ul a, .cart__row__main .about-page .story .h a, .about-page .story .cart__row__main .h a, .cart__row__main .about-page .story .details a, .about-page .story .cart__row__main .details a, .cart__row__main .about-page .story img a, .about-page .story .cart__row__main img a, .cart__row__main .about-page .bios > .h a, .about-page .cart__row__main .bios > .h a, .cart__row__main .about-page .bios .positions a, .about-page .bios .cart__row__main .positions a, .cart__row__main .about-page .bios .bio a, .about-page .bios .cart__row__main .bio a, .cart__row__main .about-page .press .h a, .about-page .press .cart__row__main .h a, .cart__row__main .about-page .speaking .h a, .about-page .speaking .cart__row__main .h a, .cart__row__main .about-page .press p a, .about-page .press .cart__row__main p a, .cart__row__main .about-page .speaking p a, .about-page .speaking .cart__row__main p a, .cart__row__main .about-page .press ul a, .about-page .press .cart__row__main ul a, .cart__row__main .about-page .speaking ul a, .about-page .speaking .cart__row__main ul a {
    display: inline; }
  .cart__row__main .grid__item a, .cart__row__main .speaking-page .workshop a, .speaking-page .cart__row__main .workshop a, .cart__row__main .speaking-page .story .h a, .speaking-page .story .cart__row__main .h a, .cart__row__main .speaking-page .story .details a, .speaking-page .story .cart__row__main .details a, .cart__row__main .speaking-page .story img a, .speaking-page .story .cart__row__main img a, .cart__row__main .speaking-page .bios > .h a, .speaking-page .cart__row__main .bios > .h a, .cart__row__main .speaking-page .bios .positions a, .speaking-page .bios .cart__row__main .positions a, .cart__row__main .speaking-page .bios .bio a, .speaking-page .bios .cart__row__main .bio a, .cart__row__main .speaking-page .press .h a, .speaking-page .press .cart__row__main .h a, .cart__row__main .speaking-page .speaking .h a, .speaking-page .speaking .cart__row__main .h a, .cart__row__main .speaking-page .press p a, .speaking-page .press .cart__row__main p a, .cart__row__main .speaking-page .speaking p a, .speaking-page .speaking .cart__row__main p a, .cart__row__main .speaking-page .press ul a, .speaking-page .press .cart__row__main ul a, .cart__row__main .speaking-page .speaking ul a, .speaking-page .speaking .cart__row__main ul a, .cart__row__main .about-page .story .h a, .about-page .story .cart__row__main .h a, .cart__row__main .about-page .story .details a, .about-page .story .cart__row__main .details a, .cart__row__main .about-page .story img a, .about-page .story .cart__row__main img a, .cart__row__main .about-page .bios > .h a, .about-page .cart__row__main .bios > .h a, .cart__row__main .about-page .bios .positions a, .about-page .bios .cart__row__main .positions a, .cart__row__main .about-page .bios .bio a, .about-page .bios .cart__row__main .bio a, .cart__row__main .about-page .press .h a, .about-page .press .cart__row__main .h a, .cart__row__main .about-page .speaking .h a, .about-page .speaking .cart__row__main .h a, .cart__row__main .about-page .press p a, .about-page .press .cart__row__main p a, .cart__row__main .about-page .speaking p a, .about-page .speaking .cart__row__main p a, .cart__row__main .about-page .press ul a, .about-page .press .cart__row__main ul a, .cart__row__main .about-page .speaking ul a, .about-page .speaking .cart__row__main ul a,
  .cart__row__main .grid__item button,
  .cart__row__main .speaking-page .workshop button,
  .speaking-page .cart__row__main .workshop button,
  .cart__row__main .speaking-page .story .h button,
  .speaking-page .story .cart__row__main .h button,
  .cart__row__main .speaking-page .story .details button,
  .speaking-page .story .cart__row__main .details button,
  .cart__row__main .speaking-page .story img button,
  .speaking-page .story .cart__row__main img button,
  .cart__row__main .speaking-page .bios > .h button,
  .speaking-page .cart__row__main .bios > .h button,
  .cart__row__main .speaking-page .bios .positions button,
  .speaking-page .bios .cart__row__main .positions button,
  .cart__row__main .speaking-page .bios .bio button,
  .speaking-page .bios .cart__row__main .bio button,
  .cart__row__main .speaking-page .press .h button,
  .speaking-page .press .cart__row__main .h button,
  .cart__row__main .speaking-page .speaking .h button,
  .speaking-page .speaking .cart__row__main .h button,
  .cart__row__main .speaking-page .press p button,
  .speaking-page .press .cart__row__main p button,
  .cart__row__main .speaking-page .speaking p button,
  .speaking-page .speaking .cart__row__main p button,
  .cart__row__main .speaking-page .press ul button,
  .speaking-page .press .cart__row__main ul button,
  .cart__row__main .speaking-page .speaking ul button,
  .speaking-page .speaking .cart__row__main ul button,
  .cart__row__main .about-page .story .h button,
  .about-page .story .cart__row__main .h button,
  .cart__row__main .about-page .story .details button,
  .about-page .story .cart__row__main .details button,
  .cart__row__main .about-page .story img button,
  .about-page .story .cart__row__main img button,
  .cart__row__main .about-page .bios > .h button,
  .about-page .cart__row__main .bios > .h button,
  .cart__row__main .about-page .bios .positions button,
  .about-page .bios .cart__row__main .positions button,
  .cart__row__main .about-page .bios .bio button,
  .about-page .bios .cart__row__main .bio button,
  .cart__row__main .about-page .press .h button,
  .about-page .press .cart__row__main .h button,
  .cart__row__main .about-page .speaking .h button,
  .about-page .speaking .cart__row__main .h button,
  .cart__row__main .about-page .press p button,
  .about-page .press .cart__row__main p button,
  .cart__row__main .about-page .speaking p button,
  .about-page .speaking .cart__row__main p button,
  .cart__row__main .about-page .press ul button,
  .about-page .press .cart__row__main ul button,
  .cart__row__main .about-page .speaking ul button,
  .about-page .speaking .cart__row__main ul button {
    color: #222;
    border-bottom: 1px solid #ddd; }
  .cart__row__main .cart__title,
  .cart__row__main .cart__quantity,
  .cart__row__main .cart__update,
  .cart__row__main .cart__price,
  .cart__row__main .cart__total {
    font-size: 1em;
    color: #222;
    font-weight: bold; }
  .cart__row__main .cart__image img {
    max-width: 100px; }
  .cart__row__main .cart__title {
    margin: 0;
    padding-left: 0;
    display: inline; }
  .cart__row__main .cart__quantity {
    width: 35px;
    box-sizing: content-box;
    margin: 0; }
  .cart__row__main .cart__update {
    font-size: 0.85714em; }
  .cart__row__main .cart__price {
    color: #999; }
  .cart__row__main .cart__update {
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  .cart__note-container label {
    font-size: 1em;
    margin-bottom: 10px; }
  .cart__note-container textarea {
    min-height: 80px; }

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

  .cart__shipping-at-checkout {
    font-size: 1em;
    display: inline; }

  .cart__subtotal-conatiner {
    display: inline; }

  .cart__subtotal-title,
  .cart__subtotal {
    display: inline;
    width: auto;
    font-size: 1em; }

  .cart__subtotal-title:after {
    content: ':'; }

  .cart__subtotal-title {
    margin: 0 0.35em 0 2em; }

  .cart__subtotal {
    margin-left: 0; }

  .cart__checkout-actions {
    *zoom: 1;
    padding-top: 20px; }
    .cart__checkout-actions:after {
      content: '';
      display: table;
      clear: both; }

  .cart__checkout {
    display: inline-block;
    font-size: 1em;
    width: auto;
    border-radius: 0;
    padding: 8px 14px;
    float: right; }

  .cart__adtl_checkout {
    float: right;
    margin-right: 20px; }
    .cart__adtl_checkout input[type="image"] {
      width: auto;
      padding: 0; }

  .js-qty-wrapper {
    margin: 0; }
    .js-qty-wrapper .js-qty, .js-qty-wrapper .ajaxcart__qty {
      width: 90px;
      min-width: 90px; }
      .js-qty-wrapper .js-qty .js-qty__adjust, .js-qty-wrapper .ajaxcart__qty .js-qty__adjust, .js-qty-wrapper .js-qty .ajaxcart__qty-adjust, .js-qty-wrapper .ajaxcart__qty .ajaxcart__qty-adjust {
        padding: 0 4px; }
      .js-qty-wrapper .js-qty input, .js-qty-wrapper .ajaxcart__qty input {
        font-size: 1em;
        padding: 3px 30px; } }
/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
.ajaxcart__inner {
  margin-bottom: 40px; }

.ajaxcart__row > .grid, .ajaxcart__row > .grid--rev, .ajaxcart__row > .grid--full, .speaking-page .ajaxcart__row > .hero-quote, .speaking-page .ajaxcart__row > .story, .speaking-page .ajaxcart__row > .bios, .speaking-page .ajaxcart__row > .press, .speaking-page .ajaxcart__row > .speaking, .about-page .ajaxcart__row > .hero-quote, .about-page .ajaxcart__row > .story, .about-page .ajaxcart__row > .bios, .about-page .ajaxcart__row > .press, .about-page .ajaxcart__row > .speaking {
  margin-left: -20px; }
  .ajaxcart__row > .grid > .grid__item, .ajaxcart__row > .grid--rev > .grid__item, .ajaxcart__row > .grid--full > .grid__item, .speaking-page .ajaxcart__row > .hero-quote > .grid__item, .speaking-page .ajaxcart__row > .story > .grid__item, .speaking-page .ajaxcart__row > .bios > .grid__item, .speaking-page .ajaxcart__row > .press > .grid__item, .speaking-page .ajaxcart__row > .speaking > .grid__item, .about-page .ajaxcart__row > .hero-quote > .grid__item, .about-page .ajaxcart__row > .story > .grid__item, .about-page .ajaxcart__row > .bios > .grid__item, .about-page .ajaxcart__row > .press > .grid__item, .about-page .ajaxcart__row > .speaking > .grid__item, .speaking-page .ajaxcart__row > .grid > .workshop, .speaking-page .ajaxcart__row > .grid--rev > .workshop, .speaking-page .ajaxcart__row > .grid--full > .workshop, .speaking-page .ajaxcart__row > .hero-quote > .workshop, .speaking-page .ajaxcart__row > .story > .workshop, .speaking-page .ajaxcart__row > .bios > .workshop, .speaking-page .ajaxcart__row > .press > .workshop, .speaking-page .ajaxcart__row > .speaking > .workshop, .about-page .speaking-page .ajaxcart__row > .hero-quote > .workshop, .speaking-page .about-page .ajaxcart__row > .hero-quote > .workshop, .about-page .speaking-page .ajaxcart__row > .story > .workshop, .speaking-page .about-page .ajaxcart__row > .story > .workshop, .about-page .speaking-page .ajaxcart__row > .bios > .workshop, .speaking-page .about-page .ajaxcart__row > .bios > .workshop, .about-page .speaking-page .ajaxcart__row > .press > .workshop, .speaking-page .about-page .ajaxcart__row > .press > .workshop, .about-page .speaking-page .ajaxcart__row > .speaking > .workshop, .speaking-page .about-page .ajaxcart__row > .speaking > .workshop, .speaking-page .story .ajaxcart__row > .grid > .h, .speaking-page .story .ajaxcart__row > .grid--rev > .h, .speaking-page .story .ajaxcart__row > .grid--full > .h, .speaking-page .story .ajaxcart__row > .hero-quote > .h, .speaking-page .ajaxcart__row > .story > .h, .speaking-page .story .ajaxcart__row > .bios > .h, .speaking-page .story .ajaxcart__row > .press > .h, .speaking-page .story .ajaxcart__row > .speaking > .h, .about-page .speaking-page .story .ajaxcart__row > .hero-quote > .h, .speaking-page .story .about-page .ajaxcart__row > .hero-quote > .h, .about-page .speaking-page .ajaxcart__row > .story > .h, .speaking-page .about-page .ajaxcart__row > .story > .h, .about-page .speaking-page .story .ajaxcart__row > .bios > .h, .speaking-page .story .about-page .ajaxcart__row > .bios > .h, .about-page .speaking-page .story .ajaxcart__row > .press > .h, .speaking-page .story .about-page .ajaxcart__row > .press > .h, .about-page .speaking-page .story .ajaxcart__row > .speaking > .h, .speaking-page .story .about-page .ajaxcart__row > .speaking > .h, .speaking-page .story .ajaxcart__row > .grid > .details, .speaking-page .story .ajaxcart__row > .grid--rev > .details, .speaking-page .story .ajaxcart__row > .grid--full > .details, .speaking-page .story .ajaxcart__row > .hero-quote > .details, .speaking-page .ajaxcart__row > .story > .details, .speaking-page .story .ajaxcart__row > .bios > .details, .speaking-page .story .ajaxcart__row > .press > .details, .speaking-page .story .ajaxcart__row > .speaking > .details, .about-page .speaking-page .story .ajaxcart__row > .hero-quote > .details, .speaking-page .story .about-page .ajaxcart__row > .hero-quote > .details, .about-page .speaking-page .ajaxcart__row > .story > .details, .speaking-page .about-page .ajaxcart__row > .story > .details, .about-page .speaking-page .story .ajaxcart__row > .bios > .details, .speaking-page .story .about-page .ajaxcart__row > .bios > .details, .about-page .speaking-page .story .ajaxcart__row > .press > .details, .speaking-page .story .about-page .ajaxcart__row > .press > .details, .about-page .speaking-page .story .ajaxcart__row > .speaking > .details, .speaking-page .story .about-page .ajaxcart__row > .speaking > .details, .speaking-page .story .ajaxcart__row > .grid > img, .speaking-page .story .ajaxcart__row > .grid--rev > img, .speaking-page .story .ajaxcart__row > .grid--full > img, .speaking-page .story .ajaxcart__row > .hero-quote > img, .speaking-page .ajaxcart__row > .story > img, .speaking-page .story .ajaxcart__row > .bios > img, .speaking-page .story .ajaxcart__row > .press > img, .speaking-page .story .ajaxcart__row > .speaking > img, .about-page .speaking-page .story .ajaxcart__row > .hero-quote > img, .speaking-page .story .about-page .ajaxcart__row > .hero-quote > img, .about-page .speaking-page .ajaxcart__row > .story > img, .speaking-page .about-page .ajaxcart__row > .story > img, .about-page .speaking-page .story .ajaxcart__row > .bios > img, .speaking-page .story .about-page .ajaxcart__row > .bios > img, .about-page .speaking-page .story .ajaxcart__row > .press > img, .speaking-page .story .about-page .ajaxcart__row > .press > img, .about-page .speaking-page .story .ajaxcart__row > .speaking > img, .speaking-page .story .about-page .ajaxcart__row > .speaking > img, .speaking-page .ajaxcart__row > .bios.grid > .h, .speaking-page .ajaxcart__row > .bios.grid--rev > .h, .speaking-page .ajaxcart__row > .bios.grid--full > .h, .speaking-page .ajaxcart__row > .bios.hero-quote > .h, .speaking-page .ajaxcart__row > .bios.story > .h, .speaking-page .ajaxcart__row > .bios > .h, .speaking-page .ajaxcart__row > .bios.press > .h, .speaking-page .ajaxcart__row > .bios.speaking > .h, .about-page .speaking-page .ajaxcart__row > .bios.hero-quote > .h, .speaking-page .about-page .ajaxcart__row > .bios.hero-quote > .h, .about-page .speaking-page .ajaxcart__row > .bios.story > .h, .speaking-page .about-page .ajaxcart__row > .bios.story > .h, .about-page .speaking-page .ajaxcart__row > .bios > .h, .speaking-page .about-page .ajaxcart__row > .bios > .h, .about-page .speaking-page .ajaxcart__row > .bios.press > .h, .speaking-page .about-page .ajaxcart__row > .bios.press > .h, .about-page .speaking-page .ajaxcart__row > .bios.speaking > .h, .speaking-page .about-page .ajaxcart__row > .bios.speaking > .h, .speaking-page .bios .ajaxcart__row > .grid > .positions, .speaking-page .bios .ajaxcart__row > .grid--rev > .positions, .speaking-page .bios .ajaxcart__row > .grid--full > .positions, .speaking-page .bios .ajaxcart__row > .hero-quote > .positions, .speaking-page .bios .ajaxcart__row > .story > .positions, .speaking-page .ajaxcart__row > .bios > .positions, .speaking-page .bios .ajaxcart__row > .press > .positions, .speaking-page .bios .ajaxcart__row > .speaking > .positions, .about-page .speaking-page .bios .ajaxcart__row > .hero-quote > .positions, .speaking-page .bios .about-page .ajaxcart__row > .hero-quote > .positions, .about-page .speaking-page .bios .ajaxcart__row > .story > .positions, .speaking-page .bios .about-page .ajaxcart__row > .story > .positions, .about-page .speaking-page .ajaxcart__row > .bios > .positions, .speaking-page .about-page .ajaxcart__row > .bios > .positions, .about-page .speaking-page .bios .ajaxcart__row > .press > .positions, .speaking-page .bios .about-page .ajaxcart__row > .press > .positions, .about-page .speaking-page .bios .ajaxcart__row > .speaking > .positions, .speaking-page .bios .about-page .ajaxcart__row > .speaking > .positions, .speaking-page .bios .ajaxcart__row > .grid > .bio, .speaking-page .bios .ajaxcart__row > .grid--rev > .bio, .speaking-page .bios .ajaxcart__row > .grid--full > .bio, .speaking-page .bios .ajaxcart__row > .hero-quote > .bio, .speaking-page .bios .ajaxcart__row > .story > .bio, .speaking-page .ajaxcart__row > .bios > .bio, .speaking-page .bios .ajaxcart__row > .press > .bio, .speaking-page .bios .ajaxcart__row > .speaking > .bio, .about-page .speaking-page .bios .ajaxcart__row > .hero-quote > .bio, .speaking-page .bios .about-page .ajaxcart__row > .hero-quote > .bio, .about-page .speaking-page .bios .ajaxcart__row > .story > .bio, .speaking-page .bios .about-page .ajaxcart__row > .story > .bio, .about-page .speaking-page .ajaxcart__row > .bios > .bio, .speaking-page .about-page .ajaxcart__row > .bios > .bio, .about-page .speaking-page .bios .ajaxcart__row > .press > .bio, .speaking-page .bios .about-page .ajaxcart__row > .press > .bio, .about-page .speaking-page .bios .ajaxcart__row > .speaking > .bio, .speaking-page .bios .about-page .ajaxcart__row > .speaking > .bio, .speaking-page .press .ajaxcart__row > .grid > .h, .speaking-page .press .ajaxcart__row > .grid--rev > .h, .speaking-page .press .ajaxcart__row > .grid--full > .h, .speaking-page .press .ajaxcart__row > .hero-quote > .h, .speaking-page .press .ajaxcart__row > .story > .h, .speaking-page .press .ajaxcart__row > .bios > .h, .speaking-page .ajaxcart__row > .press > .h, .speaking-page .press .ajaxcart__row > .speaking > .h, .about-page .speaking-page .press .ajaxcart__row > .hero-quote > .h, .speaking-page .press .about-page .ajaxcart__row > .hero-quote > .h, .about-page .speaking-page .press .ajaxcart__row > .story > .h, .speaking-page .press .about-page .ajaxcart__row > .story > .h, .about-page .speaking-page .press .ajaxcart__row > .bios > .h, .speaking-page .press .about-page .ajaxcart__row > .bios > .h, .about-page .speaking-page .ajaxcart__row > .press > .h, .speaking-page .about-page .ajaxcart__row > .press > .h, .about-page .speaking-page .press .ajaxcart__row > .speaking > .h, .speaking-page .press .about-page .ajaxcart__row > .speaking > .h, .speaking-page .speaking .ajaxcart__row > .grid > .h, .speaking-page .speaking .ajaxcart__row > .grid--rev > .h, .speaking-page .speaking .ajaxcart__row > .grid--full > .h, .speaking-page .speaking .ajaxcart__row > .hero-quote > .h, .speaking-page .speaking .ajaxcart__row > .story > .h, .speaking-page .speaking .ajaxcart__row > .bios > .h, .speaking-page .speaking .ajaxcart__row > .press > .h, .speaking-page .ajaxcart__row > .speaking > .h, .about-page .speaking-page .speaking .ajaxcart__row > .hero-quote > .h, .speaking-page .speaking .about-page .ajaxcart__row > .hero-quote > .h, .about-page .speaking-page .speaking .ajaxcart__row > .story > .h, .speaking-page .speaking .about-page .ajaxcart__row > .story > .h, .about-page .speaking-page .speaking .ajaxcart__row > .bios > .h, .speaking-page .speaking .about-page .ajaxcart__row > .bios > .h, .about-page .speaking-page .speaking .ajaxcart__row > .press > .h, .speaking-page .speaking .about-page .ajaxcart__row > .press > .h, .about-page .speaking-page .ajaxcart__row > .speaking > .h, .speaking-page .about-page .ajaxcart__row > .speaking > .h, .speaking-page .press .ajaxcart__row > .grid > p, .speaking-page .press .ajaxcart__row > .grid--rev > p, .speaking-page .press .ajaxcart__row > .grid--full > p, .speaking-page .press .ajaxcart__row > .hero-quote > p, .speaking-page .press .ajaxcart__row > .story > p, .speaking-page .press .ajaxcart__row > .bios > p, .speaking-page .ajaxcart__row > .press > p, .speaking-page .press .ajaxcart__row > .speaking > p, .about-page .speaking-page .press .ajaxcart__row > .hero-quote > p, .speaking-page .press .about-page .ajaxcart__row > .hero-quote > p, .about-page .speaking-page .press .ajaxcart__row > .story > p, .speaking-page .press .about-page .ajaxcart__row > .story > p, .about-page .speaking-page .press .ajaxcart__row > .bios > p, .speaking-page .press .about-page .ajaxcart__row > .bios > p, .about-page .speaking-page .ajaxcart__row > .press > p, .speaking-page .about-page .ajaxcart__row > .press > p, .about-page .speaking-page .press .ajaxcart__row > .speaking > p, .speaking-page .press .about-page .ajaxcart__row > .speaking > p, .speaking-page .speaking .ajaxcart__row > .grid > p, .speaking-page .speaking .ajaxcart__row > .grid--rev > p, .speaking-page .speaking .ajaxcart__row > .grid--full > p, .speaking-page .speaking .ajaxcart__row > .hero-quote > p, .speaking-page .speaking .ajaxcart__row > .story > p, .speaking-page .speaking .ajaxcart__row > .bios > p, .speaking-page .speaking .ajaxcart__row > .press > p, .speaking-page .ajaxcart__row > .speaking > p, .about-page .speaking-page .speaking .ajaxcart__row > .hero-quote > p, .speaking-page .speaking .about-page .ajaxcart__row > .hero-quote > p, .about-page .speaking-page .speaking .ajaxcart__row > .story > p, .speaking-page .speaking .about-page .ajaxcart__row > .story > p, .about-page .speaking-page .speaking .ajaxcart__row > .bios > p, .speaking-page .speaking .about-page .ajaxcart__row > .bios > p, .about-page .speaking-page .speaking .ajaxcart__row > .press > p, .speaking-page .speaking .about-page .ajaxcart__row > .press > p, .about-page .speaking-page .ajaxcart__row > .speaking > p, .speaking-page .about-page .ajaxcart__row > .speaking > p, .speaking-page .press .ajaxcart__row > .grid > ul, .speaking-page .press .ajaxcart__row > .grid--rev > ul, .speaking-page .press .ajaxcart__row > .grid--full > ul, .speaking-page .press .ajaxcart__row > .hero-quote > ul, .speaking-page .press .ajaxcart__row > .story > ul, .speaking-page .press .ajaxcart__row > .bios > ul, .speaking-page .ajaxcart__row > .press > ul, .speaking-page .press .ajaxcart__row > .speaking > ul, .about-page .speaking-page .press .ajaxcart__row > .hero-quote > ul, .speaking-page .press .about-page .ajaxcart__row > .hero-quote > ul, .about-page .speaking-page .press .ajaxcart__row > .story > ul, .speaking-page .press .about-page .ajaxcart__row > .story > ul, .about-page .speaking-page .press .ajaxcart__row > .bios > ul, .speaking-page .press .about-page .ajaxcart__row > .bios > ul, .about-page .speaking-page .ajaxcart__row > .press > ul, .speaking-page .about-page .ajaxcart__row > .press > ul, .about-page .speaking-page .press .ajaxcart__row > .speaking > ul, .speaking-page .press .about-page .ajaxcart__row > .speaking > ul, .speaking-page .speaking .ajaxcart__row > .grid > ul, .speaking-page .speaking .ajaxcart__row > .grid--rev > ul, .speaking-page .speaking .ajaxcart__row > .grid--full > ul, .speaking-page .speaking .ajaxcart__row > .hero-quote > ul, .speaking-page .speaking .ajaxcart__row > .story > ul, .speaking-page .speaking .ajaxcart__row > .bios > ul, .speaking-page .speaking .ajaxcart__row > .press > ul, .speaking-page .ajaxcart__row > .speaking > ul, .about-page .speaking-page .speaking .ajaxcart__row > .hero-quote > ul, .speaking-page .speaking .about-page .ajaxcart__row > .hero-quote > ul, .about-page .speaking-page .speaking .ajaxcart__row > .story > ul, .speaking-page .speaking .about-page .ajaxcart__row > .story > ul, .about-page .speaking-page .speaking .ajaxcart__row > .bios > ul, .speaking-page .speaking .about-page .ajaxcart__row > .bios > ul, .about-page .speaking-page .speaking .ajaxcart__row > .press > ul, .speaking-page .speaking .about-page .ajaxcart__row > .press > ul, .about-page .speaking-page .ajaxcart__row > .speaking > ul, .speaking-page .about-page .ajaxcart__row > .speaking > ul, .about-page .story .ajaxcart__row > .grid > .h, .about-page .story .ajaxcart__row > .grid--rev > .h, .about-page .story .ajaxcart__row > .grid--full > .h, .speaking-page .about-page .story .ajaxcart__row > .hero-quote > .h, .about-page .story .speaking-page .ajaxcart__row > .hero-quote > .h, .speaking-page .about-page .ajaxcart__row > .story > .h, .about-page .speaking-page .ajaxcart__row > .story > .h, .speaking-page .about-page .story .ajaxcart__row > .bios > .h, .about-page .story .speaking-page .ajaxcart__row > .bios > .h, .speaking-page .about-page .story .ajaxcart__row > .press > .h, .about-page .story .speaking-page .ajaxcart__row > .press > .h, .speaking-page .about-page .story .ajaxcart__row > .speaking > .h, .about-page .story .speaking-page .ajaxcart__row > .speaking > .h, .about-page .story .ajaxcart__row > .hero-quote > .h, .about-page .ajaxcart__row > .story > .h, .about-page .story .ajaxcart__row > .bios > .h, .about-page .story .ajaxcart__row > .press > .h, .about-page .story .ajaxcart__row > .speaking > .h, .about-page .story .ajaxcart__row > .grid > .details, .about-page .story .ajaxcart__row > .grid--rev > .details, .about-page .story .ajaxcart__row > .grid--full > .details, .speaking-page .about-page .story .ajaxcart__row > .hero-quote > .details, .about-page .story .speaking-page .ajaxcart__row > .hero-quote > .details, .speaking-page .about-page .ajaxcart__row > .story > .details, .about-page .speaking-page .ajaxcart__row > .story > .details, .speaking-page .about-page .story .ajaxcart__row > .bios > .details, .about-page .story .speaking-page .ajaxcart__row > .bios > .details, .speaking-page .about-page .story .ajaxcart__row > .press > .details, .about-page .story .speaking-page .ajaxcart__row > .press > .details, .speaking-page .about-page .story .ajaxcart__row > .speaking > .details, .about-page .story .speaking-page .ajaxcart__row > .speaking > .details, .about-page .story .ajaxcart__row > .hero-quote > .details, .about-page .ajaxcart__row > .story > .details, .about-page .story .ajaxcart__row > .bios > .details, .about-page .story .ajaxcart__row > .press > .details, .about-page .story .ajaxcart__row > .speaking > .details, .about-page .story .ajaxcart__row > .grid > img, .about-page .story .ajaxcart__row > .grid--rev > img, .about-page .story .ajaxcart__row > .grid--full > img, .speaking-page .about-page .story .ajaxcart__row > .hero-quote > img, .about-page .story .speaking-page .ajaxcart__row > .hero-quote > img, .speaking-page .about-page .ajaxcart__row > .story > img, .about-page .speaking-page .ajaxcart__row > .story > img, .speaking-page .about-page .story .ajaxcart__row > .bios > img, .about-page .story .speaking-page .ajaxcart__row > .bios > img, .speaking-page .about-page .story .ajaxcart__row > .press > img, .about-page .story .speaking-page .ajaxcart__row > .press > img, .speaking-page .about-page .story .ajaxcart__row > .speaking > img, .about-page .story .speaking-page .ajaxcart__row > .speaking > img, .about-page .story .ajaxcart__row > .hero-quote > img, .about-page .ajaxcart__row > .story > img, .about-page .story .ajaxcart__row > .bios > img, .about-page .story .ajaxcart__row > .press > img, .about-page .story .ajaxcart__row > .speaking > img, .about-page .ajaxcart__row > .bios.grid > .h, .about-page .ajaxcart__row > .bios.grid--rev > .h, .about-page .ajaxcart__row > .bios.grid--full > .h, .speaking-page .about-page .ajaxcart__row > .bios.hero-quote > .h, .about-page .speaking-page .ajaxcart__row > .bios.hero-quote > .h, .speaking-page .about-page .ajaxcart__row > .bios.story > .h, .about-page .speaking-page .ajaxcart__row > .bios.story > .h, .speaking-page .about-page .ajaxcart__row > .bios > .h, .about-page .speaking-page .ajaxcart__row > .bios > .h, .speaking-page .about-page .ajaxcart__row > .bios.press > .h, .about-page .speaking-page .ajaxcart__row > .bios.press > .h, .speaking-page .about-page .ajaxcart__row > .bios.speaking > .h, .about-page .speaking-page .ajaxcart__row > .bios.speaking > .h, .about-page .ajaxcart__row > .bios.hero-quote > .h, .about-page .ajaxcart__row > .bios.story > .h, .about-page .ajaxcart__row > .bios > .h, .about-page .ajaxcart__row > .bios.press > .h, .about-page .ajaxcart__row > .bios.speaking > .h, .about-page .bios .ajaxcart__row > .grid > .positions, .about-page .bios .ajaxcart__row > .grid--rev > .positions, .about-page .bios .ajaxcart__row > .grid--full > .positions, .speaking-page .about-page .bios .ajaxcart__row > .hero-quote > .positions, .about-page .bios .speaking-page .ajaxcart__row > .hero-quote > .positions, .speaking-page .about-page .bios .ajaxcart__row > .story > .positions, .about-page .bios .speaking-page .ajaxcart__row > .story > .positions, .speaking-page .about-page .ajaxcart__row > .bios > .positions, .about-page .speaking-page .ajaxcart__row > .bios > .positions, .speaking-page .about-page .bios .ajaxcart__row > .press > .positions, .about-page .bios .speaking-page .ajaxcart__row > .press > .positions, .speaking-page .about-page .bios .ajaxcart__row > .speaking > .positions, .about-page .bios .speaking-page .ajaxcart__row > .speaking > .positions, .about-page .bios .ajaxcart__row > .hero-quote > .positions, .about-page .bios .ajaxcart__row > .story > .positions, .about-page .ajaxcart__row > .bios > .positions, .about-page .bios .ajaxcart__row > .press > .positions, .about-page .bios .ajaxcart__row > .speaking > .positions, .about-page .bios .ajaxcart__row > .grid > .bio, .about-page .bios .ajaxcart__row > .grid--rev > .bio, .about-page .bios .ajaxcart__row > .grid--full > .bio, .speaking-page .about-page .bios .ajaxcart__row > .hero-quote > .bio, .about-page .bios .speaking-page .ajaxcart__row > .hero-quote > .bio, .speaking-page .about-page .bios .ajaxcart__row > .story > .bio, .about-page .bios .speaking-page .ajaxcart__row > .story > .bio, .speaking-page .about-page .ajaxcart__row > .bios > .bio, .about-page .speaking-page .ajaxcart__row > .bios > .bio, .speaking-page .about-page .bios .ajaxcart__row > .press > .bio, .about-page .bios .speaking-page .ajaxcart__row > .press > .bio, .speaking-page .about-page .bios .ajaxcart__row > .speaking > .bio, .about-page .bios .speaking-page .ajaxcart__row > .speaking > .bio, .about-page .bios .ajaxcart__row > .hero-quote > .bio, .about-page .bios .ajaxcart__row > .story > .bio, .about-page .ajaxcart__row > .bios > .bio, .about-page .bios .ajaxcart__row > .press > .bio, .about-page .bios .ajaxcart__row > .speaking > .bio, .about-page .press .ajaxcart__row > .grid > .h, .about-page .press .ajaxcart__row > .grid--rev > .h, .about-page .press .ajaxcart__row > .grid--full > .h, .speaking-page .about-page .press .ajaxcart__row > .hero-quote > .h, .about-page .press .speaking-page .ajaxcart__row > .hero-quote > .h, .speaking-page .about-page .press .ajaxcart__row > .story > .h, .about-page .press .speaking-page .ajaxcart__row > .story > .h, .speaking-page .about-page .press .ajaxcart__row > .bios > .h, .about-page .press .speaking-page .ajaxcart__row > .bios > .h, .speaking-page .about-page .ajaxcart__row > .press > .h, .about-page .speaking-page .ajaxcart__row > .press > .h, .speaking-page .about-page .press .ajaxcart__row > .speaking > .h, .about-page .press .speaking-page .ajaxcart__row > .speaking > .h, .about-page .press .ajaxcart__row > .hero-quote > .h, .about-page .press .ajaxcart__row > .story > .h, .about-page .press .ajaxcart__row > .bios > .h, .about-page .ajaxcart__row > .press > .h, .about-page .press .ajaxcart__row > .speaking > .h, .about-page .speaking .ajaxcart__row > .grid > .h, .about-page .speaking .ajaxcart__row > .grid--rev > .h, .about-page .speaking .ajaxcart__row > .grid--full > .h, .speaking-page .about-page .speaking .ajaxcart__row > .hero-quote > .h, .about-page .speaking .speaking-page .ajaxcart__row > .hero-quote > .h, .speaking-page .about-page .speaking .ajaxcart__row > .story > .h, .about-page .speaking .speaking-page .ajaxcart__row > .story > .h, .speaking-page .about-page .speaking .ajaxcart__row > .bios > .h, .about-page .speaking .speaking-page .ajaxcart__row > .bios > .h, .speaking-page .about-page .speaking .ajaxcart__row > .press > .h, .about-page .speaking .speaking-page .ajaxcart__row > .press > .h, .speaking-page .about-page .ajaxcart__row > .speaking > .h, .about-page .speaking-page .ajaxcart__row > .speaking > .h, .about-page .speaking .ajaxcart__row > .hero-quote > .h, .about-page .speaking .ajaxcart__row > .story > .h, .about-page .speaking .ajaxcart__row > .bios > .h, .about-page .speaking .ajaxcart__row > .press > .h, .about-page .ajaxcart__row > .speaking > .h, .about-page .press .ajaxcart__row > .grid > p, .about-page .press .ajaxcart__row > .grid--rev > p, .about-page .press .ajaxcart__row > .grid--full > p, .speaking-page .about-page .press .ajaxcart__row > .hero-quote > p, .about-page .press .speaking-page .ajaxcart__row > .hero-quote > p, .speaking-page .about-page .press .ajaxcart__row > .story > p, .about-page .press .speaking-page .ajaxcart__row > .story > p, .speaking-page .about-page .press .ajaxcart__row > .bios > p, .about-page .press .speaking-page .ajaxcart__row > .bios > p, .speaking-page .about-page .ajaxcart__row > .press > p, .about-page .speaking-page .ajaxcart__row > .press > p, .speaking-page .about-page .press .ajaxcart__row > .speaking > p, .about-page .press .speaking-page .ajaxcart__row > .speaking > p, .about-page .press .ajaxcart__row > .hero-quote > p, .about-page .press .ajaxcart__row > .story > p, .about-page .press .ajaxcart__row > .bios > p, .about-page .ajaxcart__row > .press > p, .about-page .press .ajaxcart__row > .speaking > p, .about-page .speaking .ajaxcart__row > .grid > p, .about-page .speaking .ajaxcart__row > .grid--rev > p, .about-page .speaking .ajaxcart__row > .grid--full > p, .speaking-page .about-page .speaking .ajaxcart__row > .hero-quote > p, .about-page .speaking .speaking-page .ajaxcart__row > .hero-quote > p, .speaking-page .about-page .speaking .ajaxcart__row > .story > p, .about-page .speaking .speaking-page .ajaxcart__row > .story > p, .speaking-page .about-page .speaking .ajaxcart__row > .bios > p, .about-page .speaking .speaking-page .ajaxcart__row > .bios > p, .speaking-page .about-page .speaking .ajaxcart__row > .press > p, .about-page .speaking .speaking-page .ajaxcart__row > .press > p, .speaking-page .about-page .ajaxcart__row > .speaking > p, .about-page .speaking-page .ajaxcart__row > .speaking > p, .about-page .speaking .ajaxcart__row > .hero-quote > p, .about-page .speaking .ajaxcart__row > .story > p, .about-page .speaking .ajaxcart__row > .bios > p, .about-page .speaking .ajaxcart__row > .press > p, .about-page .ajaxcart__row > .speaking > p, .about-page .press .ajaxcart__row > .grid > ul, .about-page .press .ajaxcart__row > .grid--rev > ul, .about-page .press .ajaxcart__row > .grid--full > ul, .speaking-page .about-page .press .ajaxcart__row > .hero-quote > ul, .about-page .press .speaking-page .ajaxcart__row > .hero-quote > ul, .speaking-page .about-page .press .ajaxcart__row > .story > ul, .about-page .press .speaking-page .ajaxcart__row > .story > ul, .speaking-page .about-page .press .ajaxcart__row > .bios > ul, .about-page .press .speaking-page .ajaxcart__row > .bios > ul, .speaking-page .about-page .ajaxcart__row > .press > ul, .about-page .speaking-page .ajaxcart__row > .press > ul, .speaking-page .about-page .press .ajaxcart__row > .speaking > ul, .about-page .press .speaking-page .ajaxcart__row > .speaking > ul, .about-page .press .ajaxcart__row > .hero-quote > ul, .about-page .press .ajaxcart__row > .story > ul, .about-page .press .ajaxcart__row > .bios > ul, .about-page .ajaxcart__row > .press > ul, .about-page .press .ajaxcart__row > .speaking > ul, .about-page .speaking .ajaxcart__row > .grid > ul, .about-page .speaking .ajaxcart__row > .grid--rev > ul, .about-page .speaking .ajaxcart__row > .grid--full > ul, .speaking-page .about-page .speaking .ajaxcart__row > .hero-quote > ul, .about-page .speaking .speaking-page .ajaxcart__row > .hero-quote > ul, .speaking-page .about-page .speaking .ajaxcart__row > .story > ul, .about-page .speaking .speaking-page .ajaxcart__row > .story > ul, .speaking-page .about-page .speaking .ajaxcart__row > .bios > ul, .about-page .speaking .speaking-page .ajaxcart__row > .bios > ul, .speaking-page .about-page .speaking .ajaxcart__row > .press > ul, .about-page .speaking .speaking-page .ajaxcart__row > .press > ul, .speaking-page .about-page .ajaxcart__row > .speaking > ul, .about-page .speaking-page .ajaxcart__row > .speaking > ul, .about-page .speaking .ajaxcart__row > .hero-quote > ul, .about-page .speaking .ajaxcart__row > .story > ul, .about-page .speaking .ajaxcart__row > .bios > ul, .about-page .speaking .ajaxcart__row > .press > ul, .about-page .ajaxcart__row > .speaking > ul {
    padding-left: 20px; }

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

.ajaxcart__row {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9; }

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

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

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

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

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

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

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

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

.ajaxcart__qty-num {
  border-color: #e9e9e9;
  color: #333333; }

.ajaxcart__qty-adjust {
  color: #333333; }

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

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

#customer_login {
  font-size: 1.5em; }

@media screen and (min-width: 769px) {
  #customer_login {
    font-size: 1em; } }
/*============================================================================
  #Top Bar
==============================================================================*/
.top_bar {
  background-color: #f92517;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2em;
  min-height: 48px;
  padding: 10px 0;
  text-align: center; }
  @media screen and (min-width: 769px) {
    .top_bar {
      font-size: 17px;
      min-height: 60px;
      padding: 15px 0; } }
  .top_bar .wrapper, .top_bar .blog-article .media-wrapper, .blog-article .top_bar .media-wrapper, .top_bar .contact-page > section {
    width: 100%;
    position: relative;
    padding-left: 51px;
    padding-right: 51px; }
    @media screen and (min-width: 769px) {
      .top_bar .wrapper, .top_bar .blog-article .media-wrapper, .blog-article .top_bar .media-wrapper, .top_bar .contact-page > section {
        padding-left: 85px;
        padding-right: 85px; } }
  .top_bar a {
    color: white;
    text-decoration: none; }
    .top_bar a:hover {
      text-decoration: underline; }

/* Header Overide */
.site-header {
  height: auto !important; }

.promo-expand, .promo-close {
  display: block;
  height: 26px;
  width: 26px;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  position: absolute; }
  @media screen and (min-width: 769px) {
    .promo-expand, .promo-close {
      font-size: 13px;
      line-height: 14px;
      height: auto;
      text-align: right;
      width: 55px; }
      .promo-expand:before, .promo-close:before {
        display: none !important; } }

.promo-expand {
  top: 50%;
  right: 20px;
  margin-top: -13px;
  transform: rotate(180deg);
  display: none;
  opacity: 0;
  transition: 0 1s all; }
  .promo-expand.visible {
    display: block;
    opacity: 1; }
  .promo-expand:hover {
    text-decoration: none !important; }
  @media screen and (min-width: 769px) {
    .promo-expand {
      margin-top: -7px;
      transform: rotate(0deg); } }

.promo-close {
  color: #6f6f6f;
  right: 20px;
  top: -7px; }
  @media screen and (min-width: 769px) {
    .promo-close {
      top: -17px;
      width: auto; } }

.promo-button-text {
  display: none; }
  @media screen and (min-width: 769px) {
    .promo-button-text {
      display: inline; } }

/*============================================================================
  #Book Promo Banner
==============================================================================*/
.book_promo {
  padding-top: 20px;
  text-align: center;
  display: none; }
  .book_promo.visible {
    display: block; }
  @media screen and (min-width: 769px) {
    .book_promo {
      padding-top: 40px; } }
  .book_promo img {
    display: block;
    height: auto;
    width: 100%; }
  .book_promo .wrapper, .book_promo .blog-article .media-wrapper, .blog-article .book_promo .media-wrapper, .book_promo .contact-page > section {
    position: relative; }
    .book_promo .wrapper.text-only, .book_promo .blog-article .text-only.media-wrapper, .blog-article .book_promo .text-only.media-wrapper, .book_promo .contact-page > section.text-only {
      padding-left: 51px;
      padding-right: 51px; }
      @media screen and (min-width: 769px) {
        .book_promo .wrapper.text-only, .book_promo .blog-article .text-only.media-wrapper, .blog-article .book_promo .text-only.media-wrapper, .book_promo .contact-page > section.text-only {
          padding-left: 20px;
          padding-right: 20px; } }

.promo-h1, .promo-h2 {
  display: block;
  font-family: "neue-haas-grotesk-display", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; }

.promo-h1 {
  font-size: 1.71429em;
  line-height: 1.2em;
  margin-bottom: 6.66667px; }
  @media screen and (min-width: 769px) {
    .promo-h1 {
      margin-bottom: 10px; } }
  .promo-h1 a {
    border-bottom: 1px #333333 solid;
    color: #333333;
    text-decoration: none; }

.promo-h2 {
  font-size: 1.28571em;
  margin-bottom: 20px; }
  @media screen and (min-width: 769px) {
    .promo-h2 {
      font-size: 1.07143em;
      margin-bottom: 26.66667px; } }
