/** Shopify CDN: Minification failed

Line 70:3 Unexpected "zoom"

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

* Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use @imports in this file
        * 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
*/
/* Table of Contents
==================================================
  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Reset
  #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
  #Site Footer
  #Home Page
  #Product Grid and List Views
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Blogs and Comments
  #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 */
/* Footer */
/* 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; }

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

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

.grid-item {
  float: left;
  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 {
    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 (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. */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

body {
  background-color: white; }

.wrapper {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 10px; }
  @media screen and (min-width: 480px) {
    .wrapper {
      padding: 0 20px; } }

.main-content {
  display: block;
  min-height: 600px; }
  .main-content p {
    margin-bottom: 2em; }

@media screen and (max-width: 480px) {
  .break {
    display: block;
    clear: both; } }

.left {
  float: left; }

.right {
  float: right; }

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

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

.hidden {
  display: none; }

.display-table {
  display: table; }

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

body,
input,
textarea,
button,
select {
  font-size: 75%;
  line-height: 1.6;
  font-family: "Libre Baskerville", "Times New Roman", Georgia, serif;
  color: #88817f;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1 {
  text-transform: lowercase;
  font-style: italic;
  letter-spacing: 4px; }

h2, .h2, h2 a, .h2 a {
  text-transform: lowercase;
  font-style: italic;
  letter-spacing: 2px; }

h3, .h3, h3 a, .h3 a {
  text-transform: lowercase;
  font-style: italic;
  letter-spacing: 2px; }

h4, .h4, h4 a, .h4 a {
  text-transform: uppercase;
  letter-spacing: 1px; }

h5, .h5, h5 a, .h5 a {
  text-transform: lowercase;
  letter-spacing: 1px;
  font-weight: bold; }

h6, .h6, h6 a, .h6 a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic; }

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

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

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

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

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

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

p {
  margin: 0;
  letter-spacing: 1px; }

p img {
  margin: 0; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

small {
  font-size: 80%; }

sup {
  position: relative;
  top: -0.5em;
  font-size: 60%; }

.text-light {
  color: #777777; }

blockquote {
  color: #777777;
  font-style: italic;
  margin: 0 0 20px;
  padding: 10px 20px;
  border-left: 1px solid #e8e6e7; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 10px; }
  blockquote cite {
    display: block;
    font-size: 0.75em;
    color: #777777; }
    blockquote cite:before {
      content: "\2014 \0020"; }

hr {
  clear: both;
  border-top: solid #e8e6e7;
  border-width: 1px 0 0;
  margin: 40px 0; }
  hr.hr-small {
    margin: 20px 0; }
  hr.hr-clear {
    border-top: 0 none; }

.page-header {
  position: relative; }
  .page-header h2 {
    margin-bottom: 2em; }
  .page-header .sign_out {
    position: absolute;
    top: 0;
    right: 24%; }

.section-header {
  margin-bottom: 10px; }

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

  .section-header--left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header--left h1, .section-header--left h2, .section-header--left h3, .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: 325px; } }
  @media screen and (min-width: 769px) and (max-width: 768px) {
    .section-header--right {
      margin-bottom: 20px; } }

.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: 10px; } }

.collection-view {
  display: inline-block;
  border: 1px solid #e8e6e7;
  border-radius: 0px;
  padding: 11px;
  height: 37px; }
  .lt-ie9 .collection-view {
    display: none; }
  .collection-view a {
    display: block;
    float: left;
    opacity: 0.7;
    cursor: pointer; }
    .collection-view a + a {
      margin-left: 10px; }
    .collection-view a.collection-view--active {
      opacity: 1;
      cursor: default; }
  .collection-view img {
    display: block;
    opacity: inherit; }

.rte {
  margin-bottom: 1em;
  line-height: 2em; }
  .rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6,
  .rte .h1, .rte .h2, .rte .h3, .rte .h4, .rte .h5, .rte .h6 {
    margin-top: 0.2em; }
  .rte > div {
    margin-bottom: 1em; }

a {
  color: #73c6b0;
  text-decoration: none; }

a:hover,
a:focus {
  color: #aedfd2;
  text-decoration: none; }

