/*= Dot On Template 1.0 / Copyright 2016 Dot On Technologies and Copyright 2015 Shopify Inc.
    - The font icons are prepared using https://icomoon.io/app =*/
/*============================================================================
  Table of Contents

  #Custom Quilt Product Page  
  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
  #Homepage
  #General
  #Photoswipe Main CSS
  #Photoswipe Default Skin
  #Back to top button
  #DO Browser Not Supported Banner

==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*ll*/
/*ll*/
/*ll*/
/*ll*/
/*ll*/
/*ll*/
/*ll*/
/*ll*/
/*ll*/
/*ll*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/icons.eot?v=9569621082325021121");
  src: url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/icons.eot?v=9569621082325021121#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/icons.woff?v=6574892100248703103") format("woff"), url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/icons.ttf?v=1793966381440680946") format("truetype"), url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/icons.svg?v=8790591914291354894#timber-icons") format("svg");
  font-weight: normal;
  font-style: italic; }

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

/*============================================================================
  Prefixer mixin for generating vendor prefixes:
    - Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
    - Usage:

      // Input:
      .element {
        @include prefixer(transform, scale(1), ms webkit spec);
      }

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/*============================================================================
  Layer promotion mixin for creating smoother animations with higher FPS.
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - Based on http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
    - Usage docs: http://shopify.github.io/Timber/#sass-mixins
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  box-sizing: border-box; }

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

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

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

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type="number"] {
  -moz-appearance: textfield; }

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

input, textarea, select, a, button {
  outline: none; }

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

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

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

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  vertical-align: top;
  width: 100%; }

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

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

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

.text-center {
  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: 705px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
body {
  background: url(//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/backgroundSI.png?v=5243518353911603447); }

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

.wrapper {
  background: none;
  *zoom: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 705px) {
    .wrapper {
      padding: 0 30px 0; } }
  @media screen and (max-width: 960px) {
    .wrapper {
      background: url(//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/backgroundSI.png?v=5243518353911603447);
      padding: 0px 15px 0; } }
  @media screen and (max-width: 705px) {
    .wrapper {
      padding: 0;
      margin: 0px auto;
      padding: 0px; } }

@media screen and (max-width: 705px) {
  main.wrapper {
    margin-top: 0px; } }
.wrapper-inner {
  background: #fef4f5;
  overflow: auto;
  margin-left: 15px;
  padding-right: 30px;
  border-left: 1px solid #ccbbab;
  border-right: 1px solid #ccbbab; }

.template-index .wrapper-inner-inner {
  padding-top: 34px; }

.wrapper-inner-inner, .wrapper-inner-inner-topper {
  overflow: auto;
  margin-left: 7px !important;
  border-left: 1px dashed #ccbbab;
  border-right: 1px dashed #ccbbab;
  margin-right: -22px !important;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 100px;
  min-height: 300px; }

.wrapper-inner-inner-topper {
  padding-top: 0px;
  padding-bottom: 0px;
  min-height: 0px;
  height: 22px; }

.custom-quilt .wrapper-inner-inner {
  padding-bottom: 100px;
  padding-top: 29px; }

.site-footer .wrapper-inner-inner {
  padding-bottom: 50px; }

.template-index .wrapper {
  background: none; }

.main-content {
  display: block;
  margin-top: 0px; }

.template-collection .main-content, .template-product .main-content {
  margin-top: 0px; }

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

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

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

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

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.6;
  font-family: "Georgia", Times New Roman, Times, serif;
  color: #2a1c15;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-style: italic; }

button {
  font-size: 16px; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "Georgia", Times New Roman, Times, serif;
  font-weight: normal;
  margin: 0 0 0.3em;
  line-height: 1.4;
  text-transform: uppercase; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 2.14286em; }

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

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

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

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

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

.template-index h1, .template-index .h1, .template-index h2, .template-index .h2, .template-index h3, .template-index .h3, .template-index h4, .template-index .h4 {
  color: #7c9d90;
  font-size: 1.28571em; }

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

.green {
  color: #2caf98;
  display: inline-block; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #ccbbab; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

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

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

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

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

.template-collection .section-header {
  margin-bottom: 15px; }

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

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

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

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

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

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

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

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

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    text-decoration: underline;
    color: #2a1c15; }
  .rte a:hover {
    color: #7c9d90; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 0.25em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0.25em; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0em;
    background: url(//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/bullet-bobbin.png?v=1616014829601790163) no-repeat 0px 9px transparent;
    padding: 6px 25px;
    list-style-type: none; }

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

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

a:hover,
a:focus {
  color: #7c9d90; }

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  display: inline-block;
  padding: 4px 13px;
  width: auto;
  height: 34px;
  margin: 0;
  line-height: 1.42;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #d4d4d4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  background-color: #a5d3c0;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #94cbb4;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: #a5d3c0;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.template-product .product-buy-btn .btn, .template-product .product-buy-btn .btn--secondary, .template-cart .btn, .template-cart .btn--secondary, .custom-quilt .btn, .custom-quilt .btn--secondary {
  background: #a5d3c0;
  font-size: 1.3em;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  color: #FFF;
  border: 1px solid #77a79e;
  padding: 0px;
  width: auto;
  height: auto; }
  .template-product .product-buy-btn .btn:hover, .template-product .product-buy-btn .btn--secondary:hover, .template-cart .btn:hover, .template-cart .btn--secondary:hover, .custom-quilt .btn:hover, .custom-quilt .btn--secondary:hover {
    background: #94cbb4; }
  .template-product .product-buy-btn .btn input, .template-product .product-buy-btn .btn--secondary input, .template-cart .btn input, .template-cart .btn--secondary input, .custom-quilt .btn input, .custom-quilt .btn--secondary input {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    background: #a5d3c0; }
    .template-product .product-buy-btn .btn input:hover, .template-product .product-buy-btn .btn--secondary input:hover, .template-cart .btn input:hover, .template-cart .btn--secondary input:hover, .custom-quilt .btn input:hover, .custom-quilt .btn--secondary input:hover {
      background: #94cbb4 !important; }
.template-product .product-buy-btn .btn-inner, .template-cart .btn-inner, .custom-quilt .btn-inner {
  border: 1px dashed #77a79e;
  padding: 8px 45px;
  margin: 3px; }

@media screen and (max-width: 705px) {
  .template-product .product-buy-btn .btn, .template-product .product-buy-btn .btn--secondary {
    min-width: 200px; } }
.search-bar .btn, .search-bar .btn--secondary {
  padding: 5px 6px 5px 7px; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #fef4f5 !important;
  border: 1px dashed #b1aeaa !important;
  color: #908d83 !important;
  padding: 3px 10px !important;
  font-size: 1.1em; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #fef4f5 !important;
    color: #908d83 !important; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #fef4f5 !important;
    color: #908d83 !important; }

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

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

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

a.gallery.btn, a.gallery.btn--secondary {
  padding: 8px 9px !important;
  border: 1px dashed #908d83;
  background: none;
  margin: 0px auto;
  font-size: 1.3em;
  height: auto;
  display: block;
  max-width: 289px;
  color: #2a1c15;
  white-space: normal;
  text-transform: none;
  font-weight: normal; }
  a.gallery.btn:hover, a.gallery.btn--secondary:hover {
    background: #ffffff; }

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

th, td {
  text-align: left; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 705px) {
  .table--responsive thead {
    display: none; }
  .table--responsive tr {
    display: block; }
  .table--responsive tr,
  .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  .table--responsive th,
  .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  .table--responsive td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }
  .table--responsive.cart-table img {
    margin: 0 auto; }
  .table--responsive.cart-table .js-qty {
    float: right; } }

@media screen and (max-width: 705px) {
  .table--small-hide {
    display: none !important; }

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #ccbbab; } }
/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

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

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

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

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

img.left {
  padding-right: 20px;
  padding-bottom: 20px; }

img.right {
  padding-left: 20px;
  padding-bottom: 20px; }

@media screen and (max-width: 705px) {
  img.right, img.left {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    float: none !important; } }
svg:not(:root) {
  overflow: hidden; }

img,
iframe {
  max-width: 100%; }

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

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

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

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

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

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

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

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

fieldset {
  border: 1px solid #ccbbab;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px dashed #ccbbab;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 0px;
  background-color: #ffffff; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

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

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/ico-select.svg?v=354012039368648229");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #ffffff;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

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

label[for] {
  cursor: pointer; }

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

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

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary {
    border-radius: 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: 34px; }

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

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

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

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon:before {
  display: none; }

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

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

.icon-american_express:before {
  content: "\41"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-icons li {
  margin: 0;
  vertical-align: middle;
  padding: 25px 5px; }
  @media screen and (min-width: 706px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 32px;
    line-height: 26px; }
  .social-icons li .icon-facebook {
    color: #3D5A9B; }
    .social-icons li .icon-facebook:hover {
      color: #2f4576; }
  .social-icons li .icon-twitter {
    color: #6BACDF; }
    .social-icons li .icon-twitter:hover {
      color: #4194d6; }
  .social-icons li .icon-pinterest {
    color: #bd081c; }
    .social-icons li .icon-pinterest:hover {
      color: #8c0615; }
  .social-icons li .icon-instagram {
    color: #325D85; }
    .social-icons li .icon-instagram:hover {
      color: #244360; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination > span {
  display: inline-block;
  line-height: 1; }
.pagination a {
  display: block; }
.pagination a,
.pagination .page.current {
  padding: 8px; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  padding: 0px;
  margin-bottom: 0px;
  background: none; }
  @media screen and (max-width: 705px) {
    .site-header {
      padding-bottom: 0px; } }
  .site-header .wrapper {
    padding-top: 0px; }
    @media screen and (max-width: 960px) {
      .site-header .wrapper {
        position: relative;
        padding-bottom: 0px;
        margin-top: 0px; } }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: bottom; }

.site-header__logo {
  text-align: center;
  max-width: 303px;
  min-width: 303px;
  margin: 0px auto;
  max-height: 207px;
  overflow: visible; }
  @media screen and (max-width: 960px) {
    .site-header__logo {
      max-width: 230px;
      min-width: 230px;
      max-height: 156px; } }
  @media screen and (max-width: 705px) {
    .site-header__logo {
      max-width: 150px;
      min-width: 150px;
      height: 0px; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0px; }

.site-header__logo-link {
  max-width: 303px;
  margin: 0px;
  z-index: 14;
  position: relative; }

.site-header__logo-cont {
  position: absolute;
  top: 0px;
  width: 100%; }

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

.site-header__search {
  display: inline-block;
  max-width: 294px;
  width: 100%; }

.site-header__cart {
  bottom: 114px !important;
  position: absolute;
  right: 30px;
  background: #fef4f5;
  width: 230px;
  height: 41px;
  border-top: 1px solid #D5CDCB;
  border-bottom: 1px solid #D5CDCB;
  text-transform: uppercase;
  font-size: 1.2em; }
  @media screen and (max-width: 960px) {
    .site-header__cart {
      bottom: 90px !important;
      width: 215px; } }

.site-header__cart-inner {
  border-top: 1px dashed #D5CDCB;
  border-bottom: 1px dashed #D5CDCB;
  margin-top: 3px;
  margin-bottom: 3px;
  height: 33px;
  padding: 3px 10px; }

.site-header__cart-bike {
  background: url(//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/cart-bike.png?v=11250378596504613819) no-repeat;
  width: 50px;
  height: 26px;
  float: left; }

.site-header__cart-text {
  padding: 0px;
  float: right; }

.site-header__my-account {
  position: absolute;
  right: 30px;
  top: 15px; }
  @media screen and (max-width: 960px) {
    .site-header__my-account {
      left: 30px; } }

.search-bar-field {
  max-width: 100%;
  border-right: 0px; }

.site-header-left, .site-header-right, .site-header-center {
  height: 198px !important; }
  @media screen and (max-width: 960px) {
    .site-header-left, .site-header-right, .site-header-center {
      height: 80px !important; } }

.site-header-center {
  z-index: 13;
  vertical-align: top !important; }

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

/*============================================================================
  #Site Nav and Dropdowns - large, medium screens
==============================================================================*/
.site-header-left .site-header-scroll-left {
  background: url(//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/scroll-left.gif?v=11915333634659164367);
  overflow: visible;
  width: 526px;
  height: 59px;
  position: absolute;
  bottom: 39px !important;
  left: 10px;
  z-index: 10; }
  @media screen and (max-width: 960px) {
    .site-header-left .site-header-scroll-left {
      bottom: 29px !important;
      left: 5px; } }

.site-header-right .site-header-scroll-right {
  background: url(//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/scroll-right.gif?v=9408327600797708429);
  overflow: visible;
  width: 577px;
  height: 59px;
  position: absolute;
  bottom: 39px !important;
  right: 10px;
  z-index: 10; }
  @media screen and (max-width: 960px) {
    .site-header-right .site-header-scroll-right {
      bottom: 29px !important;
      right: 5px; } }

.site-header-menu-left, .site-header-menu-right {
  position: relative;
  bottom: 44px !important;
  z-index: 11;
  right: 0px;
  width: 100%; }
  @media screen and (max-width: 960px) {
    .site-header-menu-left, .site-header-menu-right {
      bottom: 34px !important; } }

.site-header-menu-right {
  left: 0px; }

ul.scroll-menu li .drop {
  display: block;
  padding: 20px; }
ul.scroll-menu li a.drop {
  text-decoration: none;
  font-size: 1.21429em; }
ul.scroll-menu li a.drop:hover {
  color: #2a1c15; }
ul.scroll-menu li a.drop .fa {
  color: #b3b3b0;
  font-size: 1.07143em;
  position: relative;
  top: 1px; }

ul.scroll-menu ul.menu-dropdown {
  z-index: 10;
  position: absolute;
  left: -999em;
  text-align: left;
  background: #e5dfdf;
  border: 1px solid #b1aeaa;
  padding: 3px;
  border-top: 0px;
  width: 320px; }
  ul.scroll-menu ul.menu-dropdown .menu-dropdown-inner {
    padding: 10px 15px 18px;
    border-left: 1px dashed #b1aeaa;
    border-right: 1px dashed #b1aeaa;
    border-bottom: 1px dashed #b1aeaa;
    margin: 0px 2px 2px; }

ul.scroll-menu li:hover .menu-dropdown {
  left: 0px;
  top: 32px; }
ul.scroll-menu li:hover div a {
  margin-left: 0px;
  width: 100%;
  padding: 3px 0px; }

ul.scroll-menu {
  list-style: none;
  z-index: 70;
  margin-left: 0px;
  float: right;
  padding: 0px !important;
  margin: 0px !important;
  width: 100%;
  text-align: right; }
  ul.scroll-menu li {
    display: inline-block;
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 17px;
    width: 45%;
    position: relative; }
  ul.scroll-menu li a {
    padding: 10px 0px; }
  ul.scroll-menu li ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0; }
  ul.scroll-menu li ul li {
    position: relative;
    float: none;
    text-align: left;
    width: 100%;
    padding: 2px 0px;
    font-size: 17px; }

.site-header-menu-right ul {
  float: left;
  text-align: left; }

/*============================================================================
  #Mobile Nav
==============================================================================*/
.site-header-mobile-inner {
  position: relative;
  top: 0px;
  width: 100%;
  min-height: 29px;
  padding: 3px 0px;
  border-top: 1px solid #b1aeaa;
  border-bottom: 1px solid #b1aeaa;
  background: none repeat scroll 0% 0% #e5dfdf;
  margin: 39px 0px 20px; }

.site-header-mobile-inner-inner {
  position: relative;
  border-top: 1px dashed #b1aeaa;
  border-bottom: 1px dashed #b1aeaa;
  min-height: 33px; }

.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: left;
  padding: 6px 15px 10px 16px;
  line-height: 1.125em;
  cursor: pointer; }
  .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
    margin-top: 0.36em; }

