/** Shopify CDN: Minification failed

Line 71:2 Expected identifier but found "*"
Line 2442:0 Unexpected "950px"
Line 2590:4 Expected identifier but found "*"
Line 3357:2 Expected identifier but found "*"
Line 3442:2 Expected identifier but found "*"

**/
/*
* Shopify Timber v1.1.2
* Copyright 2014 Shopify Inc.
* Author Carson Shold @cshold
* Built with Sass - http://sass-lang.com/

* Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use @imports in this file
        * This is due to security reasons on the Shopify servers, though we are looking into it
        * Prevents you from using helpers like Compass/Bourbon, and can cause a long file
    - Helpers variables, mixins, and starter classes are provided. Change as needed.
    - The file is prepped with a CSS reset
*/
/* Table of Content
==================================================
  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Reset
  #Grid Setup
  #Basic Styles
  #Typography
  #Rich Text Editor
  #Links
  #Lists
  #Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Buttons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Site Footer
  #Product Grid and List Views
  #Tag List
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Demo Styles - for empty store state
================================================== */
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* The following are dependencies of csswizardry grid */
/* Button colors */
/* Text link colors */
/* Text colors */
/* Border colors */
/* Nav and dropdown link background */
/* Helper colors */
/* Width variables */
/* Radius */
/* Typography */
.clearfix, .grid, .grid--rev, .grid--full, .grid--right, .grid--center,
.grid-uniform, .wrapper, .page-header {
  *zoom: 1; }
  .clearfix:after, .grid:after, .grid--rev:after, .grid--full:after, .grid--right:after, .grid--center:after,
  .grid-uniform:after, .wrapper:after, .page-header:after {
    content: "";
    display: table;
    clear: both; }

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

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

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

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

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