.btn, .btn-secondary {
  display: inline-block;
  padding: 1em 2em;
  margin: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -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;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 2px;
  background-color: #73c6b0;
  color: #fff;
  border: 0;
  font-weight: normal; }
  .btn.btn--small, .btn--small.btn-secondary {
    padding: 4px 5px;
    font-size: 0.75em; }
  .btn.btn--full, .btn--full.btn-secondary {
    width: 100%; }
  .btn:hover, .btn-secondary:hover {
    background-color: #aedfd2;
    color: #fff; }
  .btn:active, .btn-secondary:active, .btn:focus, .btn-secondary:focus {
    background-color: #3d967e;
    color: #fff; }
  .btn[disabled], [disabled].btn-secondary, .btn.disabled, .disabled.btn-secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn-secondary {
  background-color: #aedfd2; }
  .btn-secondary:hover {
    background-color: #89d1be;
    color: #fff; }
  .btn-secondary:active, .btn-secondary:focus {
    background-color: #65c2a9;
    color: #fff; }

.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0;
  color: #73c6b0; }

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

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;
  margin-bottom: 0; }

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

th {
  font-weight: bold; }

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

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

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

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

.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: 20px; }

.btn, .btn-secondary,
button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-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: 6px 8px;
  letter-spacing: 2px;
  font-style: italic; }

fieldset {
  padding: 10px 0; }

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

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

/* Input width and border */
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #e8e6e7;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 1em;
  background: #fff; }
  input[type="text"][disabled], input[type="text"].disabled,
  input[type="search"][disabled],
  input[type="search"].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; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/select-arrow.svg?v=81817274675094140121430869689);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #fff;
  background-size: 8px;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  text-transform: uppercase; }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

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

/* Form labels */
label,
legend {
  display: block;
  margin-bottom: 2px; }
  label.inline,
  legend.inline {
    display: inline; }
  .form-horizontal label.hidden-label, label.hidden-label, .form-horizontal
  legend.hidden-label,
  legend.hidden-label {
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden; }
    .ie9 .form-horizontal label.hidden-label, .lt-ie9 .form-horizontal label.hidden-label, .ie9 label.hidden-label, .lt-ie9 label.hidden-label, .ie9 .form-horizontal
    legend.hidden-label, .lt-ie9 .form-horizontal
    legend.hidden-label, .ie9
    legend.hidden-label, .lt-ie9
    legend.hidden-label {
      height: auto;
      margin-bottom: 2px;
      overflow: visible; }

/* 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="search"],
  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.form-horizontal label,
  .form-horizontal input[type="text"],
  .form-horizontal input[type="search"],
  .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,
  .form-horizontal label {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }

/* Error styles */
input[type="text"].error,
input[type="search"].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; }

.form-spacer {
  margin: 0 10px; }

.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 5px 5px;
    font-family: "FontAwesome";
    font-size: 16px;
    line-height: 16px;
    color: #73c6b0; }

.main-bar .social-icons {
  margin-left: 2em; }

.social-icons li {
  margin: 1em 0;
  vertical-align: middle;
  text-transform: none;
  line-height: 15px; }
  .social-icons li a {
    font-family: "FontAwesome";
    font-size: 16px;
    color: #73c6b0;
    text-decoration: none;
    -webkit-font-smoothing: antialiased; }
    .social-icons li a:hover {
      color: #aedfd2; }

.pagination {
  margin: 1em 0;
  text-align: right;
  font-weight: bold;
  font-size: 0.867em; }
  .pagination::after {
    content: " ";
    display: inline-block; }
  .pagination a, .pagination .page {
    margin: 0.5em;
    text-decoration: none;
    color: #88817f; }
  .pagination a {
    text-decoration: underline; }
  .pagination .prev {
    padding-left: 1em;
    display: inline-block; }
    .pagination .prev a {
      color: transparent;
      height: auto;
      display: inline-block; }
  .pagination .next {
    padding-left: 1em;
    display: inline-block; }
    .pagination .next a {
      color: transparent;
      height: auto;
      display: inline-block; }
  .pagination .view_all {
    margin-right: 1em;
    text-transform: uppercase; }
    .pagination .view_all a {
      text-decoration: none; }

/* Custom Pagination */
.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 0 0 20px;
  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 #e8e6e7; }

.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: #73c6b0;
  border-color: #73c6b0; }

.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; }

.account_links {
  font-size: 0.75em;
  text-transform: uppercase;
  font-style: italic;
  position: relative; }
  .account_links a {
    line-height: 26px;
    display: inline-block;
    padding: 0px 6px; }
    .account_links a::after {
      content: ' ';
      display: inline-block;
      position: relative;
      background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/header-sep.png?v=46662844466798445211429304983) no-repeat right center;
      width: 2px;
      height: 16px;
      left: 7px;
      vertical-align: middle; }

