#admin_bar_iframe,
#preview-bar-iframe {
  display: none !important; }

#stickyNav {
  top: 0 !important; }

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

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

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Site Footer
  #Product Grid and List Views
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Blogs and Comments
  #Notes and Form Feedback
  #Cart Page
  #Demo Styles - for empty store state
  #FlexSlider
	#Slick Slider
  #Custom Styles
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
/*============================================================================
  Get font-families from theme settings
==============================================================================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/icons.eot?v=17551693231594269462");
  src: url("//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/icons.eot?v=17551693231594269462#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/icons.woff?v=719646174057109041") format("woff"), url("//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/icons.ttf?v=5358430738678721684") format("truetype"), url("//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/icons.svg?v=6192296583839079508#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

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

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

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns and a fixed gutter size
    - 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: -20px; }

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

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid-item {
    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 ================*/
/*============================================================================
  HELPERS
==============================================================================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

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

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

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

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-gap {
  height: 40px; }

.wrapper {
  *zoom: 1;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px; }
  .wrapper:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 480px) {
    .wrapper {
      padding: 0 20px; } }

.main-content {
  display: block; }

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1020px; }

.full-width {
  margin: 0 auto;
  padding: 0;
  max-width: 100%; }
  .full-width .product-grid {
    padding-left: 20px;
    padding-right: 20px; }
  .full-width .product-detail-block {
    padding-left: 20px;
    padding-right: 20px; }

/*============================================================================
  #Helper Classes
==============================================================================*/
.left {
  float: left; }

.right {
  float: right; }

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

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

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

.hidden {
  display: none; }

@media screen and (min-width: 769px) {
  .medium--text-left {
    text-align: left; }

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

  .medium--text-right {
    text-align: right; } }
.display-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

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

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

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.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; }