body {
  background-color: pink; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

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

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

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

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .grid-uniform .large--one-half:nth-child(2n+1), .grid-uniform .large--two-quarters:nth-child(2n+1), .grid-uniform .large--three-sixths:nth-child(2n+1), .grid-uniform .large--four-eighths:nth-child(2n+1), .grid-uniform .large--five-tenths:nth-child(2n+1), .grid-uniform .large--six-twelfths:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--two-tenths:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*------------------------------------*\
  $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/* Not a particularly great selector, but the DRYest way to do things. */
[class*="push--"] {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*------------------------------------*\
  $PULL
\*------------------------------------*/
/* Pull classes, to move grid items back to the left by certain amounts. */
/* Not a particularly great selector, but the DRYest way to do things. */
[class*="pull--"] {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pull--large--eleven-twelfths {
    right: 91.666%; } }
html {
  background-color: #f6f6f6; }

body {
  background-color: #fff; }

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px; }

.main-content {
  display: block;
  padding-top: 48px;
  padding-bottom: 48px; }

.left {
  float: left; }

.right {
  float: right; }

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

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

img, object, embed, video {
  max-width: 100%;
  height: auto; }

body,
input,
textarea,
button,
select {
  font-size: 87.5%;
  line-height: 1.6;
  font-family: "proxima-nova", sans-serif;
  color: #333333;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .shop-nav li, .shop-nav-4-item li, .h3, .h4, .h5, .h6 {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0.2em;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
  .h1 a, .h2 a, .shop-nav li a, .shop-nav-4-item li a, .h3 a, .h4 a, .h5 a, .h6 a {
    text-decoration: none; }
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
    .h1 a:hover, .h2 a:hover, .shop-nav li a:hover, .shop-nav-4-item li a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
      text-decoration: none; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .shop-nav li a, .shop-nav-4-item li a, .h3 a, .h4 a, .h5 a, .h6 a {
  font-weight: inherit; }

h1, .h1 {
  font-size: 2.5em; }

h2, .h2, .shop-nav li, .shop-nav-4-item li {
  font-size: 2.429em; }

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

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

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

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

p {
  margin: 0 0 0.75em 0; }

p img {
  margin: 0; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

small {
  font-size: 80%; }

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

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

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

.rte {
  margin-bottom: 1em; }

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

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

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

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

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

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

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

li {
  margin-bottom: 0.25em; }

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

#faqs .quicklinks {
  padding-top: 20px;
  font-size: .9em; }

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

th {
  font-weight: bold; }

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

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

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

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

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

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

form {
  margin-bottom: 24px; }

.btn, .btn-secondary,
a.btn-secondary,
button,
input,
textarea {
  -webkit-appearance: none; }

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

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

fieldset {
  padding: 12px 0; }

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

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

textarea {
  min-height: 100px; }

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

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

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

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

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

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

label.error {
  color: #dc0000; }

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

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

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

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

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

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

.btn-secondary,
a.btn-secondary {
  background-color: #464646; }
  .btn-secondary:hover,
  a.btn-secondary:hover {
    background-color: #2d2d2d;
    color: #fff; }
  .btn-secondary:active,
  a.btn-secondary:active {
    background-color: #131313;
    color: #fff; }

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

.pagination {
  margin-bottom: 1em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-logo {
  margin-bottom: 0; }
  @media screen and (min-width: 768px) {
    .header-logo {
      float: left; } }
  @media screen and (max-width: 768px) {
    .header-logo img {
      margin: 0 auto;
      margin-bottom: 0.5em; } }
  .header-logo a,
  .header-logo a:hover,
  .header-logo a:focus {
    color: #333333;
    text-decoration: none; }
  .header-logo a, .header-logo img {
    display: block; }

.nav-bar ul {
  margin: 0; }

.site-nav {
  font-size: 1.2em; }
  .site-nav li {
    margin: 0;
    display: block; }
  .site-nav > li {
    position: relative;
    display: inline-block; }
    .site-nav > li:first-child a {
      padding-left: 0; }
  .site-nav a {
    display: block;
    text-decoration: none;
    padding: 12px;
    white-space: nowrap; }
  @media screen and (max-width: 768px) {
    .site-nav {
      margin: 0 auto;
      text-align: center; } }
  @media screen and (min-width: 768px) {
    .site-nav {
      float: left; } }

.site-nav-dropdown {
  display: none;
  position: absolute;
  left: 0;
  z-index: 5; }
  .site-nav li:hover .site-nav-dropdown {
    display: block; }
  .site-nav-dropdown a {
    background-color: #f6f6f6; }
    .site-nav-dropdown a:hover, .site-nav-dropdown a:active {
      background-color: #dddddd; }

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

.site-footer {
  background-color: #f6f6f6;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding: 24px 0; }
  @media screen and (min-width: 768px) {
    .site-footer {
      padding: 48px 0;
      text-align: left; } }

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

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

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

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

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

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

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

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

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

.note,
.errors {
  border-radius: 0px;
  padding: 12px;
  margin-bottom: 1em;
  border: 1px solid transparent; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: #e5e5e5; }

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

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

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

.cart-row {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5; }
  .ajaxifyCart--content .cart-row {
    border-bottom-color: #444; }

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

.payment {
  border-right: 1px solid #58595b; }

/*------------------------------------*\
    $GRID BASICS
\*------------------------------------*/
.wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1206px; }

.row {
  max-width: 1146px;
  width: 100%;
  margin: 0px auto;
  padding: 50px 0; }

.row:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.span1, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9, .span10, .span11, .span12 {
  margin-right: 2.6178%;
  float: left;
  min-height: 1px; }

.last, .shop-nav li.span3:last-child, .shop-nav-4-item li.span3:last-child {
  margin-right: 0; }

/*  ==============================
    GRID
  ============================== */
.row .span1 {
  width: 05.9336%; }

/*   68px / 1146px = 0.056384 */
.row .span2 {
  width: 14.4851%; }

/*  166px / 1146px = 0.144851 */
.row .span3 {
  width: 22.1640%; }

/*  264px / 1146px = 0.221640 */
.row .span4 {
  width: 31.5881%; }

/*  362px / 1146px = 0.315881 */
.row .span5 {
  width: 40.1396%; }

/*  460px / 1146px = 0.401396 */
.row .span6 {
  width: 48.6910%; }

/*  558px / 1146px = 0.486910 */
.row .span7 {
  width: 57.2425%; }

/*  656px / 1146px = 0.572425 */
.row .span8 {
  width: 65.7940%; }

/*  754px / 1146px = 0.657940 */
.row .span9 {
  width: 74.3455%; }

/*  852px / 1146px = 0.743455 */
.row .span10 {
  width: 82.8970%; }

950px / 1146px = 0.828970
.row .span11 {
  width: 91.4485%; }

/* 1048px / 1146px = 0.914485 */
.row .span12 {
  width: 100.000%; }

/* 1146px / 1146px = 1.000000 */
.row .offset1 {
  margin-left: 08.1260%; }

.row .offset2 {
  margin-left: 16.2520%; }

.row .offset3 {
  margin-left: 24.3781%; }

.row .offset4 {
  margin-left: 32.5041%; }

.row .offset5 {
  margin-left: 40.6301%; }

.row .offset6 {
  margin-left: 48.7562%; }

.row .offset7 {
  margin-left: 56.8822%; }

.row .offset8 {
  margin-left: 65.0082%; }

.row .offset9 {
  margin-left: 73.1343%; }

.row .offset10 {
  margin-left: 81.2603%; }

.row .offset11 {
  margin-left: 89.3864%; }

/*  ==============================
    Global
  ============================== */
.site-header {
  text-align: center; }

#banner-image {
  width: 100%;
  float: left;
  margin-right: -100%;
  position: relative;
  display: block; }
  #banner-image img {
    width: 100%; }

.hr-dark {
  border-top: solid #a8a8a8;
  border-width: 1px 0 0; }

.serif {
  font-family: "Droid Serif", serif; }

.overlay-banner, .overlay, .overlay-button {
  color: white;
  background-color: #8a1c20;
  width: 60%;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.overlay-banner {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: .5em 0;
  background-color: rgba(138, 28, 32, 0.85);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }
  .overlay-banner p {
    margin: 0; }
  .overlay-banner h1 {
    margin-bottom: 0;
    padding: 0 2em;
    position: relative;
    top: -.05em;
    font-size: 1.5em; }

div[role="main"] {
  margin-top: 8em; }

.button-hr {
  border-top: solid black;
  border-width: 1px 0 0; }

body {
  background-color: #fef9e4; }

a {
  color: inherit;
  text-decoration: none; }

a:hover, a:active {
  outline: 0; }

.btn, .btn-secondary,
a.btn-secondary {
  background-color: #008b90; }
  .btn:hover, .btn-secondary:hover {
    background-color: #00bcc3; }

.sans {
  font-family: "proxima-nova", sans-serif; }

.wrapper.main-content {
  padding-top: 1em; }

.wrapper.true-north-coffee-roasters, .wrapper.wholesale, .wrapper.where-to-buy-true-north-coffees, .wrapper.about-us-brief,
.wrapper.ballard-coffee-amp-culture {
  max-width: 2000px;
  padding: 0;
  background-size: cover; }

.block h2, .block-flush h2, .button, .shop-nav li, .shop-nav-4-item li {
  text-transform: uppercase;
  font-family: "proxima-nova-condensed", sans-serif;
  font-weight: 200;
  color: white; }

.row img {
  max-width: 100%; }

.nav {
  text-align: center;
  list-style: none;
  margin-left: 0; }
  .nav > li,
  .nav > li > a {
    display: inline-block;
    *display: inline; }

.row-blocks {
  padding: 0; }

/*  ==============================
    Home Page
  ============================== */
body#true-north-coffee-roasters, body#wholesale {
  background-color: #fef9e4; }
  body#true-north-coffee-roasters .wrapper, body#wholesale .wrapper {
    padding: 0; }
  body#true-north-coffee-roasters .wrapper.main-content, body#wholesale .wrapper.main-content {
    padding-top: 0; }

.block, .block-flush {
  text-align: center;
  float: left; }

.block-flush {
  margin: 0;
  width: 50%;
  background: no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.block2 {
  position: relative;
  margin: 0;
  width: 33.33%;
  padding: 0 0 48px 0 !important;
  opacity: .4;
  text-align: center;
  height: 500px; }
  .block2 h4 {
    font-weight: 700;
    color: #5b3427;
    text-transform: uppercase; }
  .block2 p {
    width: 75%;
    margin: auto; }
  .block2 img {
    height: 270px;
    margin-top: 1em; }
  .block2 .callout {
    width: 100%;
    position: absolute;
    top: 55%; }

#wholesale-img {
  height: 235px;
  margin-top: 3em; }

.block-hover {
  opacity: 1;
  background-color: white; }

.block3 {
  height: 320px; }

.recipes, .solutions {
  background-image: url(//www.drinktruenorth.com/cdn/shop/t/3/assets/brew-recipes.jpg?v=49691427384182838821406053327);
  border-right: 6px solid #fef9e4; }

.featured {
  background-image: url(/cdn/shop/files/cafebarjot-1-800pxw.jpg?15507); }

.hover-button {
  display: block;
  font-weight: 400;
  padding: .75em 0;
  margin: 1em auto 0 auto;
  border: 2px solid #008b90;
  color: #008b90;
  max-width: 120px;
  visibility: hidden;
  transition: all .1s ease; }
  .hover-button:hover {
    background-color: #008b90;
    color: white; }

#true-north-coffee-roasters .callout {
  top: 60%; }

/*  ==============================
    Wholesale
  ============================== */
.grid-hack-l {
  padding-right: 4.063%; }
  .grid-hack-l p {
    margin-top: 1em; }
  .grid-hack-l .overlay-button {
    left: 14%; }

.grid-hack-r {
  padding-left: 4.063%; }
  .grid-hack-r p {
    margin-top: 1em; }
  .grid-hack-r .overlay-button {
    left: 17%; }

#wholesale .block3 {
  height: 240px;
  text-align: center; }

#wholesale .subhead {
  font-weight: 700;
  text-align: center; }

#wholesale .subhead {
  color: #5b3427;
  margin: 1.5em 0; }

#wholesale .image-block {
  height: 240px;
  position: relative; }
  #wholesale .image-block img {
    max-height: 100%; }

#wholesale .overlay-button {
  width: 70%;
  padding: 0;
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.wholesale-callout p {
  text-align: left; }

hr {
  border-bottom: 0; }

#wholesale hr {
  margin-top: 0;
  margin-bottom: 0; }

.overlay-button {
  width: 60%;
  background-color: #008b90; }

.overlay-button:hover {
  background-color: #5b3427; }

/*  ==============================
    Our Coffees
  ============================== */
.where-to-buy-true-north-coffees .callout {
  top: 60%; }
.where-to-buy-true-north-coffees h2 {
  margin-top: .5em;
  text-align: center;
  color: #5b3427; }
.where-to-buy-true-north-coffees .icons {
  text-align: center; }
  .where-to-buy-true-north-coffees .icons a {
    margin: 0 6%; }
.where-to-buy-true-north-coffees hr {
  margin: 0; }

/*  ==============================
    About Page
  ============================== */
.button-row {
  padding-bottom: 0; }

.illustration-row {
  margin-top: 48px; }

.story-illustration {
  float: left;
  right: 52px;
  top: 10px; }

.neighborhood-illustration {
  float: right;
  left: 80px;
  top: 30px; }

.story-illustration, .neighborhood-illustration {
  width: 45%;
  text-align: center;
  height: 300px; }
  .story-illustration .img, .neighborhood-illustration .img {
    max-height: 100%;
    max-width: none; }
  .story-illustration .button, .story-illustration .shop-nav li, .shop-nav .story-illustration li, .story-illustration .shop-nav-4-item li, .shop-nav-4-item .story-illustration li, .neighborhood-illustration .button, .neighborhood-illustration .shop-nav li, .shop-nav .neighborhood-illustration li, .neighborhood-illustration .shop-nav-4-item li, .shop-nav-4-item .neighborhood-illustration li {
    text-align: center;
    position: relative;
    bottom: 165px; }

.button, .shop-nav li, .shop-nav-4-item li {
  background-color: #008b90;
  padding: 0 1em; }
  .button:hover, .shop-nav li:hover, .shop-nav-4-item li:hover {
    background-color: #5b3427; }
  .button a:hover, .shop-nav li a:hover, .shop-nav-4-item li a:hover {
    text-decoration: none; }

a.button {
  display: block; }

.button-list {
  position: relative;
  bottom: 80px; }

#about-us-brief .overlay-banner h1 {
  top: .2em; }

#about-us-brief .slides li {
  font-style: italic; }
#about-us-brief .button-list {
  text-align: center; }

#about-us-brief .row:first-child,
#ballard-coffee-amp-culture .row:first-child {
  padding-bottom: 0; }
#about-us-brief .row:nth-child(2),
#ballard-coffee-amp-culture .row:nth-child(2) {
  padding-top: 0; }

.button-list .button:first-child, .button-list .shop-nav li:first-child, .shop-nav .button-list li:first-child, .button-list .shop-nav-4-item li:first-child, .shop-nav-4-item .button-list li:first-child {
  float: left; }

.button-list .button:last-child, .button-list .shop-nav li:last-child, .shop-nav .button-list li:last-child, .button-list .shop-nav-4-item li:last-child, .shop-nav-4-item .button-list li:last-child {
  float: right; }

.row.description {
  padding-top: 0; }
  .row.description:last-child {
    padding-bottom: 100px; }

/*  ==============================
    Shop
  ============================== */
.product-link {
  color: #008b90;
  font-family: "proxima-nova-condensed", sans-serif;
  font-weight: 700; }

.shop-nav li, .shop-nav-4-item li {
  width: 27%;
  padding: 0;
  min-width: 6em; }
  .shop-nav li a, .shop-nav-4-item li a {
    width: 100%; }
  .shop-nav li:first-child, .shop-nav-4-item li:first-child {
    float: left; }
  .shop-nav li:last-child, .shop-nav-4-item li:last-child {
    float: right; }
  .shop-nav li.span3:last-child, .shop-nav-4-item li.span3:last-child {
    float: left; }
.shop-nav.row, .row.shop-nav-4-item {
  padding: 0; }

.shop-nav-4-item .span3 {
  width: 23%; }

.template-collection hr {
  margin-top: 24px; }

.active-button {
  background-color: #5b3427 !important; }

.collection-grid {
  padding-right: 24px; }

.collection-wrapper {
  padding-top: 120px;
  background: white;
  background-clip: content-box;
  margin-left: 24px; }

.template-collection p {
  direction: ltr; }

/*  ==============================
    Recipes
  ============================== */
.recipe-page .shop-nav li, .recipe-page .shop-nav-4-item li {
  font-size: 2em;
  width: 17.9%;
  min-width: 3em; }
.recipe-page .button-list {
  top: -75px; }
.recipe-page h1 {
  color: #8a1c20;
  font-size: 1.75em;
  text-align: center; }
.recipe-page .flexslider {
  position: relative; }
.recipe-page .page-controls {
  color: #58595b;
  position: absolute;
  top: -25px;
  right: 50px;
  list-style: none !important;
  margin-bottom: 0;
  text-align: right;
  padding-right: 24px;
  text-transform: uppercase; }
  .recipe-page .page-controls ol {
    display: inline; }
  .recipe-page .page-controls li {
    margin: 0 0.25em; }
    .recipe-page .page-controls li a {
      width: 16px;
      height: 16px;
      background: #008b90;
      color: transparent; }
      .recipe-page .page-controls li a.flex-active {
        background: #5b3427; }

#all-steps .instructions {
  margin: 0 0 24px 0;
  padding-left: 0; }

.hidden {
  display: none; }

.top-nav {
  text-align: right;
  text-transform: uppercase;
  padding-bottom: .3em;
  padding-right: .3em; }

.flexslider .flex-arrows {
  text-align: center;
  padding-top: 2em; }
  .flexslider .flex-arrows a {
    padding: 0 0.5em; }

.instructions {
  font-family: "proxima-nova-condensed", sans-serif; }
  .instructions h3 {
    color: #5b3427;
    font-family: "proxima-nova-condensed", sans-serif; }
  .instructions p {
    color: #58595b;
    font-size: 1.25em; }
  .instructions .tagline {
    font-size: 1em; }

.inst-wrapper {
  background-color: white; }

.instruction-image {
  float: left;
  width: 60% !important; }

.written-instructions {
  float: left;
  width: 40%;
  padding: 1.5em;
  padding-left: 3em; }
  .written-instructions hr {
    margin: 0 0 1.5em 0; }

/*  ==============================
    Header
  ============================== */
.active-link {
  text-decoration: underline !important; }

.site-header {
  color: white;
  padding-top: 10px; }

.site-header.header-image {
  top: 0;
  width: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.site-header.header-banner {
  background: #008b90;
  height: 180px; }

header .row {
  padding: 0; }

.site-nav {
  text-align: right;
  float: right;
  vertical-align: middle;
  display: inline-block;
  padding-top: 25px; }
  .site-nav a {
    font-weight: 700;
    text-transform: uppercase;
    color: #fef9e4; }
    .site-nav a:hover {
      text-decoration: underline; }

.nav-dark {
  color: #008b90 !important; }
  .nav-dark a {
    color: #008b90; }
  .nav-dark p a {
    color: #008b90; }

.nav-red a {
  color: #8a1c20; }
.nav-red p a {
  color: #8a1c20; }

.altNav {
  color: white; }
  .altNav a {
    color: white; }
    .altNav a:hover {
      color: white; }

.cart-icon {
  position: relative;
  top: .25em;
  margin-left: 5px;
  width: 15px;
  height: 20px;
  display: inline-block;
  background: transparent url("//www.drinktruenorth.com/cdn/shop/t/3/assets/icon-cart.png?v=92326280255011221041407515531") center top no-repeat; }
  .cart-icon.nav-dark {
    background-image: url("//www.drinktruenorth.com/cdn/shop/t/3/assets/icon-cart-dark.png?v=105883047136376789601407516819"); }

.altNav {
  padding-right: 12px; }

.header-logo {
  margin-top: .5em; }
  .header-logo:hover {
    opacity: 0.8;
    filter: alpha(opacity=40);
    /* For IE8 and earlier */ }

#banner-quote {
  max-width: 70%;
  margin: 0 auto; }

.overlay-banner blockquote {
  border: none;
  color: white;
  margin-bottom: 0;
  padding: .25em 2em;
  position: relative;
  top: -.05em;
  font-size: 2em;
  line-height: 1.1em;
  font-weight: 400; }
  .overlay-banner blockquote cite {
    margin-top: .5em;
    color: white;
    font-style: normal;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400; }

/*  ==============================
    Footer
  ============================== */
.site-footer {
  background: #5b3427;
  color: white;
  margin-top: 6px;
  border-top: 0; }
  .site-footer a {
    color: white; }
    .site-footer a:hover {
      text-decoration: underline; }
  .site-footer .input-group-btn {
    width: 36px; }
  .site-footer form {
    margin-bottom: 12px; }

h6 {
  font-weight: 700; }

.payment-icons li {
  margin-left: 0; }

.social-icons li {
  margin-right: 1em; }
.social-icons a {
  display: inline-block;
  text-decoration: none;
  background-position: bottom;
  width: 26px;
  height: 26px; }
  .social-icons a:hover {
    background-position: top; }

#twitter-icon {
  background-image: url("//www.drinktruenorth.com/cdn/shop/t/3/assets/icon-twitter.png?v=125590945657408239971403199488"); }

#facebook-icon {
  background-image: url("//www.drinktruenorth.com/cdn/shop/t/3/assets/icon-facebook.png?v=135122643267315265311403199782"); }

#instagram-icon {
  background-image: url("//www.drinktruenorth.com/cdn/shop/t/3/assets/icon-instagram.png?v=163579766681761584071405966158"); }

.payment {
  height: 100%; }

.news-btn {
  padding: 0; }

/*  ==============================
    Default Page
  ============================== */
.template-page .post ul {
  list-style: initial;
  padding-left: 3em;
  font-family: "proxima-nova", sans-serif; }

/*  ==============================
    Blog Post
  ============================== */
.template-page .sidebar h6 {
  float: none; }
.template-page .sidebar ul {
  margin-bottom: 48px; }

.sidebar {
  margin-top: 2rem; }
  .sidebar a:hover {
    color: #5b3427; }
  .sidebar .share {
    margin-top: .8em; }
  .sidebar .h4,
  .sidebar h6 {
    margin-top: .5em;
    float: left;
    margin-right: 1em;
    font-weight: 700;
    text-transform: uppercase; }
  .sidebar ul {
    margin: .5em 0;
    float: left;
    width: 12em; }
  .sidebar li {
    margin-bottom: 0;
    line-height: 1.25em; }
  .sidebar img {
    vertical-align: middle; }
  .sidebar .social-icons li {
    margin-right: 1em; }

.post-title {
  font-weight: 700;
  margin-bottom: 0; }

.post {
  font-size: 1rem;
  margin-bottom: 6em; }
  .post h3 {
    margin-top: 2em; }

.post-main {
  padding-top: 8rem; }
  .post-main a {
    color: #008b90;
    text-decoration: underline; }

hr.hr-small {
  margin: .5em 0; }

.breadcrumb {
  text-transform: lowercase; }
  .breadcrumb a {
    text-decoration: underline; }

.template-article .sidebar .social-icons a {
  background-position: top; }
  .template-article .sidebar .social-icons a:hover {
    background-position: bottom; }

/*  ==============================
    Product page
  ============================== */
#addToCart {
  font-size: 1.5em;
  padding: 0 0.75em; }

#addToCartForm {
  margin-top: 6em; }

.equipment #addToCartForm {
  margin-top: 1em;
  padding-right: 24px; }
.equipment .product-description {
  padding-right: 24px; }
.equipment .arrows {
  text-align: center; }
  .equipment .arrows .left {
    margin-left: 10em; }
  .equipment .arrows .right {
    margin-right: 12em; }

.template-product .arrows {
  margin-top: 4em;
  margin-bottom: 2em;
  text-align: center; }
  .template-product .arrows div {
    width: 300px;
    margin: 0 auto; }

.flip-extra {
  float: left;
  clear: both; }

.price {
  margin-right: 1em;
  font-weight: 200;
  float: right; }

.template-product {
  color: #58595b; }
  .template-product h2,
  .template-product h3 {
    color: #5b3427; }
  .template-product h5 {
    text-transform: uppercase; }
  .template-product .grid[role="main"], .template-product [role="main"].grid--rev, .template-product [role="main"].grid--full, .template-product [role="main"].grid--right, .template-product [role="main"].grid--center {
    padding: 1em 0;
    background-color: white; }

.prod-flavors,
.prod-sourcing {
  margin: 36px 0 48px 0; }

.small-caps {
  font-variant: small-caps; }

.indent {
  margin-left: 1em; }

.inner-wrapper {
  padding-left: 24px; }

.prod-description {
  padding-right: 1em;
  border-right: 1px solid #a8a8a8; }

.top-nav a, .specs li a {
  color: #008b90;
  text-decoration: underline; }

.specs ul .field {
  font-weight: 700; }
.specs h3 {
  color: black; }

.product-description .flavors, .product-description .sourcing {
  display: none; }

.prod-flavors .description, .prod-flavors .sourcing {
  display: none; }

.prod-sourcing .description, .prod-sourcing .flavors {
  display: none; }

/*  ==============================
    Flexslider
  ============================== */
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none; }

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("flexslider-icon.woff") format("woff"), url("flexslider-icon.ttf") format("truetype"), url("flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0 auto;
  padding: 0; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block; }

/* FlexSlider Default Theme
*********************************/
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav {
  *height: 0; }

.flex-direction-nav a {
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease; }

.flex-direction-nav .flex-prev {
  left: -50px; }

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right; }

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px; }

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px; }

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001'; }

.flex-direction-nav a.flex-next:before {
  content: '\f002'; }

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004'; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-pauseplay a.flex-play:before {
  content: '\f003'; }

/* Control Nav */
.flex-control-nav {
  width: 100%; }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); }

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px; }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px; } }
#banner-elmt {
  display: none; }

/*  ==============================
    Media Queries
  ============================== */
/*  #Mobile (Portrait)
================================================== */
@media only screen and (max-width: 480px) {
  nav, #branding {
    text-align: center; }

  .row {
    width: 95%; }

  .row .span1, .row .span3, .row .span4, .row .span5, .row .span6, .row .span7, .row .span8, .row .span9, .row .span10, .row .span11, .row .span12 {
    width: 100%; }

  .overlay.button, .shop-nav li.overlay, .shop-nav-4-item li.overlay,
  .overlay-button,
  .shop-nav li a,
  .shop-nav-4-item li a {
    font-size: 1.8rem; }

  #about-us-brief .button-list a {
    font-size: 1.8rem;
    padding-top: 5px;
    padding-bottom: 5px; }

  #wholesale .overlay-button {
    font-size: 1.5rem;
    padding: 5px 0; }

  .row .offset1 {
    margin-left: 0; }

  .story-illustration, .neighborhood-illustration {
    width: 100%; }

  #banner-quote {
    display: none; }

  .breadcrumb {
    display: none; }

  #banner-elmt {
    display: block; }

  .header-logo img {
    width: 80%; }

  .site-header {
    padding-top: 0; }

  .site-header .wrapper {
    background: none repeat scroll 0 0 #008b90;
    padding: 24px 0; }

  .site-header.header-image {
    position: relative; }

  .wrapperFullScreen {
    display: none; }

  .collection-wrapper {
    padding-top: 235px; }

  .site-nav {
    float: none;
    text-align: center;
    padding-top: 0; }

  .site-nav a {
    padding: 0px 3px;
    color: #fef9e4;
    font-size: 0.8em;
    font-weight: 400;
    text-transform: uppercase; }

  .shop-nav li, .shop-nav-4-item li {
    width: 100% !important; }

  .button-hr {
    visibility: hidden; }

  .block2, .coffee-block,
  .site-footer .span2,
  .block-flush {
    width: 100%; }

  .block2 {
    height: 600px; }

  .block-flush {
    margin: 0 0 4px; }

  .site-footer .span2 {
    border-bottom: 1px solid #58595b;
    padding: 3% 0; }

  .payment {
    border-right: none; }

  .site-footer form {
    margin-bottom: 12px;
    width: 100%; }

  .prod-description {
    border-right: none; }

  .product-photo-container {
    margin-bottom: 24px;
    padding-right: 24px;
    padding-top: 10px; }

  #addToCart {
    overflow: visible; }

  .altNav .cart-icon {
    background-image: url("//www.drinktruenorth.com/cdn/shop/t/3/assets/icon-cart.png?v=92326280255011221041407515531") !important; }
  .altNav a {
    color: white !important; }

  #about-us-brief .button-list {
    margin-top: 1em;
    margin-left: 0; }
    #about-us-brief .button-list .button, #about-us-brief .button-list .shop-nav li, .shop-nav #about-us-brief .button-list li, #about-us-brief .button-list .shop-nav-4-item li, .shop-nav-4-item #about-us-brief .button-list li {
      width: 100%;
      font-size: 1.5em; } }