.account_links, .search {
  vertical-align: middle;
  display: inline-block;
  line-height: 26px; }

.site-header {
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/teal-dot.png?v=158602868468721431071428438800) repeat-x bottom center;
  padding-top: 2em;
  padding-bottom: 1em;
  margin-bottom: 3em; }
  .site-header a {
    color: #88817f; }
  @media screen and (min-width: 769px) {
    .site-header .grid--full {
      display: table;
      width: 100%; }
      .site-header .grid--full > .grid-item {
        float: none;
        display: table-cell;
        vertical-align: middle; } }

.header-logo {
  text-align: left;
  display: inline-block;
  /*
  margin: 0 auto;
  max-width: 450px;
  */ }
  .header-logo a,
  .header-logo a:hover,
  .header-logo a:focus {
    text-decoration: none; }
  .header-logo a, .header-logo img {
    display: inline-block; }
  .header-logo img {
    margin: 0 auto;
    width: 223px; }

.site-header--text-links {
  margin-bottom: 0; }

.search-bar {
  width: 100%;
  max-width: 100px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0; }
  .search-bar .search_field {
    width: 75%;
    height: 26px;
    white-space: nowrap;
    display: inline-block;
    color: #88817f;
    border-radius: 0;
    text-transform: uppercase;
    font-style: italic;
    border: 0;
    padding: 0px 6px 0px 3px;
    letter-spacing: 1px;
    margin-bottom: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
    line-height: 26px; }
  .search-bar::-webkit-input-placeholder {
    color: #88817f; }
  .search-bar:-moz-placeholder {
    /* Firefox 18- */
    color: #88817f; }
  .search-bar::-moz-placeholder {
    /* Firefox 19+ */
    color: #88817f; }
  .search-bar:-ms-input-placeholder {
    color: #88817f;
    line-height: 26px;
    height: 26px; }
  .search-bar .search_btn .btn, .search-bar .search_btn .btn-secondary {
    border: 0;
    background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/magnify_glass.svg?v=95079980029065204151430869292) no-repeat center center;
    background-size: contain;
    color: transparent;
    width: 14px;
    height: 17px;
    padding: 0; }

.nav-bar {
  background: #f2f2f2;
  text-transform: uppercase; }
  .nav-bar ul {
    margin: 0; }
  .nav-bar li {
    margin: 0; }

.main-bar {
  text-transform: uppercase;
  font-family: "Libre Baskerville", "Times New Roman", Georgia, serif; }
  @media screen and (max-width: 480px) {
    .main-bar select {
      background: transparent;
      text-align: center;
      border: 0;
      text-transform: uppercase;
      font-weight: bold; }
      .main-bar select option {
        text-align: center; } }
  .main-bar ul {
    margin: 0;
    display: inline-block; }
    @media screen and (max-width: 768px) {
      .main-bar ul {
        margin: 2em 0;
        display: block; } }
  .main-bar li {
    margin: 0; }
  .main-bar a {
    color: #88817f; }

.site-nav {
  cursor: default;
  letter-spacing: 2px;
  font-size: 0.917em; }
  .site-nav li {
    margin: 0 1em;
    display: block; }
  .site-nav > li {
    position: relative;
    display: inline-block;
    line-height: 60px; }
    @media screen and (max-width: 768px) {
      .site-nav > li {
        line-height: 3em; } }
    .site-nav > li:first-child > a {
      padding-left: 0;
      font-size: 1.636em;
      font-style: italic;
      text-transform: lowercase; }
    .site-nav > li:hover {
      background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/flourish.png?v=145361582666421449791429319142) no-repeat center center; }
  .site-nav a {
    display: block;
    text-decoration: none;
    white-space: nowrap; }

ul.site-nav--dropdown {
  display: none;
  padding: 7em 3em 2em 3em;
  line-height: 1.6; }
  ul.site-nav--dropdown li {
    margin: 0; }
  @media screen and (min-width: 769px) {
    .site-nav li:hover ul.site-nav--dropdown {
      display: block;
      position: absolute;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      margin: 0;
      left: -3em; } }
  ul.site-nav--dropdown a {
    display: inline-block;
    padding: 0.5em 0;
    font-size: 0.909em; }
    ul.site-nav--dropdown a:hover, ul.site-nav--dropdown a:active {
      color: #73c6b0; }

.nav-search {
  position: relative; }

.mobile_nav select {
  border: 1px solid #e8e6e7; }

.sidebar {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.833em; }
  .sidebar a {
    color: #88817f;
    text-decoration: none;
    display: inline-block; }

.site-footer {
  color: #88817f;
  text-transform: uppercase;
  border-top: 1px solid #e8e6e7;
  padding-top: 2em;
  margin-top: 2em; }
  .site-footer a {
    color: #88817f;
    text-decoration: none; }
  .site-footer .mailing_list {
    background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/mailing-bg.png?v=27138240374540484931429333268) no-repeat left center;
    padding: 3em;
    display: inline-block;
    width: 502px;
    height: 170px;
    margin: auto; }
    @media screen and (max-width: 768px) {
      .site-footer .mailing_list {
        background-image: none;
        background-color: #faf8f7;
        width: inherit;
        height: inherit;
        padding: 1em;
        margin-bottom: 2em; } }
    .site-footer .mailing_list .mailing_content {
      width: 330px;
      float: right;
      text-transform: none; }
      @media screen and (max-width: 768px) {
        .site-footer .mailing_list .mailing_content {
          width: 100%;
          float: none;
          margin: auto; } }
      .site-footer .mailing_list .mailing_content h3 {
        color: transparent;
        background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/beintheknow.svg?v=86040030825722123621430869195) no-repeat center center;
        width: 160px;
        height: 31px;
        display: block;
        margin: 0 auto 1em; }
      .site-footer .mailing_list .mailing_content form {
        width: 250px;
        margin: auto;
        margin-bottom: 1em;
        position: relative; }
      .site-footer .mailing_list .mailing_content .newsletter_field {
        text-transform: lowercase;
        font-style: italic;
        letter-spacing: 1px;
        margin: auto;
        height: 28px; }
      .site-footer .mailing_list .mailing_content .newsletter_btn {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 28px; }
        .site-footer .mailing_list .mailing_content .newsletter_btn .btn, .site-footer .mailing_list .mailing_content .newsletter_btn .btn-secondary {
          background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/newsletter-btn.png?v=80121497888920526571429334955) no-repeat right center;
          background-size: cover;
          width: 30px;
          height: 28px;
          color: transparent;
          padding: 0; }
      .site-footer .mailing_list .mailing_content p {
        letter-spacing: 0px; }
  .site-footer .footer_col {
    float: left; }
    .site-footer .footer_col.foot_nav {
      width: 60%;
      margin-left: 3em; }
      @media screen and (max-width: 768px) {
        .site-footer .footer_col.foot_nav {
          width: 65%;
          margin-left: 0; } }
  .site-footer .footer-nav {
    letter-spacing: 2px;
    line-height: 15px; }
    .site-footer .footer-nav li {
      margin: 1em 0; }
      .site-footer .footer-nav li a {
        font-size: 0.75em; }
        .site-footer .footer-nav li a:hover {
          color: #73c6b0; }
  @media screen and (max-width: 480px) {
    .site-footer .copyright, .site-footer .credit {
      display: block;
      clear: both;
      width: 100%;
      margin-top: 1em;
      margin-bottom: 1em; } }

.site-footer-bottom {
  color: #88817f;
  text-transform: uppercase;
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/dash-solid.png?v=159689006530149808201428454015) top center repeat-x;
  margin-top: 0em;
  padding-top: 3em; }
  .site-footer-bottom .footer_bottom {
    font-size: 0.75em; }
    .site-footer-bottom .footer_bottom .mark {
      margin: 2em 0 4em; }

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

.top_message {
  position: relative;
  text-align: center;
  padding: 1em 0;
  background: #73c6b0;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  height: 40px; }
  @media screen and (max-width: 768px) {
    .top_message {
      height: inherit; } }
  .top_message a {
    color: white;
    text-decoration: none;
    display: block; }
  .top_message img {
    vertical-align: middle; }
  .top_message .hello_close {
    background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/hello-close.png?v=124505984762446064341429225488) no-repeat right center #abddd0;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    color: transparent; }
    .top_message .hello_close:hover {
      cursor: pointer; }

.slideshow {
  padding-bottom: 1em;
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/solid-dash.png?v=174617271970571140681428442245) bottom center repeat-x; }

.bx-viewport {
  box-shadow: 0px 5px 5px 0px rgba(215, 210, 209, 0.5);
  min-height: 100px; }

.bxslider img {
  width: 100%;
  padding: 1em; }

.home_feature {
  border-right: 1px solid #e8e6e7;
  margin-top: 5px; }
  @media screen and (max-width: 768px) {
    .home_feature {
      border: 0;
      padding: 0 2em; } }
  .home_feature .home_feature_image {
    position: relative;
    display: inline-block;
    margin-top: 2em; }
  .home_feature h2 {
    margin-bottom: 0;
    display: inline-block;
    position: absolute;
    top: 2em;
    left: -2em;
    background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/solid-ribbon-body.png?v=28018340805158266321429332374) repeat-x;
    color: white;
    padding: 1em 3em;
    height: 60px; }
    @media screen and (max-width: 768px) {
      .home_feature h2 {
        left: -1em;
        padding: 0 1.5em;
        line-height: 60px; } }
    .home_feature h2:after {
      position: absolute;
      right: -24px;
      top: 0;
      content: " ";
      background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/solid-ribbon-end.png?v=93998499140903744411429332306) no-repeat right center;
      width: 27px;
      height: 60px;
      display: inline-block; }
  .home_feature p {
    margin-top: 1em;
    margin-bottom: 0;
    position: relative; }
    .home_feature p:after {
      position: relative;
      left: 5px;
      top: 0;
      content: " ";
      background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/double-arrow.svg?v=10534988232859837371430881021) no-repeat right center;
      background-size: contain;
      display: inline-block;
      width: 17px;
      height: 11px; }
  .home_feature a {
    color: #88817f; }
    .home_feature a:hover {
      color: #73c6b0; }

.home_instagram {
  margin-top: 5em;
  position: relative;
  display: inline-block;
  margin-left: 3em; }
  @media screen and (max-width: 768px) {
    .home_instagram {
      padding: 0 2em;
      margin-top: 7em; } }
  .home_instagram a {
    display: none; }
    .home_instagram a:first-child {
      display: block; }
  .home_instagram iframe {
    box-shadow: 0px 5px 5px 0px rgba(215, 210, 209, 0.5);
    padding: 1em;
    width: 265px; }
  .home_instagram .badge {
    width: 95px;
    height: 95px;
    display: inline-block;
    position: absolute;
    top: -4em;
    left: -4em;
    background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/instagram_stamp.svg?v=87216712392720984651430883982) no-repeat center center;
    color: transparent; }
    @media screen and (max-width: 480px) {
      .home_instagram .badge {
        left: -2em; } }

.template-collection .main-content .grid--full {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 2em; }
  .template-collection .main-content .grid--full > .grid-item {
    position: relative; }
    .template-collection .main-content .grid--full > .grid-item .collection_prod_container {
      padding: 1em;
      border-right: 1px solid #e8e6e7;
      border-bottom: 1px solid #e8e6e7;
      height: 325px; }
      @media screen and (max-width: 768px) {
        .template-collection .main-content .grid--full > .grid-item .collection_prod_container {
          height: 250px; } }
      .template-collection .main-content .grid--full > .grid-item .collection_prod_container:hover {
        background: #faf8f7;
        cursor: pointer; }
    @media screen and (max-width: 767px) {
      .template-collection .main-content .grid--full > .grid-item:nth-child(2n) .collection_prod_container {
        border-right: 0; } }
    @media screen and (min-width: 768px) {
      .template-collection .main-content .grid--full > .grid-item:nth-child(3n) .collection_prod_container {
        border-right: 0; } }
    .template-collection .main-content .grid--full > .grid-item .collection_product {
      color: #88817f; }
      .template-collection .main-content .grid--full > .grid-item .collection_product .product_title {
        font-style: italic;
        letter-spacing: 2px; }
      .template-collection .main-content .grid--full > .grid-item .collection_product .product_title, .template-collection .main-content .grid--full > .grid-item .collection_product .product_price {
        display: inline-block;
        padding: 0.5em 0;
        text-transform: lowercase; }
      .template-collection .main-content .grid--full > .grid-item .collection_product .product_price {
        font-size: 0.833em; }
        .template-collection .main-content .grid--full > .grid-item .collection_product .product_price.sale {
          color: red;
          font-weight: bold; }
          .template-collection .main-content .grid--full > .grid-item .collection_product .product_price.sale del {
            color: #88817f;
            font-weight: normal;
            margin-right: 5px; }
      .template-collection .main-content .grid--full > .grid-item .collection_product img {
        border: 1px solid #e8e6e7; }

@media screen and (max-width: 767px) {
  .collection_main {
    margin: 0 1em; } }
.on-sale .full_price {
  text-decoration: line-through;
  margin-right: 0.5em; }

.product-list-image {
  display: block; }

.new {
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/new.png?384) no-repeat center center; }

.shop_all {
  font-style: italic;
  text-transform: lowercase;
  font-size: 1.5em; }

.collection-nav {
  clear: both; }
  .collection-nav > li {
    padding-left: 20px;
    margin-bottom: 1.5em; }
    .collection-nav > li > a:hover {
      color: #73c6b0; }
    .collection-nav > li.collection-parent.site-nav--active > a {
      color: #73c6b0; }
    .collection-nav > li ul {
      text-transform: lowercase;
      font-style: italic;
      font-size: 1.1em; }
      .collection-nav > li ul a {
        padding-bottom: 0.25em;
        display: inline-block; }
        .collection-nav > li ul a:hover {
          background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/teal-dot.png?v=158602868468721431071428438800) repeat-x bottom left; }
      .collection-nav > li ul .site-nav--active > a {
        background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/teal-dot.png?v=158602868468721431071428438800) repeat-x bottom left; }

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

.template-collection .section-header {
  margin: 0;
  padding: 0; }
  .template-collection .section-header .collection-header {
    margin: 0;
    padding: 0;
    text-align: center; }
    .template-collection .section-header .collection-header .text_title {
      margin-top: 1em;
      display: block; }
  .template-collection .section-header img {
    width: 100%; }

.collection_header {
  position: relative; }
  .collection_header .collection_title {
    margin-bottom: 0;
    display: inline-block;
    position: absolute;
    top: 2em;
    left: -2em;
    background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/ribbon-body.png?v=81066171051962479911429130279) repeat-x;
    color: white;
    padding: 1em;
    height: 60px; }
    .collection_header .collection_title:after {
      position: absolute;
      right: -27px;
      top: 0;
      content: " ";
      background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/ribbon-end.png?v=135539984995397381141429130224) no-repeat right center;
      width: 31px;
      height: 60px;
      display: inline-block; }
  .collection_header .collection_image {
    margin-bottom: 0; }
    .collection_header .collection_image img {
      width: 100%; }

