/** Shopify CDN: Minification failed

Line 119:3 Unexpected "zoom"
Line 184:3 Unexpected "zoom"
Line 3599:3 Unexpected "zoom"

**/
/*============================================================================
	Shopify Shoppers
	Copyright 2018 SoapTheme.
	Author Carson Shold @cshold
	Built with Sass - http://sass-lang.com/

	Some things to know about this file:
		- Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
		- The output CSS is compressed and comments are removed
		- You cannot use @imports in this file
				* Use grunt or gulp tasks to enable @imports - https://github.com/Shopify/shopify-css-import
		- Helpers variables, mixins, and starter classes are provided. Change as needed.
		- The file is prepped with a CSS reset
		- The font icons are prepared using https://icomoon.io/app
==============================================================================*/
/*============================================================================
#PageLoader and MainContent
#Breakpoint and Grid Variables
#General Variables
#Sass Mixins
#Normalize
#Grid Setup
#Basic Styles
#Helper Classes
#Typography
#Animations
#Rich Text Editor
#Links and Buttons
#Lists
#Tables
#OOCSS Media Object
#Images and Iframes
#Forms
#Icons
#Scroll Top
#Pagination
#Drawers
#Page Banner
#Site Header
#Site Nav and Dropdowns
#Cart Drawer
#Mobile Nav
#Grid product
#Product Quick View
#Breadcrumbs
#Ajax-loader
#Notes and Form Feedback
#Ajax Cart Styles (conditionally loaded)
#Search modal box
#Custom sections
#Product Page
#Collection List Item
#Collection Page
#Cart Page
#Blog Page
#Article Pages
#Account Pages
#Custom Pages
#Site Footer
==============================================================================*/
/*============================================================================
	#PageLoader and MainContent
==============================================================================*/
#page_loader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  padding-top: 50vh;
  text-align: center;
  background-color: #f5f5f5;
  display: none; }
  #page_loader img {
    width: 80px;
    margin-top: -40px; }

#main_content {
  /* 	visibility: hidden; */ }
  #main_content.active {
    visibility: visible;
    transition: all 0.8s; }

/*============================================================================
	#Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
	#General Variables
==============================================================================*/
/*============ Shoppers' Color Schema ========*/
/* Header's color -------------*/
/* Body's color ---------------*/
/* Footer's color --------------*/
/* Bottombar's color -----------*/
/*================ Shoppers' Typography ================*/
/*---------------------- import GoudySansPro-Medium-----------------------*/
@font-face {
  font-family: GoudySansPro-Medium;
  src: url(goudy.woff); }

@font-face {
  font-family: 'icons';
  src: url("/cdn/shop/t/12/assets/icons.eot?v=158399200609435563841612883921");
  src: url("/cdn/shop/t/12/assets/icons.eot?v=158399200609435563841612883921#iefix") format("embedded-opentype"), url("/cdn/shop/t/12/assets/icons.woff?v=169945158533379702731612883923") format("woff"), url("/cdn/shop/t/12/assets/icons.ttf?v=152698340250222789721612883923") format("truetype"), url("/cdn/shop/t/12/assets/icons.svg?v=1632698112070928441612883922#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

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

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

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

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

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

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

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

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

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 30px;
  vertical-align: top;
  width: 100%; }
  @media screen and (max-width: 480px) {
    .grid__item {
      padding-left: 15px; } }

.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }

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

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

/*============================================================================
	WIDTHS
		- Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
.center {
  position: relative;
  left: 50%; }

/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large-down--six-eighths {
    left: 75%; }

  .push--large-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--large-down--one-tenth {
    left: 10%; }

  .push--large-down--two-tenths {
    left: 20%; }

  .push--large-down--three-tenths {
    left: 30%; }

  .push--large-down--four-tenths {
    left: 40%; }

  .push--large-down--five-tenths {
    left: 50%; }

  .push--large-down--six-tenths {
    left: 60%; }

  .push--large-down--seven-tenths {
    left: 70%; }

  .push--large-down--eight-tenths {
    left: 80%; }

  .push--large-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--large-down--one-twelfth {
    left: 8.333%; }

  .push--large-down--two-twelfths {
    left: 16.666%; }

  .push--large-down--three-twelfths {
    left: 25%; }

  .push--large-down--four-twelfths {
    left: 33.333%; }

  .push--large-down--five-twelfths {
    left: 41.666%; }

  .push--large-down--six-twelfths {
    left: 50%; }

  .push--large-down--seven-twelfths {
    left: 58.333%; }

  .push--large-down--eight-twelfths {
    left: 66.666%; }

  .push--large-down--nine-twelfths {
    left: 75%; }

  .push--large-down--ten-twelfths {
    left: 83.333%; }

  .push--large-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 993px) {
  /* Whole */
  .push--large-up--one-whole {
    left: 100%; }

  /* Halves */
  .push--large-up--one-half {
    left: 50%; }

  /* Thirds */
  .push--large-up--one-third {
    left: 33.333%; }

  .push--large-up--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--large-up--one-quarter {
    left: 25%; }

  .push--large-up--two-quarters {
    left: 50%; }

  .push--large-up--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--large-up--one-fifth {
    left: 20%; }

  .push--large-up--two-fifths {
    left: 40%; }

  .push--large-up--three-fifths {
    left: 60%; }

  .push--large-up--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--large-up--one-sixth {
    left: 16.666%; }

  .push--large-up--two-sixths {
    left: 33.333%; }

  .push--large-up--three-sixths {
    left: 50%; }

  .push--large-up--four-sixths {
    left: 66.666%; }

  .push--large-up--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--large-up--one-eighth {
    left: 12.5%; }

  .push--large-up--two-eighths {
    left: 25%; }

  .push--large-up--three-eighths {
    left: 37.5%; }

  .push--large-up--four-eighths {
    left: 50%; }

  .push--large-up--five-eighths {
    left: 62.5%; }

  .push--large-up--six-eighths {
    left: 75%; }

  .push--large-up--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--large-up--one-tenth {
    left: 10%; }

  .push--large-up--two-tenths {
    left: 20%; }

  .push--large-up--three-tenths {
    left: 30%; }

  .push--large-up--four-tenths {
    left: 40%; }

  .push--large-up--five-tenths {
    left: 50%; }

  .push--large-up--six-tenths {
    left: 60%; }

  .push--large-up--seven-tenths {
    left: 70%; }

  .push--large-up--eight-tenths {
    left: 80%; }

  .push--large-up--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--large-up--one-twelfth {
    left: 8.333%; }

  .push--large-up--two-twelfths {
    left: 16.666%; }

  .push--large-up--three-twelfths {
    left: 25%; }

  .push--large-up--four-twelfths {
    left: 33.333%; }

  .push--large-up--five-twelfths {
    left: 41.666%; }

  .push--large-up--six-twelfths {
    left: 50%; }

  .push--large-up--seven-twelfths {
    left: 58.333%; }

  .push--large-up--eight-twelfths {
    left: 66.666%; }

  .push--large-up--nine-twelfths {
    left: 75%; }

  .push--large-up--ten-twelfths {
    left: 83.333%; }

  .push--large-up--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  /* Whole */
  .push--xlarge-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--xlarge-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--xlarge-down--one-third {
    left: 33.333%; }

  .push--xlarge-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--xlarge-down--one-quarter {
    left: 25%; }

  .push--xlarge-down--two-quarters {
    left: 50%; }

  .push--xlarge-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--xlarge-down--one-fifth {
    left: 20%; }

  .push--xlarge-down--two-fifths {
    left: 40%; }

  .push--xlarge-down--three-fifths {
    left: 60%; }

  .push--xlarge-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--xlarge-down--one-sixth {
    left: 16.666%; }

  .push--xlarge-down--two-sixths {
    left: 33.333%; }

  .push--xlarge-down--three-sixths {
    left: 50%; }

  .push--xlarge-down--four-sixths {
    left: 66.666%; }

  .push--xlarge-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--xlarge-down--one-eighth {
    left: 12.5%; }

  .push--xlarge-down--two-eighths {
    left: 25%; }

  .push--xlarge-down--three-eighths {
    left: 37.5%; }

  .push--xlarge-down--four-eighths {
    left: 50%; }

  .push--xlarge-down--five-eighths {
    left: 62.5%; }

  .push--xlarge-down--six-eighths {
    left: 75%; }

  .push--xlarge-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--xlarge-down--one-tenth {
    left: 10%; }

  .push--xlarge-down--two-tenths {
    left: 20%; }

  .push--xlarge-down--three-tenths {
    left: 30%; }

  .push--xlarge-down--four-tenths {
    left: 40%; }

  .push--xlarge-down--five-tenths {
    left: 50%; }

  .push--xlarge-down--six-tenths {
    left: 60%; }

  .push--xlarge-down--seven-tenths {
    left: 70%; }

  .push--xlarge-down--eight-tenths {
    left: 80%; }

  .push--xlarge-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--xlarge-down--one-twelfth {
    left: 8.333%; }

  .push--xlarge-down--two-twelfths {
    left: 16.666%; }

  .push--xlarge-down--three-twelfths {
    left: 25%; }

  .push--xlarge-down--four-twelfths {
    left: 33.333%; }

  .push--xlarge-down--five-twelfths {
    left: 41.666%; }

  .push--xlarge-down--six-twelfths {
    left: 50%; }

  .push--xlarge-down--seven-twelfths {
    left: 58.333%; }

  .push--xlarge-down--eight-twelfths {
    left: 66.666%; }

  .push--xlarge-down--nine-twelfths {
    left: 75%; }

  .push--xlarge-down--ten-twelfths {
    left: 83.333%; }

  .push--xlarge-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1201px) {
  /* Whole */
  .push--xlarge--one-whole {
    left: 100%; }

  /* Halves */
  .push--xlarge--one-half {
    left: 50%; }

  /* Thirds */
  .push--xlarge--one-third {
    left: 33.333%; }

  .push--xlarge--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--xlarge--one-quarter {
    left: 25%; }

  .push--xlarge--two-quarters {
    left: 50%; }

  .push--xlarge--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--xlarge--one-fifth {
    left: 20%; }

  .push--xlarge--two-fifths {
    left: 40%; }

  .push--xlarge--three-fifths {
    left: 60%; }

  .push--xlarge--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--xlarge--one-sixth {
    left: 16.666%; }

  .push--xlarge--two-sixths {
    left: 33.333%; }

  .push--xlarge--three-sixths {
    left: 50%; }

  .push--xlarge--four-sixths {
    left: 66.666%; }

  .push--xlarge--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--xlarge--one-eighth {
    left: 12.5%; }

  .push--xlarge--two-eighths {
    left: 25%; }

  .push--xlarge--three-eighths {
    left: 37.5%; }

  .push--xlarge--four-eighths {
    left: 50%; }

  .push--xlarge--five-eighths {
    left: 62.5%; }

  .push--xlarge--six-eighths {
    left: 75%; }

  .push--xlarge--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--xlarge--one-tenth {
    left: 10%; }

  .push--xlarge--two-tenths {
    left: 20%; }

  .push--xlarge--three-tenths {
    left: 30%; }

  .push--xlarge--four-tenths {
    left: 40%; }

  .push--xlarge--five-tenths {
    left: 50%; }

  .push--xlarge--six-tenths {
    left: 60%; }

  .push--xlarge--seven-tenths {
    left: 70%; }

  .push--xlarge--eight-tenths {
    left: 80%; }

  .push--xlarge--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--xlarge--one-twelfth {
    left: 8.333%; }

  .push--xlarge--two-twelfths {
    left: 16.666%; }

  .push--xlarge--three-twelfths {
    left: 25%; }

  .push--xlarge--four-twelfths {
    left: 33.333%; }

  .push--xlarge--five-twelfths {
    left: 41.666%; }

  .push--xlarge--six-twelfths {
    left: 50%; }

  .push--xlarge--seven-twelfths {
    left: 58.333%; }

  .push--xlarge--eight-twelfths {
    left: 66.666%; }

  .push--xlarge--nine-twelfths {
    left: 75%; }

  .push--xlarge--ten-twelfths {
    left: 83.333%; }

  .push--xlarge--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
	PULL
		- Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
	#Basic Styles
==============================================================================*/
html {
  background-color: white; }

body {
  background-color: rgba(0, 0, 0, 0); }

[tabindex='-1']:focus {
  outline: none; }

.container, .main-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px; }
  @media screen and (min-width: 480px) {
    .container, .main-container {
      padding: 0 30px; } }