/*  For shop nav buttons
================================================== */
@media only screen and (min-width: 481px) and (max-width: 1155px) {
  .template-collection .shop-nav .span3, .template-collection .shop-nav-4-item .span3 {
    width: 48.2% !important;
    margin-right: 3.48028%; }
    .template-collection .shop-nav .span3:nth-child(2), .template-collection .shop-nav-4-item .span3:nth-child(2) {
      margin-right: 0 !important; }
  .template-collection .button-hr {
    visibility: hidden; } }
@media only screen and (max-width: 520px) {
  .recipe-page .shop-nav .span3, .recipe-page .shop-nav-4-item .span3 {
    width: 95%; }
  .recipe-page .button-hr {
    visibility: hidden; } }
/*  #Tablet
================================================== */
@media only screen and (min-width: 481px) and (max-width: 1024px) {
  .nav-wrapper {
    width: 100% !important;
    text-align: center;
    margin: 0 auto; }
    .nav-wrapper .site-nav {
      float: none;
      text-align: center;
      padding-top: 0; }

  #banner-quote blockquote {
    font-size: 2.2vw; }
  #banner-quote cite {
    font-size: 1.5vw; }

  .overlay.button, .shop-nav li.overlay, .shop-nav-4-item li.overlay,
  .overlay-button,
  .shop-nav li a,
  .shop-nav-4-item li a {
    font-size: 1.8rem; }

  #about-us-brief .button-list a {
    font-size: 1.8rem;
    padding-top: 5px;
    padding-bottom: 5px; }

  #wholesale .overlay-button {
    font-size: 1.5rem;
    padding: 5px 0; }

  .recipe-page .shop-nav li a, .recipe-page .shop-nav-4-item li a {
    font-size: 1.2rem;
    vertical-align: middle; }

  .header-logo {
    max-width: 100%; }

  .button-list, #location-info .icons {
    width: 100% !important;
    margin-left: 0 !important; }

  .altNav {
    text-align: right !important;
    margin-top: 6.6%;
    padding-right: 3em; }

  .overlay.button, .shop-nav li.overlay, .shop-nav-4-item li.overlay {
    width: 75%; }

  .site-header.header-banner {
    height: auto; }

  .shop-nav-wrapper {
    margin-bottom: -4em; }

  #subscriptions .rte {
    padding: 0px 48px;
    margin-top: -4em; }

  .wholesale-callout {
    margin-bottom: 2em;
    padding-left: 4em !important;
    padding-right: 4em !important; }

  .grid-hack-r, .grid-hack-l {
    padding: 0; } }
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
  #banner-quote {
    transform: none; } }
@media only screen and (max-width: 1280px) {
  .overlay.button, .shop-nav li.overlay, .shop-nav-4-item li.overlay,
  .overlay-button,
  .shop-nav li a,
  .shop-nav-4-item li a {
    font-size: 1.8rem; }

  #about-us-brief .button-list a {
    font-size: 1.8rem;
    padding-top: 5px;
    padding-bottom: 5px; }

  #wholesale .overlay-button {
    font-size: 1.5rem;
    padding: 5px 0; } }