.breadcrumb {
  text-transform: uppercase;
  font-size: 0.867em;
  font-style: italic;
  margin-bottom: 1em; }
  .breadcrumb a {
    display: inline-block;
    margin-right: 2px;
    color: #88817f;
    text-decoration: none; }
    .breadcrumb a:first-child {
      padding-left: 0; }
  .breadcrumb .current {
    font-style: normal; }

#productSelect {
  display: none; }

.product_main .page-header h2 {
  margin: 0;
  padding: 0; }
.product_main .page-header .sale, .product_main .page-header .new {
  text-transform: uppercase;
  color: #fff;
  font-family: "Libre Baskerville", "Times New Roman", Georgia, serif;
  padding: .2em .8em;
  display: inline-block;
  margin-bottom: .5em;
  margin-right: .5em; }
.product_main .page-header .sale {
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/sale.png?384) no-repeat center center;
  color: transparent; }
.product_main .page-header .new {
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/new.png?384) no-repeat center center;
  color: transparent; }
.product_main .price, .product_main .full_price, .product_main .on-sale {
  display: block;
  border-bottom: 1px solid #e8e6e7;
  padding-bottom: 2em; }
  .product_main .price .sale, .product_main .full_price .sale, .product_main .on-sale .sale {
    color: red;
    font-weight: bold; }
    .product_main .price .sale del, .product_main .full_price .sale del, .product_main .on-sale .sale del {
      color: #88817f;
      font-weight: normal;
      margin-right: 5px; }