.main-container {
  padding-bottom: 7.143vw; }

.wrapper {
  *zoom: 1;
  box-sizing: content-box;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 992px) and (max-width: 1200px) {
    .wrapper {
      max-width: 970px; } }
  @media screen and (min-width: 768px) and (max-width: 992px) {
    .wrapper {
      max-width: 750px; } }
  @media screen and (min-width: 480px) {
    .wrapper {
      padding: 0 30px; } }

.main-content {
  display: block; }

.full-height {
  height: 100vh; }

/*============================================================================
	#Helper Classes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.display-table {
  display: table !important;
  table-layout: fixed;
  width: 100%; }

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }

@media screen and (min-width: 992px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*============================================================================
	#Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 18px;
  line-height: 1.6;
  font-family: "Josefin Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #4f2c1d;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: GoudySansPro-Medium;
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.1; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 28px; }

h3, .h3 {
  font-size: 22px; }

h4, .h4 {
  font-size: 20px; }

h5, .h5 {
  font-size: 16px; }

h6, .h6 {
  font-size: 14px; }

p {
  margin: 0 0 15px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: 600; }

small {
  font-size: 0.9em; }

sup, sub {
  position: relative;
  font-size: 80%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #4f2c1d; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #4f2c1d;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 8px;
  color: #4f2c1d;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: #b3252d; }

.change-view--active {
  cursor: default;
  color: #b3252d; }

/*============================================================================
	#Animations
==============================================================================*/
@-webkit-keyframes zoom {
  from {
    transform: scale(1); }

  to {
    transform: scale(1.2); } }

@keyframes zoom {
  from {
    transform: scale(1); }

  to {
    transform: scale(1.2); } }

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0); }

  80% {
    transform: scale(1.1); }

  100% {
    transform: scale(1); } }

@keyframes zoomIn {
  0% {
    transform: scale(0); }

  80% {
    transform: scale(1.1); }

  100% {
    transform: scale(1); } }

@keyframes increaseWidth {
  0% {
    width: 0%; }

  100% {
    width: 85%; } }

@keyframes changeColor {
  from {
    background: rgba(12, 26, 41, 0.9); }

  to {
    background: none; } }

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0); }

  65% {
    opacity: 0.65;
    transform: scale(1.1); }

  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes spin {
  from {
    transform: rotate(0deg); }

  to {
    transform: rotate(359deg); } }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px); }

  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px); }

  to {
    opacity: 1;
    transform: translateX(0); } }

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 0.8s;
  opacity: 1; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px); }

  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px); }

  to {
    opacity: 1;
    transform: translateX(0); } }

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 0.8s;
  opacity: 1; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0px); }

  to {
    opacity: 0;
    transform: translateX(10px); } }

@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0px); }

  to {
    opacity: 0;
    transform: translateX(10px); } }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0px); }

  to {
    opacity: 0;
    transform: translateX(-10px); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0px); }

  to {
    opacity: 0;
    transform: translateX(-10px); } }