.color-red-orange {
  color: #ee695a; }

.color-orange {
  color: #f49961; }

.color-yellow {
  color: #faba3f; }

.color-teal {
  color: #70c7bd; }

.color-aqua {
  color: #00e8f0; }

.color-blue {
  color: #00b9e2; }

.color-navy {
  color: #1c5eab; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 16px;
  line-height: 1.6;
  font-family: VAG-Rundschrift-D-Light;
  color: #5e5e5e;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

input,
textarea,
button,
select {
  font-size: 14px; }

h1, h2, h3, h4, h5, h6 {
  font-family: Unpack-Regular;
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.4;
  text-transform: uppercase; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit; }

/*================ Pixel to EM conversion tool - http://pxtoem.com/ ================*/
h1 {
  font-size: 48px;
  color: #204a80; }

h2 {
  font-size: 36px;
  color: #204a80; }

h3 {
  font-size: 28.8px;
  color: #204a80; }

h4 {
  font-size: 24px;
  color: #5e5e5e; }

h5 {
  font-size: 21.6px;
  color: #5e5e5e; }

h6 {
  font-size: 19.2px;
  color: #5e5e5e; }

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: Unpack-Regular;
  font-weight: 400; }

.h1 {
  font-size: 48px; }

.h2 {
  font-size: 36px; }

.h3 {
  font-size: 28.8px; }

.h4 {
  font-size: 24px; }

.h5 {
  font-size: 21.6px; }

.h6 {
  font-size: 19.2px; }

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

.color-secondary {
  color: #5e5e5e; }

label, select {
  color: #204a80; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  color: #204a80; }
  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: 0.5em;
  margin: 0 0 1em; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #cccccc;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--header {
    margin: 15px 0 30px; }
  .rte hr {
    margin: 20px 0; }
  hr.hr--clear {
    border-top-color: transparent; }
  @media screen and (min-width: 769px) {
    hr {
      margin: 60px 0; }
      hr.hr--small {
        margin: 30px 0; }
      hr.hr--header {
        margin: 30px 0 60px; } }

/*================ Section Headers ================*/
.section-image {
  margin-bottom: 30px; }
  .section-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%; }
  @media screen and (min-width: 769px) {
    .section-image {
      margin-bottom: 60px; } }

.section-header {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: solid 1px #cccccc; }
  @media screen and (min-width: 769px) {
    .section-header {
      margin-bottom: 60px; } }
  .section-header .form-horizontal {
    margin-top: 30px; }
  .breadcrumb + .section-header {
    margin-top: -15px; }

.section-header--title {
  margin-bottom: 0;
  font-size: 30px; }

.section-header--description {
  color: #5e5e5e; }

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

  .section-header--description {
    max-width: 70%;
    margin: 0 auto; }
    .section-header--title + .section-header--description {
      padding-top: 30px; }

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

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

@media screen and (max-width: 768px) {
  .section-header--right {
    margin-top: -0.4em; } }
.section-header--right .form-horizontal {
  display: inline-block;
  vertical-align: middle; }
@media screen and (min-width: 481px) {
  .section-header--right label + select {
    margin-left: 15px; } }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px;
  font-family: VAG-Rundschrift-D-Light;
  font-size: 16px;
  font-weight: 400; }
  .rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
    margin-top: 2em; }
    .rte h1:first-child, .rte h2:first-child, .rte h3:first-child, .rte h4:first-child, .rte h5:first-child, .rte h6:first-child {
      margin-top: 0; }
  .rte > div {
    margin-bottom: 15px; }
  .rte ul, .rte ol {
    margin-left: 35px; }
  .rte ul ul {
    list-style: circle outside; }
  .rte li {
    margin-bottom: 0.4em; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
a {
  color: #f16857;
  text-decoration: none;
  background: transparent;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  -ms-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out; }

.no-touch a:not(.btn):hover, .no-touch a:not(.btn):focus {
  color: #ed3e28; }

button {
  overflow: visible; }

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

.btn, .btn-secondary, .tag a, .js--qty-adjuster,
.ajaxifyCart--qty-adjuster,
input.btn-secondary,
input.js--qty-adjuster,
input.ajaxifyCart--qty-adjuster, .btn-add-to-cart,
input.btn-add-to-cart, .btn-checkout,
input.btn-checkout, .btn-newsletter,
input.btn-newsletter, input[type="submit"] {
  display: inline-block;
  margin: 0;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 10px;
  box-shadow: 3px 3px #008faf;
  outline: none;
  font-family: Unpack-Regular;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  padding: 4px 10px 8px 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }
  .btn.btn-prev, .btn-prev.btn-secondary, .tag a.btn-prev, .btn-prev.js--qty-adjuster,
  .btn-prev.ajaxifyCart--qty-adjuster, .btn-prev.btn-add-to-cart, .btn-prev.btn-checkout, .btn-prev.btn-newsletter, input.btn-prev[type="submit"], .btn.btn-next, .btn-next.btn-secondary, .tag a.btn-next, .btn-next.js--qty-adjuster,
  .btn-next.ajaxifyCart--qty-adjuster, .btn-next.btn-add-to-cart, .btn-next.btn-checkout, .btn-next.btn-newsletter, input.btn-next[type="submit"] {
    padding: 10px 10px 8px 10px !important;
    font-family: VAG-Rundschrift-D-Light;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400; }
  .btn .adjust-label, .btn-secondary .adjust-label, .tag a .adjust-label, .js--qty-adjuster .adjust-label,
  .ajaxifyCart--qty-adjuster .adjust-label, .btn-add-to-cart .adjust-label, .btn-checkout .adjust-label, .btn-newsletter .adjust-label, input[type="submit"] .adjust-label {
    position: relative;
    top: -5px; }
  .btn.btn--small, .btn--small.btn-secondary, .tag a.btn--small, .btn--small.js--qty-adjuster,
  .btn--small.ajaxifyCart--qty-adjuster, .btn--small.btn-add-to-cart, .btn--small.btn-checkout, .btn--small.btn-newsletter, input.btn--small[type="submit"] {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 21px;
    line-height: 27.3px; }
  .btn.btn--large, .btn--large.btn-secondary, .tag a.btn--large, .btn--large.js--qty-adjuster,
  .btn--large.ajaxifyCart--qty-adjuster, .btn--large.btn-add-to-cart, .btn--large.btn-checkout, .btn--large.btn-newsletter, input.btn--large[type="submit"] {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 36px;
    line-height: 46.8px; }
  .btn.btn--skinny, .btn--skinny.btn-secondary, .tag a.btn--skinny, .btn--skinny.js--qty-adjuster,
  .btn--skinny.ajaxifyCart--qty-adjuster, .btn--skinny.btn-add-to-cart, .btn--skinny.btn-checkout, .btn--skinny.btn-newsletter, input.btn--skinny[type="submit"] {
    padding-top: 3px;
    padding-bottom: 0; }
  .btn.btn--full, .btn--full.btn-secondary, .tag a.btn--full, .btn--full.js--qty-adjuster,
  .btn--full.ajaxifyCart--qty-adjuster, .btn--full.btn-add-to-cart, .btn--full.btn-checkout, .btn--full.btn-newsletter, input.btn--full[type="submit"] {
    width: 100%; }
  .btn[disabled], [disabled].btn-secondary, .tag a[disabled], [disabled].js--qty-adjuster,
  [disabled].ajaxifyCart--qty-adjuster, [disabled].btn-add-to-cart, [disabled].btn-checkout, [disabled].btn-newsletter, input[disabled][type="submit"], .btn.disabled, .disabled.btn-secondary, .tag a.disabled, .disabled.js--qty-adjuster,
  .disabled.ajaxifyCart--qty-adjuster, .disabled.btn-add-to-cart, .disabled.btn-checkout, .disabled.btn-newsletter, input.disabled[type="submit"] {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6;
    box-shadow: 0 0 #dddddd;
    -webkit-transform: translate(2px, 2px);
    -moz-transform: translate(2px, 2px);
    -ms-transform: translate(2px, 2px);
    -o-transform: translate(2px, 2px);
    transform: translate(2px, 2px); }

.no-touch .btn.disabled:hover, .no-touch .disabled.btn-secondary:hover, .no-touch .tag a.disabled:hover, .tag .no-touch a.disabled:hover, .no-touch .disabled.js--qty-adjuster:hover,
.no-touch .disabled.ajaxifyCart--qty-adjuster:hover, .no-touch .disabled.btn-add-to-cart:hover, .no-touch .disabled.btn-checkout:hover, .no-touch .disabled.btn-newsletter:hover, .no-touch input.disabled[type="submit"]:hover, .no-touch .btn.disabled:active, .no-touch .disabled.btn-secondary:active, .no-touch .tag a.disabled:active, .tag .no-touch a.disabled:active, .no-touch .disabled.js--qty-adjuster:active,
.no-touch .disabled.ajaxifyCart--qty-adjuster:active, .no-touch .disabled.btn-add-to-cart:active, .no-touch .disabled.btn-checkout:active, .no-touch .disabled.btn-newsletter:active, .no-touch input.disabled[type="submit"]:active, .no-touch .btn.disabled:focus, .no-touch .disabled.btn-secondary:focus, .no-touch .tag a.disabled:focus, .tag .no-touch a.disabled:focus, .no-touch .disabled.js--qty-adjuster:focus,
.no-touch .disabled.ajaxifyCart--qty-adjuster:focus, .no-touch .disabled.btn-add-to-cart:focus, .no-touch .disabled.btn-checkout:focus, .no-touch .disabled.btn-newsletter:focus, .no-touch input.disabled[type="submit"]:focus,
.no-touch .btn[disabled]:hover,
.no-touch [disabled].btn-secondary:hover,
.no-touch .tag a[disabled]:hover,
.tag .no-touch a[disabled]:hover,
.no-touch [disabled].js--qty-adjuster:hover,
.no-touch [disabled].ajaxifyCart--qty-adjuster:hover,
.no-touch [disabled].btn-add-to-cart:hover,
.no-touch [disabled].btn-checkout:hover,
.no-touch [disabled].btn-newsletter:hover,
.no-touch input[disabled][type="submit"]:hover,
.no-touch .btn[disabled]:active,
.no-touch [disabled].btn-secondary:active,
.no-touch .tag a[disabled]:active,
.tag .no-touch a[disabled]:active,
.no-touch [disabled].js--qty-adjuster:active,
.no-touch [disabled].ajaxifyCart--qty-adjuster:active,
.no-touch [disabled].btn-add-to-cart:active,
.no-touch [disabled].btn-checkout:active,
.no-touch [disabled].btn-newsletter:active,
.no-touch input[disabled][type="submit"]:active,
.no-touch .btn[disabled]:focus,
.no-touch [disabled].btn-secondary:focus,
.no-touch .tag a[disabled]:focus,
.tag .no-touch a[disabled]:focus,
.no-touch [disabled].js--qty-adjuster:focus,
.no-touch [disabled].ajaxifyCart--qty-adjuster:focus,
.no-touch [disabled].btn-add-to-cart:focus,
.no-touch [disabled].btn-checkout:focus,
.no-touch [disabled].btn-newsletter:focus,
.no-touch input[disabled][type="submit"]:focus {
  cursor: default;
  color: #b6b6b6;
  background-color: #f6f6f6;
  box-shadow: 0 0 #dddddd;
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -o-transform: translate(2px, 2px);
  transform: translate(2px, 2px); }

.btn, .btn-secondary, .tag a, .js--qty-adjuster,
.ajaxifyCart--qty-adjuster,
input.btn-secondary,
input.js--qty-adjuster,
input.ajaxifyCart--qty-adjuster, .btn-add-to-cart,
input.btn-add-to-cart, .btn-checkout,
input.btn-checkout, .btn-newsletter,
input.btn-newsletter, input[type="submit"] {
  font-family: Unpack-Regular;
  font-weight: 400;
  color: white;
  background-color: #00b9e2;
  box-shadow: 3px 3px #204a80; }

.no-touch .btn:hover, .no-touch .btn-secondary:hover, .no-touch .tag a:hover, .tag .no-touch a:hover, .no-touch .js--qty-adjuster:hover,
.no-touch .ajaxifyCart--qty-adjuster:hover, .no-touch .btn-add-to-cart:hover, .no-touch .btn-checkout:hover, .no-touch .btn-newsletter:hover, .no-touch input[type="submit"]:hover, .no-touch .btn:active, .no-touch .btn-secondary:active, .no-touch .tag a:active, .tag .no-touch a:active, .no-touch .js--qty-adjuster:active,
.no-touch .ajaxifyCart--qty-adjuster:active, .no-touch .btn-add-to-cart:active, .no-touch .btn-checkout:active, .no-touch .btn-newsletter:active, .no-touch input[type="submit"]:active, .no-touch .btn:focus, .no-touch .btn-secondary:focus, .no-touch .tag a:focus, .tag .no-touch a:focus, .no-touch .js--qty-adjuster:focus,
.no-touch .ajaxifyCart--qty-adjuster:focus, .no-touch .btn-add-to-cart:focus, .no-touch .btn-checkout:focus, .no-touch .btn-newsletter:focus, .no-touch input[type="submit"]:focus {
  background-color: #204a80;
  box-shadow: 0 0 #163257;
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -o-transform: translate(2px, 2px);
  transform: translate(2px, 2px); }

.btn-secondary, .tag a, .js--qty-adjuster,
.ajaxifyCart--qty-adjuster,
input.btn-secondary,
input.js--qty-adjuster,
input.ajaxifyCart--qty-adjuster {
  font-family: Unpack-Regular;
  font-weight: 400;
  color: white;
  background-color: #edd15d;
  box-shadow: 3px 3px #d1b53f; }

.no-touch .btn-secondary:hover, .no-touch .tag a:hover, .tag .no-touch a:hover, .no-touch .js--qty-adjuster:hover,
.no-touch .ajaxifyCart--qty-adjuster:hover, .no-touch .btn-secondary:active, .no-touch .tag a:active, .tag .no-touch a:active, .no-touch .js--qty-adjuster:active,
.no-touch .ajaxifyCart--qty-adjuster:active, .no-touch .btn-secondary:focus, .no-touch .tag a:focus, .tag .no-touch a:focus, .no-touch .js--qty-adjuster:focus,
.no-touch .ajaxifyCart--qty-adjuster:focus,
.no-touch input.btn-secondary:hover,
.no-touch input.js--qty-adjuster:hover,
.no-touch input.ajaxifyCart--qty-adjuster:hover,
.no-touch input.btn-secondary:active,
.no-touch input.js--qty-adjuster:active,
.no-touch input.ajaxifyCart--qty-adjuster:active,
.no-touch input.btn-secondary:focus,
.no-touch input.js--qty-adjuster:focus,
.no-touch input.ajaxifyCart--qty-adjuster:focus {
  background-color: #d1b53f;
  box-shadow: 0 0 #b2982b;
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -o-transform: translate(2px, 2px);
  transform: translate(2px, 2px); }

.btn-add-to-cart,
input.btn-add-to-cart {
  font-family: Unpack-Regular;
  font-weight: 400;
  color: white;
  background-color: #fdbc2d;
  box-shadow: 3px 3px #e29e14; }
  @media (max-width: 480px) {
    .btn-add-to-cart,
    input.btn-add-to-cart {
      display: block;
      width: 100%; } }

.no-touch .btn-add-to-cart:hover, .no-touch .btn-add-to-cart:active, .no-touch .btn-add-to-cart:focus,
.no-touch input.btn-add-to-cart:hover,
.no-touch input.btn-add-to-cart:active,
.no-touch input.btn-add-to-cart:focus {
  background-color: #e29e14;
  box-shadow: 0 0 #b37d10;
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -o-transform: translate(2px, 2px);
  transform: translate(2px, 2px); }

.btn-checkout,
input.btn-checkout {
  font-family: Unpack-Regular;
  font-weight: 400;
  color: white;
  background-color: #f16857;
  box-shadow: 3px 3px #d6574d; }

.no-touch .btn-checkout:hover, .no-touch .btn-checkout:active, .no-touch .btn-checkout:focus,
.no-touch input.btn-checkout:hover,
.no-touch input.btn-checkout:active,
.no-touch input.btn-checkout:focus {
  background-color: #d6574d;
  box-shadow: 0 0 #c3382d;
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -o-transform: translate(2px, 2px);
  transform: translate(2px, 2px); }

.btn-newsletter,
input.btn-newsletter {
  font-family: Unpack-Regular;
  font-weight: 400;
  color: white;
  background-color: #f8a472;
  box-shadow: 3px 3px #dd8052; }

.no-touch .btn-newsletter:hover, .no-touch .btn-newsletter:active, .no-touch .btn-newsletter:focus,
.no-touch input.btn-newsletter:hover,
.no-touch input.btn-newsletter:active,
.no-touch input.btn-newsletter:focus {
  background-color: #dd8052;
  box-shadow: 0 0 #d36129;
  -webkit-transform: translate(2px, 2px);
  -moz-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  -o-transform: translate(2px, 2px);
  transform: translate(2px, 2px); }

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

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

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold;
  font-size: 0.85em; }

th, td {
  text-align: left;
  padding: 15px;
  border: 0 none;
  border-bottom: 1px solid #cccccc; }

.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 {
  width: auto;
  max-width: 100%;
  border: 0 none; }

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

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

img.block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

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

:-webkit-input-placeholder {
  color: rgba(94, 94, 94, 0.68); }

::-webkit-input-placeholder {
  color: rgba(94, 94, 94, 0.68); }

:-moz-placeholder {
  color: rgba(94, 94, 94, 0.68); }

::-moz-placeholder {
  color: rgba(94, 94, 94, 0.68); }

:-ms-input-placeholder {
  color: rgba(94, 94, 94, 0.68); }

::-ms-input-placeholder {
  color: rgba(94, 94, 94, 0.68); }

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

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

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

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

legend {
  border: 0;
  padding: 0; }

optgroup {
  font-weight: bold; }

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

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

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

textarea {
  min-height: 100px; }

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

select {
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  box-shadow: 3px 3px #00e8f0;
  background-position: right center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f3f3f3;
  background-image: url(//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/ico-select.svg?v=13396171103754229719);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 8px;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  select:focus {
    border: none;
    outline: none;
    box-shadow: 3px 3px #1c5eab; }
  select.outline {
    border: 1px solid #cccccc; }
    select.outline:focus {
      border: 1px solid #b3b3b3; }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

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

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

/*================ Contact Form ================*/
.contact-form input[type="text"],
.contact-form input[type="search"],
.contact-form input[type="password"],
.contact-form input[type="email"],
.contact-form input[type="file"],
.contact-form input[type="number"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  font-family: VAG-Rundschrift-D-Light;
  font-size: 16px;
  font-weight: 400; }

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

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

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

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

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

label.error {
  color: #ee695a; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .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 .tag a, .tag .input-group a, .input-group .js--qty-adjuster,
.input-group .ajaxifyCart--qty-adjuster, .input-group .btn-add-to-cart, .input-group .btn-checkout, .input-group .btn-newsletter, .input-group input[type="submit"],
.input-group .input-group-field {
  height: 37px; }

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

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

/*============================================================================
  #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-american_express:before {
  content: "\41"; }

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

.icon-arrow-right:before {
  content: "\62"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: "\78"; }

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

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  cursor: default; }
  .payment-icons li {
    display: inline-block;
    margin: 0 7.5px 7.5px;
    color: #00b9e2;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.no-touch .social-icons li a:hover .icon {
  opacity: 0.75; }

.social-icons.custom-icons {
  margin: 15px auto; }
  .social-icons.custom-icons li {
    margin: 0 10px; }
    .social-icons.custom-icons li .icon {
      margin: 0;
      padding: 0;
      width: 28px;
      height: 28px;
      border: none;
      text-indent: -99999px;
      background-color: transparent;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      border-radius: 4px; }
      .social-icons.custom-icons li .icon.icon-facebook, .social-icons.custom-icons li .icon.icon-twitter, .social-icons.custom-icons li .icon.icon-instagram {
        background: url("//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/social-media-buttons.png?2787") no-repeat 0 0;
        background-size: auto 100%; }
        .social-icons.custom-icons li .icon.icon-facebook:before, .social-icons.custom-icons li .icon.icon-twitter:before, .social-icons.custom-icons li .icon.icon-instagram:before {
          content: ""; }
      .social-icons.custom-icons li .icon.icon-facebook {
        background-position: 0% 0%; }
      .social-icons.custom-icons li .icon.icon-twitter {
        background-position: 50% 0%; }
      .social-icons.custom-icons li .icon.icon-instagram {
        background-position: 100% 0%; }

/*================ Social icons ================*/
.social-icons {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  list-style: none; }
  .social-icons li {
    display: inline-block;
    margin: 0 15px 0 0;
    padding: 0; }
    .social-icons li:last-child {
      margin: 0; }
    .social-icons li a {
      display: block; }
      .social-icons li a .network-icon {
        display: block; }
      .social-icons li a .network-title {
        display: block;
        padding: 5px 10px;
        color: white;
        background-color: #00b9e2;
        border-radius: 5px; }
      .social-icons li a .network-icon + .network-title {
        display: none; }

/*================ Social share buttons ================*/
.social-sharing {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: 15px;
  /*================ Large Buttons ================*/ }
  .social-sharing a {
    display: inline-block;
    color: #fff;
    border-radius: 2px;
    margin: 0 10px 10px 0;
    height: 22px;
    line-height: 22px;
    text-decoration: none;
    font-weight: normal; }
  .social-sharing span {
    display: inline-block;
    vertical-align: top;
    height: 22px;
    line-height: 22px;
    font-size: 12px; }
  .social-sharing .icon {
    padding: 0 5px 0 10px; }
    .social-sharing .icon:before {
      line-height: 22px; }
  .social-sharing.is-large a {
    height: 44px;
    line-height: 44px; }
    .social-sharing.is-large a span {
      height: 44px;
      line-height: 44px;
      font-size: 18px; }
    .social-sharing.is-large a .icon {
      padding: 0 10px 0 18px; }
      .social-sharing.is-large a .icon:before {
        line-height: 44px; }

.no-touch .social-sharing a:hover {
  color: #fff; }

.share-title {
  font-weight: 900;
  font-size: 12px;
  padding-right: 10px; }
  .is-large .share-title {
    padding-right: 16px; }

.share-facebook {
  background-color: #3b5998; }

.no-touch .share-facebook:hover {
  background-color: #2d4373; }

.share-twitter {
  background-color: #00aced; }

.no-touch .share-twitter:hover {
  background-color: #0087ba; }

.share-pinterest {
  background-color: #cb2027; }

.no-touch .share-pinterest:hover {
  background-color: #9f191f; }

.share-fancy {
  background-color: #4999dc; }

.no-touch .share-fancy:hover {
  background-color: #2780cb; }

.share-google {
  background-color: #dd4b39; }

.no-touch .share-google:hover {
  background-color: #c23321; }

.share-count {
  position: relative;
  background-color: white;
  padding: 0 8px;
  margin-right: -2px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  border-radius: 0 2px 2px 0;
  border: 1px solid #ececec;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }
  .share-count.is-loaded {
    opacity: 1; }
  .share-count:before, .share-count:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid; }
  .share-count:before {
    left: -6px;
    border-right-color: #ececec; }
  .share-count:after {
    left: -5px;
    border-right-color: white; }
  a:hover .share-count {
    background-color: whitesmoke; }
    a:hover .share-count:after {
      border-right-color: whitesmoke; }
  .is-large .share-count {
    font-size: 18px;
    padding: 0 14px; }

/*================ Clean Buttons ================*/
.social-sharing.is-clean a {
  background-color: #fff;
  border: 1px solid #ececec;
  color: #333;
  height: 30px;
  line-height: 30px; }
  .social-sharing.is-clean a span {
    height: 30px;
    line-height: 30px;
    font-size: 13px; }
  .social-sharing.is-clean a:hover {
    background-color: #f9f9f9; }
  .social-sharing.is-clean a:hover .share-count {
    background-color: white; }
    .social-sharing.is-clean a:hover .share-count:after {
      border-right-color: white; }
  .social-sharing.is-clean a .share-title {
    font-weight: normal; }
.social-sharing.is-clean .share-count {
  top: -1px; }
.social-sharing.is-clean .icon-facebook {
  color: #3b5998; }
.social-sharing.is-clean .icon-twitter {
  color: #00aced; }
.social-sharing.is-clean .icon-pinterest {
  color: #cb2027; }
.social-sharing.is-clean .icon-fancy {
  color: #4999dc; }
.social-sharing.is-clean .icon-google {
  color: #dd4b39; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 30px;
  text-align: center; }

/*================ Custom Pagination ================*/
.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 0;
  font-weight: bold; }
  .pagination-custom .btn, .pagination-custom .btn-secondary, .pagination-custom .tag a, .tag .pagination-custom a, .pagination-custom .js--qty-adjuster,
  .pagination-custom .ajaxifyCart--qty-adjuster, .pagination-custom .btn-add-to-cart, .pagination-custom .btn-checkout, .pagination-custom .btn-newsletter, .pagination-custom input[type="submit"] {
    padding: 8px 10px; }

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

.pagination-custom > li > a,
.pagination-custom > li > span {
  display: inline-block;
  padding: 5px 15px;
  text-decoration: none; }

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

.pagination-custom > .active > a,
.pagination-custom > .active > span,
.pagination-custom > .active > a:hover,
.pagination-custom > .active > span:hover,
.pagination-custom > .active > a:focus,
.pagination-custom > .active > span:focus {
  z-index: 2;
  color: #5e5e5e;
  cursor: default; }

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

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

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

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  position: relative;
  display: block;
  padding: 0;
  color: white;
  background-color: #00b9e2; }
  .site-header a {
    color: white; }

.site-topbar {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  align-content: center;
  padding: 5px 0;
  text-align: right; }
  @media screen and (max-width: 768px) {
    .site-topbar {
      padding: 10px 0; } }
  .site-topbar .social-links {
    flex: 1 0 auto;
    text-align: left; }
    .site-topbar .social-links img {
      width: 24px;
      height: 24px; }
  .site-topbar .message {
    flex: 0 0 auto;
    margin-left: 25px;
    font-family: Unpack-Regular;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
    .site-topbar .message .h4 {
      font-size: 24px;
      line-height: 20px; }
  .site-topbar .search {
    flex: 0 0 auto;
    margin-left: 25px; }
    .site-topbar .search .search-bar {
      max-width: 140px; }
    @media screen and (max-width: 768px) {
      .site-topbar .search {
        display: none; } }
  .site-topbar .account {
    flex: 0 0 auto;
    margin-left: 25px;
    text-align: center; }
    .site-topbar .account a {
      position: relative;
      display: block; }
      .site-topbar .account a i {
        display: block;
        font-size: 22px;
        line-height: 22px; }
      .site-topbar .account a span {
        position: absolute;
        top: 100%;
        display: block;
        font-size: 12px;
        line-height: 12px;
        font-family: Unpack-Regular;
        font-weight: 400; }
    @media screen and (max-width: 768px) {
      .site-topbar .account {
        display: none; } }

.site-navigation {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  padding: 20px 0 0 0; }
  @media screen and (max-width: 1020px) {
    .site-navigation {
      justify-content: center; } }
  @media screen and (max-width: 768px) {
    .site-navigation {
      position: relative;
      display: block; } }
  .site-navigation .logo {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    max-width: 100%;
    text-align: center;
    vertical-align: middle; }
    .site-navigation .logo a {
      display: inline-block;
      margin: 0 auto; }
    .site-navigation .logo img {
      display: block;
      margin: 0;
      width: auto;
      max-width: 100%; }
      @media screen and (max-width: 480px) {
        .site-navigation .logo img {
          width: auto !important;
          height: 60px; } }
    @media screen and (max-width: 1020px) {
      .site-navigation .logo {
        display: block;
        width: 100%; } }
    .site-navigation .logo .welcome-message-container {
      position: relative;
      pointer-events: none;
      cursor: default;
      z-index: 1;
      opacity: 0;
      -webkit-transform: scale(0) translate3d(0, 0, 0);
      -moz-transform: scale(0) translate3d(0, 0, 0);
      -ms-transform: scale(0) translate3d(0, 0, 0);
      -o-transform: scale(0) translate3d(0, 0, 0);
      transform: scale(0) translate3d(0, 0, 0);
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
      .site-navigation .logo .welcome-message-container .welcome-message-arrow {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #1c5eab;
        -webkit-transform: translate(-50%, -100%);
        -moz-transform: translate(-50%, -100%);
        -ms-transform: translate(-50%, -100%);
        -o-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%); }
      .site-navigation .logo .welcome-message-container .welcome-message {
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        padding: 20px;
        width: 260px;
        text-align: left;
        border-radius: 20px;
        background: #1c5eab; }
        .site-navigation .logo .welcome-message-container .welcome-message .welcome-message-title {
          margin: 0 0 15px 0;
          color: #00b9e2;
          font-size: 32px;
          line-height: 1; }
        .site-navigation .logo .welcome-message-container .welcome-message .welcome-message-subtitle {
          margin: 0 0 15px 0;
          color: #00b9e2;
          font-family: VAG-Rundschrift-D;
          font-weight: 400;
          font-size: 15px;
          line-height: 1; }
        .site-navigation .logo .welcome-message-container .welcome-message .welcome-message-body {
          color: #ffffff;
          font-family: VAG-Rundschrift-D;
          font-weight: 400;
          font-size: 15px;
          line-height: 1.4; }
    @media screen and (min-width: 768px) {
      .site-navigation .logo a:hover .welcome-message-container {
        opacity: 1;
        -webkit-transform: scale(1) translate3d(0, 0, 0);
        -moz-transform: scale(1) translate3d(0, 0, 0);
        -ms-transform: scale(1) translate3d(0, 0, 0);
        -o-transform: scale(1) translate3d(0, 0, 0);
        transform: scale(1) translate3d(0, 0, 0); } }
  .site-navigation .navigation {
    flex: 1 1 auto;
    margin: 0;
    padding: 0 15px;
    text-align: center; }
    .site-navigation .navigation .nav-toggle {
      display: none;
      color: white;
      font-size: 24px; }
      .site-navigation .navigation .nav-toggle:hover {
        color: white; }
    @media screen and (max-width: 1020px) {
      .site-navigation .navigation {
        padding: 0 30px 0 0; } }
    @media screen and (max-width: 768px) {
      .site-navigation .navigation {
        display: block;
        width: 100%;
        text-align: center; }
        .site-navigation .navigation .nav-toggle {
          display: block;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%); } }
  .site-navigation .cart {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    text-align: right; }
    .site-navigation .cart > a {
      position: relative;
      display: inline-block;
      color: white;
      font-family: VAG-Rundschrift-D;
      font-weight: 400;
      font-size: 16px; }
      .site-navigation .cart > a:not(.btn):hover {
        color: #1c5eab; }
      .site-navigation .cart > a img {
        display: block;
        margin: 0 auto; }
      .site-navigation .cart > a .subtotal {
        display: block;
        margin: 5px 0 0 0;
        line-height: 1;
        text-align: center;
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease; }
      .site-navigation .cart > a .count {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: white;
        background: #f16857;
        border-radius: 20px;
        opacity: 1;
        -webkit-transform: translate(40%, -40%);
        -moz-transform: translate(40%, -40%);
        -ms-transform: translate(40%, -40%);
        -o-transform: translate(40%, -40%);
        transform: translate(40%, -40%);
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease; }
        .site-navigation .cart > a .count.hidden-count {
          opacity: 0;
          -webkit-transform: translate(40%, 0%);
          -moz-transform: translate(40%, 0%);
          -ms-transform: translate(40%, 0%);
          -o-transform: translate(40%, 0%);
          transform: translate(40%, 0%); }
    @media screen and (max-width: 1020px) {
      .site-navigation .cart {
        flex: 0 0 auto; } }
    @media screen and (max-width: 768px) {
      .site-navigation .cart {
        display: block;
        width: 100%;
        text-align: center; }
        .site-navigation .cart > a {
          position: absolute;
          top: 50%;
          right: 0;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%); }
          .site-navigation .cart > a .subtotal {
            display: none; } }

/*============================================================================
  #Site Navigation
==============================================================================*/
.site-nav {
  margin: 0;
  padding: 10px 0;
  font-size: 0; }
  .site-nav li {
    display: block;
    font-family: VAG-Rundschrift-D;
    font-weight: 400;
    font-size: 16px; }
  .site-nav > li {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    vertical-align: bottom; }
    .site-nav > li:first-child {
      margin-left: 0; }
    .site-nav > li:last-child {
      margin-right: 0; }
    .site-nav > li.site-nav--search {
      display: none; }
      .site-nav > li.site-nav--search input {
        padding: 10px 20px; }
      .site-nav > li.site-nav--search button {
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%); }
        .site-nav > li.site-nav--search button:hover, .site-nav > li.site-nav--search button:active, .site-nav > li.site-nav--search button:focus {
          box-shadow: none;
          background: none;
          border: none;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%); }
    .site-nav > li.site-nav--account {
      display: none;
      line-height: 1;
      text-align: center; }
      .site-nav > li.site-nav--account > a {
        display: block;
        padding: 10px 20px !important;
        color: #00b9e2;
        background: white;
        border-radius: 8px; }
        .site-nav > li.site-nav--account > a:hover, .site-nav > li.site-nav--account > a:focus {
          color: #00b9e2;
          background: white; }
      .site-nav > li.site-nav--account > a > i {
        display: inline-block;
        font-size: 18px;
        vertical-align: middle; }
      .site-nav > li.site-nav--account > a > span {
        display: inline-block;
        margin-left: 10px;
        padding: 0;
        vertical-align: middle;
        border-radius: 0; }
    .site-nav > li > a {
      display: block; }
      .site-nav > li > a > span {
        display: block;
        padding: 4px 8px;
        line-height: 1;
        border-radius: 8px; }
    .site-nav > li:first-child > a {
      padding-left: 0; }
    .site-nav > li:last-child > a {
      padding-right: 0; }
    .site-nav > li.hover-image > a {
      position: relative; }
      .site-nav > li.hover-image > a span {
        opacity: 1;
        -webkit-transition: opacity 0s ease-in-out;
        -moz-transition: opacity 0s ease-in-out;
        -ms-transition: opacity 0s ease-in-out;
        -o-transition: opacity 0s ease-in-out;
        transition: opacity 0s ease-in-out; }
      .site-nav > li.hover-image > a img {
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: opacity 0s ease-in-out;
        -moz-transition: opacity 0s ease-in-out;
        -ms-transition: opacity 0s ease-in-out;
        -o-transition: opacity 0s ease-in-out;
        transition: opacity 0s ease-in-out; }
      .site-nav > li.hover-image > a:hover span {
        opacity: 0; }
      .site-nav > li.hover-image > a:hover img {
        opacity: 1; }
  .site-nav a {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    color: white;
    white-space: nowrap; }
    .site-nav a:hover {
      color: white; }
    .site-nav a .mobile-sub-nav {
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0;
      background: transparent; }
  @media screen and (max-width: 768px) {
    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: auto;
      bottom: 0;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-user-select: none;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: none; }
      .site-nav::-webkit-scrollbar {
        display: none;
        width: 0 !important;
        height: 0 !important; }
      .site-nav a .mobile-sub-nav {
        display: block; }
      .site-nav > li {
        margin: 0;
        padding: 20px;
        width: 33.333%;
        text-align: center; }
        .site-nav > li.site-nav--search {
          display: block;
          padding: 20px;
          width: 100%;
          border-bottom: solid 1px rgba(255, 255, 255, 0.5); }
        .site-nav > li.site-nav--account {
          display: block;
          padding: 20px;
          width: 100%;
          border-top: solid 1px rgba(255, 255, 255, 0.5); }
        .site-nav > li.hover-image > a span,
        .site-nav > li.hover-image > a img, .site-nav > li.hover-image > a:hover span,
        .site-nav > li.hover-image > a:hover img {
          opacity: 1; }
        .site-nav > li.hover-image > a span, .site-nav > li.hover-image > a:hover span {
          padding: 0; }
        .site-nav > li.hover-image > a img, .site-nav > li.hover-image > a:hover img {
          position: static;
          margin: 0 auto;
          -webkit-transform: translate(0, 0);
          -moz-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          -o-transform: translate(0, 0);
          transform: translate(0, 0); } }
  @media screen and (max-width: 480px) {
    .site-nav > li {
      padding: 20px;
      width: 50%; } }

@media screen and (max-width: 768px) {
  .site-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: 80%;
    height: 100%;
    background-color: #00b9e2;
    overflow: hidden;
    z-index: 999999;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }

  body.reveal-mobile-nav .site-nav-wrapper {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); } }
.no-touch .site-nav a:hover {
  color: white; }

.site-nav--active > a,
.no-touch .site-nav--active > a:hover {
  color: #1c5eab; }

.site-nav--active > a .highlighted {
  color: white;
  background-color: #1c5eab !important; }

.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  width: 100%;
  background-color: #2160a9;
  opacity: 0;
  z-index: 1001;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out; }
  @media screen and (max-width: 768px) {
    .mobile-nav-toggle {
      display: block; } }

body.reveal-mobile-nav .mobile-nav-toggle {
  height: 100%;
  opacity: 0.75; }

body.reveal-mobile-nav {
  overflow: hidden; }

.mobile-cart-toggle {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  width: 100%;
  background-color: #2160a9;
  opacity: 0;
  z-index: 1001;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out; }

body.reveal-inline-cart .mobile-cart-toggle {
  height: 100%;
  opacity: 0.75; }

body.reveal-inline-cart {
  overflow: hidden; }

/*================ Dropdowns ================*/
.site-nav--dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 20px 0 0 0;
  padding: 0;
  text-align: left;
  background-color: white;
  box-shadow: 2px 2px #d9d9d9;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 150ms;
  -moz-transition: all 150ms;
  -ms-transition: all 150ms;
  -o-transition: all 150ms;
  transition: all 150ms; }
  .site-nav--dropdown:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid white;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    -o-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%); }
  .site-nav--dropdown .sub-nav-back {
    display: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5); }
  .site-nav--dropdown > li {
    display: block;
    margin: 0;
    padding: 0; }
  .site-nav--dropdown > li > a {
    color: #00b9e2;
    text-transform: none;
    padding: 10px 15px; }
    .site-nav--dropdown > li > a:hover, .site-nav--dropdown > li > a:active, .site-nav--dropdown > li > a:focus {
      color: #1c5eab !important; }
  @media screen and (min-width: 768px) {
    .site-nav--has-dropdown:hover .site-nav--dropdown, .site-nav--has-dropdown.nav-hover .site-nav--dropdown, .nav-focus + .site-nav--dropdown {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 90ms;
      -moz-transition: opacity 90ms;
      -ms-transition: opacity 90ms;
      -o-transition: opacity 90ms;
      transition: opacity 90ms; } }
  @media screen and (max-width: 768px) {
    .site-nav--dropdown {
      position: fixed;
      top: 0;
      left: 0;
      right: auto;
      bottom: 0;
      margin: 0;
      padding: 0;
      width: 100%;
      background-color: #00b9e2;
      overflow: auto;
      box-shadow: none;
      z-index: 999999;
      -webkit-transform: translate(100%, 0);
      -moz-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
      -o-transform: translate(100%, 0);
      transform: translate(100%, 0);
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      -webkit-user-select: none;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: none; }
      .site-nav--dropdown::-webkit-scrollbar {
        display: none;
        width: 0 !important;
        height: 0 !important; }
      .site-nav--dropdown:before {
        display: none; }
      .site-nav--dropdown > li > a, .site-nav--dropdown > li > a:hover {
        color: white !important; }
      .site-nav--dropdown.visible {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); }
      .site-nav--dropdown .sub-nav-back {
        display: block; } }

/*================ Search bar in header ================*/
.search-bar {
  position: relative;
  display: block;
  margin: 0;
  padding: 0; }
  .search-bar input {
    display: block;
    margin: 0;
    padding: 5px 10px;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 14px;
    background: white;
    outline: none;
    border: none;
    border-radius: 5px;
    vertical-align: middle;
    color: #00b9e2; }
    .search-bar input:focus {
      border: none;
      outline: none; }
    .search-bar input::-webkit-input-placeholder {
      color: rgba(0, 185, 226, 0.7); }
    .search-bar input::-moz-placeholder {
      color: rgba(0, 185, 226, 0.7); }
    .search-bar input:-ms-input-placeholder {
      color: rgba(0, 185, 226, 0.7); }
    .search-bar input:-moz-placeholder {
      color: rgba(0, 185, 226, 0.7); }
  .search-bar button {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    margin: 0;
    padding: 0;
    width: 26px;
    height: 26px;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #00b9e2;
    outline: none;
    box-shadow: none;
    background: none;
    border: none;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
    .search-bar button:hover, .search-bar button:active, .search-bar button:focus {
      color: #204a80;
      box-shadow: none;
      background: none;
      border: none;
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }

/*================ Inline Cart ================*/
.inline-cart {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  color: #5e5e5e;
  background: white;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 2001;
  max-height: 100vh;
  bottom: 0;
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }
  @media screen and (min-width: 768px) {
    .inline-cart {
      max-width: 375px; } }
  @media screen and (max-width: 768px) {
    .inline-cart {
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%; } }
  .inline-cart .route-div {
    padding: 10px 20px; }
  .inline-cart .cart-header {
    position: relative;
    display: block;
    text-align: center; }
    .inline-cart .cart-header .cart-title {
      margin: 0;
      padding: 10px 20px; }
      .inline-cart .cart-header .cart-title h4 {
        margin: 0 auto;
        text-align: center; }
    .inline-cart .cart-header .cart-dismiss {
      position: absolute;
      top: 50%;
      right: 0;
      padding: 10px;
      color: #f16857;
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .inline-cart .cart-contents {
    display: none; }
  .inline-cart.has-items .cart-contents {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: auto; }
  .inline-cart .cart-empty {
    display: block; }
  .inline-cart.has-items .cart-empty {
    display: none; }
  .inline-cart .cart-items {
    padding: 0;
    border-top: solid 1px #ececec;
    border-bottom: solid 1px #ececec; }
  .inline-cart .line-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 10px 20px; }
    .inline-cart .line-item a,
    .inline-cart .line-item h4 {
      color: #5e5e5e;
      font-size: 14px;
      line-height: 1.5; }
    .inline-cart .line-item .line-item-image {
      padding: 0;
      width: 75px;
      max-width: 75px; }
    .inline-cart .line-item .line-item-info {
      flex: 1;
      padding: 0 15px;
      width: auto; }
    .inline-cart .line-item .line-item-quantity {
      padding: 0;
      width: 60px;
      max-width: 60px; }
    .inline-cart .line-item .line-item-remove a {
      font-size: 12px; }
  .inline-cart .line-item + .line-item {
    border-top: solid 1px #ececec; }
  .inline-cart .cart-subtotal {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px; }
    .inline-cart .cart-subtotal .cart-subtotal-label {
      text-align: left; }
    .inline-cart .cart-subtotal .cart-subtotal-total {
      text-align: right; }
  .inline-cart .cart-message {
    padding: 20px;
    text-align: center;
    border-top: solid 1px #ececec;
    border-bottom: solid 1px #ececec; }
  .inline-cart .cart-checkout,
  .inline-cart .cart-continue-shopping {
    margin: 0;
    padding: 0; }
    .inline-cart .cart-checkout .btn, .inline-cart .cart-checkout .btn-secondary, .inline-cart .cart-checkout .tag a, .tag .inline-cart .cart-checkout a, .inline-cart .cart-checkout .js--qty-adjuster,
    .inline-cart .cart-checkout .ajaxifyCart--qty-adjuster, .inline-cart .cart-checkout .btn-add-to-cart, .inline-cart .cart-checkout .btn-checkout, .inline-cart .cart-checkout .btn-newsletter, .inline-cart .cart-checkout input[type="submit"],
    .inline-cart .cart-continue-shopping .btn,
    .inline-cart .cart-continue-shopping .btn-secondary,
    .inline-cart .cart-continue-shopping .tag a,
    .tag .inline-cart .cart-continue-shopping a,
    .inline-cart .cart-continue-shopping .js--qty-adjuster,
    .inline-cart .cart-continue-shopping .ajaxifyCart--qty-adjuster,
    .inline-cart .cart-continue-shopping .btn-add-to-cart,
    .inline-cart .cart-continue-shopping .btn-checkout,
    .inline-cart .cart-continue-shopping .btn-newsletter,
    .inline-cart .cart-continue-shopping input[type="submit"] {
      display: block;
      padding: 14px 20px 20px 20px;
      font-size: 32px;
      line-height: 32px;
      box-shadow: none;
      border-radius: 0;
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }

.relative.cart-wrapper {
  position: relative;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  height: 100%; }

body.reveal-inline-cart .inline-cart {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  margin: 0;
  padding: 0;
  color: white;
  background-color: #00b9e2; }
  .site-footer a {
    color: white; }
  .site-footer .site-footer-top {
    padding-top: 20px; }
  .site-footer .site-footer-bottom {
    padding: 20px 0;
    text-align: center;
    background-color: #2160a9; }
  .site-footer .menu-title {
    margin: 0 0 10px 0;
    color: white;
    font-size: 48px; }
  .site-footer .menu-links {
    margin: 0;
    padding: 0;
    text-align: left; }
    .site-footer .menu-links li {
      display: block;
      margin: 0;
      padding: 0; }
    .site-footer .menu-links a {
      color: white;
      font-family: VAG-Rundschrift-D;
      font-size: 16px;
      font-weight: 400; }
  .site-footer .menu-image {
    display: block;
    margin: 0 auto; }
  .site-footer .site-footer-columns {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch; }
    .site-footer .site-footer-columns .site-footer-column.left {
      padding-bottom: 20px;
      width: 35%;
      display: flex;
      flex-flow: row wrap;
      justify-content: flex-start;
      align-items: center; }
      .site-footer .site-footer-columns .site-footer-column.left .menu-title {
        padding-right: 60px;
        text-align: center; }
      .site-footer .site-footer-columns .site-footer-column.left .menu-links {
        text-align: left; }
    .site-footer .site-footer-columns .site-footer-column.center {
      display: flex;
      flex-flow: column nowrap;
      justify-content: space-between;
      align-items: center;
      width: 30%;
      text-align: center; }
      .site-footer .site-footer-columns .site-footer-column.center .menu-title {
        margin: 0 0 20px 0;
        font-size: 28px; }
      .site-footer .site-footer-columns .site-footer-column.center .social-icons {
        display: inline-block;
        margin: 0;
        padding: 0;
        font-size: 0;
        line-height: 0;
        list-style: none; }
        .site-footer .site-footer-columns .site-footer-column.center .social-icons li {
          display: inline-block;
          margin: 0 15px 0 0;
          padding: 0; }
          .site-footer .site-footer-columns .site-footer-column.center .social-icons li:last-child {
            margin-right: 0; }
          .site-footer .site-footer-columns .site-footer-column.center .social-icons li img {
            display: block;
            width: 24px;
            height: 24px; }
      .site-footer .site-footer-columns .site-footer-column.center .menu-image {
        display: block;
        margin: 0 auto; }
    .site-footer .site-footer-columns .site-footer-column.right {
      padding-bottom: 20px;
      width: 35%;
      display: flex;
      flex-flow: row wrap;
      justify-content: flex-end;
      align-items: center; }
      .site-footer .site-footer-columns .site-footer-column.right .menu-title {
        padding-right: 60px;
        text-align: center; }
      .site-footer .site-footer-columns .site-footer-column.right .menu-links {
        text-align: left; }
    @media screen and (max-width: 768px) {
      .site-footer .site-footer-columns .site-footer-column.left,
      .site-footer .site-footer-columns .site-footer-column.right {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
        align-items: center;
        order: 1;
        width: 50%; }
        .site-footer .site-footer-columns .site-footer-column.left .menu-title,
        .site-footer .site-footer-columns .site-footer-column.right .menu-title {
          padding: 0;
          text-align: right; }
        .site-footer .site-footer-columns .site-footer-column.left .menu-links,
        .site-footer .site-footer-columns .site-footer-column.right .menu-links {
          width: 50%;
          text-align: left; }
      .site-footer .site-footer-columns .site-footer-column.center {
        order: 2;
        width: 100%; } }
    @media screen and (max-width: 480px) {
      .site-footer .site-footer-columns .site-footer-column.left,
      .site-footer .site-footer-columns .site-footer-column.right {
        padding-bottom: 40px;
        order: 1;
        width: 100%; } }
  .site-footer .site-footer-address {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    font-family: VAG-Rundschrift-D;
    font-size: 16px;
    font-weight: 400; }
  .site-footer .site-footer-copyright {
    display: block;
    margin-top: 20px;
    font-size: 12px; }
    .site-footer .site-footer-copyright .copyright {
      display: inline-block; }
    .site-footer .site-footer-copyright .link {
      display: inline-block; }
    .site-footer .site-footer-copyright .divider {
      display: inline-block;
      margin: 0 3px; }
    @media screen and (max-width: 480px) {
      .site-footer .site-footer-copyright {
        display: flex;
        flex-flow: column nowrap; }
        .site-footer .site-footer-copyright .copyright {
          order: 2; }
        .site-footer .site-footer-copyright .link {
          order: 1; }
        .site-footer .site-footer-copyright .divider {
          display: none; } }

/*============================================================================
  #Product Grid and List Views
==============================================================================*/
.sold-out .product-grid-image,
.on-sale .product-grid-image {
  position: relative; }

.badge {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 5;
  margin: 0;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-color: transparent; }
  .on-sale .badge {
    background-image: url("//cdn.shopify.com/s/files/1/0278/9911/files/sale-bubble_small.png?v=1517070053"); }
  .sold-out .badge {
    background-image: url("//cdn.shopify.com/s/files/1/0278/9911/files/sold-out-bubble_small.png?v=1517070054"); }

.badge-label {
  display: inline-block;
  padding: 8px 10px;
  width: auto;
  min-width: 80px;
  height: 80px;
  font-size: 32px;
  line-height: 26px;
  color: #FFFFFF;
  text-align: center;
  border-radius: 50%;
  font-family: Unpack-Regular;
  font-weight: 400; }
  .on-sale .badge-label {
    color: white;
    background: #f16857; }
  .sold-out .badge-label {
    color: white;
    background: #00b9e2; }

.sold-out .badge--sold-out {
  display: block; }

.on-sale .badge--sale {
  display: block; }

.product-grid {
  padding-top: 0;
  padding-bottom: 0; }
  .collection-template-section .product-grid {
    padding-top: 40px;
    padding-bottom: 40px; }

.product-grid-item {
  display: block;
  margin-bottom: 30px;
  color: #00b9e2; }
  .product-grid-item .product-collection-title {
    color: #1c5eab; }
  .product-grid-item .product-collection-price {
    color: #1c5eab; }

.no-touch .product-grid-item:hover {
  color: #f16857; }
  .no-touch .product-grid-item:hover img {
    opacity: 0.85; }
.no-touch .product-grid-item.hover-image:hover img {
  opacity: 0; }

.product-grid-image {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin: 0 auto 15px; }
  .product-grid-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    -ms-transition: opacity 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out; }

.product-grid-image--centered {
  display: table-cell;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; }

.product-grid-item__sale-price {
  color: #f16857; }

.featured-box {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px; }
  .featured-box img {
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    -ms-transition: opacity 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden; }

.no-touch .featured-box:hover img {
  opacity: 0.85; }

.featured-box--image {
  margin-bottom: 15px; }
  .featured-box--image img {
    display: block;
    width: 100%; }

.featured-box--title,
.featured-box--description {
  position: relative;
  z-index: 10; }

.featured-box--description {
  color: #5e5e5e;
  max-width: 80%;
  margin: 0 auto 15px;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  -ms-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out; }
  .featured-box:hover .featured-box--description {
    color: #f16857; }

/*============================================================================
  #Collection Filters
==============================================================================*/
.collection-sorting {
  margin-bottom: 30px;
  padding: 30px 0;
  border-bottom: solid 1px #ececec; }
  @media screen and (min-width: 769px) {
    .collection-sorting {
      text-align: left; } }
  @media screen and (max-width: 768px) {
    .collection-sorting .grid-item {
      text-align: left !important; }
    .collection-sorting select,
    .collection-sorting .form-horizontal label + select {
      display: block;
      margin: 0;
      width: 100%; } }
  @media screen and (max-width: 480px) {
    .collection-sorting .grid-item + .grid-item {
      margin-top: 30px; } }

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

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 30px;
  text-align: center; }
  .breadcrumb .icon-arrow-right {
    position: relative;
    top: 2px;
    color: #cccccc;
    margin: 0;
    padding: 0; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 10px 4px 10px 0;
    margin-right: 4px; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }

/*============================================================================
  #Product Page
==============================================================================*/
.product-detail-block {
  padding: 30px 0; }
  @media (max-width: 768px) {
    .product-detail-block .product-detail-left {
      margin-bottom: 40px; } }

.back-to-collection {
  display: inline-block;
  margin: 0;
  color: #aaa; }

.product-title {
  /* FLEX BASED */
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  margin: 0 0 20px 0; }
  .product-title .title-wrap {
    flex: 0 1 auto;
    font-size: 40px;
    line-height: 40px;
    color: #1c5eab; }
  .product-title .price-wrap {
    flex: 1 1 auto;
    position: relative;
    margin: -15px 0 0 20px;
    text-align: left; }
  .product-title .compare-price {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    min-width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    color: white;
    background: #f16857;
    -webkit-transform: translate(30%, -30%);
    -moz-transform: translate(30%, -30%);
    -ms-transform: translate(30%, -30%);
    -o-transform: translate(30%, -30%);
    transform: translate(30%, -30%); }

.product-description {
  color: #1c5eab; }

.price-nipple {
  display: inline-block;
  margin: 0;
  width: 80px;
  height: 80px;
  background: url("//cdn.shopify.com/s/files/1/0278/9911/files/price-bubble_small.png?v=1517070050") no-repeat bottom left rgba(0, 0, 0, 0); }
  .price-nipple .price-bubble {
    display: inline-block;
    padding: 15px 5px;
    width: auto;
    min-width: 80px;
    height: 80px;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    background: #00e8f0;
    border-radius: 50%; }

.product-options {
  padding: 15px 0; }

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

.selector-wrapper,
.quantity-wrapper {
  display: inline-block;
  margin-right: 30px; }
  .lt-ie9 .selector-wrapper, .lt-ie9
  .quantity-wrapper {
    display: block;
    max-width: 50%; }
  .selector-wrapper label,
  .quantity-wrapper label {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle; }
    .selector-wrapper label:after,
    .quantity-wrapper label:after {
      content: ":"; }
  .selector-wrapper select,
  .quantity-wrapper select {
    display: inline-block;
    width: auto;
    vertical-align: middle; }

.quantity-selector {
  margin-bottom: 15px; }

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

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

.slideshow {
  display: block;
  margin: 0;
  padding: 0 30px;
  list-style: none; }
  .slideshow .slide {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    outline: none;
    border: none; }
    .slideshow .slide img {
      display: block;
      margin: 0 auto;
      width: 99%;
      max-width: 99%;
      outline: none; }

.thumbnails {
  display: block;
  margin: 20px auto 0 auto;
  padding: 0;
  font-size: 0;
  list-style: none;
  text-align: center; }
  .thumbnails li {
    display: inline-block;
    margin: 5px;
    max-width: 55px;
    vertical-align: middle; }

.related-products-block {
  margin-top: 60px; }

/*================ Notice of < 10 items left ================*/
.variant-quantity {
  position: relative;
  display: none;
  margin-top: 10px;
  padding: 0 15px;
  text-align: left;
  color: #ee695a; }
  @media (max-width: 480px) {
    .variant-quantity {
      text-align: center; } }

.compare-price {
  color: #5e5e5e;
  text-decoration: line-through; }

/*============================================================================
  #Blogs and Comments
==============================================================================*/
@media screen and (min-width: 769px) {
  .template-blog .grid-item .rte img[src*="1024x1024"],
  .template-blog .grid-item .rte img[src*="2048x2048"],
  .template-article .grid-item .rte img[src*="1024x1024"],
  .template-article .grid-item .rte img[src*="2048x2048"] {
    display: block;
    margin: 0 auto 30px;
    max-width: 110%;
    position: relative;
    left: -5%; } }
.blog-meta {
  margin-bottom: 30px; }
  .blog-meta a {
    color: #5e5e5e; }
    .blog-meta a:hover, .blog-meta a:active {
      color: #ed3e28; }

.meta-spacer {
  padding: 0 6px; }

.comment {
  margin-bottom: 30px; }
  .comment + .comment {
    border-top: 1px solid #cccccc;
    padding-top: 30px; }

.tag {
  padding: 0;
  margin: 20px 4px 0; }
  .tag a {
    font-family: VAG-Rundschrift-D-Light;
    padding: 4px 8px; }
  .tag.tag--active, .tag.tag--active:hover {
    background-color: transparent;
    color: #ed3e28;
    cursor: pointer; }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  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: #cccccc; }

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

.form-success {
  color: #3a9154;
  background-color: white;
  border-color: #3a9154; }

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

/*============================================================================
  #Cart Page
==============================================================================*/
@media screen and (min-width: 769px) {
  .template-cart .cart-wrapper {
    max-width: 75%;
    margin: 0 auto; } }
.cart-row {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #cccccc; }
  .cart-row:first-child {
    margin-top: 0; }
  .cart-row:first-child {
    padding-top: 0;
    border-top: 0 none; }
  .cart-row .js-qty {
    margin: 0; }
  .cart-row input[name="goto_pp"] {
    padding: 10px 0px 0px; }
  .cart-row a.h4 {
    color: #5e5e5e; }
  .cart-row .button-wrapper {
    margin-bottom: 25px; }
  .cart-row #dynamic-checkout-cart {
    margin-bottom: 30px; }

.cart-wrapper__header-labels .header-labels {
  padding: 3px 0 !important; }

@media screen and (min-width: 769px) {
  .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; } }
.shopify-cleanslate ._1mqqPYZtCQtz5_i0b-po4l {
  justify-content: flex-end; }

.cart-image {
  display: block; }
  .cart-image img {
    display: block; }

.cart-subtotal {
  margin: 0 0 0 10px;
  display: inline; }

.cart-mini-labels {
  display: block;
  margin: 10px 0;
  font-size: 16px; }
  @media screen and (min-width: 769px) {
    .cart-mini-labels {
      display: none; } }

.cart__note-add.is-hidden {
  display: none; }

.cart__note {
  display: none; }
  .cart__note.is-active {
    display: block; }

.google-wallet-button-holder {
  display: inline-block;
  vertical-align: 10px; }

/*================ Ajax Cart Overrides ================*/
.ajaxify-drawer {
  background-color: transparent; }

.ajaxify-drawer,
.ajaxify-drawer.is-visible {
  border-bottom: 0 none; }

.ajaxify-drawer.is-visible {
  padding-bottom: 30px; }

.ajaxify-drawer form,
.ajaxify-drawer.is-visible .section-header {
  padding-top: 30px; }

.ajaxifyCart--qty input[type="text"],
.ajaxifyCart--qty input[type="num"],
.js-qty input[type="text"],
.js-qty input[type="num"] {
  display: inline-block;
  margin: 0 auto;
  padding: 5px 10px;
  width: auto;
  border: solid 1px #cccccc; }

.ajaxifyCart--qty button,
.ajaxifyCart--qty button,
.js-qty button,
.js-qty button {
  display: none !important; }

.cart-row .remove {
  display: inline-block;
  padding: 0 5px;
  font-size: 24px;
  color: #f16857;
  vertical-align: middle; }

.js--qty-adjuster,
.ajaxifyCart--qty-adjuster {
  width: auto;
  line-height: 1;
  padding: 0 10px;
  border-radius: 10px; }

.js--add,
.ajaxifyCart--add {
  right: -2px; }

.js--minus,
.ajaxifyCart--minus {
  left: -2px; }

.ajaxify-drawer .return-to-shop {
  display: none; }

.ajaxify-drawer .btn.cart-close, .ajaxify-drawer .cart-close.btn-secondary, .ajaxify-drawer .tag a.cart-close, .tag .ajaxify-drawer a.cart-close, .ajaxify-drawer .cart-close.js--qty-adjuster,
.ajaxify-drawer .cart-close.ajaxifyCart--qty-adjuster, .ajaxify-drawer .cart-close.btn-add-to-cart, .ajaxify-drawer .cart-close.btn-checkout, .ajaxify-drawer .cart-close.btn-newsletter, .ajaxify-drawer input.cart-close[type="submit"] {
  font-family: VAG-Rundschrift-D;
  font-weight: 400;
  color: #FFFFFF;
  padding: 6px 10px 10px 10px; }

/*============================================================================
  #FlexSlider
    - jQuery FlexSlider v2.2.2 | http://www.woothemes.com/flexslider/
    - Contributing author: Tyler Smith (@mbmufffin)
==============================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
  overflow: hidden; }

.flexslider li {
  margin: 0; }

.flexslider .slides > li {
  display: none;
  /* Hide the slides before the JS is loaded. Avoids image jumping */
  margin: 0;
  position: relative;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }

.flexslider .slides img {
  max-width: 100%;
  margin: 0 auto;
  display: block; }

.slides {
  *zoom: 1; }
  .slides:after {
    content: "";
    display: table;
    clear: both; }

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

* html .slides {
  height: 1%; }

/*================ No JS Fallback ================*/
.no-js .slides > li:first-child {
  display: block; }

.flexslider {
  position: relative;
  zoom: 1; }

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

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

.flexslider .slides {
  zoom: 1; }

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

/*================ Direction Nav ================*/
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

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

.flex-direction-nav a {
  display: block;
  width: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0.4s;
  -moz-transition: all 0.3s ease 0.4s;
  -ms-transition: all 0.3s ease 0.4s;
  -o-transition: all 0.3s ease 0.4s;
  transition: all 0.3s ease 0.4s; }

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

.flex-direction-nav a {
  text-indent: -9999px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 20px auto;
  /*================ Hide SVG arrows in oldIE ================*/ }
  .lte-ie9 .flex-direction-nav a {
    display: none; }
  .flex-direction-nav a.flex-prev {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjIuM3B4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCAyMi4zIDQwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyMi4zIDQwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNEM0QzRDMiIGQ9Ik0xOC43LDBMMCwxOS43TDE4LjcsNDBjMCwwLDUuMi0xLDMuMS0zLjFTNS43LDE5LjcsNS43LDE5LjdzMTQtMTQuNSwxNi4xLTE2LjZTMTguNywwLDE4LjcsMHoiLz4NCjwvc3ZnPg0K");
    background-position: center left; }
  .flex-direction-nav a.flex-next {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjIuM3B4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCAyMi4zIDQwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyMi4zIDQwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNEM0QzRDMiIGQ9Ik0wLjUsMy4xYzIuMSwyLjEsMTYuMSwxNi42LDE2LjEsMTYuNlMyLjYsMzQuOCwwLjUsMzYuOVMzLjYsNDAsMy42LDQwbDE4LjctMjAuM0wzLjYsMEMzLjYsMC0xLjYsMSwwLjUsMy4xDQoJeiIvPg0KPC9zdmc+DQo=");
    background-position: center right; }

/*================ Control Nav ================*/
.flex-control-nav {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  text-align: center; }
  .flex-control-nav li {
    margin: 0 4px;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle; }

.flex-control-paging li a {
  width: 12px;
  height: 12px;
  display: block;
  background-color: #cccccc;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  border: 2px solid white;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }
  .flex-control-paging li a:hover {
    background-color: #b3b3b3; }
  .flex-control-paging li a.flex-active {
    background-color: transparent;
    border-color: #00b9e2;
    cursor: default; }

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

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

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

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

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

.flexslider:hover .flex-next,
.flexslider:hover .flex-prev {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

@media screen and (max-width: 768px) {
  .flex-direction-nav a {
    opacity: 1;
    width: 25px; }

  .flex-direction-nav a.flex-prev {
    left: 0;
    background-position: center right; }

  .flex-direction-nav a.flex-next {
    right: 0;
    background-position: center left; } }
@media screen and (min-width: 769px) {
  .flex-direction-nav .flex-prev {
    left: 10px; }

  .flex-direction-nav .flex-next {
    right: 10px; }

  .flexslider:hover .flex-prev {
    opacity: 1;
    left: -25px; }

  .flexslider:hover .flex-next {
    opacity: 1;
    right: -25px; } }
@media screen and (min-width: 1020px) {
  .flex-direction-nav .flex-prev {
    left: 20px; }

  .flex-direction-nav .flex-next {
    right: 20px; }

  .flexslider:hover .flex-prev {
    opacity: 1;
    left: -40px; }

  .flexslider:hover .flex-next {
    opacity: 1;
    right: -40px; } }
/*================ Custom Flexslider Styles ================*/
.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.slide-link {
  display: block; }
  .slide-link img {
    display: block; }

/*============================================================================
  #Home Page Sections
==============================================================================*/
.shopify-section:before,
.shopify-section:after {
  content: '';
  display: table;
  clear: both; }

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

.background-red-orange {
  background-color: #ee695a; }

.background-orange {
  background-color: #f49961; }

.background-yellow {
  background-color: #faba3f; }

.background-teal {
  background-color: #70c7bd; }

.background-blue {
  background-color: #00b9e2; }

.background-navy {
  background-color: #1c5eab; }

.background-red-orange,
.background-orange,
.background-blue,
.background-navy {
  color: #ffffff; }
  .background-red-orange h1, .background-red-orange h2, .background-red-orange h3, .background-red-orange h4, .background-red-orange h5, .background-red-orange h6,
  .background-orange h1,
  .background-orange h2,
  .background-orange h3,
  .background-orange h4,
  .background-orange h5,
  .background-orange h6,
  .background-blue h1,
  .background-blue h2,
  .background-blue h3,
  .background-blue h4,
  .background-blue h5,
  .background-blue h6,
  .background-navy h1,
  .background-navy h2,
  .background-navy h3,
  .background-navy h4,
  .background-navy h5,
  .background-navy h6 {
    color: inherit; }

.image-border {
  height: 12px;
  width: 100%;
  background-repeat: repeat-x; }
  .image-border.top-blue-wave {
    background-position: top;
    background-image: url(//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/blue-wave-top.png?v=13179653045232109230);
    background-color: #ffffff; }
  .image-border.bottom-blue-wave {
    background-position: bottom;
    background-image: url(//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/blue-wave-bottom.png?v=16723225370788888872);
    background-color: #ffffff; }

.image-blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  align-content: stretch; }
  .image-blocks .block-image {
    margin: 0 auto;
    width: 100%; }
    .image-blocks .block-image a {
      display: block;
      margin: 0;
      overflow: hidden;
      object-fit: cover; }
    .image-blocks .block-image img {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 100%;
      object-fit: cover; }

.showcase-gallery-section .showcase-gallery {
  margin: 0; }
.showcase-gallery-section .showcase-track {
  padding: 0 !important; }
.showcase-gallery-section .showcase-grid--item--post {
  background-color: transparent !important; }
.showcase-gallery-section .showcase-grid-title,
.showcase-gallery-section .showcase-grid-description,
.showcase-gallery-section .showcase-grid--buttons {
  display: none !important; }
.showcase-gallery-section .gallery-section-title h2 {
  text-align: center; }
.showcase-gallery-section .gallery-section-buttons {
  text-align: center; }

.newsletter-block {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center; }
  .newsletter-block .newsletter-image {
    flex: 0 1 auto;
    padding: 20px;
    max-width: 160px; }
    .newsletter-block .newsletter-image img {
      display: block;
      margin: 0 auto;
      max-width: 100%; }
  .newsletter-block .newsletter-info {
    flex: 1 1 auto;
    padding: 20px;
    max-width: 340px;
    text-align: center; }
  .newsletter-block .newsletter-form {
    flex: 1 1 auto;
    padding: 20px;
    max-width: 400px;
    text-align: center; }
  .newsletter-block .form-message {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    line-height: 1.2;
    text-align: center;
    border-radius: 10px; }
    .newsletter-block .form-message p {
      margin: 0; }
    .newsletter-block .form-message.success {
      color: #3a9154;
      background: #c8e9d2;
      border: solid 1px #3a9154; }
    .newsletter-block .form-message.error {
      color: #ee695a;
      background: #fce7e5;
      border: solid 1px #ee695a; }
  .newsletter-block #newsletter-message {
    display: block; }
  .newsletter-block .newsletter-title {
    margin: 0;
    font-size: 48px; }
  .newsletter-block .newsletter-description {
    margin: 0; }
    .newsletter-block .newsletter-description p:last-child {
      margin-bottom: 0; }
  .newsletter-block form {
    margin: 0; }
  .newsletter-block input,
  .newsletter-block input:focus {
    display: block;
    margin: 0 0 10px 0;
    padding: 10px 20px;
    background: #ffffff;
    border: solid 1px #ffffff;
    outline: none; }
  .newsletter-block input:focus {
    border: solid 1px #F49961; }
  @media screen and (max-width: 768px) {
    .newsletter-block {
      flex-flow: row wrap;
      justify-content: center;
      padding: 20px 0 !important; }
      .newsletter-block .newsletter-image {
        padding: 0 20px 0 0;
        width: 25%; }
      .newsletter-block .newsletter-info {
        padding: 0;
        width: 70%;
        text-align: left; }
      .newsletter-block .newsletter-form {
        padding: 20px 0 0 0;
        width: 100%;
        max-width: 100%; }
        .newsletter-block .newsletter-form #newsletter-inputs {
          font-size: 0; }
        .newsletter-block .newsletter-form #mail {
          display: inline-block;
          margin: 0;
          padding: 10px;
          width: 60%;
          font-size: 16px;
          line-height: 24px;
          vertical-align: top; }
        .newsletter-block .newsletter-form #subscribe {
          display: inline-block;
          margin: 0 0 0 5%;
          padding: 8px 10px 12px 10px;
          width: 35%;
          font-size: 20px;
          line-height: 24px;
          vertical-align: top; }
      .newsletter-block .newsletter-title {
        font-size: 32px;
        line-height: 32px; } }

/*============================================================================
  #Slick Slider
==============================================================================*/
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-prev, .slick-next {
  display: block;
  position: absolute;
  top: 50%;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 24px;
  color: #00b9e2;
  text-align: center;
  background: none;
  outline: none;
  border: none;
  z-index: 10; }

.slick-prev {
  left: 0; }

.slick-next {
  right: 0; }

/*============================================================================
  #Custom Styles
==============================================================================*/
.main-content .hr--header {
  display: none; }

.ajaxify-drawer.is-visible {
  margin-bottom: 20%; }
.ajaxify-drawer .ajaxifyCart--content {
  padding-top: 0; }

.ajaxifyCart--content .section-header,
.cart-wrapper .section-header {
  display: none;
  margin-bottom: 0; }
  .ajaxifyCart--content .section-header .h3.section-header--title,
  .cart-wrapper .section-header .h3.section-header--title {
    display: none; }
.ajaxifyCart--content .js--qty-adjuster,
.ajaxifyCart--content .ajaxifyCart--qty-adjuster,
.cart-wrapper .js--qty-adjuster,
.cart-wrapper .ajaxifyCart--qty-adjuster {
  width: 40px; }
.ajaxifyCart--content .cart-wrapper__header-labels,
.cart-wrapper .cart-wrapper__header-labels {
  display: block; }
  .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full,
  .cart-wrapper .cart-wrapper__header-labels .grid-item .grid,
  .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev,
  .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full {
    margin-left: 0; }
    .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.two-thirds.push--one-third, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.two-thirds.push--one-third, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-thirds.push--one-third, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.push--one-third.four-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.push--one-third.four-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.push--one-third.four-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.four-sixths.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.four-sixths.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.four-sixths.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.four-sixths.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.four-sixths.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.four-sixths.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.push--one-third.eight-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.push--one-third.eight-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.push--one-third.eight-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.eight-twelfths.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.eight-twelfths.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.eight-twelfths.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.eight-twelfths.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.eight-twelfths.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.eight-twelfths.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.two-thirds.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.two-thirds.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-thirds.push--two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid .grid-item.two-thirds.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.two-thirds.push--four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-thirds.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.two-thirds.push--one-third,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.two-thirds.push--one-third,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-thirds.push--one-third,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.push--one-third.four-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.push--one-third.four-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.push--one-third.four-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.four-sixths.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.four-sixths.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.four-sixths.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.four-sixths.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.four-sixths.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.four-sixths.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.push--one-third.eight-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.push--one-third.eight-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.push--one-third.eight-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.eight-twelfths.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.eight-twelfths.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.eight-twelfths.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.eight-twelfths.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.eight-twelfths.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.eight-twelfths.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.two-thirds.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.two-thirds.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-thirds.push--two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid .grid-item.two-thirds.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--rev .grid-item.two-thirds.push--four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-thirds.push--four-twelfths {
      width: 99%;
      text-align: center;
      background: #00b9e2;
      color: white;
      font-family: VAG-Rundschrift-D;
      font-weight: 400;
      left: 0;
      padding: 0 0 5px 0;
      line-height: 1.4; }
  .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.four-twelfths,
  .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third,
  .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.two-sixths,
  .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.four-twelfths {
    width: 32%;
    margin-right: 1%; }
    .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third.medium-down--one-third, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.four-twelfths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third.medium-down--one-third,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.two-sixths,
    .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.four-twelfths {
      background: #00b9e2;
      color: white;
      font-family: VAG-Rundschrift-D;
      font-weight: 400;
      padding: 0 0 5px 0;
      line-height: 1.4;
      text-align: center; }
      .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third.medium-down--one-third.text-center, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-center.two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-center.four-twelfths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third.medium-down--one-third.text-right, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-right.two-sixths, .ajaxifyCart--content .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-right.four-twelfths,
      .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third.medium-down--one-third.text-center,
      .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-center.two-sixths,
      .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-center.four-twelfths,
      .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.one-third.medium-down--one-third.text-right,
      .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-right.two-sixths,
      .cart-wrapper .cart-wrapper__header-labels .grid-item .grid--full .grid-item.medium-down--one-third.text-right.four-twelfths {
        text-align: center !important; }

.support-groups {
  display: block;
  margin: 50px 0 0 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  list-style: none;
  text-align: center; }
  .support-groups li {
    display: inline-block;
    width: 33.33%;
    font-size: 20px;
    line-height: 1.5;
    text-align: center; }
    .support-groups li .fa {
      font-size: 32px; }
    .support-groups li h4 {
      margin: 0;
      line-height: 1.2; }
    .support-groups li a {
      font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 14px; }

@media screen and (max-width: 960px) {
  .support-groups li {
    display: block;
    margin: 50px 0;
    width: 100%; } }
body #storemapper #storemapper-form {
  box-shadow: none; }
  body #storemapper #storemapper-form .storemapper-error {
    position: static; }
body #storemapper #storemapper-list li h4,
body #storemapper .storemapper-iw-wrapper .storemapper-popup-name {
  color: #1c5eab;
  font-size: 24px; }
body #storemapper .storemapper-iw-wrapper .storemapper-map-directions {
  margin: 5px auto 5px 0;
  padding: 7px 15px 10px 15px;
  font-size: 24px;
  line-height: 24px;
  width: 99%; }

/*============================================================================
  #Product Option Buttons
==============================================================================*/
.option-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start; }
  .option-buttons .option-button {
    padding: 5px;
    min-width: 70px; }
    .option-buttons .option-button input {
      display: none !important; }
    .option-buttons .option-button label {
      display: block;
      margin: 0;
      padding: 5px 10px;
      color: white;
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      background-color: #00b9e2;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      border-radius: 5px;
      cursor: pointer; }
    .option-buttons .option-button input:checked + label,
    .option-buttons .option-button label.active {
      background-color: #faba3f; }
    .option-buttons .option-button label.unavailable {
      background-image: url(//cdn.shopify.com/s/files/1/0278/9911/t/18/assets/option-unavailable.png?v=9210265666384404599);
      background-color: #ee695a !important; }

/*============================================================================
  #Size Chart Modal
==============================================================================*/
.no-scroll {
  overflow: hidden !important; }

.size-chart-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 2147483647;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; }
  .size-chart-modal.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  .size-chart-modal .size-chart-modal-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow: auto; }
  .size-chart-modal .size-chart-content {
    position: relative;
    margin: 30px auto;
    padding: 0;
    width: 1000px;
    max-width: 100%;
    background: white;
    align-self: center;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    transform: translate(0, 100px);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    @media screen and (max-width: 768px) {
      .size-chart-modal .size-chart-content {
        margin: 0 auto; } }
  .size-chart-modal.visible .size-chart-content {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
  .size-chart-modal .size-chart {
    position: relative;
    margin: 0;
    padding: 0;
    background: white; }
    .size-chart-modal .size-chart .size-chart-close {
      position: absolute;
      top: 0;
      right: 0;
      margin: 0;
      padding: 0;
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 20px;
      text-align: center;
      color: white;
      opacity: 1;
      -webkit-transition: opacity 0.25s ease;
      -moz-transition: opacity 0.25s ease;
      -ms-transition: opacity 0.25s ease;
      -o-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease; }
      .size-chart-modal .size-chart .size-chart-close:hover {
        color: white;
        opacity: 0.5; }
    .size-chart-modal .size-chart .size-chart-title {
      margin: 0;
      padding: 15px 20px 18px 20px;
      color: white;
      font-size: 34px;
      text-align: center;
      background: #ee695a; }
    .size-chart-modal .size-chart .size-chart-body {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -moz-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-align-content: center;
      -moz-align-content: center;
      -ms-flex-line-pack: center;
      align-content: center;
      margin: 0;
      padding: 0;
      background: #1c5eab; }
      @media screen and (max-width: 768px) {
        .size-chart-modal .size-chart .size-chart-body {
          -webkit-flex-flow: row wrap;
          -moz-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
          flex-flow: row wrap; } }
      .size-chart-modal .size-chart .size-chart-body .size-chart-image {
        margin: 0;
        padding: 20px 0;
        width: 40%; }
        .size-chart-modal .size-chart .size-chart-body .size-chart-image img {
          display: block;
          margin: 0 auto;
          height: auto;
          width: auto;
          max-width: 100%; }
        @media screen and (max-width: 768px) {
          .size-chart-modal .size-chart .size-chart-body .size-chart-image {
            width: 100%; } }
      .size-chart-modal .size-chart .size-chart-body .size-chart-table {
        margin: 0;
        padding: 40px 20px 40px 0;
        width: 60%;
        color: white; }
        @media screen and (max-width: 768px) {
          .size-chart-modal .size-chart .size-chart-body .size-chart-table {
            width: 100%; } }
        .size-chart-modal .size-chart .size-chart-body .size-chart-table table {
          width: 100%; }
          .size-chart-modal .size-chart .size-chart-body .size-chart-table table th {
            padding-top: 0 !important; }
            .size-chart-modal .size-chart .size-chart-body .size-chart-table table th .text-wrapper {
              position: relative;
              display: inline-block; }
            .size-chart-modal .size-chart .size-chart-body .size-chart-table table th .indicator {
              position: absolute;
              top: -15px;
              left: 50%;
              margin: 0;
              padding: 0 5px;
              font-size: 16px;
              font-weight: bold;
              line-height: 24px;
              min-width: 24px;
              color: white;
              text-align: center;
              border-radius: 24px;
              -webkit-transform: translate(-50%, -50%);
              -moz-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
              -o-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
              .size-chart-modal .size-chart .size-chart-body .size-chart-table table th .indicator.i-1 {
                background: #ee695a; }
              .size-chart-modal .size-chart .size-chart-body .size-chart-table table th .indicator.i-2 {
                background: #faba3f; }
              .size-chart-modal .size-chart .size-chart-body .size-chart-table table th .indicator.i-3 {
                background: #00b9e2; }
              .size-chart-modal .size-chart .size-chart-body .size-chart-table table th .indicator.i-4 {
                background: #f49961; }
          .size-chart-modal .size-chart .size-chart-body .size-chart-table table th, .size-chart-modal .size-chart .size-chart-body .size-chart-table table td {
            padding: 15px;
            font-size: 18px;
            text-align: left;
            text-align: center;
            border-bottom: solid 2px #00b9e2; }
            .size-chart-modal .size-chart .size-chart-body .size-chart-table table th.size, .size-chart-modal .size-chart .size-chart-body .size-chart-table table td.size {
              padding-left: 0;
              font-weight: bold;
              text-align: right;
              border: none; }
              @media screen and (max-width: 768px) {
                .size-chart-modal .size-chart .size-chart-body .size-chart-table table th.size, .size-chart-modal .size-chart .size-chart-body .size-chart-table table td.size {
                  padding-left: 15px; } }
            .size-chart-modal .size-chart .size-chart-body .size-chart-table table th.text-right, .size-chart-modal .size-chart .size-chart-body .size-chart-table table td.text-right {
              text-align: right; }
            .size-chart-modal .size-chart .size-chart-body .size-chart-table table th.bold, .size-chart-modal .size-chart .size-chart-body .size-chart-table table td.bold {
              font-weight: bold; }
            .size-chart-modal .size-chart .size-chart-body .size-chart-table table th.no-border, .size-chart-modal .size-chart .size-chart-body .size-chart-table table td.no-border {
              border: none; }

.collection-filters-container {
  /*
  
  */
  text-align: center;
  margin: 10px 0px 10px 0px;
  font-size: 16px;
  display: block; }

.cf-title {
  display: inline-block;
  /* to have filters separated one per line, change "inline-block" to "block" */
  font-weight: bold;
  margin: 0px 5px 0px 24px;
  font-size: 16px;
  /*
    text-transform: uppercase;
    margin: 20px 0px 0px 0px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 6px;
  */ }

.cf-options-container {
  /* optional, restrict height of available options to a scrollable container */
  /*
    display: block;
    max-height: 360px;
    overflow: auto;
  */ }

.cf-select {
  display: inline-block;
  /* to have filters separated one per line, change "inline-block" to "block" */
  width: 12em;
  margin-right: 1em;
  float: none !important;
  height: 40px;
  /*background: transparent url(https://cdn.shopify.com/s/files/1/0653/0119/t/1/assets/select.png) no-repeat right;*/
  /*border-radius: 15px;*/
  padding: 2px 2px 2px 17px;
  /*color: #000;
  background-color: #dedede;*/
  border: solid 1px #d3d2d2;
  /*border: 0px solid;*/
  /*box-shadow: none;*/
  /*background-image: none;*/
  /*-webkit-appearance: none;*/
  /*  vertical-align: middle;*/
  /*
    background-color: #000;
    border-color: #000;
    color: #ffffff;
    padding: 0px;
    margin-left: 4em;
  */ }

.cf-checkbox, .cf-radio {
  /*display: none !important;*/
  padding: 0;
  /*margin: 0 !important;*/
  vertical-align: bottom;
  position: relative;
  top: -6px; }

/* individual checkbox labels */
.collection-filters-container label span {
  font-weight: normal;
  opacity: 0.8; }

.collection-filters-container label {
  display: block;
  /* to have checkboxes on the same line, change "block" to "inline-block" */
  margin: 0px 6px 6px 0px;
  cursor: pointer;
  font-weight: normal; }

/*
.collection-filters-container label {
  margin: 0px;
  padding: 10px 0px 10px 10px;
  background-color: #fff;
}
.collection-filters-container label:nth-child(even) {
	background: #fafafa;
}
*/
.cf-checkbox:checked + span {
  font-weight: bold !important;
  opacity: 1;
  /* color: #000000; */ }

.cf-radio:checked + span {
  font-weight: bold !important;
  opacity: 1;
  /* color: #000000; */ }

.cf-mobile-only {
  display: none; }

/* mobile */
@media (max-width: 760px) {
  .cf-title {
    display: none;
    /* to have filters separated one per line, change "inline-block" to "block" */
    font-weight: bold;
    margin: 2px 5px 0px 0px; }

  .cf-select {
    display: block;
    /* to have filters separated one per line, change "inline-block" to "block" */
    width: 100%;
    max-width: none; }

  .cf-desktop-only {
    display: none; }

  .cf-mobile-only {
    display: block; } }
/* cart and checkout button css */
.cart-contents .route-div {
  padding: 0 20px; }

.cart-checkout {
  display: flex;
  overflow: hidden;
  padding: 0 10px !important;
  justify-content: space-between;
  margin-bottom: 10px !important; }
  .cart-checkout .btn, .cart-checkout .btn-secondary, .cart-checkout .tag a, .tag .cart-checkout a, .cart-checkout .js--qty-adjuster,
  .cart-checkout .ajaxifyCart--qty-adjuster, .cart-checkout .btn-add-to-cart, .cart-checkout .btn-checkout, .cart-checkout .btn-newsletter, .cart-checkout input[type="submit"] {
    font-size: 30px !important;
    line-height: 1 !important;
    border-radius: 10px !important; }

.update-cart {
  margin-right: 15px !important;
  line-height: 1 !important;
  padding: 0 10px 10px !important;
  min-height: 58.4px; }

button.btn.btn-checkout.btn--large.btn--skinny, button.btn-checkout.btn--large.btn--skinny {
  padding: 5px 10px 5px !important; }

/*** CUSTOM CSS --- WITTY ***/
.okeReviews .okeReviews-reviewsWidget-header-controls-writeReview {
  display: inline-block !important;
  font-family: Unpack-Regular;
  font-weight: 400;
  color: #fff !important;
  background-color: #fdbc2d !important;
  box-shadow: 3px 3px #e29e14;
  border-radius: 5px;
  border: 0px !important; }
  .okeReviews .okeReviews-reviewsWidget-header-controls-writeReview:hover {
    background-color: #e29e14 !important;
    box-shadow: 0 0 #b37d10;
    -webkit-transform: translate(2px, 2px);
    -moz-transform: translate(2px, 2px);
    -ms-transform: translate(2px, 2px);
    -o-transform: translate(2px, 2px);
    transform: translate(2px, 2px); }

#section-product-template {
  margin-bottom: 40px; }

.metafield-image-wrapper img {
  display: block;
  text-align: center;
  margin: 15px auto 0; }

.okeReviews-review-main-heading {
  font-size: 24px !important;
  font-weight: 400 !important; }

.okeReviews .okeReviews-reviewsWidget-header-controls-writeReview {
  font-size: 24px !important;
  padding: .3em .7em !important; }