.product_main .full_price {
  text-decoration: line-through; }
.product_main .product_sharing {
  padding-top: 2em;
  margin-top: 2em;
  border-top: 1px solid #e8e6e7; }
  .product_main .product_sharing li {
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    border: 1px solid #73c6b0;
    margin: 1em 0.125em; }
    .product_main .product_sharing li:hover {
      background-color: #73c6b0; }
      .product_main .product_sharing li:hover a:hover {
        color: white; }
    .product_main .product_sharing li span {
      display: inline-block;
      width: 100%;
      height: 100%; }
      .product_main .product_sharing li span::before {
        vertical-align: middle; }
    .product_main .product_sharing li a {
      display: inline-block;
      color: #73c6b0;
      width: 100%;
      height: 100%; }

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

.no_wholesale_rates {
  margin-top: 1em; }

.product-variants {
  display: none; }
  .no-js .product-variants {
    display: block; }

.product-photo-container {
  margin-bottom: 20px;
  box-shadow: 0px 5px 5px 0px rgba(215, 210, 209, 0.5); }

.product-photo-container a, .product-photo-container img,
.product-photo-thumbs a,
.product-photo-thumbs img {
  display: block;
  margin: 0 auto;
  width: 100%; }
.product-photo-container li,
.product-photo-thumbs li {
  margin-bottom: 20px; }

.product-photo-thumbs a:hover img {
  opacity: 0.3; }

.product_info {
  padding-left: 50px; }
  @media screen and (max-width: 768px) {
    .product_info {
      padding-left: 20px; } }
  .product_info label {
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 0.75em;
    display: inline-block; }
  .product_info select {
    margin: 0;
    margin-bottom: 1em;
    background-image: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/select-arrow.svg?v=81817274675094140121430869689);
    font-style: normal;
    text-transform: none;
    font-size: 0.833em; }
  .product_info form {
    padding-top: 0.5em; }
    .product_info form .qty p {
      /*border-top: 1px solid $lightGrey;
      padding-top: 2em;
      margin-top: 2em;*/ }
    .product_info form .qty label {
      font-size: 0.75em;
      font-style: italic;
      text-transform: uppercase;
      margin-right: 1em;
      display: inline-block; }
    .product_info form .qty input {
      display: inline-block;
      width: 20%;
      text-align: center;
      border: 1px solid #e8e6e7;
      margin-bottom: 0; }

#min_qty {
  margin-bottom: 0;
  margin-top: 2em;
  text-transform: uppercase;
  font-style: italic;
  color: red;
  border: 0; }