/*============================================================================
	#Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0.4em; }

.rte--header {
  margin-bottom: 0; }

/*============================================================================
	#Links and Buttons
==============================================================================*/
a,
.text-link {
  color: #4f2c1d;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  color: #b3252d; }

button {
  overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  display: inline-block;
  padding: 8px 10px;
  width: auto;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  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;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /*================ Set primary button colors - can override later ================*/
  background-color: #ef333b;
  color: #fdfdfd; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #b3252d;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: #b3252d;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: #717171;
    background-color: #e6e6e6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #ef333b; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #b3252d;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #b3252d;
    color: white; }

.btn--small {
  padding: 4px 5px;
  font-size: 12px; }

.btn--large {
  padding: 12px 15px;
  font-size: 16px; }

.btn--full {
  width: 100%; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*============================================================================
	#Lists
==============================================================================*/
ul, ol {
  margin: 0 0 15px 20px;
  padding: 0; }

ol {
  list-style: decimal; }

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: 0.25em; }

ul.square {
  list-style: square outside; }

ul.disc {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

.no-bullets {
  list-style: none outside;
  margin-left: 0; }

.inline-list {
  margin: 0; }
  .inline-list li {
    display: inline-block;
    margin-bottom: 0; }

/*============================================================================
	#Tables
==============================================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

table.full {
  width: 100%;
  margin-bottom: 1em; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

th {
  font-weight: 600; }

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid #4f2c1d; }

/*============================================================================
	Responsive tables, defined with .table--responsive on table element.
	Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 480px) {
  .table--responsive thead {
    display: none; }
  .table--responsive tr {
    display: block; }
  .table--responsive tr,
  .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  .table--responsive th,
  .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  .table--responsive td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }
  .table--responsive.cart-table img {
    margin: 0 auto; }
  .table--responsive.cart-table .js-qty, .table--responsive.cart-table .ajaxcart__qty {
    float: right; } }

@media screen and (max-width: 480px) {
  .table--small-hide {
    display: none !important; }

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #4f2c1d; } }
/*============================================================================
	#OOCSS Media Object
		- http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 30px; }

.media-img-right {
  float: right;
  margin-left: 30px; }

.media-img img,
.media-img-right img {
  display: block; }

/*============================================================================
	#Images and Iframes
==============================================================================*/
img {
  border: 0 none; }

svg:not(:root) {
  overflow: hidden; }

img,
iframe {
  max-width: 100%; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*============================================================================
	#Forms
==============================================================================*/
form {
  margin-bottom: 0; }

.form-vertical {
  margin-bottom: 15px; }

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 768px) {
  input,
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

button {
  background: none;
  border: none;
  cursor: pointer; }

button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

fieldset {
  border: 1px solid #4f2c1d;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

button,
input[type="submit"] {
  cursor: pointer; }

input,
textarea,
select {
  border: 1px solid rgba(79, 44, 29, 0.4);
  max-width: 100%;
  padding: 8px 10px;
  outline: none; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid rgba(79, 44, 29, 0.6); }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0 8px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox; }

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("/cdn/shop/t/12/assets/ico-select.svg?v=3540120393686482291615319313");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 600; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
.hidden-label {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .hidden-label, .lt-ie9 .hidden-label {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

/*================ Error styles ================*/
input.error,
select.error,
textarea.error {
  border-color: #d02e2e;
  background-color: #fff6f6;
  color: #d02e2e; }

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary {
    border-radius: 0px; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary {
    border-radius: 0px; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary,
.input-group .input-group-field {
  height: 37px; }

.input-group .input-group-field {
  width: 100%; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

/*============================================================================
	#Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block; }

/*============================================================================
	A generic way to visually hide content while
	remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*================ Icon mapping ================*/
.icon-amazon_payments:before {
  content: "\e800"; }

.icon-american_express:before {
  content: "\41"; }

.icon-arrow-down:before {
  content: "\e607"; }

.icon-bitcoin:before {
  content: "\42"; }

.icon-cart:before {
  content: "\e600"; }

.icon-cirrus:before {
  content: "\43"; }

.icon-dankort:before {
  content: "\64"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-dogecoin:before {
  content: "\e904"; }

.icon-dwolla:before {
  content: "\e905"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-forbrugsforeningen:before {
  content: "\e906"; }

.icon-google-plus:before {
  content: "\e900"; }

.icon-grid-view:before {
  content: "\e603"; }

.icon-hamburger:before {
  content: "\e601"; }

.icon-instagram:before {
  content: "\e901"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

.icon-list-view:before {
  content: "\e604"; }

.icon-litecoin:before {
  content: "\e908"; }

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

.icon-minus:before {
  content: "\e602"; }

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-plus:before {
  content: "\e605"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\73"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-x:before {
  content: "\e606"; }

.icon-youtube:before {
  content: "\79"; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin: 0 7.5px 7.5px;
    color: white;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons li {
  margin: 0 15px 15px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 30px;
    line-height: 26px; }
  .social-icons li a {
    color: white; }
    .social-icons li a:hover {
      color: #e6e6e6; }

/*============================================================================
	#Scroll Top
==============================================================================*/
#back-top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  color: #4f2c1d;
  transition: all 0.5s;
  box-shadow: 0 0 3px #4f2c1d;
  text-align: center;
  line-height: 40px;
  cursor: pointer; }
  #back-top:hover, #back-top:focus {
    color: #b3252d;
    transition: all 0.5s;
    box-shadow: 0 0 3px #b3252d; }

/*============================================================================
	#Pagination
==============================================================================*/
.pagination {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px; }
  .pagination span.page {
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 18px;
    margin-left: 5px;
    display: inline-block;
    background: #f2f2f2; }
    .pagination span.page a {
      color: #b3252d; }
    .pagination span.page.current_page {
      color: #ef333b;
      background: #9bdbf1; }
    .pagination span.page.last_page {
      background: #ef333b; }
      .pagination span.page.last_page a {
        color: #fff; }

/*============================================================================
	#Drawers
==============================================================================*/
.drawer-wrap {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: none;
  transition: all 5s; }

.drawer {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 300px;
  height: 100vh;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 0 15px rgba(4, 4, 4, 0.4);
  transition: all .5s; }
  .drawer.drawer-left {
    left: -300px;
    border-right: #4f2c1d; }
    .drawer.drawer-left.opened-drawer {
      transform: translateX(300px);
      visibility: initial; }
  .drawer.drawer-right {
    right: -300px;
    border-left: #4f2c1d; }
    .drawer.drawer-right.opened-drawer {
      transform: translateX(-300px);
      visibility: initial; }
  .drawer .drawer__header {
    background: #9bdbf1;
    padding: 15px 10px; }
    .drawer .drawer__header .drawer__title {
      font-size: 22px;
      font-weight: 400;
      display: inline-block; }
    .drawer .drawer__header .drawer__close {
      display: inline-block;
      float: right;
      font-size: 22px;
      transition: all 0.5s; }
      .drawer .drawer__header .drawer__close:hover, .drawer .drawer__header .drawer__close:focus {
        transition: all 0.5s;
        color: #e74c3c;
        outline: none; }

/*---- Sidebar Drawer Controls for collection, article, blog pages -----*/
.sidebar-drawer__control {
  position: fixed;
  top: 50vh;
  margin-top: -20px;
  width: 20px;
  height: 40px;
  box-shadow: 0 0 1px #282828;
  line-height: 40px;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer; }
  .sidebar-drawer__control:hover, .sidebar-drawer__control:focus {
    transition: all 0.5s;
    background: #b3252d;
    color: #fff;
    outline: none; }
  .sidebar-drawer__control.sidebar-close {
    visibility: hidden; }
    .sidebar-drawer__control.sidebar-close.sidebar--opened {
      visibility: visible;
      z-index: 110; }
  .sidebar-drawer__control.sidebar-open.sidebar--opened {
    visibility: hidden; }
  .sidebar-drawer__control.sidebar--opened {
    transform: translateX(300px); }

/*============================================================================
	#Page Banner
==============================================================================*/
/* Used for template and custom page banner*/
.page-banner {
  min-height: 320px;
  height: 526px;
  background-size: cover;
  background-position: center center; }
  .page-banner .banner-overlay {
    width: 100%;
    height: 100%;
    line-height: 0;
    position: relative; }
    .page-banner .banner-overlay .page-banner__heading {
      padding: 0 15px;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: inline-block; }
      .page-banner .banner-overlay .page-banner__heading img {
        max-width: 292px; }
      .page-banner .banner-overlay .page-banner__heading .page-banner__breadcrumb .breadcrumb a, .page-banner .banner-overlay .page-banner__heading .page-banner__breadcrumb .breadcrumb span {
        color: #b3252d; }
        .page-banner .banner-overlay .page-banner__heading .page-banner__breadcrumb .breadcrumb a:last-child, .page-banner .banner-overlay .page-banner__heading .page-banner__breadcrumb .breadcrumb span:last-child {
          color: #fff; }

/*============================================================================
	#Site Header
==============================================================================*/
header {
  width: 100%; }

.sticky {
  background: #fff; }

.sticky, .sticky-overlay {
  position: fixed;
  top: 0;
  z-index: 10;
  transition: all 0.3s; }

.currency-picker__wrapper {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 30px; }
  .currency-picker__wrapper:after {
    width: 30px;
    height: 30px;
    color: white;
    text-align: center;
    font-family: FontAwesome;
    content: '\f0d7';
    margin-left: 50px;
    line-height: 30px;
    padding-right: 5px; }
  .currency-picker__wrapper select {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    color: white;
    width: 80px;
    height: 30px;
    line-height: 30px;
    padding: 0px 30px 0px 10px;
    border: none;
    box-shadow: 0 0 1px white; }

header.sticky .site-header, header.sticky-overlay .site-header {
  background: rgba(255, 255, 255, 0.01); }

header .site-topbar {
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 0;
  color: white; }
  header .site-topbar span.topbar_icon {
    color: #e74c3c;
    padding-right: 5px; }
  header .site-topbar li {
    padding-right: 10px; }
    header .site-topbar li:last-child {
      padding-right: 0; }
    header .site-topbar li a {
      color: white; }
      header .site-topbar li a:hover {
        color: #e74c3c; }

.site-header {
  z-index: 10;
  position: relative;
  background-color: white;
  padding-top: 10px;
  width: 100%;
  height: 110px; }

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  overflow-wrap: break-word; }
  .site-header__logo h1.blank__logo, .site-header__logo .blank__logo.h1 {
    font-size: 30px;
    color: #ef333b;
    margin: 0; }
  @media screen and (min-width: 993px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a img {
    display: inline-block;
    vertical-align: middle;
    max-width: 300px;
    width: 100%; }

ul.header-cart_list {
  margin-top: 40px;
  font-size: 18px;
  transition: all 0.5s; }
  ul.header-cart_list li.cart_item {
    padding: 15px 10px; }
    ul.header-cart_list li.cart_item a {
      position: relative; }
      ul.header-cart_list li.cart_item a sup#CartCount {
        position: absolute;
        top: -6px;
        left: 6px;
        width: 18px;
        height: 18px;
        line-height: 20px;
        text-align: center;
        font-size: 12px;
        display: inline-block;
        border-radius: 50%;
        background-color: #ef333b;
        color: #fff; }
      ul.header-cart_list li.cart_item a:hover sup#CartCount {
        color: #fff;
        border: 1px solid #fff; }
    @media screen and (max-width: 992px) {
      ul.header-cart_list li.cart_item {
        padding: 0px 3px; } }
  ul.header-cart_list:hover a {
    transition: all 0.5s; }

ul.header-cart_list > li {
  padding-right: 0px; }
  ul.header-cart_list > li span {
    font-size: 22px; }
  ul.header-cart_list > li:last-child {
    padding-right: 0px; }

.site-header__logo-link {
  max-width: 450px;
  margin: 0 auto; }

.site-header__cart-toggle {
  display: inline-block; }

.site-header__search {
  display: inline-block;
  max-width: 400px;
  margin-top: 15px;
  width: 100%; }

li.search-item a.search-item__button:hover {
  cursor: pointer; }

.search-bar {
  max-width: 100%; }
  @media screen and (max-width: 768px) {
    .search-bar {
      margin-left: auto;
      margin-right: auto; } }

li.account_info a:first-child {
  padding-right: 5px;
  border-right: 1px solid #ef333b; }
li.account_info a:last-child {
  padding-left: 5px; }

/*============================================================================
	#Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  margin-top: 40px; }

.site-nav, .site-nav--mobile {
  font-size: 18px;
  cursor: default;
  margin: 0 0 0 -15px; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block;
    padding: 15px; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block; }

/*================ Home to hamburger and cart that toggle drawers ================*/
.site-nav__link, .site-nav__link--left {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  color: #ef333b;
  font-weight: normal; }
  .site-nav__link:hover, .site-nav__link--left:hover, .site-nav__link:active, .site-nav__link--left:active, .site-nav__link:focus, .site-nav__link--left:focus {
    color: #b3252d;
    outline: none; }
  .site-nav__link.active, .active.site-nav__link--left {
    text-decoration: underline; }
  .site-nav__link .icon-arrow-down, .site-nav__link--left .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px; }
  .site-nav--active > .site-nav__link, .site-nav--active > .site-nav__link--left {
    font-weight: normal;
    color: #b3252d; }
  .site-nav--mobile .site-nav__link, .site-nav--mobile .site-nav__link--left {
    display: inline-block; }

@media screen and (max-width: 1200px) {
  .site-nav__link--left {
    padding: 15px 5px; } }

.site-nav--mobile {
  padding: 0px;
  margin: 0; }
  .site-nav--mobile button {
    font-size: 20px;
    padding: 0px;
    /*      @include at-query ($max, $small){
    				span.icon{
    					font-size:30px;
    				}      
    		}*/ }

/*.mobile-nav__btn{
	span{
		font-size:30px!important;
	}
}*/
/*================ Dropdowns ================*/
.site-nav__dropdown {
  background: #ef333b;
  visibility: hidden;
  /* hides sub-menu */
  opacity: 0;
  position: absolute;
  margin: 0px;
  top: 100%;
  left: 0;
  transform: translateY(-2em);
  z-index: -1;
  transition: all .3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  border-top: 1px solid #ef333b;
  color: #fff; }
  .site-nav__dropdown a.site-nav__dropdown {
    font-weight: normal; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    visibility: visible;
    /* shows sub-menu */
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    /* this removes the transition delay so the menu will be visible while the other styles transition */ }
  .site-nav__dropdown .site-nav__link, .site-nav__dropdown .site-nav__link--left {
    color: #fff; }
    .site-nav__dropdown .site-nav__link:hover, .site-nav__dropdown .site-nav__link--left:hover {
      background: #b3252d; }
  .site-nav__dropdown li:hover {
    background: #b3252d; }

/*================ Mega Menu in header ================*/
li.have-mega-menu {
  position: static; }

div.mega-menu {
  position: absolute;
  top: 100%;
  margin: 0px;
  background: initial;
  border-top: 0px;
  width: 100%; }
  div.mega-menu .mega-menu__content {
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 0 1px #ef333b;
    padding: 30px; }
    div.mega-menu .mega-menu__content .mega-menu__promotion p {
      color: #ef333b; }
    div.mega-menu .mega-menu__content .mega_link--title a {
      color: #ef333b;
      font-weight: 600; }
    div.mega-menu .mega-menu__content li {
      line-height: 2.2; }
    div.mega-menu .mega-menu__content li, div.mega-menu .mega-menu__content li a {
      color: #ef333b;
      font-size: 16px; }
      div.mega-menu .mega-menu__content li:hover, div.mega-menu .mega-menu__content li:active, div.mega-menu .mega-menu__content li:focus, div.mega-menu .mega-menu__content li.active, div.mega-menu .mega-menu__content li a:hover, div.mega-menu .mega-menu__content li a:active, div.mega-menu .mega-menu__content li a:focus, div.mega-menu .mega-menu__content li a.active {
        color: #b3252d; }

/*================ Search bar in header ================*/
.nav-search {
  position: relative;
  padding: 10px 0; }
  @media screen and (max-width: 768px) {
    .nav-search {
      padding: 0 0 15px;
      margin: 0 auto;
      text-align: center; } }

/* Cart and Account item in header*/
ul.inline-list a {
  color: #ef333b; }
  ul.inline-list a:hover, ul.inline-list a:active, ul.inline-list a:focus {
    color: #b3252d; }

/*============================================================================
 #Cart Drawer
==============================================================================*/
#CartDrawer .drawer__header {
  position: relative; }
  #CartDrawer .drawer__header .drawer__title {
    display: block; }
    #CartDrawer .drawer__header .drawer__title .icon-cart {
      color: #b3252d; }
  #CartDrawer .drawer__header .drawer__close {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; }
#CartDrawer #CartContainer {
  padding: 15px;
  height: 90vh;
  overflow-y: auto; }
#CartDrawer button#CartDrawerClose {
  font-size: 22px;
  transition: all 0.5s;
  color: #fff; }
  #CartDrawer button#CartDrawerClose:hover, #CartDrawer button#CartDrawerClose:focus {
    transition: all 0.5s;
    color: #b3252d;
    outline: none; }

.shipping-checkout-text {
  font-size: 14px;
  color: #999;
  line-height: 1.14; }

.cart__checkout {
  margin-top: 30px; }
  .cart__checkout:after {
    display: none; }

/*============================================================================
	#Mobile Nav
	- List of items inside the mobile drawer
==============================================================================*/
#NavDrawer {
  background: #ef333b;
  position: fixed;
  top: 110px;
  z-index: 999;
  display: none; }
  #NavDrawer .mobile__customer {
    display: inline-block;
    float: right;
    font-size: 22px; }
    #NavDrawer .mobile__customer a {
      padding-right: 10px; }
    #NavDrawer .mobile__customer button#mobile-nav__close {
      font-size: 22px;
      transition: all 0.5s; }
      #NavDrawer .mobile__customer button#mobile-nav__close:hover, #NavDrawer .mobile__customer button#mobile-nav__close:focus {
        transition: all 0.5s;
        color: #fff;
        outline: none; }

.mobile-nav {
  margin: 0px;
  overflow-y: auto; }
  .mobile-nav li {
    margin-bottom: 0; }

.mobile-nav__search {
  padding: 15px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }
  .mobile-nav__item:hover {
    background: #b3252d; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #fff;
  padding: 15px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #fff;
    outline: none; }

.mobile-nav__item--active {
  background: #b3252d; }
  .mobile-nav__item--active a {
    color: white !important; }

.mobile-nav__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.mobile-nav--expanded .mobile-nav__toggle-open {
  display: none; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 700px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 30px;
    font-weight: 400; }

/*============================================================================
	#Grid product
==============================================================================*/
.grid__product {
  transition: all 0.1s;
  margin-bottom: 30px;
  padding: 15px; }
  .grid__product .grid__product--image {
    position: relative; }
    .grid__product .grid__product--image img {
      width: 100%; }
    .grid__product .grid__product--image .grid__sales-label {
      position: absolute;
      top: -23px;
      right: -15px;
      color: #fff;
      width: 100%;
      padding: 10px; }
      .grid__product .grid__product--image .grid__sales-label .sales-label {
        position: relative;
        width: 46px;
        height: 46px;
        line-height: 50px;
        font-size: 14px;
        text-align: center;
        background: #9bdbf1;
        color: #b3252d;
        border-radius: 50%;
        font-weight: 600; }
        .grid__product .grid__product--image .grid__sales-label .sales-label:after {
          position: absolute;
          top: 2px;
          left: 2px;
          width: 42px;
          height: 42px;
          border: 1px solid #fff;
          border-radius: 50%;
          content: '';
          display: block; }
        .grid__product .grid__product--image .grid__sales-label .sales-label.new {
          float: right; }
        .grid__product .grid__product--image .grid__sales-label .sales-label.sale {
          float: right;
          background-color: rgba(25, 25, 25, 0.85); }
  .grid__product .grid__product-content {
    text-align: center; }
    .grid__product .grid__product-content .grid__product-title {
      font-size: 18px;
      font-weight: 400;
      min-height: 40px; }
      .grid__product .grid__product-content .grid__product-title a {
        color: #4f2c1d; }
    .grid__product .grid__product-content .grid__product-form .grid-product-submit {
      font-size: 14px;
      font-weight: normal;
      height: 30px;
      line-height: 30px;
      padding: 0 15px; }
    .grid__product .grid__product-content .grid__product-form .ro_widget {
      display: none; }
    .grid__product .grid__product-content .grid__product-price {
      font-size: 18px;
      font-weight: 600;
      color: #4f2c1d; }
      .grid__product .grid__product-content .grid__product-price span.grid__price.compare-at-price {
        font-weight: 400;
        color: rgba(79, 44, 29, 0.6);
        padding-left: 5px; }
  .grid__product .grid__image {
    transition: all 0.2s;
    display: block;
    margin: 0 auto 15px;
    transition: all 0.2s; }
    .grid__product .grid__image img {
      display: block;
      margin: 0 auto;
      transition: all 0.2s; }
  .grid__product:hover .grid__product--image img {
    transform: scale(1.1); }

.grid__product .grid__product--image .grid__sales-label .new-look {
  float: right;
  width: 55px;
  height: 55px; }

.grid__product .grid__product--image .grid__sales-label .new-look:after {
  border: none; }

/*============================================================================
	#Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 30px; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    color: #b3252d; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }
    .breadcrumb a:last-child,
    .breadcrumb span:last-child {
      color: #4f2c1d; }

/*============================================================================
	#Ajax-loader
==============================================================================*/
.loader-container {
  position: relative; }

.ajax-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85); }
  .ajax-loader .loader-image {
    position: relative;
    width: 100%;
    height: 100%; }
    .ajax-loader .loader-image img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-30px, -30px);
      width: 60px;
      height: 60px; }

/*============================================================================
	#Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 3px;
  padding: 6px 12px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: rgba(79, 44, 29, 0.6); }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #56ad6a;
  background-color: #ecfef0;
  border-color: #56ad6a; }
  .form-success a {
    color: #56ad6a;
    text-decoration: underline; }
    .form-success a:hover {
      text-decoration: none; }

.form-error,
.errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

/*============================================================================
	#Ajax Cart Styles (conditionally loaded)
==============================================================================*/
.ajaxcart__inner {
  margin-bottom: 30px; }

.ajaxcart__row > .grid, .ajaxcart__row > .grid--rev, .ajaxcart__row > .grid--full {
  margin-left: -15px; }
  .ajaxcart__row > .grid > .grid__item, .ajaxcart__row > .grid--rev > .grid__item, .ajaxcart__row > .grid--full > .grid__item {
    padding-left: 15px; }

.ajaxcart__product {
  position: relative;
  max-height: 500px; }
  .ajaxcart__product.is-removed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.ajaxcart__row {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #9bdbf1; }

.ajaxcart__product-image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px; }
  .ajaxcart__product-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.ajaxcart__product-name,
.ajaxcart__product-meta {
  display: block; }

.ajaxcart__product-name + .ajaxcart__product-meta {
  padding-top: 6px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 5px 25px;
    margin: 0; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  padding: 0 8px;
  background: none;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover, .js-qty__adjust:focus, .ajaxcart__qty-adjust:focus {
    color: #b3252d; }

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  border-left: 1px solid rgba(79, 44, 29, 0.6); }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  border-right: 1px solid rgba(79, 44, 29, 0.6); }

/*================ Quantity Selectors in Ajax Cart ================*/
.ajaxcart__qty {
  margin: 0; }
  .is-loading .ajaxcart__qty {
    opacity: 0.5;
    transition: none; }

.ajaxcart__qty-num {
  border-color: rgba(79, 44, 29, 0.6);
  color: #4f2c1d; }

.ajaxcart__qty-adjust {
  color: #4f2c1d; }

.ajaxcart__qty--plus {
  border-color: #4f2c1d; }

.ajaxcart__qty--minus {
  border-color: #4f2c1d; }

.ajaxcart-item__price-strikethrough {
  float: right; }

/* Ajax cart footer */
.ajaxcart__footer .shipping-checkout-text {
  line-height: 1.2;
  margin-top: 15px; }

/* ==================================================================
	#Search modal box
=====================================================================*/
.search-modal {
  display: none;
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100vh;
  padding: 40vh 15px 0;
  top: 0;
  left: 0; }
  .search-modal .search-modal_box {
    max-width: 480px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    padding: 15px; }
    .search-modal .search-modal_box .modal-closed, .search-modal .search-modal_box .modal_title {
      color: #ef333b; }
    .search-modal .search-modal_box .modal-closed:hover {
      cursor: pointer; }

/*===================================================================
#Custom sections
=====================================================================*/
/*------------------- Homepage sections' Background ------------*/
/* Define Section's Background Color */
/* Apply Sections' Background Color */
.shopify-section.home-brandlogo-list {
  background-color: white; }
.shopify-section.home-featured-articles {
  background-color: white; }
.shopify-section.home-featured-collections {
  background-color: white; }
.shopify-section.home-featured-products {
  background-color: white; }
.shopify-section.home-image-text {
  background-color: white; }
.shopify-section.home-newsletter {
  background-color: #f3f3f3; }
.shopify-section.welcome-to-store {
  background-color: white; }

/*------------------- Template Section -----------------------*/
.shoppers-template-section {
  padding: 45px 0; }

/*-------------------------- General -------------------------*/
.slick-dotted.slick-slider {
  margin-bottom: 0px; }

.home-section.top-padding {
  padding-top: 60px; }
.home-section.bottom-padding {
  padding-bottom: 60px; }
.home-section.vertical-both-padding {
  padding: 60px 0; }
.home-section.no-padding {
  padding: 0; }

.section-header {
  margin-bottom: 30px; }

@media screen and (min-width: 992px) {
  .section-header {
    display: table;
    width: 100%; }

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1, .section-header__left h2, .section-header__left .h2, .section-header__left h3, .section-header__left .h3, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .h3, .section-header__left .h4 {
      margin-bottom: 0; }

  .section-header__right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px; } }
  @media screen and (min-width: 992px) and (max-width: 768px) {
    .section-header__right {
      margin-bottom: 30px; } }

.section-header__title {
  margin-bottom: 0;
  font-weight: 600; }

hr.section-title_split {
  width: 80px;
  display: inline-block;
  border-width: 2px 0 0;
  border-top: 2px solid #b3252d;
  margin: 10px 0px 0px; }

.blank_image--placeholder {
  background-color: rgba(224, 221, 221, 0.5); }

.btn.section-button, .section-button.btn--secondary {
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  font-weight: normal; }
  .btn.section-button:after, .section-button.btn--secondary:after {
    margin-left: 15px;
    font-family: FontAwesome;
    content: '\f101'; }

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  border-radius: 50%;
  color: #b3252d;
  background: rgba(230, 230, 230, 0.8);
  text-align: center;
  cursor: pointer; }
  .slide-nav.nav-prev {
    left: 15px; }
  .slide-nav.nav-next {
    right: 15px; }

/*---------------- Homepage section - Hero Banner Parallax --------------------------*/
.hero-banner-parallax .hero-banner-parallax_overlay {
  width: 100%;
  height: -webkit-fill-available;
  /* position:relative */ }
.hero-banner-parallax .hero-parallax-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%); }
  .hero-banner-parallax .hero-parallax-content .hero-parallax-texts {
    display: inline-block; }
  .hero-banner-parallax .hero-parallax-content .hero-parallax_main-heading {
    font-size: 70px;
    max-width: 400px; }
    @media screen and (max-width: 480px) {
      .hero-banner-parallax .hero-parallax-content .hero-parallax_main-heading {
        font-size: 38px;
        margin-bottom: 10px; } }
  .hero-banner-parallax .hero-parallax-content .hero-parallax-new-label {
    font-size: 24px;
    color: #ef333b;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 3px; }
    .hero-banner-parallax .hero-parallax-content .hero-parallax-new-label:before, .hero-banner-parallax .hero-parallax-content .hero-parallax-new-label:after {
      width: 80px;
      content: '';
      display: inline-block;
      background: #ef333b;
      height: 1px;
      margin: auto 10px 7px 10px; }
    @media screen and (max-width: 480px) {
      .hero-banner-parallax .hero-parallax-content .hero-parallax-new-label {
        margin-bottom: 5px; } }
  .hero-banner-parallax .hero-parallax-content .parallax-sub-heading {
    padding: 0 15px;
    margin-bottom: 60px; }
    .hero-banner-parallax .hero-parallax-content .parallax-sub-heading img {
      min-width: 300px;
      margin: 0 auto; }
      @media screen and (max-width: 480px) {
        .hero-banner-parallax .hero-parallax-content .parallax-sub-heading img {
          min-width: 300px; } }
    @media screen and (max-width: 480px) {
      .hero-banner-parallax .hero-parallax-content .parallax-sub-heading {
        margin-bottom: 30px; } }
  @media screen and (max-width: 480px) {
    .hero-banner-parallax .hero-parallax-content {
      top: 120px;
      transform: translateY(0); } }

/*---------------- Shoppers' Homepage section - Home Image Text ---------------------*/
.image-with-text {
  position: relative; }
  .image-with-text .image-text-character {
    position: absolute;
    right: 0;
    top: 30px; }
  .image-with-text .heading_main-header {
    max-width: 1170px;
    margin: 60px auto;
    padding: 0 15px;
    font-size: 60px;
    line-height: normal; }
    @media screen and (max-width: 768px) {
      .image-with-text .heading_main-header {
        font-size: 36px; } }
  .image-with-text .image-with-text_item {
    padding: 30px 0;
    position: relative; }
    .image-with-text .image-with-text_item .block-image {
      line-height: 0px; }
      @media screen and (max-width: 768px) {
        .image-with-text .image-with-text_item .block-image {
          padding: 0 30px; } }
      @media screen and (min-width: 769px) {
        .image-with-text .image-with-text_item .block-image.left-image {
          padding-left: 30px; } }
      @media screen and (min-width: 769px) {
        .image-with-text .image-with-text_item .block-image.right-image {
          padding-right: 30px; } }
    .image-with-text .image-with-text_item .block-text {
      padding: 30px 0; }
      @media screen and (min-width: 769px) {
        .image-with-text .image-with-text_item .block-text {
          position: absolute;
          width: 100%;
          top: 50%;
          transform: translateY(-50%); }
          .image-with-text .image-with-text_item .block-text .right-image {
            padding-right: 35px; }
          .image-with-text .image-with-text_item .block-text .left-image {
            padding-left: 65px; } }
      .image-with-text .image-with-text_item .block-text .block-text_title {
        position: relative;
        font-size: 48px;
        line-height: 48px;
        padding-bottom: 24px;
        border-bottom: 1px solid #9bdbf1; }
        .image-with-text .image-with-text_item .block-text .block-text_title.with-character {
          padding-right: 90px; }
          .image-with-text .image-with-text_item .block-text .block-text_title.with-character img.image-text-item-character {
            max-width: 90px;
            position: absolute;
            bottom: 0;
            right: 0; }
        @media screen and (max-width: 768px) {
          .image-with-text .image-with-text_item .block-text .block-text_title {
            font-size: 36px; }
            .image-with-text .image-with-text_item .block-text .block-text_title.with-character {
              padding: 0px; } }
      .image-with-text .image-with-text_item .block-text .btn.section-button, .image-with-text .image-with-text_item .block-text .section-button.btn--secondary {
        margin-top: 10px; }

/*------ Shoppers' Home section - home-featured-collections ----*/
.home-featured-collections .block-collection_slider-wrapper {
  position: relative;
  padding-bottom: 40px; }
  .home-featured-collections .block-collection_slider-wrapper .slide-nav {
    top: 40%; }
  .home-featured-collections .block-collection_slider-wrapper:first-child {
    padding-top: 60px; }

/*--------------- Home page section - home-banner-parallax --------------*/
.home-banner-parallax {
  padding: 10px 0; }
  .home-banner-parallax .parallax_overlay-wrapper {
    height: 100%;
    border-top: 4px double #fff;
    border-bottom: 4px double #fff; }
    .home-banner-parallax .parallax_overlay-wrapper .parallax_overlay-characters {
      height: 100%;
      position: relative; }
      .home-banner-parallax .parallax_overlay-wrapper .parallax_overlay-characters .parallax_character {
        z-index: 5; }

.hero-parallax-bg-image {
  /*min-height:800px;*/
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

#hero-parallax-heading-container {
  z-index: 9;
  position: absolute;
  top: 55%;
  left: 55%;
  width: 550px;
  transform: translateY(-50%);
  text-align: center;
  padding-bottom: 30px; }

#hero-parallax-heading-text {
  font-size: 50px; }

#hero-sub-heading-image {
  z-index: 10;
  position: absolute;
  /*top: 50%;
  left: 0;*/
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  padding-top: 22%; }

/*--------------- Home page section - Press sections --------------------*/
.page-section__press {
  position: relative;
  padding: 30px 0; }
  .page-section__press .press-section-character {
    max-width: 180px;
    position: absolute;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; }
  .page-section__press .press-blocks {
    padding: 60px 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    border-top: 6px double #fff;
    border-bottom: 6px double #fff; }
    .page-section__press .press-blocks .press-section-content {
      position: relative; }
      .page-section__press .press-blocks .press-section-content .press-section-title {
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translateX(-50%); }
    .page-section__press .press-blocks .press-blocks_container .slideshow_item .press-block__item {
      max-width: 250px;
      padding: 0 15px;
      margin: 0 auto; }
      .page-section__press .press-blocks .press-blocks_container .slideshow_item .press-block__item .press-block_icon {
        border-bottom: 2px solid #fff;
        padding: 10px; }
        .page-section__press .press-blocks .press-blocks_container .slideshow_item .press-block__item .press-block_icon img {
          max-width: 160px;
          margin: 0 auto;
          width: 100%; }
      .page-section__press .press-blocks .press-blocks_container .slideshow_item .press-block__item .press-block_content {
        font-size: 14px;
        padding-top: 30px; }
        .page-section__press .press-blocks .press-blocks_container .slideshow_item .press-block__item .press-block_content a {
          color: #fff; }
    .page-section__press .press-blocks .press_section-btn {
      padding-top: 60px; }
    @media screen and (max-width: 480px) {
      .page-section__press .press-blocks {
        padding: 45px 0; }
        .page-section__press .press-blocks .press-section-content .press-section-title {
          top: -60px; } }

/*----------- Instagram Section-------------*/
.home-section-instagram .instagram-header {
  transition: all 0.15s;
  background-color: #ef333b;
  color: #fdfdfd; }
  .home-section-instagram .instagram-header .instagram-header_overlay {
    position: relative;
    padding: 15px; }
    .home-section-instagram .instagram-header .instagram-header_overlay h3, .home-section-instagram .instagram-header .instagram-header_overlay .h3 {
      font-size: 45px; }
    .home-section-instagram .instagram-header .instagram-header_overlay .insta-icon {
      position: relative; }
      .home-section-instagram .instagram-header .instagram-header_overlay .insta-icon span.fa {
        transition: all 0.15s;
        position: relative;
        font-size: 34px;
        padding: 15px;
        background: #ef333b;
        position: relative;
        z-index: 3; }
      .home-section-instagram .instagram-header .instagram-header_overlay .insta-icon:after {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        content: '';
        border-top: 2px solid #fff;
        width: 100%;
        margin: auto;
        transform: translateX(-50%);
        max-width: 216px; }
    .home-section-instagram .instagram-header .instagram-header_overlay:after {
      transition: all 0.15s;
      position: absolute;
      display: block;
      content: '';
      width: 30px;
      height: 30px;
      border-style: solid;
      border-width: 30px 0 30px 30px;
      border-color: transparent transparent transparent #ef333b;
      right: -30px;
      z-index: 3;
      top: 50%;
      transform: translateY(-50%); }
  .home-section-instagram .instagram-header:hover {
    background: #b3252d; }
    .home-section-instagram .instagram-header:hover .instagram-header_overlay:after {
      border-color: transparent transparent transparent #b3252d; }
    .home-section-instagram .instagram-header:hover .insta-icon span.fa {
      background: #b3252d; }
.home-section-instagram .grid--table .grid__item {
  padding: 0px; }

/*============================================================================
	#Product Page
==============================================================================*/
/* Product TiTle*/
.single-product__heading {
  position: relative;
  margin: 70px 0px 74px 0px; }
  .single-product__heading .product-single__title {
    font-size: 55px;
    line-height: 63px;
    font-weight: 500; }
  .single-product__heading .product-heading.type {
    position: relative;
    color: #ef333b;
    background-color: #fff;
    line-height: 24px;
    margin-bottom: 0px;
    font-weight: 600;
    display: inline-block;
    padding: 0 10px; }
  .single-product__heading img.product-single-character {
    position: absolute;
    max-width: 192px;
    right: 0;
    bottom: -38px; }
  .single-product__heading:before {
    width: 100%;
    height: 2px;
    background-color: #9bdbf1;
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: 15px; }
  @media screen and (max-width: 481px) {
    .single-product__heading {
      margin: 0 0 20px 0px; } }

/* New product Quantity selector */
.product-detail {
  position: relative; }
  .product-detail .spr-badge {
    position: absolute;
    top: 15px;
    right: 0px;
    text-align: right; }
    .product-detail .spr-badge .spr-starrating {
      display: block; }

.product-quantity {
  margin-bottom: 15px;
  display: inline-block; }
  .product-quantity label {
    display: block;
    margin-bottom: 5px; }
  .product-quantity .quantity-wrap {
    display: inline-block;
    position: relative; }
    .product-quantity .quantity-wrap input[name=quantity] {
      text-align: center;
      width: 100px;
      height: 35px;
      padding: 5px 0px;
      line-height: 35px; }
      .product-quantity .quantity-wrap input[name=quantity]:focus {
        border: 1px solid rgba(79, 44, 29, 0.6); }
    .product-quantity .quantity-wrap span.qty-control {
      position: absolute;
      top: 0;
      text-align: center;
      height: 35px;
      width: 30px;
      line-height: 35px;
      font-size: 24px;
      cursor: pointer;
      transition: all 0.5s; }
      .product-quantity .quantity-wrap span.qty-control.minus {
        border-right: 1px solid rgba(79, 44, 29, 0.6);
        left: 0; }
      .product-quantity .quantity-wrap span.qty-control.plus {
        border-left: 1px solid rgba(79, 44, 29, 0.6);
        right: 0; }
      .product-quantity .quantity-wrap span.qty-control:hover {
        transition: all 0.5s;
        background: #ef333b;
        color: white;
        border: none; }

/* forzen product form*/
.froze-product-form .froze-form_item {
  margin: 30px 0; }
  .froze-product-form .froze-form_item p {
    margin-bottom: 10px; }
  .froze-product-form .froze-form_item a.request-form-btn {
    font-size: 18px;
    font-weight: normal;
    padding: 0 15px;
    height: 45px;
    line-height: 45px; }
    .froze-product-form .froze-form_item a.request-form-btn:after {
      margin-left: 10px;
      font-size: 14px;
      font-family: FontAwesome;
      content: '\f101'; }

#shopify-section-product-template.shopify-section {
  padding-top: 30px; }

.slick-slide {
  outline: none !important; }

.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

/* Product thumb Image's style*/
.product-single__photos a, .product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0 auto; }
.product-single__photos li img.product_thumb-item,
.product-single__thumbnails li img.product_thumb-item {
  opacity: 0.5; }
.product-single__photos li.slick-current img.product_thumb-item,
.product-single__thumbnails li.slick-current img.product_thumb-item {
  opacity: 1; }

/*Product main images's css */
.product-single__photos {
  position: relative;
  width: 100%;
  text-align: center;
  margin: auto; }
  .product-single__photos span.photo--slide_control {
    position: absolute;
    z-index: 100;
    top: 45%;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    color: #fff; }
    .product-single__photos span.photo--slide_control:hover {
      background: rgba(0, 0, 0, 0.6);
      cursor: pointer; }
    @media screen and (max-width: 480px) {
      .product-single__photos span.photo--slide_control {
        padding: 10px;
        font-size: 16px; } }
    .product-single__photos span.photo--slide_control.control--left {
      left: 0px; }
    .product-single__photos span.photo--slide_control.control--right {
      right: 0px; }
  .product-single__photos .product_main_image {
    max-width: 100%; }
  .product-single__photos ul.slick-dots li button:before {
    font-size: 16px; }
  .product-single__photos img.product-zoom_image {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none; }

/* Single Product Page Middle bar */
.single-product_middle-bar {
  margin: 60px 0px;
  padding: 60px 0px;
  background-color: #9bdbf1;
  position: relative; }
  .single-product_middle-bar .middle-bar_sideimage {
    position: absolute;
    left: 0;
    bottom: -226px;
    z-index: 9; }
  .single-product_middle-bar .middle-bar__title {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 400; }
  .single-product_middle-bar .nutrition-btn {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    padding: 0 15px;
    font-weight: normal;
    background-color: #ef333b; }
    .single-product_middle-bar .nutrition-btn:after {
      margin-left: 10px;
      font-size: 14px;
      font-family: FontAwesome;
      content: '\f101'; }
    .single-product_middle-bar .nutrition-btn:hover {
      background-color: #b3252d; }
    @media screen and (max-width: 480px) {
      .single-product_middle-bar .nutrition-btn {
        font-size: 14px;
        padding: 0 10px; } }

/* Product detail */
@media screen and (max-width: 992px) {
  .product-detail {
    margin-top: 30px; } }
.product-single__title {
  color: #4f2c1d;
  font-weight: 600;
  margin-bottom: 0px; }

p.vendor {
  font-size: 16px; }

.product-single__price {
  margin: 15px 0px;
  color: #4f2c1d; }
  .product-single__price span.regular-product-price {
    display: inline-block;
    color: #4f2c1d;
    font-weight: 600;
    font-size: 50px; }
  .product-single__price span.compare-at {
    font-size: 24px;
    color: rgba(79, 44, 29, 0.6); }
  .product-single__price .product_weight {
    font-size: 18px; }

button.product-single__cart-btn {
  min-width: 200px;
  height: 35px;
  padding: 0px;
  font-size: 18px;
  font-weight: normal;
  line-height: 35px;
  color: white;
  background-color: #ef333b;
  box-shadow: 0px 0px 2px #cccccc; }
  button.product-single__cart-btn:hover, button.product-single__cart-btn:focus {
    background-color: #b3252d;
    outline: none; }
  button.product-single__cart-btn[disabled]:hover, button.product-single__cart-btn[disabled]:focus {
    background-color: #e6e6e6; }

a.product-single__view-cart {
  width: 35px;
  height: 33px;
  line-height: 33px;
  box-shadow: 0 0 1px #4f2c1d;
  padding: 0px;
  text-align: center;
  color: #ef333b;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s; }
  a.product-single__view-cart:hover, a.product-single__view-cart:focus {
    transition: all 0.5s;
    background: #ef333b;
    color: white; }

.product_collection-list, .product_tag-lists {
  line-height: 1;
  margin-bottom: 15px; }
  .product_collection-list label, .product_tag-lists label {
    color: #b3252d;
    margin-right: 10px; }
  .product_collection-list a, .product_collection-list span, .product_tag-lists a, .product_tag-lists span {
    margin-right: 5px;
    color: #4f2c1d; }

div.single_product-social {
  display: inline-block;
  margin-bottom: 15px; }
  div.single_product-social a.share__link {
    font-size: 18px;
    margin-right: 10px;
    color: #4f2c1d; }
    div.single_product-social a.share__link:hover {
      color: #b3252d; }

/* ---------- Product page- review section ----------*/
.product-review {
  position: relative;
  background-color: #fff;
  position: relative;
  padding: 0px 0; }
  .product-review .spr-badge {
    line-height: 1.1;
    margin-top: -30px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px; }
    .product-review .spr-badge .spr-badge-caption {
      display: block; }
  .product-review .section-split {
    max-width: 300px;
    margin: auto;
    height: 2px;
    background-color: #4f2c1d;
    margin-bottom: 15px; }
  .product-review .product-review_character {
    position: absolute;
    top: -136px;
    left: 50%;
    margin-left: -81px;
    z-index: 5; }
  .product-review .review-content__wrapper {
    border-top: 6px solid #9bdbf1;
    border-bottom: 6px solid #9bdbf1;
    border-style: double;
    border-left: 0px;
    border-right: 0px;
    height: -webkit-fill-available;
    padding: 30px 0px; }
    .product-review .review-content__wrapper .review-section_content img {
      margin-bottom: 0px; }
    .product-review .review-content__wrapper .review-section_content .review-text {
      margin-bottom: 45px; }
    .product-review .review-content__wrapper .review-section_content .first-review {
      color: #fff;
      margin-bottom: 0px; }
    .product-review .review-content__wrapper .review-section_content .no-review {
      font-size: 24px;
      font-weight: 600;
      margin-top: 15px; }
    .product-review .review-content__wrapper .review-section_content .review-btn {
      height: 45px;
      line-height: 45px;
      padding: 0 15px;
      font-size: 14px;
      margin-bottom: 15px;
      font-weight: normal; }
      .product-review .review-content__wrapper .review-section_content .review-btn:after {
        margin-left: 10px;
        font-size: 14px;
        font-family: FontAwesome;
        content: '\f101'; }
  .product-review .product-reviews .spr-reviews {
    margin-top: 0px; }
    .product-review .product-reviews .spr-reviews .spr-review {
      border: none;
      margin-top: 0px;
      padding-bottom: 0px; }
      .product-review .product-reviews .spr-reviews .spr-review .spr-review-header .spr-review-header-title {
        font-size: 20px;
        font-weight: 600; }
      .product-review .product-reviews .spr-reviews .spr-review .spr-review-header .spr-review-header-byline {
        font-style: normal;
        color: #4f2c1d;
        opacity: 1; }
      .product-review .product-reviews .spr-reviews .spr-review .spr-review-content .spr-review-content-body {
        font-size: 14px; }
    .product-review .product-reviews .spr-reviews .spr-pagination {
      border: none; }
      .product-review .product-reviews .spr-reviews .spr-pagination .spr-pagination-page a {
        color: #ef333b; }
      .product-review .product-reviews .spr-reviews .spr-pagination .spr-pagination-page.is-active {
        color: #fff; }
  @media screen and (max-width: 992px) {
    .product-review {
      margin-top: 140px; } }

/* product review popup*/
.product-review-popup {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 50vh;
  padding-left: 30px;
  padding-right: 30px;
  top: 0;
  left: 0;
  display: none; }
  .product-review-popup .review-content {
    position: relative;
    background-color: #fff;
    max-width: 750px;
    margin: 0 auto;
    overflow-y: auto;
    transform: translateY(-50%);
    padding: 30px;
    min-height: 250px;
    max-height: 60vh;
    position: relative; }
    .product-review-popup .review-content #close-review-popup {
      font-size: 14px;
      width: 24px;
      height: 24px;
      text-align: center;
      line-height: 24px;
      background-color: #333;
      border-radius: 50%;
      position: absolute;
      top: 5px;
      right: 5px;
      color: #fff;
      cursor: pointer; }

/*-------------- product-description block -------------*/
@media screen and (min-width: 769px) {
  .description_content {
    padding-right: 35px; }

  .preparation_content {
    /* padding-left: 35px;*/ } }
/* ---------- Product recipes section -------*/
.recipes-wrapper {
  position: relative; }
  .recipes-wrapper .recipes-character {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -120px;
    z-index: 1; }
  .recipes-wrapper .recipe-nav {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 50%;
    color: #b3252d;
    background: rgba(230, 230, 230, 0.8);
    text-align: center;
    cursor: pointer; }
    .recipes-wrapper .recipe-nav.nav-prev {
      left: 15px; }
    .recipes-wrapper .recipe-nav.nav-next {
      right: 15px; }

#product-recipes .recipe_block {
  position: relative;
  line-height: 1; }
  #product-recipes .recipe_block .recipe-placeholder {
    background: rgba(0, 0, 0, 0.3); }
  #product-recipes .recipe_block .recipe_content {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%); }
    #product-recipes .recipe_block .recipe_content .recipe-content_box {
      position: relative;
      background: #fff;
      padding: 30px;
      margin-right: 30px; }
      #product-recipes .recipe_block .recipe_content .recipe-content_box:after {
        position: absolute;
        top: 50%;
        right: -30px;
        margin-top: -30px;
        content: '';
        background: transparent;
        width: 30px;
        height: 60px;
        border-left: 30px solid #fff;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent; }
      #product-recipes .recipe_block .recipe_content .recipe-content_box .recipe_product_title {
        color: #ef333b;
        border-bottom: 2px solid #d6cbd0; }
      #product-recipes .recipe_block .recipe_content .recipe-content_box .recipe-title {
        font-size: 30px;
        margin-bottom: 15px; }
      #product-recipes .recipe_block .recipe_content .recipe-content_box p {
        line-height: 1.6; }
    @media screen and (max-width: 480px) {
      #product-recipes .recipe_block .recipe_content {
        top: auto;
        bottom: 45px;
        transform: initial; }
        #product-recipes .recipe_block .recipe_content .recipe-content_box {
          margin-right: 0px; }
          #product-recipes .recipe_block .recipe_content .recipe-content_box:after {
            width: 60px;
            height: 30px;
            border-bottom: 30px solid #fff;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
            margin-top: 0px;
            top: -45px;
            left: 50%;
            margin-left: -30px; } }

/* ---------- related Product ---------------*/
.related-products .related-products__title {
  font-size: 45px;
  border-bottom: 2px solid #9bdbf1; }
.related-products .grid-product__item {
  vertical-align: bottom; }

/*============================================================================
	#Collection List item
==============================================================================*/
.collection-list-item {
  /*margin-bottom: 60px;*/ }
  .collection-list-item .collection-list_heading {
    border-bottom: 2px solid #9bdbf1;
    margin-bottom: 45px; }
    .collection-list-item .collection-list_heading .collection-list_title {
      font-size: 48px;
      margin-bottom: 10px;
      font-weight: 400;
      line-height: 1.2; }
    .collection-list-item .collection-list_heading .collection-list_des {
      margin-bottom: 15px; }
    .collection-list-item .collection-list_heading .collection-list_heading .p1 {
      text-align: center; }
  .collection-list-item .collection-items-wrapper {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap; }
    .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-fifth {
      -ms-flex: 1 1 20%;
      -moz-flex: 1 1 20%;
      -webkit-flex: 1 1 20%;
      max-width: 20%; }
      @media screen and (max-width: 1200px) {
        .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-fifth {
          -ms-flex: 1 1 25%;
          -moz-flex: 1 1 25%;
          -webkit-flex: 1 1 25%;
          max-width: 25%; } }
      @media screen and (max-width: 768px) {
        .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-fifth {
          -ms-flex: 1 1 33.33333%;
          -moz-flex: 1 1 33.33333%;
          -webkit-flex: 1 1 33.33333%;
          max-width: 33.333333%; } }
      @media screen and (max-width: 481px) {
        .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-fifth {
          -ms-flex: 1 1 50%;
          -moz-flex: 1 1 50%;
          -webkit-flex: 1 1 50%;
          max-width: 50%; } }
    .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-quarter {
      -ms-flex: 1 1 25%;
      -moz-flex: 1 1 25%;
      -webkit-flex: 1 1 25%;
      max-width: 25%; }
      @media screen and (max-width: 768px) {
        .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-quarter {
          -ms-flex: 1 1 33.33333%;
          -moz-flex: 1 1 33.33333%;
          -webkit-flex: 1 1 33.33333%;
          max-width: 33.333333%; } }
      @media screen and (max-width: 481px) {
        .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-quarter {
          -ms-flex: 1 1 50%;
          -moz-flex: 1 1 50%;
          -webkit-flex: 1 1 50%;
          max-width: 50%; } }
    .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-third {
      -ms-flex: 1 1 33.33333%;
      -moz-flex: 1 1 33.33333%;
      -webkit-flex: 1 1 33.33333%;
      max-width: 33.333333%; }
      @media screen and (max-width: 481px) {
        .collection-list-item .collection-items-wrapper .collection-item-wrapper.one-third {
          -ms-flex: 1 1 50%;
          -moz-flex: 1 1 50%;
          -webkit-flex: 1 1 50%;
          max-width: 50%; } }

/*============================================================================
	#Collection Page
==============================================================================*/
@media screen and (max-width: 481px) {
  div[data-section-type="collection"] {
    padding-top: 90px; }
    div[data-section-type="collection"] .page-banner {
      display: none; } }

.collection-container .no_clear {
  clear: initial !important; }
.collection-container .ajax-loader {
  display: none;
  position: static;
  width: 100%;
  height: 30vh; }

.collection-statebar {
  margin-bottom: 15px;
  box-shadow: 0 0 1px rgba(79, 44, 29, 0.6);
  padding: 5px 0px; }
  .collection-statebar .view-title p {
    padding: 10px 0;
    margin-bottom: 0px; }
  .collection-statebar .view-bar select {
    border: none;
    box-shadow: 0 0 1px rgba(79, 44, 29, 0.6); }
  .collection-statebar .view-bar .collection-view {
    display: inline-block; }
    .collection-statebar .view-bar .collection-view .change-view {
      display: inline-block;
      float: initial; }
  @media screen and (max-width: 768px) {
    .collection-statebar {
      display: block; }
      .collection-statebar .view-title, .collection-statebar .view-bar {
        display: block; } }

/*-- ----------------#Collection Sidebar---------------------*/
#collection-sidebar_drawer {
  overflow-y: auto;
  padding: 30px 15px 15px; }

.collection-sidebar {
  /*- Collection sidebar featured Image -*/ }
  .collection-sidebar .sidebar-heading {
    margin: 0px;
    padding: 15px;
    background: rgba(79, 44, 29, 0.1);
    border-bottom: 1px solid rgba(79, 44, 29, 0.1);
    font-weight: 600;
    font-size: 18px; }
  .collection-sidebar hr.sidebar-heading__split {
    margin: 10px 0 20px;
    width: 30%;
    border-color: rgba(79, 44, 29, 0.3); }
  .collection-sidebar .collection-sidebar__block {
    margin-bottom: 30px;
    box-shadow: 0 0 1px rgba(79, 44, 29, 0.6); }
    .collection-sidebar .collection-sidebar__block.collections li.filter_collection {
      margin: 0px; }
      .collection-sidebar .collection-sidebar__block.collections li.filter_collection a {
        display: block;
        padding: 10px;
        transition: all 0.5s; }
        .collection-sidebar .collection-sidebar__block.collections li.filter_collection a:hover, .collection-sidebar .collection-sidebar__block.collections li.filter_collection a.active {
          background-color: #ef333b;
          color: white; }
        .collection-sidebar .collection-sidebar__block.collections li.filter_collection a span {
          float: right;
          padding-top: 5px; }
    .collection-sidebar .collection-sidebar__block.filter-selections .filter-content {
      padding: 10px; }
      .collection-sidebar .collection-sidebar__block.filter-selections .filter-content form.price-filter {
        margin: 0 5px; }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content form.price-filter .price-filter-range {
          width: 100%;
          height: 5px;
          display: inline-block;
          background: #4f2c1d; }
          .collection-sidebar .collection-sidebar__block.filter-selections .filter-content form.price-filter .price-filter-range .ui-slider-range {
            background: #b3252d; }
          .collection-sidebar .collection-sidebar__block.filter-selections .filter-content form.price-filter .price-filter-range .ui-slider-handle {
            height: 15px;
            width: 15px;
            border-radius: 50%; }
      .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter {
        margin-bottom: 20px; }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sidebar-sub_heading {
          font-size: 16px;
          font-weight: 600; }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter hr.sub-heading__split {
          width: 90px;
          margin: 5px 0 15px 0;
          border-color: rgba(79, 44, 29, 0.3); }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-color-swatch {
          display: inline-block;
          width: 30px;
          height: 30px;
          border: 2px solid #d3d3d3;
          padding-top: 2px;
          text-align: center;
          border-radius: 50%;
          transition: all 0.5s; }
          .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-color-swatch span {
            display: inline-block;
            width: 20px;
            height: 20px;
            background-color: #d3d3d3;
            border-radius: 50px;
            border: 1px solid rgba(79, 44, 29, 0.6);
            box-sizing: content-box;
            transition: all 0.5s; }
          .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-color-swatch.active {
            border: 2px solid #b3252d; }
          @media screen and (min-width: 1024px) {
            .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-color-swatch:hover {
              border: 2px solid #b3252d; } }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__swatch {
          display: inline-block;
          min-width: 40px;
          padding: 0 5px;
          text-align: center;
          margin: 0 7px 7px 0;
          box-shadow: 0 0 1px #4f2c1d;
          transition: all 0.5s; }
          .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__swatch.active {
            background-color: #ef333b;
            color: #fdfdfd;
            box-shadow: initial; }
          @media screen and (min-width: 1024px) {
            .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__swatch:hover {
              background-color: #ef333b;
              color: #fdfdfd;
              box-shadow: initial; } }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__tag a {
          display: inline-block;
          line-height: 1;
          min-width: 40px;
          padding: 3px 10px;
          text-align: center;
          border-radius: 20px;
          background: #ef333b;
          color: #fdfdfd;
          transition: all 0.5s; }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__tag:hover a, .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__tag.active a {
          background: #ef333b;
          color: white;
          transition: all 0.5s; }
        .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__vendor.active a, .collection-sidebar .collection-sidebar__block.filter-selections .filter-content .sub-filter .sub-filter__content .collection-filter__type.active a {
          color: #b3252d; }
  .collection-sidebar .collection-featured_products .collection-featured_product {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.1); }
    .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-image {
      padding-right: 10px;
      line-height: 1;
      overflow: hidden; }
      .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-image img {
        transition: all 0.8s; }
        .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-image img:hover {
          transform: scale(1.05);
          transition: all 0.8s;
          opacity: 0.9; }
    .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-detail .co_fea--title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 0px;
      line-height: 1.3; }
    .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-detail .co_fea-reg-price {
      color: #b3252d;
      padding-right: 10px; }
    .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-detail .co_fea-compare-price {
      color: rgba(79, 44, 29, 0.6); }
    .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-detail .spr-starrating {
      color: #b3252d; }
    .collection-sidebar .collection-featured_products .collection-featured_product .co_fea-detail .spr-badge-caption {
      display: none; }
  .collection-sidebar .collection_sidebar--promotion {
    position: relative; }
    .collection-sidebar .collection_sidebar--promotion .collection-promotion {
      line-height: 0;
      background: #000;
      position: relative; }
      .collection-sidebar .collection_sidebar--promotion .collection-promotion img {
        opacity: 0.7;
        width: 100%; }
      .collection-sidebar .collection_sidebar--promotion .collection-promotion .collection-promotion_caption {
        position: absolute;
        width: 100%;
        top: 50%;
        margin-top: 20px;
        text-align: center; }
        .collection-sidebar .collection_sidebar--promotion .collection-promotion .collection-promotion_caption .caption-title {
          font-weight: 600;
          color: #fff; }
        .collection-sidebar .collection_sidebar--promotion .collection-promotion .collection-promotion_caption a {
          color: #fff;
          transition: all 0.5s; }
          .collection-sidebar .collection_sidebar--promotion .collection-promotion .collection-promotion_caption a:hover {
            color: #b3252d;
            transition: all 0.5s; }
          .collection-sidebar .collection_sidebar--promotion .collection-promotion .collection-promotion_caption a:after {
            font-family: FontAwesome;
            margin-left: 5px;
            content: '\f178';
            font-weight: 600;
            color: #b3252d; }
    .collection-sidebar .collection_sidebar--promotion .slide-control {
      position: absolute;
      top: 20px;
      right: 15px;
      padding: 2px;
      color: #fff; }
      .collection-sidebar .collection_sidebar--promotion .slide-control .slide-nav {
        opacity: 0;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.8s; }
        .collection-sidebar .collection_sidebar--promotion .slide-control .slide-nav.nav-left {
          margin-right: 10px; }
        .collection-sidebar .collection_sidebar--promotion .slide-control .slide-nav:hover {
          transform: scale(1.1);
          transition: all 0.8s; }
    .collection-sidebar .collection_sidebar--promotion:hover .slide-nav {
      animation-duration: 0.8s;
      opacity: 1;
      transform: translate(0); }
      .collection-sidebar .collection_sidebar--promotion:hover .slide-nav.nav-left {
        animation-name: fadeInRight; }
      .collection-sidebar .collection_sidebar--promotion:hover .slide-nav.nav-right {
        animation-name: fadeInLeft; }

/*-------------- Collection Pagination ------------------------*/
#collection-pagination {
  padding: 15px 0;
  text-align: center; }
  #collection-pagination a {
    text-align: center;
    padding: 10px;
    color: #4f2c1d;
    transition: all 0.5s;
    cursor: pointer;
    display: inline-block; }
    #collection-pagination a:hover {
      color: #b3252d;
      transition: all 0.5s; }
    #collection-pagination a.jp-disabled {
      display: none; }
    #collection-pagination a.jp-current {
      border: 1px solid #b3252d; }

/*------------------ product-list-item --------------------*/
.product-list-item {
  padding-top: 15px; }
  .product-list-item .list-product__detail .list-product__price span.list-compare__price {
    padding-left: 15px;
    color: rgba(79, 44, 29, 0.6);
    font-weight: 400; }

/*============================================================================
	#Cart Page
==============================================================================*/
.cart__content {
  margin-top: 30px;
  padding: 45px 0; }
  .cart__content .cart_title {
    font-size: 55px;
    padding-bottom: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid #9bdbf1; }
  .cart__content.line_item--title {
    margin-bottom: 0px; }

.cart-items_wrapper {
  max-width: 969px;
  margin: auto; }

.cart__row {
  position: relative;
  padding-top: 30px;
  border-bottom: 1px solid #9bdbf1; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

.cart-submit {
  border: 0; }

.cart-table th {
  font-weight: 400; }
.cart-table td,
.cart-table th {
  border: none; }

@media screen and (min-width: 993px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

.cart__subtotal {
  margin: 0 0 0 10px;
  display: inline; }

.cart__mini-labels {
  display: block;
  margin: 10px 0;
  font-size: 12px; }
  @media screen and (min-width: 993px) {
    .cart__mini-labels {
      display: none; } }

.cart__remove {
  display: block; }

.cart_subtotal-wrapper {
  font-size: 30px; }
  .cart_subtotal-wrapper .cart__subtotal {
    font-size: 30px; }

.shipping_at_checkout {
  color: #999;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 45px;
  font-weight: normal; }

.update-cart, .checkout-btn {
  height: 45px;
  font-size: 16px;
  line-height: 45px;
  padding: 0 15px;
  margin-bottom: 15px;
  font-weight: normal; }

.update-cart {
  background: #f5f5f5;
  color: #b3252d;
  transition: all 0.3s;
  margin-right: 15px; }
  .update-cart:hover {
    background: #b3252d;
    color: #fff; }

/*===============================================================
 #Blog Page
=================================================================*/
.blog {
  margin-top: 60px; }
  .blog .blog_title {
    font-size: 48px;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #9dbdf1; }
  .blog .article-item {
    max-width: 200px;
    min-height: 230px;
    margin: auto;
    margin-bottom: 30px;
    width: 100%; }
    .blog .article-item .article_date {
      display: block;
      border-bottom: 2px solid #ef333b;
      margin-bottom: 15px; }

/*============================================================================
	#Article Pages
==============================================================================*/
.single-post {
  margin: 60px 0; }
  .single-post .single-post_heading {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #9dbdf1; }
  .single-post .single-post__title {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 55px; }
  .single-post .article_content {
    max-width: 700px;
    margin: auto;
    width: 100%; }
    .single-post .article_content h1, .single-post .article_content .h1, .single-post .article_content h2, .single-post .article_content .h2, .single-post .article_content h3, .single-post .article_content .h3, .single-post .article_content h4, .single-post .article_content .h4, .single-post .article_content h5, .single-post .article_content .h5, .single-post .article_content h6 *, .single-post .article_content .h6 * {
      font-weight: bold;
      margin-bottom: 15px; }
    .single-post .article_content a {
      color: #b3252d; }
      .single-post .article_content a:hover {
        text-decoration: underline; }

/*============================================================================
	#Account Pages
==============================================================================*/
#customer-register.btn, #customer-register.btn--secondary, .custome-login {
  transition: all 0.3s;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-weight: normal;
  padding: 0 15px;
  display: inline-block;
  background: #ef333b;
  color: #fdfdfd; }
  #customer-register.btn:hover, #customer-register.btn--secondary:hover, .custome-login:hover {
    background: #b3252d; }

/*============================================================================
	#Custom Pages
==============================================================================*/
.custom-page__heading {
  background: rgba(0, 0, 0, 0.3);
  color: #fff; }
  .custom-page__heading .breadcrumb a:last-child,
  .custom-page__heading .breadcrumb span:last-child {
    color: #fff; }

.custom-page_title {
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #9bdbf1;
  margin-bottom: 60px;
  font-size: 50px; }

.rte {
  max-width: 700px;
  margin: auto; }
  .rte h2, .rte .h2 {
    font-size: 45px;
    margin-top: 60px; }

/* === Contact Page' css ====*/
.contact-page {
  margin-top: 60px; }
  .contact-page .contact_title {
    font-size: 55px;
    padding-bottom: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid #9bdbf1;
    text-align: center; }
  .contact-page .contact-banner_image {
    text-align: center;
    margin-bottom: 60px; }
  .contact-page .contact-info_item {
    margin-bottom: 30px; }
    .contact-page .contact-info_item label.contact-info_label {
      display: block;
      font-weight: 600; }
    .contact-page .contact-info_item a {
      color: #ef333b; }
      .contact-page .contact-info_item a:hover {
        text-decoration: underline;
        color: #b3252d; }
  .contact-page .contact-forms input {
    margin-bottom: 30px; }
  .contact-page .contact-submit {
    margin-top: 15px;
    height: 45px;
    padding: 0 15px;
    line-height: 45px;
    font-weight: normal; }

/*============================================================================
	#Site Footer
==============================================================================*/
.site-footer {
  position: relative;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  background-color: white;
  color: #999999; }
  .site-footer .footer-character-1 {
    position: absolute;
    left: 60px;
    top: -40px; }
  .site-footer .footer-character-2 {
    position: absolute;
    bottom: 0;
    max-height: 100%;
    right: 0; }
  .site-footer .btn, .site-footer .btn--secondary {
    background-color: #ef333b;
    color: white; }
    .site-footer .btn:hover, .site-footer .btn--secondary:hover {
      background-color: #b3252d;
      color: white; }
  .site-footer hr {
    border-top: 1px solid #999999; }
  .site-footer a {
    color: #999999;
    display: inline-block; }
  .site-footer a:hover, .site-footer a.active {
    color: #b3252d; }
  .site-footer #mail {
    font-size: 14px;
    height: 40px;
    line-height: 40px; }
  .site-footer #subscribe {
    font-size: 14px;
    font-weight: 400;
    padding: 0 15px;
    line-height: 40px;
    min-width: 120px;
    height: 40px; }
  .site-footer .footer-social ul.social-icons {
    margin-left: 80px;
    font-size: 26px; }
    @media screen and (max-width: 480px) {
      .site-footer .footer-social ul.social-icons {
        margin-left: 0px;
        margin-top: 30px; } }
    .site-footer .footer-social ul.social-icons li {
      margin-bottom: 0px;
      margin-right: 30px;
      line-height: 0; }
  .site-footer .footer-social span.fa {
    font-size: 30px;
    color: #ef333b; }
    .site-footer .footer-social span.fa:hover {
      color: #b3252d; }
  .site-footer .site-footer__linklist {
    padding: 1.875rem 10px; }
    .site-footer .site-footer__linklist .site-footer_link {
      padding: 0.7rem 1rem; }
      .site-footer .site-footer__linklist .site-footer_link a {
        font-size: 20px; }
      @media screen and (max-width: 768px) {
        .site-footer .site-footer__linklist .site-footer_link {
          display: block;
          padding-left: 0; } }
      .site-footer .site-footer__linklist .site-footer_link a:hover {
        text-decoration: none; }
      .site-footer .site-footer__linklist .site-footer_link:first-child {
        padding-left: 0px; }
  .site-footer .footer_newsletter {
    padding: 1.875rem 10px; }
    .site-footer .footer_newsletter .grid__item {
      padding-left: 0px; }

/*===============Bottom Bar================*/
.site-bottom-bar {
  margin: 30px 0 15px 10px; }
  .site-bottom-bar .bottom-bar_link, .site-bottom-bar .bottom-bar_text {
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
    margin: 0 5px; }
  .site-bottom-bar .bottom-bar_link:first-child {
    margin-left: 0px; }
  .site-bottom-bar .bottom-bar_link:hover {
    color: #666; }
  .site-bottom-bar .bottom-bar_text {
    text-decoration: none; }

/*================= Custom Css=============== */
/*------- single product page -----------*/
.single-product_description .product_description-block {
  position: relative;
  margin-bottom: 60px;
  margin-top: 30px; }
  .single-product_description .product_description-block .description-block__title, .single-product_description .product_description-block h3, .single-product_description .product_description-block .h3 {
    font-size: 45px;
    line-height: 1.07;
    border-bottom: 2px solid #9bdbf1; }
  .single-product_description .product_description-block img {
    width: 100%; }
  @media screen and (min-width: 769px) {
    .single-product_description .product_description-block .description-image {
      padding-right: 45px; } }
  @media screen and (min-width: 769px) {
    .single-product_description .product_description-block .preparation-image {
      padding-left: 45px; } }
  .single-product_description .product_description-block .description-block_content .description_content {
    text-align: right; }
    @media screen and (max-width: 769px) {
      .single-product_description .product_description-block .description-block_content .description_content {
        text-align: center; } }
  @media screen and (min-width: 769px) {
    .single-product_description .product_description-block .description-block_content {
      position: absolute;
      left: 0px;
      top: 50%;
      width: 100%;
      transform: translateY(-50%); } }

/*===============================================================
#Custom Pages
================================================================*/
/* Generall page style*/
.custom-page-banner {
  position: relative; }
  .custom-page-banner .page-banner_title {
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 392px; }

/*------ 404 page -----------*/
.empty-template {
  padding: 60px 0; }
  .empty-template .empty-content .empty-content-text {
    font-size: 28px;
    font-weight: bolder;
    color: #9bdbf1; }
    @media screen and (max-width: 480px) {
      .empty-template .empty-content .empty-content-text {
        font-size: 22px; } }
  .empty-template .empty-content .go-page {
    min-width: 250px; }

/*================= app styles ================*/
/* Bold app store locator*/
#col-main {
  max-width: 1170px;
  margin: auto;
  padding: 30px;
  margin-top: 30px; }
  #col-main #store-locator-title {
    font-size: 55px;
    padding-bottom: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid #9bdbf1;
    text-align: center; }
  #col-main .search_bar {
    text-align: right; }
    #col-main .search_bar .main_search_bar {
      text-align: left;
      width: 40%; }
      @media screen and (max-width: 480px) {
        #col-main .search_bar .main_search_bar {
          width: 100%;
          clear: both;
          text-align: left; } }
    #col-main .search_bar .search_within_distance {
      text-align: left;
      width: 20%; }
      @media screen and (max-width: 480px) {
        #col-main .search_bar .search_within_distance {
          width: 100%;
          clear: both;
          text-align: left; } }
    #col-main .search_bar .search_limit {
      text-align: left;
      width: 20%; }
      @media screen and (max-width: 480px) {
        #col-main .search_bar .search_limit {
          width: 100%;
          clear: both;
          text-align: left; } }
    #col-main .search_bar button {
      background: #ef333b;
      color: #fff;
      height: 45px;
      line-height: 45px;
      padding: 0 15px;
      font-size: 16px;
      font-weight: normal;
      border-radius: 0px;
      border: 0px;
      text-shadow: none;
      font-family: 'Josefin sans'; }
      #col-main .search_bar button:hover {
        background-color: #b3252d; }
      @media screen and (max-width: 480px) {
        #col-main .search_bar button {
          width: 100%; } }
  #col-main .grid-uniform {
    display: flex;
    flex-direction: row; }
  #col-main .footer_html {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #9bdbf1; }
    #col-main .footer_html .store-locator_footer-text {
      line-height: 1.2;
      font-size: 16px;
      display: inline-block;
      text-align: left; }
    #col-main .footer_html .store-locator_btn {
      height: 40px;
      font-size: 14px;
      line-height: 40px;
      font-weight: 400;
      background: #f5f5f5;
      color: #ef333b;
      padding: 0 15px;
      width: 100%;
      max-width: 250px; }
      #col-main .footer_html .store-locator_btn:hover {
        background: #b3252d;
        color: #fff; }

.product-proportion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  padding-right: 30px; }
  .product-proportion .proportion_item {
    flex: 1 1 20%;
    max-width: 20%;
    padding: 0 5px;
    text-align: center;
    line-height: 1.1; }
    .product-proportion .proportion_item .proportion_value {
      font-size: 42px;
      display: block;
      text-align: center;
      border-bottom: 2px solid #9bdbf1;
      padding-bottom: 5px;
      margin-bottom: 3px; }
    .product-proportion .proportion_item label.proportion_item-label {
      font-size: 10px;
      line-height: 1.1; }
  @media screen and (max-width: 768px) {
    .product-proportion {
      margin: 0 auto; } }

/*======================================
Page Template - page-give-a-way
========================================*/
div[data-section-type="page-give"] {
  padding-bottom: 50px; }
  div[data-section-type="page-give"] .custom-page_title {
    position: relative; }
    div[data-section-type="page-give"] .custom-page_title .page_subtitle {
      position: absolute;
      bottom: 0px;
      left: 50%;
      transform: translate(-50%, 50%);
      display: inline-block;
      background-color: #fff;
      padding: 0 15px;
      letter-spacing: 1.8px;
      color: #ef333b;
      font-family: 'Josefin sans';
      font-size: 18px;
      font-weight: 600; }
      @media screen and (max-width: 480px) {
        div[data-section-type="page-give"] .custom-page_title .page_subtitle {
          font-size: 14px; } }
  div[data-section-type="page-give"] .page-content .page_content-title {
    font-size: 30px;
    line-height: 1.2; }
    @media screen and (max-width: 480px) {
      div[data-section-type="page-give"] .page-content .page_content-title {
        font-size: 24px; } }
  @media screen and (max-width: 480px) {
    div[data-section-type="page-give"] .page-content .giveaway_form_subtitle {
      line-height: 1.3;
      font-size: 16px; } }
  div[data-section-type="page-give"] .giveaway-image_wrapper {
    position: relative;
    padding: 0 15px; }
    div[data-section-type="page-give"] .giveaway-image_wrapper .giveaway-slide-nav {
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      background-color: #e6e6e6;
      color: #ef333b;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 50%;
      cursor: pointer; }
      div[data-section-type="page-give"] .giveaway-image_wrapper .giveaway-slide-nav.next {
        right: 0; }
      div[data-section-type="page-give"] .giveaway-image_wrapper .giveaway-slide-nav.prev {
        left: 0; }
    div[data-section-type="page-give"] .giveaway-image_wrapper ul.slick-dots li button:before {
      font-size: 16px; }
    @media screen and (max-width: 480px) {
      div[data-section-type="page-give"] .giveaway-image_wrapper {
        padding: 0px; }
        div[data-section-type="page-give"] .giveaway-image_wrapper .giveaway-slide-nav {
          width: 30px;
          height: 30px;
          line-height: 30px; }
          div[data-section-type="page-give"] .giveaway-image_wrapper .giveaway-slide-nav.prev {
            left: -5px; }
          div[data-section-type="page-give"] .giveaway-image_wrapper .giveaway-slide-nav.next {
            right: -5px; } }
  div[data-section-type="page-give"] .giveaway-form_content {
    padding-top: 45px;
    padding-left: 30px;
    padding-right: 30px; }
    div[data-section-type="page-give"] .giveaway-form_content .giveaway-form_wrapper {
      padding-left: 30px; }
    div[data-section-type="page-give"] .giveaway-form_content .giveaway-form .giveaway-input-fields {
      margin-bottom: 20px; }
      div[data-section-type="page-give"] .giveaway-form_content .giveaway-form .giveaway-input-fields label {
        display: block; }
      div[data-section-type="page-give"] .giveaway-form_content .giveaway-form .giveaway-input-fields input {
        width: 100%;
        max-width: 335px; }
        div[data-section-type="page-give"] .giveaway-form_content .giveaway-form .giveaway-input-fields input.giveaway-post {
          max-width: 225px; }
    div[data-section-type="page-give"] .giveaway-form_content .giveaway-form input[type="submit"] {
      font-size: 16px;
      height: 46px;
      line-height: 46px;
      font-weight: 400;
      padding: 0 10px;
      max-width: 335px;
      width: 100%; }
    @media screen and (max-width: 480px) {
      div[data-section-type="page-give"] .giveaway-form_content {
        padding: 45px 0px; }
        div[data-section-type="page-give"] .giveaway-form_content .giveaway-form_wrapper {
          padding: 45px 30px; }
          div[data-section-type="page-give"] .giveaway-form_content .giveaway-form_wrapper #giveaway-form .giveaway-input-fields input {
            max-width: initial;
            width: 100%; }
            div[data-section-type="page-give"] .giveaway-form_content .giveaway-form_wrapper #giveaway-form .giveaway-input-fields input.giveaway-post {
              max-width: 225px; } }

/* Styles for Giveaway thankyou page */
.giveaway-form_content.thankyou-page .grid-uniform {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.thankyou-header {
  font-size: 36px;
  color: #ef333b; }

.thankyou-content {
  font-size: 36px;
  color: #ef333b;
  line-height: 40px; }

/* Styles for Waffle Collection bottom block*/
.collection-bottom-block .collection-image-with-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  transform: translateY(30px); }
  .collection-bottom-block .collection-image-with-text .block-item {
    flex: 1 1 50%;
    max-width: 50%; }
    .collection-bottom-block .collection-image-with-text .block-item.text-block {
      padding-left: 60px; }
      .collection-bottom-block .collection-image-with-text .block-item.text-block .block_title {
        font-size: 45px;
        border-bottom: 2px solid #9bdbf1;
        padding-bottom: 15px; }
    @media screen and (max-width: 992px) {
      .collection-bottom-block .collection-image-with-text .block-item.text-block {
        padding-left: 30px; } }
.collection-bottom-block .collection-bottom-banner {
  max-height: 363px;
  max-width: 1200px;
  margin: auto;
  overflow: hidden; }
@media screen and (max-width: 768px) {
  .collection-bottom-block .collection-image-with-text {
    transform: initial; }
    .collection-bottom-block .collection-image-with-text .block-item {
      flex: 1 1 100%;
      max-width: 100%; }
      .collection-bottom-block .collection-image-with-text .block-item.image-block {
        line-height: 0px;
        order: 1; }
      .collection-bottom-block .collection-image-with-text .block-item.text-block {
        padding-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px; }
  .collection-bottom-block .collection-bottom-banner {
    max-height: 324px; } }

.main-content.product, .main-content.product\.cups, .main-content.product\.waffles, .main-content.product\.baking, .main-content.product\.syrup {
  padding-top: 110px; }

.main-content.product\.cups .product_weight {
  display: block; }

.main-content.product\.cups .product_weight .single-product_middle-bar .center-column {
  padding-left: 25%; }

.main-content.product\.cups .single-product__heading img.product-single-character {
  bottom: -38px; }

.main-content.product\.cups .preparation-image {
  max-width: 640px;
  float: right;
  margin-bottom: 40px; }

.main-content.product\.cups .description-image {
  max-width: 640px;
  float: left; }

.main-content.collection\.cups .p1 {
  text-align: center; }

video#home-hero-video {
  display: block;
  width: 100%;
  margin-top: 112px; }

#video-overlay-button-cups {
  width: 277px;
  height: 50px;
  line-height: 50px;
  margin: -130px auto 120px auto; }

#hero-parallax-image {
  padding: 5% 5% 0;
  background-position: bottom left; }

#hero-content-button {
  width: 277px;
  height: 50px;
  line-height: 50px;
  margin: 30px auto 0px auto; }

@media (max-width: 1007px) {
  #hero-parallax-heading-container {
    margin: 0 100px 0 0;
    width: 450px;
    left: 46%; } }
@media (max-width: 825px) {
  #hero-parallax-heading-text {
    font-size: 50px; }

  #hero-parallax-heading-container {
    top: 35%;
    left: 0;
    transform: translateX(45%); }

  #hero-parallax-image {
    padding: 15% 5% 0;
    background-position: bottom left; } }
@media (max-width: 760px) {
  #hero-parallax-heading-container {
    top: 35%;
    left: 0;
    transform: translateX(35%); } }
@media (max-width: 620px) {
  #hero-parallax-heading-text {
    font-size: 40px; }

  #hero-sub-heading-image img {
    width: 250px;
    padding-top: 40px; }

  #hero-parallax-heading-container {
    transform: translateX(20%);
    margin-top: -80px; }

  #hero-parallax-image {
    padding: 65% 5% 0; } }
@media (max-width: 585px) {
  .hero-parallax-bg-image {
    /*min-height:800px;*/
    background-position: -30px 120px;
    background-size: cover; }

  #hero-parallax-heading-container {
    transform: translateX(13%);
    margin-top: -60px; }

  #hero-parallax-heading-text {
    font-size: 40px; } }
@media (max-width: 480px) {
  video#home-hero-video {
    margin-top: 110px; }

  .grid__product .grid__product--image .grid__sales-label .new-look {
    width: 35px;
    height: 35px; }

  .hero-parallax-bg-image {
    /*min-height:700px;*/
    background-position: -100px 100px;
    background-size: cover; }

  #hero-parallax-heading-container {
    transform: translateX(2%);
    margin-top: -90px; }

  #hero-parallax-heading-text {
    font-size: 35px;
    padding: 0; }

  #hero-sub-heading-image {
    padding-top: 25%; } }
@media (max-width: 410px) {
  #hero-parallax-heading-container {
    width: 375px;
    transform: translateX(0%); } }
#mobile-video-image {
  display: none; }

div.video-sound {
  display: block;
  position: relative;
  z-index: 9;
  margin: -100px 20px 100px 20px;
  float: right; }

@media (max-width: 768px) {
  	/*#mobile-video-image {
      display:block;
      margin-top: 110px;
    }
    video#home-hero-video {
      display:none;
    }*/
  div.video-sound {
    margin: -80px 15px 80px 20px; }

  #shopify-section-1529918172438 {
    display: none; }

  #video-overlay-button-cups {
    height: 40px;
    line-height: 40px;
    width: 177px;
    margin: -20px auto 5px auto; } }
@media (min-width: 768px) {
  .home-image-text .image-with-text .grid-uniform .left-image img {
    float: right; } }
@media (max-width: 768px) {
  #shopify-section-product-template-cups .single-product_middle-bar .social-sharing {
    min-width: 195px;
    padding-top: 10px; } }
.grid__product-form .notify-me {
  text-transform: uppercase;
  color: red;
  font-size: 80%;
  margin-top: 5px;
  display: block; }

.hero-min-height {
  min-height: 700px; }