.slicknav_nav {
  clear: both;
  list-style: none;
  overflow: hidden;
  color: #2A1C15;
  margin: 10px 0px 0px;
  padding: 0px;
  font-size: 17px;
  text-transform: uppercase;
  background: #e5dfdf;
  padding-top: 25px; }
  .slicknav_nav ul, .slicknav_nav li {
    display: block;
    margin-bottom: 0px; }
  .slicknav_nav ul {
    padding: 0;
    margin: 0 0 0 20px;
    clear: both;
    list-style: none;
    overflow: hidden; }
  .slicknav_nav .slicknav_arrow {
    font-size: 0.8em;
    margin: 0 0 0 0.4em;
    font-size: 17px;
    float: right; }
  .slicknav_nav .slicknav_item {
    cursor: pointer; }
  .slicknav_nav .slicknav_row {
    display: block; }
  .slicknav_nav a {
    display: block; }
  .slicknav_nav .slicknav_item a,
  .slicknav_nav .slicknav_parent-link a {
    display: inline;
    padding: 0;
    margin: 0; }
  .slicknav_nav .slicknav_txtnode {
    margin-left: 15px; }

.slicknav_menu {
  *zoom: 1; }
  .slicknav_menu:before, .slicknav_menu:after {
    content: " ";
    display: table; }
  .slicknav_menu:after {
    clear: both; }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #7b7269;
    display: block;
    width: 1.4em;
    height: 0.15em; }
  .slicknav_menu .slicknav_no-text {
    margin: 0; }
  .slicknav_menu .slicknav_icon {
    float: left;
    margin: 0.188em 0 0 0.438em; }
  .slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: right;
    padding-left: 3px;
    font-style: normal;
    color: #2a1c15; }