.btn_margin {
  margin-top: 2em; }

.product-description {
  padding-bottom: 20px;
  margin-bottom: 20px;
  overflow: auto; }
  @media screen and (max-width: 768px) {
    .product-description {
      overflow: inherit; } }
  .product-description h6 {
    border-bottom: 1px solid #e8e6e7;
    padding-bottom: 1em;
    margin-bottom: 2em;
    margin-top: 3em; }
  .product-description ul {
    list-style: disc inside; }
  .product-description .product_sku {
    font-size: 0.75em;
    text-transform: uppercase;
    font-style: italic; }

#addToCart {
  text-transform: uppercase;
  padding: 1em 0;
  font-style: italic;
  letter-spacing: 2px;
  margin-top: 0em; }

.related_products {
  text-align: center;
  padding: 40px 0;
  clear: both; }
  .related_products .related_grid {
    width: 75%;
    margin: auto; }
    @media screen and (max-width: 767px) {
      .related_products .related_grid {
        width: 100%; } }
  .related_products .h2 {
    display: block;
    border-bottom: 1px solid #e8e6e7;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    position: relative; }
    .related_products .h2::after {
      content: ' ';
      display: inline-block;
      position: relative;
      top: 4px;
      left: 12px;
      background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/heart.svg?v=92641019937324341031430881032) no-repeat center;
      background-size: contain;
      width: 23px;
      height: 21px; }
  .related_products a {
    display: inline-block;
    color: #88817f;
    text-decoration: none;
    max-width: 100%; }
    .related_products a:hover img {
      opacity: 0.3; }
  .related_products .product_title {
    text-transform: lowercase;
    font-style: italic;
    letter-spacing: 1px; }
  .related_products .product_price {
    display: none; }

.template-article .article-header {
  margin-bottom: 0; }
  .template-article .article-header + .text-light {
    display: block;
    margin-bottom: 20px; }

.articles p, .article p {
  margin-bottom: 2em; }
.articles img, .article img {
  margin-bottom: 2em;
  max-width: 100%; }
.articles .article_tag a, .article .article_tag a {
  color: #88817f;
  display: inline-block; }

.blog_sidebar a {
  display: inline-block; }
.blog_sidebar ul {
  margin-bottom: 20px; }
  .blog_sidebar ul.inline-list a {
    text-transform: none;
    padding-bottom: 0;
    border-bottom: 0;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0; }
.blog_sidebar .bx-wrapper {
  position: relative; }
  .blog_sidebar .bx-wrapper .bx-viewport {
    margin-bottom: 20px; }
.blog_sidebar .sidebar_products {
  text-align: left;
  margin-left: 0; }
  .blog_sidebar .sidebar_products .grid-item {
    padding-left: 0; }
    .blog_sidebar .sidebar_products .grid-item a.product-grid-image {
      border: 0;
      padding: 0;
      margin: 0; }
.blog_sidebar .bx-prev, .blog_sidebar .bx-next {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 40%;
  color: transparent; }
.blog_sidebar .bx-prev {
  left: 0; }