.slicknav_open {
  margin: 0px; }

.slicknav_nav li {
  padding: 0px 0px 0px 22px;
  border-bottom: 1px dashed #b1aeaa; }
  .slicknav_nav li:first-child {
    border-top: 1px dashed #b1aeaa; }
  .slicknav_nav li:last-child {
    border-bottom: 0px; }
  .slicknav_nav li a {
    padding: 15px 22px 15px 20px;
    text-decoration: none;
    color: #2a1c15;
    font-style: normal;
    background: url(//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/bullet-bobbin.png?v=1616014829601790163) no-repeat 0px 20px transparent;
    list-style-type: none; }
  .slicknav_nav li a:hover {
    color: #2a1c15; }
  .slicknav_nav li a a,
  .slicknav_nav li a a:hover {
    border: 0px;
    background: none;
    padding-left: 0px; }
  .slicknav_nav li ul li {
    padding-left: 0px;
    border-bottom: 0px;
    border-top: 1px dashed #b1aeaa; }
  .slicknav_nav li ul li a {
    background: none;
    text-transform: capitalize;
    padding: 10px 0px 10px 0px; }
  .slicknav_nav li ul li a:hover, .slicknav_nav li ul li a:hover {
    background: none; }
  .slicknav_nav li ul li ul {
    margin-top: 20px; }

.site-header-mobile-menu ul.menu,
.slicknav_menu, .headerMobileCall {
  display: none; }

@media only screen and (max-width: 705px) {
  .slicknav_menu,
  #menu .mobileOnly,
  .headerMobileCall {
    display: block !important; } }
.mobile-menu-cont {
  overflow: visible; }

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

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background: none;
  color: #2a1c15;
  margin-bottom: 50px; }
  @media screen and (max-width: 960px) {
    .site-footer .wrapper {
      background: none; } }
  .site-footer ul.social-icons {
    margin: 0px; }

.site-footer-payments {
  margin: 12px 0 24px; }

.site-footer__email.wrapper {
  margin-top: 0px;
  margin-bottom: 30px;
  padding-top: 0px;
  padding-bottom: 0px; }
  @media screen and (max-width: 960px) {
    .site-footer__email.wrapper {
      background: none;
      margin-top: 0px;
      margin-bottom: 14px; } }
  .site-footer__email.wrapper .site-footer__emailtxt {
    font-size: 1.5em;
    color: #ffffff;
    padding-right: 20px; }
    @media screen and (max-width: 960px) {
      .site-footer__email.wrapper .site-footer__emailtxt {
        padding-right: 0px;
        padding-bottom: 10px; } }
  @media screen and (max-width: 960px) {
    .site-footer__email.wrapper .site-footer__email_input {
      padding-bottom: 22px; } }
  .site-footer__email.wrapper .site-footer__email-cont {
    padding-top: 15px;
    padding-bottom: 15px; }
    @media screen and (min-width: 961px) {
      .site-footer__email.wrapper .site-footer__email-cont {
        background: none;
        padding: 15px; } }
  .site-footer__email.wrapper .input-group .input-group-field {
    width: 99%;
    border: 0px; }
  .site-footer__email.wrapper .input-group .btn, .site-footer__email.wrapper .input-group .btn--secondary {
    border: 0px;
    background: #c84855;
    color: #ffffff; }
  .site-footer__email.wrapper .input-group .btn:hover, .site-footer__email.wrapper .input-group .btn--secondary:hover {
    background: #aa333f; }

.site-footer-links h6, .site-footer-links .h6 {
  font-size: 1.3em;
  padding-bottom: 5px; }
.site-footer-links ul {
  list-style: none;
  margin-left: 0px; }

.site-footer-terms {
  font-size: 0.9em; }

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

.SubCatLinks .linkItem {
  display: inline-block;
  margin: 0px 10px 10px 0px;
  border: 1px solid #fbd3d7;
  padding: 10px;
  width: 211px;
  text-align: center; }

.SubCatLinks .linkItem:hover {
  background: #fac5cb; }

.SubCatLinks a {
  text-decoration: none !important; }

.product-grid-item {
  margin-bottom: 30px;
  padding-right: 0px;
  padding-left: 15px; }

.product-grid-item h4, .product-grid-item .h4, .product-grid-item .h4 {
  font-size: 1em;
  text-transform: capitalize;
  text-align: center; }

.product-grid-item .grid__image {
  border: 1px solid #ccbbab;
  background: #ffffff; }

.collection-sorting-cont-btm {
  margin-bottom: 30px;
  text-align: right; }

.collection-sorting-cont-top {
  margin-bottom: 13px; }
  .collection-sorting-cont-top #collection-toggle-drop {
    border-top: 1px dashed #ccbbab;
    margin-top: 10px;
    padding: 20px 0px;
    overflow: auto; }

.collection-sorting-cont-top, .collection-sorting-cont-btm {
  background: #f8dfdd;
  padding: 10px 20px;
  overflow: auto; }
  .collection-sorting-cont-top select, .collection-sorting-cont-btm select {
    border: 1px dashed #ccbbab; }
  .collection-sorting-cont-top li, .collection-sorting-cont-btm li {
    float: left;
    padding-right: 30px; }
  .collection-sorting-cont-top #collection-toggle, .collection-sorting-cont-btm #collection-toggle {
    -moz-appearance: none;
    background-image: url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/ico-select.svg?v=354012039368648229");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: #FFF;
    text-indent: 0.01px;
    text-overflow: "";
    cursor: pointer;
    border: 1px dashed #ccbbab;
    max-width: 100%;
    padding: 3px 28px 4px 9px;
    border-radius: 0px;
    display: inline-block;
    margin-left: 3px;
    min-width: 181px; }

.collection-sorting-item {
  float: left;
  padding-right: 20px; }
  .collection-sorting-item:last-child {
    padding-right: 20px; }

.template-collection .collection-title {
  border-bottom: 2px solid #f7f7f7; }

.template-collection .collection-description-btm-cont {
  border-top: 2px solid #f7f7f7;
  padding-top: 30px;
  padding-bottom: 40xp;
  margin-top: 30px; }
  .template-collection .collection-description-btm-cont .collection-title-btm {
    padding-bottom: 5px;
    margin-bottom: 12px;
    font-size: 2em; }

/*============================================================================
  #Product Labels
==============================================================================*/
.product-onsale, .product-new {
  position: absolute;
  background: #e282b3;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  width: 63px;
  height: 63px;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  padding: 20px 5px 20px 3px;
  font-size: 1.23em;
  color: #ffffff;
  top: 9px;
  left: 9px;
  line-height: 1.4; }
  @media screen and (max-width: 705px) {
    .product-onsale, .product-new {
      font-size: 1em;
      width: 44px;
      height: 44px;
      padding: 13px 5px 13px 3px;
      top: 3px;
      left: 3px; } }

.product-new {
  background: #78c8d8; }

.product-grid-price-onsale {
  background: #e282b3 !important; }

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

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

/*============================================================================
  #Product Page
==============================================================================*/
.grid.product-single.top, .product-single.top.grid--rev, .product-single.top.grid--full {
  margin-top: 10px; }

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

.product-single__photos {
  margin: 0px auto;
  margin-bottom: 30px; }
  @media screen and (min-width: 961px) {
    .product-single__photos {
      max-width: 386px; } }
  .product-single__photos img {
    border: 1px solid #dfd5cb; }

.product-single__photos a, .product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0px auto; }
  @media screen and (max-width: 705px) {
    .product-single__photos a, .product-single__photos img,
    .product-single__thumbnails a,
    .product-single__thumbnails img {
      margin: 0px; } }
.product-single__photos li,
.product-single__thumbnails li {
  margin-bottom: 30px; }

.product-description {
  margin-bottom: 24px; }

.template-product #ProductPrice {
  font-size: 2em; }

.template-product .product-quantity {
  padding: 10px 0px; }
  .template-product .product-quantity input {
    display: inline-block;
    border: 1px dashed #b3b3b0;
    background: #ffffff;
    width: 38px;
    text-align: center;
    margin-left: 8px; }

.quantity-selector-input {
  width: 35px;
  text-align: center; }

.product-main {
  padding-left: 25px; }
  @media screen and (max-width: 705px) {
    .product-main {
      padding-left: 15px; } }

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

.note {
  border-color: #ccbbab; }

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

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

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

/*============================================================================
  #Cart Page
==============================================================================*/
.cart__row {
  position: relative;
  margin-top: 15px;
  padding-top: 30px; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty {
    margin: 0 auto; }
  .cart__row.cart-checkout-btn {
    padding-top: 10px;
    margin-bottom: 50px; }

.cart-table {
  margin-top: 20px;
  border-top: 1px solid #ccbbab; }
  .cart-table th {
    font-weight: normal;
    padding: 18px 8px 18px 0px;
    border: none;
    color: #908d83;
    font-size: 1.25em; }
  .cart-table td {
    padding: 8px 8px 8px 0px;
    border: none;
    vertical-align: top; }

@media screen and (min-width: 961px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

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

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

.cart h4, .cart .h4 {
  font-size: 1.1em; }

.cart .cart-line-quantity input {
  width: 40px; }

.cart-message {
  background: #F4CECE;
  padding: 10px;
  margin-bottom: 10px;
  overflow: auto; }
  .cart-message .cart-message-img {
    background: url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/cart-message-img.svg?v=4051320582696106618");
    width: 39px;
    height: 39px;
    float: left;
    margin-right: 15px; }
  .cart-message .cart-message-txt {
    padding: 10px 0px; }

.cart-wrapper-inner-inner {
  padding-top: 22px; }

.template-cart h1, .template-cart .h1 {
  margin: 5px 0px 1px !important; }
.template-cart h2, .template-cart .h2 {
  border-bottom: 1px solid #ccbbab;
  margin-bottom: 20px;
  padding-bottom: 5px; }

.cart__subtotal-cont {
  padding: 20px 0px 25px;
  border-bottom: 1px solid #ccbbab;
  font-size: 1.2em; }

.cart__update {
  border-bottom: 1px solid #ccbbab;
  padding-bottom: 20px; }

.cart__remove {
  color: #908d83; }

.cart__delivery-title {
  padding-top: 5px; }

/*============================================================================
  #LOU LOU RIOUX HEADINGS
==============================================================================*/
.header-ribbon {
  background: #E3D7D3;
  max-width: 90%;
  height: 44px;
  max-height: 44px;
  margin: 0px auto;
  position: relative;
  overflow: visible;
  margin-bottom: 20px;
  padding: 6px 0px; }
  .header-ribbon:before {
    border-color: #E3D7D3 transparent;
    left: -30px;
    content: "";
    border-style: solid;
    border-width: 0px;
    height: 0px;
    position: absolute;
    top: 0px;
    width: 0px;
    border-width: 22px 0px 22px 30px; }
  .header-ribbon:after {
    border-color: #E3D7D3 transparent;
    right: -30px;
    content: "";
    border-style: solid;
    border-width: 0px;
    height: 0px;
    position: absolute;
    top: 0px;
    width: 0px;
    border-width: 22px 30px 22px 0px; }
  .header-ribbon .header-ribbon-inner {
    text-align: center;
    background: #E3D7D3;
    width: 100%;
    margin: 0px auto;
    border-top: 1px dashed #9F9F9F;
    border-bottom: 1px dashed #9F9F9F;
    overflow: hidden;
    height: 32px;
    padding-top: 2px; }
    .header-ribbon .header-ribbon-inner h4, .header-ribbon .header-ribbon-inner .h4 {
      color: #2a1c15 !important; }

/*============================================================================
  #LOU LOU RIOUX CUSTOM FOOTER
==============================================================================*/
.footer-guides {
  background: #F1BFC6;
  position: relative;
  height: 216px; }
  @media screen and (max-width: 705px) {
    .footer-guides {
      display: none; } }
  .footer-guides a {
    text-decoration: none; }
  .footer-guides .top {
    font-size: 18px;
    color: #ffffff;
    top: 26px;
    position: absolute;
    left: 22px; }
  .footer-guides .middle {
    font-size: 34px;
    color: #726E6F;
    top: 48px;
    position: absolute;
    left: 22px; }
  .footer-guides .bottom {
    font-size: 18px;
    color: #ffffff;
    top: 95px;
    position: absolute;
    left: 65px; }
  .footer-guides .bobbin {
    position: absolute;
    top: 130px;
    left: 12px; }
  .footer-guides .flowers {
    position: absolute;
    top: 9px;
    right: 12px; }
  .footer-guides:before {
    border-color: #F1BFC6 transparent;
    left: -71px;
    content: "";
    border-style: solid;
    border-width: 0px;
    height: 0px;
    position: absolute;
    top: 0px;
    width: 0px;
    border-width: 108px 0px 108px 71px; }
    @media screen and (max-width: 960px) {
      .footer-guides:before {
        border-width: 0px;
        left: 0px; } }

.footer-email {
  background: #C5DDD3;
  position: relative;
  height: 216px; }
  @media screen and (max-width: 960px) {
    .footer-email {
      border-right: 1px dashed #B4ACA5; } }
  @media screen and (max-width: 705px) {
    .footer-email {
      border-right: 0px; } }
  .footer-email .email, .footer-email .mcName {
    padding-left: 8px !important;
    height: 23px;
    width: 182px;
    position: absolute;
    top: 123px;
    left: 27px;
    border: 0px;
    margin: 0px; }
  .footer-email .mcName {
    top: 90px;
    left: 27px; }
  .footer-email .emailButton {
    position: absolute;
    top: 159px;
    left: 27px;
    height: 25px;
    width: 181px; }
  .footer-email .ribbon-wrapper {
    padding: 5px 0px 7px 0px;
    background: #F8E0DD;
    position: absolute;
    top: 20px;
    left: 0px;
    width: 256px;
    height: 58px; }
  .footer-email .ribbon-wrapper:after {
    border-color: #F8E0DD transparent;
    right: -43px;
    content: "";
    border-style: solid;
    border-width: 0px;
    height: 0px;
    position: absolute;
    top: 0px;
    width: 0px;
    border-width: 29px 43px 29px 0px; }
    @media only screen and (max-width: 1050px) {
      .footer-email .ribbon-wrapper:after {
        border-width: 0px;
        right: 0px; } }
    @media screen and (max-width: 705px) {
      .footer-email .ribbon-wrapper:after {
        right: -43px;
        border-width: 29px 43px 29px 0px; } }
  .footer-email .ribbon {
    border-top: 1px dashed #B4ACA5;
    border-bottom: 1px dashed #B4ACA5;
    position: relative;
    height: 48px;
    line-height: 1 !important;
    padding-top: 3px; }
    .footer-email .ribbon .top {
      font-size: 16px;
      padding-left: 90px; }
    .footer-email .ribbon .bottom {
      font-size: 21px;
      padding-left: 90px; }
  .footer-email .emailGammill {
    position: absolute;
    top: 3px;
    left: 0px; }
  .footer-email:after {
    border-color: #C5DDD3 transparent;
    right: -71px;
    content: "";
    border-style: solid;
    border-width: 0px;
    height: 0px;
    position: absolute;
    top: 0px;
    width: 0px;
    border-width: 108px 71px 108px 0px; }
    @media screen and (max-width: 960px) {
      .footer-email:after {
        border-width: 0px;
        right: 0px; } }

.site-footer__upper-wrapper {
  background: #fef4f5; }

.site-footer__upper-btm {
  position: relative;
  top: -3px;
  margin-bottom: 6px; }
  .site-footer__upper-btm .wrapper-inner-inner {
    padding-top: 0px;
    height: 46px;
    min-height: 0px;
    padding-bottom: 0px !important; }
  .site-footer__upper-btm .wrapper-inner {
    padding-top: 0px !important;
    height: 46px; }

@media screen and (max-width: 960px) {
  .footer-instafeed .footer-instafeed-cont:nth-child(4) {
    display: none; } }
@media screen and (max-width: 705px) {
  .footer-instafeed .footer-instafeed-cont:nth-child(3) {
    display: none; } }

#instafeed .product-grid-item {
  margin-bottom: 15px; }

@media screen and (max-width: 960px) {
  .template-index #instafeed .product-grid-item:nth-child(4) {
    display: none; } }
@media screen and (max-width: 705px) {
  .template-index #instafeed .product-grid-item:nth-child(4) {
    display: block; } }

/*============================================================================
  #Photoswipe Main CSS
==============================================================================*/
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/* Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.pswp img {
  max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2a1c15;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*============================================================================
  #Photoswipe Default Skin
==============================================================================*/
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Contents:
	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)
    7. Image hover cursor and opacity
*/
/*
	
	1. Buttons
 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none; }

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1; }

.pswp__button:active {
  outline: none;
  opacity: 0.9; }

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(product-photoswipe-default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(product-photoswipe-default-skin.svg); }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }
.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share span {
  position: relative;
  left: -36px;
  color: white; }

.pswp__button--share {
  background-position: -44px -44px;
  position: relative;
  left: 17px; }

.pswp__button--fs {
  display: none;
  position: relative;
  left: -17px; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
  position: relative;
  left: -3px; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* arrows show on touch screens (if you want them to be hidden change 'visible' to 'hidden' */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: visible; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*
	2. Share modal/popup and links
 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.pswp__share-modal {
  display: block;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px; }

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000; }

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0; }

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*
	3. Index indicator ("1 of X" counter)
 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 15px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.95;
  padding: 0 10px; }

/*
	
	4. Caption
 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }

.pswp__caption small {
  font-size: 11px;
  color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*
	5. Loading indicator (preloader)
	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR
 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }

  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }

  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

/*
	
	6. Additional styles
 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar, .pswp__caption {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar, .pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left, .pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left, .pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/*

	7. Image hover cursor and opacity
*/
#ProductPhotoImg:hover, #product-single__photos-zoom:hover, .product-single__photos:hover {
  cursor: zoom-in; }

/*============================================================================
  #Back to top button
==============================================================================*/
a.back-to-top {
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding-bottom: 17px;
  padding-right: 17px;
  z-index: 100; }
  a.back-to-top .back-to-top-btn {
    background-color: #e5dfdf;
    background-color: rgba(229, 223, 223, 0.95);
    width: 60px;
    height: 60px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border: #ffffff;
    border: 1px solid rgba(177, 174, 170, 0.9); }
    a.back-to-top .back-to-top-btn:hover {
      background-color: #e5dfdf;
      background-color: #e5dfdf; }
    a.back-to-top .back-to-top-btn .back-to-top-btn-inner {
      border: 1px dashed rgba(177, 174, 170, 0.9);
      margin: 3px;
      border-radius: 26px;
      height: 52px; }
    a.back-to-top .back-to-top-btn .back-to-top-img {
      margin: 0px auto;
      vertical-align: middle;
      left: 0px;
      width: 30px;
      height: 16px;
      position: relative;
      top: 14px; }

/*============================================================================
#DO Browser Not Supported Banner
==============================================================================*/
.browser-not-supported-banner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  font-size: 1.3em;
  background: red;
  padding: 10px;
  color: white;
  font-weight: bold;
  z-index: 100;
  text-align: center;
  display: none; }
  .browser-not-supported-banner p {
    padding: 0px !important;
    margin: 0px !important; }

html.lt-ie9 .ie-eight-support {
  display: block; }

/*============================================================================
  #Custom Quilt Product Page  
==============================================================================*/
.loaderArea, .hideThreadsAtBottom {
  display: none; }

.loaderBox {
  position: fixed;
  width: 100%;
  height: 106%;
  margin-left: -40px;
  margin-top: -40px;
  background: #fdf6f3; }

.loader {
  border: 17px solid #f8e0dd;
  border-top: 17px solid #f1bfc6;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1.7s linear infinite;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: #fdf6f3;
  border-bottom: 17px solid #f1bfc6; }

.loadertext {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 206px;
  margin-left: -99px;
  margin-top: -99px;
  font-size: 18px;
  text-align: center; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(360deg); } }

.custom-quilt-step-3, .custom-quilt-step-4, .custom-quilt-step-5, .custom-quilt-step-6 {
  display: none; }

.custom-quilt-step-3 .btn.addThread, .custom-quilt-step-3 .addThread.btn--secondary {
  cursor: pointer; }

a.custom-quilt-ThreadColours {
  padding: 9px;
  font-size: 17px;
  border: 1px #e5dfdf dashed;
  margin-right: 7px;
  line-height: 2.8; }

a.custom-quilt-ThreadColours:hover, .activeColor {
  border: 1px dashed #fef4f5;
  cursor: pointer;
  background: #f1bfc6;
  color: white; }

.custom-quilt-threads {
  margin-top: 25px; }

.custom-quilt .collection-custom-quilt-heading-cont {
  margin-bottom: 20px; }
  .custom-quilt .collection-custom-quilt-heading-cont h1.collection-custom-quilt-heading, .custom-quilt .collection-custom-quilt-heading-cont .collection-custom-quilt-heading.h1 {
    display: inline;
    font-size: 13px;
    padding: 0px;
    margin: 0px;
    text-transform: capitalize; }
.custom-quilt .custom-quilt-size-cont form {
  display: inline-block;
  padding-right: 10px; }
.custom-quilt .custom-quilt-size {
  display: inline-block; }
  .custom-quilt .custom-quilt-size input {
    width: 103px;
    border: 1px solid #ccbbab;
    margin-top: 2px;
    text-align: center;
    font-size: 19px;
    line-height: 1.1;
    padding-bottom: 8px; }
.custom-quilt .custom-quilt-size-x {
  display: inline-block;
  padding: 5px 10px; }
.custom-quilt .custom-quilt-size-total {
  display: inline-block;
  padding: 5px 0px;
  font-size: 24px; }
  .custom-quilt .custom-quilt-size-total span {
    padding-right: 10px; }
  .custom-quilt .custom-quilt-size-total.custom-quilt-surface-area {
    padding-right: 0px; }
.custom-quilt .custom-quilt-size-pattern {
  padding: 20px 0px 10px; }
  .custom-quilt .custom-quilt-size-pattern h1, .custom-quilt .custom-quilt-size-pattern .h1 {
    font-size: 1em !important;
    display: inline;
    text-transform: capitalize; }
.custom-quilt .product-buy-btn {
  margin-top: 20px; }
.custom-quilt .custom-quilt-errors {
  border: 1px solid #d02e2e;
  background-color: #fdf6f3;
  color: #d02e2e;
  padding: 10px 10px 12px;
  margin-bottom: 10px;
  line-height: 1.3em; }
  .custom-quilt .custom-quilt-errors .fa-ul {
    margin-left: 1.5em !important; }
    .custom-quilt .custom-quilt-errors .fa-ul .fa-li {
      left: -1.4em !important;
      width: 1em !important; }
  .custom-quilt .custom-quilt-errors ul {
    margin-bottom: 2px; }
    .custom-quilt .custom-quilt-errors ul li {
      margin-bottom: 0px; }
  .custom-quilt .custom-quilt-errors a, .custom-quilt .custom-quilt-errors a:hover {
    color: #d02e2e; }
.custom-quilt .ErrorQuiltSize, .custom-quilt .custom-quilt-too-large, .custom-quilt .custom-quilt-min-order {
  display: none; }

.custom-quilt-step {
  background: #f8dfdd;
  padding-left: 0px;
  border-top: 1px solid #5D5D56;
  border-bottom: 1px solid #5D5D56;
  border-left: 1px solid #ccbbab;
  border-right: 1px solid #ccbbab;
  position: relative;
  padding-bottom: 7px; }
  .custom-quilt-step .custom-quilt-step-tape {
    height: 15px;
    background-position: right center;
    background-image: url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/template-custom-quilt-builder-tape.svg?v=5679108351190202678");
    background-repeat: repeat; }
  .custom-quilt-step .custom-quilt-step-img {
    position: absolute;
    left: 0px;
    top: -20px;
    height: 78px;
    width: 77px;
    background-position: right center;
    background-image: url("//cdn.shopify.com/s/files/1/1191/8966/t/5/assets/template-custom-quilt-builder-statler-web.png?v=11824537793869949416");
    background-repeat: repeat; }
  .custom-quilt-step .custom-quilt-step-heading {
    margin: 0px;
    font-size: 1.55em;
    text-transform: uppercase;
    padding-left: 87px;
    font-style: normal;
    line-height: 1.4em; }
  .custom-quilt-step .custom-quilt-step-txt {
    padding-left: 87px; }

.custom-quilt-radio {
  margin-bottom: 10px;
  margin-left: 15px; }

/*============================================================================
#DO Promo Banner
==============================================================================*/
.promo-banner-cont {
  position: relative;
  top: -1px;
  background-color: rgba(226, 130, 179, 0.9); }
  @media screen and (max-width: 705px) {
    .promo-banner-cont {
      z-index: 12; } }
  .promo-banner-cont .wrapper.promo-banner-wrapper {
    padding-top: 0px;
    min-height: 0px; }
    .promo-banner-cont .wrapper.promo-banner-wrapper .promo-banner-header {
      width: 100%;
      color: #ffffff;
      text-align: center;
      margin: 0px !important;
      padding: 9px 20px !important; }
      .promo-banner-cont .wrapper.promo-banner-wrapper .promo-banner-header .rte, .promo-banner-cont .wrapper.promo-banner-wrapper .promo-banner-header p {
        margin: 0px !important;
        padding: 0px !important;
        font-size: 1.1em; }