.blog_sidebar .bx-next {
  right: 0; }

.slide_caption {
  padding-top: 2em; }

.template-page .about_image {
  box-shadow: 0px 5px 5px 0px rgba(215, 210, 209, 0.5);
  padding: 1em; }
.template-page h1 {
  text-align: center; }
.template-page .rte {
  margin-bottom: 4em; }
  .template-page .rte p {
    letter-spacing: 0px !important; }
.template-page .bx-wrapper .bx-controls-direction a {
  top: 35%; }
.template-page .bx-wrapper .bx-prev {
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/grey-double-arrow-left.svg?v=42050852850602338631435622624) no-repeat center center;
  background-size: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%; }
  .template-page .bx-wrapper .bx-prev:hover {
    background-position: center center; }
.template-page .bx-wrapper .bx-next {
  background: url(//cdn.shopify.com/s/files/1/0745/9353/t/2/assets/grey-double-arrow-right.svg?v=143854966961737883161435622624) no-repeat center center;
  background-size: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%; }
  .template-page .bx-wrapper .bx-next:hover {
    background-position: center center; }
.template-page .bxslider {
  position: relative; }
  .template-page .bxslider img {
    padding: 0; }
.template-page .bx-viewport {
  margin-top: 2em;
  box-shadow: none; }
.template-page .staff {
  text-align: center;
  width: 100%; }
  .template-page .staff p {
    margin-bottom: 0; }
  .template-page .staff h4 {
    margin-top: 2em; }

.note,
.errors {
  border-radius: 0px;
  padding: 10px;
  margin-bottom: 1em; }
  .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: #e8e6e7; }

.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-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8e6e7; }
  .cart-row .btn, .cart-row .btn-secondary {
    margin-bottom: 1em; }
  #ajaxifyDrawer .cart-row {
    border-top-color: #444; }
  .cart-row:first-child, .page-header + .cart-row {
    margin-top: 0; }
  .cart-row:first-child {
    padding-top: 0;
    border-top: 0 none; }
  .cart-row a {
    color: #88817f;
    text-decoration: none;
    display: inline-block;
    max-width: 100%; }
    .cart-row a:hover {
      color: #73c6b0;
      text-decoration: underline; }

.cart-subtotal {
  margin-bottom: 20px; }

.cart-subtotal--price {
  display: inline; }

.notice {
  text-align: center;
  margin: 3em 0; }

h3.login {
  margin-bottom: 1em; }

#contactFormWrapper {
  margin: 2em auto 4em;
  overflow: auto;
  text-transform: uppercase;
  width: 75%; }
  #contactFormWrapper label {
    font-style: italic;
    text-transform: lowercase;
    cursor: default;
    margin: 2em 0 0.5em; }
  #contactFormWrapper li {
    margin: 1em 0;
    font-size: 0.833em; }
    #contactFormWrapper li input[type=checkbox], #contactFormWrapper li input[type=radio] {
      vertical-align: middle;
      position: relative;
      bottom: 2px;
      padding: 0 0.25em;
      margin: 0 0.25em; }
    #contactFormWrapper li input[type=radio] {
      bottom: 2px; }
  #contactFormWrapper select {
    font-style: normal;
    font-size: 0.833em; }
    #contactFormWrapper select option {
      padding: 5px; }
  #contactFormWrapper #contactFormPieces {
    display: flex;
    flex-flow: row wrap; }
    #contactFormWrapper #contactFormPieces li {
      flex: 50%; }

.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; }
