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

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

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
  #Import
  #MainContent
  #PRODUCT CATEGORIES
  #PRODUCT LIST
  #SHOP BY BRANDS
  #BLOG LIST
  #INSTAGRAM
  #FOOTER
  #COLLECTION CATEGORIES
  #BANNER 
  #PRODUCT FILTER
  #PRODUCT DETAIL
  #RELATED PRODUCT
  #PRODUCT FULL DESCRIPTION
  #CONTACT US
  #ABOUT US
  #CART & WISHLIST
  
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);
/* =========== Heading Font =======   */
/* =========== Body Font =======   */
/* =========== Banner Font =======   */
/* =========== Fotter Font ======= */
/*===========================  MIXINS IMPORT  ====================*/
/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: '';
    display: table;
    clear: both; }

/*============================================================================
  Prefixer mixin for generating vendor prefixes:
==============================================================================*/
/*============================================================================
  Layer promotion mixin for creating smoother animations with higher FPS.
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  box-sizing: border-box; }

*:focus {
  outline: 1px solid red; }

html, body {
  padding: 0;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

article, aside, details, .border_effect, 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; }

/*============================================================================
  #Grid Setup
==============================================================================*/
/* 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: -18px;
  margin-right: -18px; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    .grid, .grid--rev, .grid--full,
    .grid-uniform {
      margin-left: -12px;
      margin-right: -12px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .grid, .grid--rev, .grid--full,
    .grid-uniform {
      margin-left: -9px;
      margin-right: -9px; } }
  @media screen and (max-width: 480px) {
    .grid, .grid--rev, .grid--full,
    .grid-uniform {
      margin-left: -5px;
      margin-right: -5px; } }

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding: 0 18px;
  vertical-align: top;
  width: 100%; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    .grid__item {
      padding: 0 12px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .grid__item {
      padding: 0 9px; } }
  @media screen and (max-width: 480px) {
    .grid__item {
      padding: 0 5px; } }

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

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

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 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) and (max-width: 767px) {
  /** 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: 767px) {
  /** 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: 768px) and (max-width: 1024px) {
  /** Whole */
  .medium-large--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .grid-uniform .max-large--one-half:nth-child(2n+1),
  .grid-uniform .max-large--one-third:nth-child(3n+1),
  .grid-uniform .max-large--one-quarter:nth-child(4n+1),
  .grid-uniform .max-large--one-fifth:nth-child(5n+1),
  .grid-uniform .max-large--one-sixth:nth-child(6n+1),
  .grid-uniform .max-large--two-sixths:nth-child(3n+1),
  .grid-uniform .max-large--three-sixths:nth-child(2n+1),
  .grid-uniform .max-large--two-eighths:nth-child(4n+1),
  .grid-uniform .max-large--four-eighths:nth-child(2n+1),
  .grid-uniform .max-large--five-tenths:nth-child(2n+1),
  .grid-uniform .max-large--one-twelfth:nth-child(12n+1),
  .grid-uniform .max-large--two-twelfths:nth-child(6n+1),
  .grid-uniform .max-large--three-twelfths:nth-child(4n+1),
  .grid-uniform .max-large--four-twelfths:nth-child(3n+1),
  .grid-uniform .max-large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1367px) {
  /** 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 (min-width: 1025px) {
  /** 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; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 481px) and (max-width: 767px) {
  /* 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: 767px) {
  /* 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: 768px) and (max-width: 1024px) {
  /* Whole */
  .push--medium-large--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--max-large--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1367px) {
  /* 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 (min-width: 1025px) {
  /* 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%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
body {
  background-color: white;
  letter-spacing: 0px;
  -webkit-font-smoothing: antialiased; }

* {
  outline: none; }

div {
  margin: 0;
  padding: 0; }

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

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

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    .container {
      padding: 0 12px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .container {
      padding: 0 9px; } }
  @media screen and (max-width: 480px) {
    .container {
      padding: 0 5px; } }

.container--small {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    .container--small {
      padding: 0 12px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .container--small {
      padding: 0 9px; } }
  @media screen and (max-width: 480px) {
    .container--small {
      padding: 0 5px; } }

.body-overflow #main-content {
  filter: blur(2px);
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -ms-filter: blur(2px);
  position: relative; }
  .body-overflow #main-content .body_overlay {
    background: rgba(155, 155, 155, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0; }

#main-content {
  float: right;
  width: 85%;
  overflow-x: hidden; }
  @media screen and (max-width: 1024px) {
    #main-content {
      width: 100% !important;
      margin-top: 50px; } }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 26px;
  font-family: "Roboto Condensed", sans-serif;
  color: #181923;
  letter-spacing: 0px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }
  @media screen and (max-width: 767px) {
    body,
    input,
    textarea,
    button,
    select {
      font-size: 13px; } }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 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: 50px;
  font-weight: 300; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    h1, .h1 {
      font-size: 46px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    h1, .h1 {
      font-size: 42px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    h1, .h1 {
      font-size: 38px; } }
  @media screen and (max-width: 480px) {
    h1, .h1 {
      font-size: 30px; } }

h2, .h2 {
  font-size: 40px; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    h2, .h2 {
      font-size: 36px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    h2, .h2 {
      font-size: 34px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    h2, .h2 {
      font-size: 30px; } }
  @media screen and (max-width: 480px) {
    h2, .h2 {
      font-size: 24px; } }

h3, .h3 {
  font-size: 32px; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    h3, .h3 {
      font-size: 30px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    h3, .h3 {
      font-size: 28px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    h3, .h3 {
      font-size: 26px; } }
  @media screen and (max-width: 480px) {
    h3, .h3 {
      font-size: 22px; } }

h4, .h4 {
  font-size: 26px;
  font-weight: 700; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    h4, .h4 {
      font-size: 24px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    h4, .h4 {
      font-size: 22px; } }
  @media screen and (max-width: 480px) {
    h4, .h4 {
      font-size: 18px; } }

h5, .h5 {
  font-size: 22px;
  font-weight: 800; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    h5, .h5 {
      font-size: 20px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    h5, .h5 {
      font-size: 18px; } }
  @media screen and (max-width: 480px) {
    h5, .h5 {
      font-size: 16px; } }

h6, .h6 {
  font-size: 18px;
  font-weight: 800; }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    h6, .h6 {
      font-size: 16px; } }
  @media screen and (max-width: 480px) {
    h6, .h6 {
      font-size: 14px; } }

p {
  margin: 0 0 18px 0;
  line-height: 26px; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 16px;
  line-height: 1.1;
  font-style: italic;
  letter-spacing: 2px;
  margin: 0 0 36px;
  padding: 18px 36px;
  background-color: #f2f2f2;
  color: #181923; }
  @media screen and (max-width: 767px) {
    blockquote {
      margin: 0 0 30px;
      padding: 14px 20px; } }
  blockquote p {
    margin-bottom: 0;
    border-left: 1px solid red;
    padding: 12px 10px 12px 25px;
    position: relative; }
    blockquote p:before {
      background: red;
      content: "";
      display: block;
      height: 100%;
      left: 2px;
      position: absolute;
      top: 0;
      width: 1px; }
    blockquote p + cite {
      margin-top: 18px; }
  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: 18px;
  margin: 0 0 36px; }

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

.collection-view {
  display: inline-block;
  border: 1px solid #cccccc;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  @media screen and (min-width: 1024px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  border: 0 none;
  float: left;
  font-size: 16px;
  color: #ccc;
  margin-right: 10px;
  width: 40px;
  text-align: center;
  border: 2px solid #ccc;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; }
  @media screen and (max-width: 767px) {
    .change-view {
      margin-right: 8px;
      width: 36px; } }
  .change-view .fa {
    line-height: 36px;
    position: relative;
    top: 1px;
    left: 1px;
    font-size: 18px; }
    @media screen and (max-width: 767px) {
      .change-view .fa {
        line-height: 30px;
        font-size: 15px; } }
  .change-view.active {
    color: #181923;
    border: 2px solid #181923; }
    .change-view.active:hover {
      color: #181923;
      border: 2px solid #181923; }
  .change-view:hover, .change-view:focus {
    color: #181923;
    border: 2px solid #181923; }

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

/*============================================================================
  #Links and Buttons
==============================================================================*/
a,
.text-link {
  color: #181923;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: color 0.4s ease-in-out;
  -moz-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out; }

a:hover,
a:focus {
  color: red; }

button {
  overflow: visible; }

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

.btn, .btn--primary,
.rte .btn--primary, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--primary,
.rte .btn--secondary {
  display: inline-block;
  padding: 12px 45px 10px;
  width: auto;
  height: auto;
  margin: 0;
  border: 2px solid;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background-color: transparent;
  color: #333333;
  border-color: #333333;
  border-radius: 22px; }
  .btn:hover, .btn--primary:hover, .btn--secondary:hover, .btn:active, .btn--primary:active, .btn--secondary:active, .btn:focus, .btn--primary:focus, .btn--secondary:focus,
  .rte .btn:hover,
  .rte .btn--primary:hover,
  .rte .btn--secondary:hover,
  .rte .btn:active,
  .rte .btn--primary:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--primary:focus,
  .rte .btn--secondary:focus {
    color: white;
    background-color: #333333;
    border-color: #333333; }
  .btn[disabled], [disabled].btn--primary, [disabled].btn--secondary, .btn.disabled, .disabled.btn--primary, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--primary,
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--primary,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }

@-moz-document url-prefix() {
  .btn, .btn--primary,
  .rte .btn--primary, .btn--secondary,
  .rte .btn--secondary,
  .rte .btn,
  .rte .btn--primary,
  .rte .btn--secondary {
    padding: 11px 45px 11px; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .btn, .btn--primary,
  .rte .btn--primary, .btn--secondary,
  .rte .btn--secondary,
  .rte .btn,
  .rte .btn--primary,
  .rte .btn--secondary {
    padding: 11px 45px 11px; } }
@media screen and (max-width: 767px) {
  .btn, .btn--primary,
  .rte .btn--primary, .btn--secondary,
  .rte .btn--secondary,
  .rte .btn,
  .rte .btn--primary,
  .rte .btn--secondary {
    padding: 8px 28px 6px;
    font-size: 12px; } }
.btn--primary,
.rte .btn--primary {
  background-color: #333333;
  color: white;
  border-color: #333333; }
  .btn--primary:hover, .btn--primary:active, .btn--primary:focus,
  .rte .btn--primary:hover,
  .rte .btn--primary:active,
  .rte .btn--primary:focus {
    background-color: transparent;
    color: #333333; }

.btn--secondary,
.rte .btn--secondary {
  background-color: transparent;
  color: red;
  border-color: red; }
  .btn--secondary:hover, .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:hover,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: red;
    color: #333333;
    border-color: red; }

.btn--small {
  padding: 8px 20px 6px;
  font-size: 12px; }

@-moz-document url-prefix() {
  .btn--small {
    padding: 7px 20px 7px; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .btn--small {
    padding: 7px 20px 7px; } }
.btn--large {
  padding: 15px 50px;
  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 0 0px;
  padding: 0;
  list-style-position: inside; }

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

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

/*============================================================================
  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 {
    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 #cccccc; } }
/*============================================================================
  #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
==============================================================================*/
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px; }

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

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

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

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

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #e5e5e5;
  width: 100%;
  padding: 12px 15px;
  background-color: #fafafa;
  outline: none;
  margin-bottom: 15px;
  height: 44px;
  line-height: 18px;
  font-weight: 400; }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: #999999;
    text-transform: normal;
    font-style: normal;
    opacity: 1;
    font-weight: 400; }
  input:-moz-placeholder,
  textarea:-moz-placeholder,
  select:-moz-placeholder {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: #999999;
    text-transform: normal;
    font-style: normal;
    opacity: 1;
    font-weight: 400; }
  input::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: #999999;
    text-transform: normal;
    font-style: normal;
    opacity: 1;
    font-weight: 400; }
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: #999999;
    text-transform: normal;
    font-style: normal;
    opacity: 1;
    font-weight: 400; }
  input:focus::-webkit-input-placeholder,
  textarea:focus::-webkit-input-placeholder,
  select:focus::-webkit-input-placeholder {
    color: transparent; }
  input:focus:-moz-placeholder,
  textarea:focus:-moz-placeholder,
  select:focus:-moz-placeholder {
    color: transparent; }
  input:focus::-moz-placeholder,
  textarea:focus::-moz-placeholder,
  select:focus::-moz-placeholder {
    color: transparent; }
  input:focus:-ms-input-placeholder,
  textarea:focus:-ms-input-placeholder,
  select:focus:-ms-input-placeholder {
    color: transparent; }
  @media screen and (max-width: 767px) {
    input,
    textarea,
    select {
      padding: 7px 15px; } }
  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;
  -ms-appearance: checkbox;
  appearance: checkbox; }

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

input[type="checkbox"], input[type="radio"] {
  display: none; }

input[type="radio"] + label, input[type="checkbox"] + label {
  font-size: 14px;
  text-transform: capitalize;
  color: #999999;
  line-height: 18px; }

input[type="checkbox"] + label span, input[type="radio"] + label span {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: -4px 10px 0 0;
  vertical-align: middle;
  border: 1px solid #999999;
  cursor: pointer;
  position: relative; }
  input[type="checkbox"] + label span:after, input[type="radio"] + label span:after {
    position: absolute;
    content: '';
    width: auto;
    height: auto;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background-color: transparent; }

input[type="checkbox"]:checked + label span {
  border: 1px solid #333333; }
  input[type="checkbox"]:checked + label span:after {
    background-color: #333333; }

input[type="radio"] + label span {
  border-radius: 50%; }

input[type="radio"]:checked + label span {
  border: 1px solid #333333; }
  input[type="radio"]:checked + label span:after {
    background-color: #333333;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%; }

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

select {
  background-position: right center;
  background-image: url(dwn-arrow_black.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #fafafa;
  background-size: 8px;
  color: #999999;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

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

/*================ 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::-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--primary, .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; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination-wrapper .pagination {
  text-align: center; }
  .pagination-wrapper .pagination > li {
    display: inline-block;
    margin: 0 2px;
    margin-top: 40px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .pagination-wrapper .pagination > li {
        margin-top: 30px; } }
    @media screen and (max-width: 767px) {
      .pagination-wrapper .pagination > li {
        margin-top: 25px; } }
    .pagination-wrapper .pagination > li a {
      display: block;
      border: 2px solid #e5e5e5;
      color: #999999;
      padding: 4px 12px;
      line-height: 1;
      border-radius: 20px;
      width: 46px;
      font-weight: 500;
      font-size: 14px;
      font-weight: 500;
      -webkit-transition: 0.4s ease-in-out;
      -moz-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out; }
      .pagination-wrapper .pagination > li a.fa {
        font-family: 'FontAwesome'; }
    .pagination-wrapper .pagination > li.page.current {
      color: #333333;
      border-color: #e5e5e5;
      background-color: #e5e5e5;
      padding: 4px 12px;
      line-height: 1;
      border: 2px solid #e5e5e5;
      border-radius: 20px;
      width: 46px; }
    .pagination-wrapper .pagination > li:hover {
      border-color: #333333; }
      .pagination-wrapper .pagination > li:hover a {
        color: #181923; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb a,
.breadcrumb span {
  display: inline-block;
  padding: 0 6px 0 0;
  margin-right: 6px;
  color: red; }
  .breadcrumb a:after,
  .breadcrumb span:after {
    content: '\f105';
    font-family: 'FontAwesome';
    padding-left: 12px;
    font-size: 14px; }
  .breadcrumb a:first-child,
  .breadcrumb span:first-child {
    padding-left: 0; }
  .breadcrumb a:last-child,
  .breadcrumb span:last-child {
    color: white;
    padding: 0;
    margin-right: 0; }
    .breadcrumb a:last-child:after,
    .breadcrumb span:last-child:after {
      display: none; }

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

.note {
  border-color: #cccccc; }

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

.form-success {
  color: #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; }

.qty-error {
  display: table;
  color: white;
  background: none;
  border-color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
  text-transform: uppercase; }
  .qty-error i {
    margin-right: 6px; }

/*============================================================================
  #FixedSideBar
==============================================================================*/
#FixedSideBar {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  top: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid white;
  z-index: 99999;
  position: fixed;
  background: black; }
  @media screen and (min-width: 1025px) {
    #FixedSideBar {
      width: 320px;
      padding: 32px 0;
      height: 100%;
      border-bottom: none;
      border-right: 1px solid white; } }

.perent-sidebar .close_menu {
  position: absolute;
  top: 3px;
  right: 6px;
  padding: 2px;
  cursor: pointer;
  display: none; }
  @media screen and (max-width: 1024px) {
    .perent-sidebar .close_menu {
      display: block; } }
  .perent-sidebar .close_menu .fa {
    color: red;
    font-size: 18px; }

@media screen and (max-width: 1024px) {
  .st-menu-open .perent-sidebar {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
    .st-menu-open .perent-sidebar:after {
      width: 0;
      height: 0;
      opacity: 0;
      -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
      -moz-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
      transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; } }
.st-menu-open #st-trigger-effects {
  -webkit-transition: opacity ease-in 0.5s;
  -moz-transition: opacity ease-in 0.5s;
  transition: opacity ease-in 0.5s; }

/*=======================  SIDEBAR MENU  ======================*/
@media screen and (max-width: 1024px) {
  .Side-top {
    position: relative; } }
@media screen and (max-width: 1024px) {
  .Side-top .logo {
    max-width: 320px;
    float: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; } }
@media screen and (max-width: 1024px) {
  .Side-top .logo {
    padding: 13px 15px;
    width: 160px; } }
.Side-top .logo a {
  display: block;
  width: 100%;
  color: red; }
  @media screen and (max-width: 1024px) {
    .Side-top .logo a {
      height: 24px; } }
  .Side-top .logo a img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0; }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      .Side-top .logo a img {
        padding: 0px 20px; } }
.Side-top #search, .Side-top #settings {
  padding: 20px 30px;
  margin-top: 35px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%; }
  @media screen and (min-width: 481px) and (max-width: 1024px) {
    .Side-top #search, .Side-top #settings {
      position: absolute;
      top: 48px;
      background: black;
      right: 0;
      width: 40%;
      margin-top: 0;
      padding: 10px 30px; } }
  @media screen and (max-width: 480px) {
    .Side-top #search, .Side-top #settings {
      position: fixed;
      background: black;
      width: 100%;
      bottom: 50px;
      margin: 0;
      padding: 20px 20px 10px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .Side-top #search, .Side-top #settings {
      width: 60%; } }
  .Side-top #search.active, .Side-top .active#settings {
    opacity: 1;
    visibility: visible; }
    .Side-top #search.active .search-bar, .Side-top .active#settings .search-bar {
      opacity: 1;
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      transform: translateY(0px); }
  .Side-top #search .search-bar, .Side-top #settings .search-bar {
    position: relative;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  @media screen and (max-width: 480px) {
    .Side-top #search .search-results, .Side-top #settings .search-results {
      top: auto !important;
      bottom: 0; } }
.Side-top #settings .curruncy_change {
  position: relative;
  z-index: 999;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; }
.Side-top #settings .snd_nav li {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .Side-top #settings .snd_nav li:last-child a {
    border-bottom: 0; }
.Side-top #settings.active .curruncy_change {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1; }
.Side-top #settings.active .snd_nav li {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1; }
.Side-top #settings.active .snd_nav > li:nth-child(1) {
  transition-delay: 0.2s; }
.Side-top #settings.active .snd_nav > li:nth-child(2) {
  transition-delay: 0.3s; }
.Side-top #settings.active .snd_nav > li:nth-child(3) {
  transition-delay: 0.4s; }
.Side-top #settings.active .snd_nav > li:nth-child(4) {
  transition-delay: 0.5s; }
.Side-top #settings.active .snd_nav > li:nth-child(5) {
  transition-delay: 0.6s; }
.Side-top #settings.active .snd_nav > li:nth-child(6) {
  transition-delay: 0.7s; }
.Side-top #settings.active .snd_nav > li:nth-child(7) {
  transition-delay: 0.8s; }
.Side-top #settings.active .snd_nav > li:nth-child(8) {
  transition-delay: 0.9s; }
.Side-top #settings.active .snd_nav > li:nth-child(9) {
  transition-delay: 1s; }
.Side-top #settings.active .snd_nav > li:nth-child(10) {
  transition-delay: 1.1s; }
.Side-top #settings.active .snd_nav > li:nth-child(11) {
  transition-delay: 1.2s; }
.Side-top #settings.active .snd_nav > li:nth-child(12) {
  transition-delay: 1.3s; }
.Side-top #settings.active .snd_nav > li:nth-child(13) {
  transition-delay: 1.4s; }
.Side-top #settings.active .snd_nav > li:nth-child(14) {
  transition-delay: 1.5s; }
.Side-top #settings.active .snd_nav > li:nth-child(15) {
  transition-delay: 1.6s; }
.Side-top #settings.active .snd_nav > li:nth-child(16) {
  transition-delay: 1.7s; }
.Side-top #settings.active .snd_nav > li:nth-child(17) {
  transition-delay: 1.8s; }
.Side-top #settings.active .snd_nav > li:nth-child(18) {
  transition-delay: 1.9s; }
.Side-top #settings.active .snd_nav > li:nth-child(19) {
  transition-delay: 2s; }
.Side-top #settings.active .snd_nav > li:nth-child(20) {
  transition-delay: 2.1s; }

#top_header {
  padding-top: 32px; }
  @media screen and (min-width: 481px) and (max-width: 1024px) {
    #top_header {
      padding-top: 0;
      width: 180px;
      float: right; } }
  @media screen and (max-width: 480px) {
    #top_header {
      position: fixed;
      padding: 0;
      bottom: 0;
      background: black;
      width: 100%; } }
  #top_header ul {
    *zoom: 1; }
    @media screen and (max-width: 1024px) {
      #top_header ul {
        border: 0; } }
    #top_header ul:after {
      content: '';
      display: table;
      clear: both; }
    #top_header ul li, #top_header ul button {
      border-right: 1px solid white;
      list-style: none;
      float: left;
      width: 33.33%;
      text-align: center;
      margin-bottom: 0; }
      #top_header ul li:last-child, #top_header ul button:last-child {
        border: 0; }
        @media screen and (max-width: 1024px) {
          #top_header ul li:last-child, #top_header ul button:last-child {
            border-right: 1px solid white; } }
      #top_header ul li.active .fa, #top_header ul button.active .fa {
        display: none; }
        #top_header ul li.active .fa.fa-times, #top_header ul button.active .fa.fa-times {
          display: block; }
      #top_header ul li .fa, #top_header ul button .fa {
        color: #b06bfc;
        line-height: 32px;
        font-size: 12px;
        position: relative; }
        @media screen and (max-width: 1024px) {
          #top_header ul li .fa, #top_header ul button .fa {
            font-size: 18px;
            line-height: 50px; } }
        #top_header ul li .fa span, #top_header ul button .fa span {
          margin-left: 5px;
          font-family: "Roboto Condensed", sans-serif;
          font-weight: bold;
          font-size: 12px; }
          @media screen and (max-width: 1024px) {
            #top_header ul li .fa span, #top_header ul button .fa span {
              display: none; } }
        #top_header ul li .fa.fa-times, #top_header ul button .fa.fa-times {
          display: none; }
      #top_header ul li.search, #top_header ul li.settings, #top_header ul button.search, #top_header ul button.settings {
        cursor: pointer; }
        #top_header ul li.search.active, #top_header ul li.settings.active, #top_header ul button.search.active, #top_header ul button.settings.active {
          background-color: black; }
      #top_header ul li .cart_link .item_cnt, #top_header ul button .cart_link .item_cnt {
        display: inline-block;
        width: 16px;
        height: 16px;
        line-height: 16px;
        text-align: center;
        color: white;
        border-radius: 50%;
        background: red;
        text-shadow: 0px 0px 8px rgba(16, 16, 20, 0.5);
        margin-left: 0px;
        font-size: 12px; }
        @media screen and (max-width: 1024px) {
          #top_header ul li .cart_link .item_cnt, #top_header ul button .cart_link .item_cnt {
            position: absolute;
            top: 10px;
            right: -13px; } }

#main-nav.disable {
  opacity: 0;
  visibility: hidden; }
  #main-nav.disable > ul > li {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    transition-delay: 0s !important; }

#main-nav {
  margin-top: 16px;
  position: absolute;
  width: 100%;
  opacity: 1;
  visibility: visible;
  /*&.disable{
    display:none;
  }*/ }
  @media screen and (max-width: 1024px) {
    #main-nav {
      margin-top: 34px; } }
  #main-nav > ul {
    margin: 0;
    padding: 0; }
    #main-nav > ul > li:nth-child(1) {
      transition-delay: 0.2s; }
    #main-nav > ul > li:nth-child(2) {
      transition-delay: 0.3s; }
    #main-nav > ul > li:nth-child(3) {
      transition-delay: 0.4s; }
    #main-nav > ul > li:nth-child(4) {
      transition-delay: 0.5s; }
    #main-nav > ul > li:nth-child(5) {
      transition-delay: 0.6s; }
    #main-nav > ul > li:nth-child(6) {
      transition-delay: 0.7s; }
    #main-nav > ul > li:nth-child(7) {
      transition-delay: 0.8s; }
    #main-nav > ul > li:nth-child(8) {
      transition-delay: 0.9s; }
    #main-nav > ul > li:nth-child(9) {
      transition-delay: 1s; }
    #main-nav > ul > li:nth-child(10) {
      transition-delay: 1.1s; }
    #main-nav > ul > li:nth-child(11) {
      transition-delay: 1.2s; }
    #main-nav > ul > li:nth-child(12) {
      transition-delay: 1.3s; }
    #main-nav > ul > li:nth-child(13) {
      transition-delay: 1.4s; }
    #main-nav > ul > li:nth-child(14) {
      transition-delay: 1.5s; }
    #main-nav > ul > li:nth-child(15) {
      transition-delay: 1.6s; }
    #main-nav > ul > li:nth-child(16) {
      transition-delay: 1.7s; }
    #main-nav > ul > li:nth-child(17) {
      transition-delay: 1.8s; }
    #main-nav > ul > li:nth-child(18) {
      transition-delay: 1.9s; }
    #main-nav > ul > li:nth-child(19) {
      transition-delay: 2s; }
    #main-nav > ul > li:nth-child(20) {
      transition-delay: 2.1s; }
    #main-nav > ul > li {
      margin: 0;
      list-style: none;
      position: relative;
      padding: 0 24px;
      opacity: 1;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      -webkit-transition: 0.3s ease;
      -moz-transition: 0.3s ease;
      transition: 0.3s ease; }
      #main-nav > ul > li.sub_nav > a:after {
        content: '\f105';
        font-family: 'FontAwesome';
        font-size: 20px;
        position: absolute;
        right: 10px;
        top: 13px; }
      #main-nav > ul > li a {
        display: block;
        position: relative;
        cursor: pointer;
        padding: 5px 0px;
        text-transform: uppercase;
        color: #fff9f9;
        font-weight: bold;
        letter-spacing: 0px;
        line-height: 14px;
        font-size: 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        @media screen and (min-width: 1024px) and (max-width: 1366px) {
          #main-nav > ul > li a {
            padding: 7px 0; } }
      #main-nav > ul > li > a {
        padding: 12px 0px; }
      #main-nav > ul > li:hover > a {
        color: red;
        padding-left: 8px; }
      #main-nav > ul > li.active {
        padding: 0px;
        background-color: black;
        border-left: 3px solid red; }
        #main-nav > ul > li.active > a {
          padding: 12px 24px;
          color: red; }
      #main-nav > ul > li > ul {
        position: absolute;
        top: 30px;
        padding: 10px 30px;
        margin: 0;
        background: black;
        left: 100%;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0s ease-in;
        -moz-transition: all 0s ease-in;
        transition: all 0s ease-in;
        *zoom: 1; }
        #main-nav > ul > li > ul:after {
          content: '';
          display: table;
          clear: both; }
        #main-nav > ul > li > ul.dropdown {
          width: 1200px;
          padding: 30px; }
        #main-nav > ul > li > ul > li {
          margin: 0;
          list-style: none;
          height: auto; }
          #main-nav > ul > li > ul > li.mega_menu {
            float: left;
            padding-right: 18px;
            width: 200px; }
            #main-nav > ul > li > ul > li.mega_menu:last-child {
              padding: 0; }
            #main-nav > ul > li > ul > li.mega_menu > .sub_menu > li > a, #main-nav > ul > li > ul > li.mega_menu > .sub_menu > div > a {
              color: #b06bfc; }
            #main-nav > ul > li > ul > li.mega_menu > .sub_menu > li:hover > a, #main-nav > ul > li > ul > li.mega_menu > .sub_menu > div:hover > a {
              color: red;
              padding-left: 8px; }
            #main-nav > ul > li > ul > li.mega_menu > .sub_menu > li.active > a, #main-nav > ul > li > ul > li.mega_menu > .sub_menu > div.active > a {
              color: red; }
          #main-nav > ul > li > ul > li.single_menu {
            width: 140px; }
            #main-nav > ul > li > ul > li.single_menu:hover > a {
              color: red;
              padding-left: 8px; }
            #main-nav > ul > li > ul > li.single_menu.active > a {
              color: red; }
          #main-nav > ul > li > ul > li .sub_menu {
            margin-top: 10px; }
          #main-nav > ul > li > ul > li h6, #main-nav > ul > li > ul > li .h6 {
            margin-bottom: 0; }
            #main-nav > ul > li > ul > li h6 > a, #main-nav > ul > li > ul > li .h6 > a {
              color: #fff9f9;
              padding: 0;
              font-size: 18px; }
              #main-nav > ul > li > ul > li h6 > a:hover, #main-nav > ul > li > ul > li .h6 > a:hover {
                color: red; }
          #main-nav > ul > li > ul > li .image_navigation_hover {
            height: 170px;
            margin-bottom: 15px;
            overflow: hidden; }
            #main-nav > ul > li > ul > li .image_navigation_hover a {
              padding: 0;
              height: 100%;
              display: block; }
              #main-nav > ul > li > ul > li .image_navigation_hover a img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 1;
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                transform: scale(1);
                -webkit-transition: all 0.25s;
                -moz-transition: all 0.25s;
                transition: all 0.25s; }
              #main-nav > ul > li > ul > li .image_navigation_hover a svg {
                fill: white;
                border: 1px solid; }
            #main-nav > ul > li > ul > li .image_navigation_hover:hover a img {
              opacity: 0.5;
              -webkit-transform: scale(1.1);
              -moz-transform: scale(1.1);
              -ms-transform: scale(1.1);
              transform: scale(1.1); }
          #main-nav > ul > li > ul > li > ul {
            margin: 0; }
            #main-nav > ul > li > ul > li > ul li {
              height: auto;
              list-style: none;
              margin-bottom: 0; }
      #main-nav > ul > li:hover > ul, #main-nav > ul > li:focus-within > ul,
      #main-nav > ul > li a:focus + ul {
        opacity: 1;
        visibility: visible;
        top: 0;
        -webkit-transition: opacity 0.25s ease-in, visibility 0.25s ease-in, top 0.25s ease-in;
        -moz-transition: opacity 0.25s ease-in, visibility 0.25s ease-in, top 0.25s ease-in;
        transition: opacity 0.25s ease-in, visibility 0.25s ease-in, top 0.25s ease-in; }

a.meanmenu-reveal {
  display: none; }

/*======================================================================
  #mean-menu
=======================================================================*/
/* hide the link until viewport size is reached */
a.meanmenu-reveal {
  display: none; }

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
  z-index: 999999;
  float: right; }
.mean-container a.meanmenu-reveal {
  width: 60px;
  height: 50px;
  padding: 11px 15px 8px;
  top: 0;
  right: 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative; }
  .mean-container a.meanmenu-reveal span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    top: 24px;
    left: 15px;
    right: 18px;
    background: #b06bfc;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s; }
    .mean-container a.meanmenu-reveal span:before, .mean-container a.meanmenu-reveal span:after {
      position: absolute;
      display: block;
      left: 0;
      width: 30px;
      height: 2px;
      background: #b06bfc;
      content: "";
      -webkit-transition: background 0.3s;
      -moz-transition: background 0.3s;
      transition: background 0.3s;
      -webkit-transition-duration: 0.3s, 0.3s;
      -moz-transition-duration: 0.3s, 0.3s;
      transition-duration: 0.3s, 0.3s;
      -webkit-transition-delay: 0.3s, 0s;
      -moz-transition-delay: 0.3s, 0s;
      transition-delay: 0.3s, 0s; }
    .mean-container a.meanmenu-reveal span:before {
      top: -9px;
      -webkit-transition-property: top, -webkit-transform;
      -moz-transition-property: top, -moz-transform;
      -ms-transition-property: top, -ms-transform;
      transition-property: top, transform; }
    .mean-container a.meanmenu-reveal span:after {
      bottom: -9px;
      -webkit-transition-property: bottom, -webkit-transform;
      -moz-transition-property: bottom, -moz-transform;
      -ms-transition-property: bottom, -ms-transform;
      transition-property: bottom, transform; }
  .mean-container a.meanmenu-reveal.meanclose span {
    background: none; }
    .mean-container a.meanmenu-reveal.meanclose span:after {
      bottom: 0;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition-delay: 0s, 0.3s;
      -moz-transition-delay: 0s, 0.3s;
      transition-delay: 0s, 0.3s; }
    .mean-container a.meanmenu-reveal.meanclose span:before {
      top: 0;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition-delay: 0s, 0.3s;
      -moz-transition-delay: 0s, 0.3s;
      transition-delay: 0s, 0.3s; }
.mean-container .mean-nav {
  background: black;
  top: 50px;
  position: absolute;
  z-index: 9;
  right: 0;
  width: 40%;
  overflow-x: scroll; }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .mean-container .mean-nav {
      width: 60%; } }
  @media screen and (max-width: 480px) {
    .mean-container .mean-nav {
      width: 100%; } }
  .mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none; }
    .mean-container .mean-nav ul li {
      position: relative;
      width: 100%;
      margin-bottom: 0; }
      .mean-container .mean-nav ul li h6, .mean-container .mean-nav ul li .h6 {
        margin-bottom: 0;
        line-height: inherit; }
      .mean-container .mean-nav ul li .image_navigation_hover {
        display: none; }
      .mean-container .mean-nav ul li a {
        display: block;
        width: 100%;
        padding: 8px 5%;
        margin: 0;
        text-align: left;
        color: #fff9f9;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid white;
        text-decoration: none;
        text-transform: uppercase; }
        .mean-container .mean-nav ul li a:hover {
          background: black; }
        .mean-container .mean-nav ul li a.mean-expand {
          width: 42px;
          height: 42px;
          border: none !important;
          padding: 0px !important;
          text-align: center;
          position: absolute;
          right: 0;
          top: 0;
          z-index: 2;
          font-weight: 700;
          line-height: 42px; }
          .mean-container .mean-nav ul li a.mean-expand:hover {
            background: none; }
      .mean-container .mean-nav ul li.mean-last a {
        border-bottom: none;
        margin-bottom: 0; }
      .mean-container .mean-nav ul li li a {
        width: 100%;
        padding: 8px 10%;
        border-bottom: 1px solid white;
        visibility: visible; }
      .mean-container .mean-nav ul li li li a {
        width: 100%;
        padding: 8px 15%; }
      .mean-container .mean-nav ul li li li li a {
        width: 60%;
        padding: 1em 20%; }
      .mean-container .mean-nav ul li li li li li a {
        width: 50%;
        padding: 1em 25%; }
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both; }

/*=======================  SIDEBAR SECOND-MENU  ======================*/
ul.snd_nav li {
  margin: 0;
  padding: 0;
  list-style: none; }
  ul.snd_nav li a {
    display: block;
    position: relative;
    padding: 9px 0px;
    border-bottom: 1px solid white;
    cursor: pointer;
    text-transform: uppercase;
    color: #b06bfc;
    letter-spacing: 0px;
    line-height: 21px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; }
    ul.snd_nav li a:hover {
      color: red; }
    @media screen and (min-width: 1024px) and (max-width: 1366px) {
      ul.snd_nav li a {
        padding: 7px 0; } }
    ul.snd_nav li a .fa {
      width: 25px; }

/*=======================  CURRENCY DROPDOWN  ======================*/
.curruncy_change {
  position: relative;
  padding-bottom: 9px;
  border-bottom: 1px solid white;
  *zoom: 1; }
  .curruncy_change:after {
    content: '';
    display: table;
    clear: both; }
  .curruncy_change .c_title {
    text-transform: uppercase;
    float: left;
    color: #b06bfc; }
    .curruncy_change .c_title .fa {
      width: 25px; }
  .curruncy_change .flag {
    float: right;
    position: relative; }
    .curruncy_change .flag .flag-icon {
      text-transform: uppercase;
      color: red;
      padding-right: 25px; }
    .curruncy_change .flag a {
      position: relative; }
      .curruncy_change .flag a:after {
        content: '';
        background: url(//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/down-arrow.svg?v=9371766520292014206) center no-repeat;
        width: 12px;
        height: 8px;
        position: absolute;
        right: 0;
        top: 4px;
        display: block;
        background-size: 100%; }
  .curruncy_change .select-flag {
    position: absolute;
    top: 36px;
    display: none;
    background: black;
    width: 100%;
    z-index: 999; }
    .curruncy_change .select-flag ul {
      list-style: none; }
      .curruncy_change .select-flag ul li {
        cursor: pointer;
        border-bottom: 1px solid white;
        margin-bottom: 0;
        padding: 0 15px; }
        .curruncy_change .select-flag ul li span {
          color: red;
          line-height: 32px; }

/*=======================  SITE SEARCH  ======================*/
.search-bar {
  margin-top: 10px; }
  .search-bar input {
    border: none;
    border-bottom: 1px solid #b06bfc;
    color: #b06bfc;
    font-style: italic;
    font-weight: 500;
    padding: 8px 10px;
    margin-bottom: 0;
    background-color: transparent; }
    .search-bar input::-webkit-input-placeholder {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 14px;
      color: #b06bfc;
      text-transform: normal;
      font-style: italic;
      opacity: 1;
      font-weight: 400; }
    .search-bar input:-moz-placeholder {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 14px;
      color: #b06bfc;
      text-transform: normal;
      font-style: italic;
      opacity: 1;
      font-weight: 400; }
    .search-bar input::-moz-placeholder {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 14px;
      color: #b06bfc;
      text-transform: normal;
      font-style: italic;
      opacity: 1;
      font-weight: 400; }
    .search-bar input:-ms-input-placeholder {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 14px;
      color: #b06bfc;
      text-transform: normal;
      font-style: italic;
      opacity: 1;
      font-weight: 400; }
    .search-bar input:focus::-webkit-input-placeholder {
      color: transparent; }
    .search-bar input:focus:-moz-placeholder {
      color: transparent; }
    .search-bar input:focus::-moz-placeholder {
      color: transparent; }
    .search-bar input:focus:-ms-input-placeholder {
      color: transparent; }
  .search-bar .search_icon {
    position: absolute;
    right: 10px;
    top: 5px; }
    .search-bar .search_icon:after {
      content: '\f002 ';
      font-family: 'FontAwesome';
      font-size: 14px;
      color: #b06bfc; }

.search-bar .input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%; }

.input__label {
  display: inline-block;
  float: right;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.input__label--madoka {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #7A7593;
  text-align: left;
  cursor: text; }

.input__label-content--madoka {
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s; }

.graphic--madoka {
  -webkit-transform: scale3d(1, -1, 1);
  -moz-transform: scale3d(1, -1, 1);
  -ms-transform: scale3d(1, -1, 1);
  transform: scale3d(1, -1, 1);
  -webkit-transition: stroke-dashoffset 0.5s;
  -moz-transition: stroke-dashoffset 0.5s;
  transition: stroke-dashoffset 0.5s;
  pointer-events: none;
  stroke: #b06bfc;
  stroke-width: 4px;
  stroke-dasharray: 962;
  stroke-dashoffset: 558; }

.input__field--madoka:focus + .input__label--madoka .graphic--madoka,
.input--filled .graphic--madoka {
  stroke-dashoffset: 0; }

.input__field--madoka:focus + .input__label--madoka .input__label-content--madoka,
.input--filled .input__label-content--madoka {
  -webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
  -moz-transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
  -ms-transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
  transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0); }

.graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none; }

.input__field {
  position: relative;
  display: block;
  float: right; }

/*=======================  SIDEBAR BOTTOM  ======================*/
.Side-bottom {
  width: 100%;
  padding: 0 10px;
  position: absolute;
  bottom: 15px;
  z-index: 0;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out 0.4s;
  -moz-transition: opacity 0.4s ease-in-out 0.4s;
  transition: opacity 0.4s ease-in-out 0.4s; }
  @media screen and (max-width: 1024px) {
    .Side-bottom {
      display: none; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .Side-bottom {
      position: relative;
      bottom: 0;
      margin-top: 30px; } }
  @media screen and (max-width: 480px) {
    .Side-bottom {
      margin-top: 40px;
      position: initial; } }
  .Side-bottom ul {
    margin: 0;
    padding: 0; }
    .Side-bottom ul.btm_nav {
      text-align: center;
      text-transform: uppercase;
      line-height: 1.4; }
      .Side-bottom ul.btm_nav li {
        margin: 0;
        list-style: none;
        display: inline-block; }
        .Side-bottom ul.btm_nav li a {
          color: #b06bfc;
          font-size: 11px;
          font-weight: 600; }
          .Side-bottom ul.btm_nav li a:hover {
            color: red; }
          .Side-bottom ul.btm_nav li a:after {
            content: '|';
            margin: 0 10px;
            color: #b06bfc; }
        .Side-bottom ul.btm_nav li:last-child a:after {
          display: none; }
  .Side-bottom .Side_Social_nav {
    margin-top: 12px;
    text-align: center; }
    .Side-bottom .Side_Social_nav a.fa, .Side-bottom .Side_Social_nav a.fab {
      font-size: 22px;
      margin: 0 10px;
      color: #b06bfc; }
      .Side-bottom .Side_Social_nav a.fa:hover, .Side-bottom .Side_Social_nav a.fab:hover {
        color: red; }
  .Side-bottom.hide_footer {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }

/*============================================================================
  #Social Icons - Font Awesome
==============================================================================*/
/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fa-brands-400.eot");
  src: url("fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fa-brands-400.woff2") format("woff2"), url("fa-brands-400.woff") format("woff"), url("fa-brands-400.ttf") format("truetype"), url("fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }

.fa-discord:before {
  content: "\f392"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-twitch:before {
  content: "\f1e8"; }

/*===============================================================================
      #FOOTER
================================================================================*/
#footer {
  padding-top: 80px; }
  @media screen and (max-width: 1024px) {
    #footer {
      padding-top: 50px; } }
  #footer .btm_nav {
    text-align: center;
    text-transform: uppercase; }
    #footer .btm_nav li {
      margin: 0;
      list-style: none;
      display: inline-block; }
      #footer .btm_nav li a {
        color: #b06bfc;
        font-size: 10px;
        font-weight: 600; }
        #footer .btm_nav li a:hover {
          color: red; }
        #footer .btm_nav li a:after {
          content: '|';
          margin: 0 10px;
          color: #b06bfc; }
      #footer .btm_nav li:last-child a:after {
        display: none; }
  #footer .sub_footer {
    padding: 25px 0; }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      #footer .sub_footer {
        padding: 25px 0; } }
    @media screen and (min-width: 481px) and (max-width: 1024px) {
      #footer .sub_footer {
        padding: 25px 0; } }
    @media screen and (max-width: 480px) {
      #footer .sub_footer {
        padding: 25px 0 65px; } }
    #footer .sub_footer .container > .grid, #footer .sub_footer .container > .grid--rev, #footer .sub_footer .container > .grid--full {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      @media screen and (max-width: 767px) {
        #footer .sub_footer .container > .grid, #footer .sub_footer .container > .grid--rev, #footer .sub_footer .container > .grid--full {
          display: block; } }
  #footer .footer_line {
    margin-bottom: 0;
    font-size: 12px; }
    @media screen and (min-width: 1024px) and (max-width: 1366px) {
      #footer .footer_line {
        font-size: 11px; } }
    @media screen and (max-width: 767px) {
      #footer .footer_line {
        font-size: 12px;
        line-height: 23px;
        margin-bottom: 20px;
        text-align: center; } }
    #footer .footer_line span .fa {
      color: #ff0000; }
    #footer .footer_line span:after {
      content: '|';
      padding: 0 10px; }
    #footer .footer_line span:last-child:after {
      display: none; }
    #footer .footer_line a {
      color: red; }
      #footer .footer_line a:hover {
        color: #333333; }
  #footer .payment_method {
    *zoom: 1;
    float: right; }
    #footer .payment_method:after {
      content: '';
      display: table;
      clear: both; }
    @media screen and (max-width: 767px) {
      #footer .payment_method {
        float: none;
        text-align: center; } }
    #footer .payment_method li {
      float: left;
      list-style: none;
      height: 30px;
      width: 48px;
      margin: 2px 0 2px 6px; }
      @media screen and (min-width: 768px) and (max-width: 1366px) {
        #footer .payment_method li {
          width: 36px;
          height: 22px; } }
      @media screen and (max-width: 767px) {
        #footer .payment_method li {
          margin-left: 4px;
          float: none;
          display: inline-block; } }
      @media screen and (max-width: 480px) {
        #footer .payment_method li {
          width: 30px; } }
      #footer .payment_method li img {
        display: block; }

/*----===================  NEWSLETTER  =================----*/
#newsletter {
  text-align: center;
  padding: 90px 0;
  background: url("newsletter-bg.jpg") center repeat; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    #newsletter {
      padding: 45px 0; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #newsletter {
      padding: 35px 0; } }
  @media screen and (max-width: 767px) {
    #newsletter {
      padding: 40px 5px; } }
  #newsletter h5, #newsletter .h5 {
    text-align: center;
    margin-bottom: 35px;
    color: white;
    font-weight: normal;
    font-size: 32px; }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      #newsletter h5, #newsletter .h5 {
        margin-bottom: 30px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      #newsletter h5, #newsletter .h5 {
        margin-bottom: 22px; } }
    @media screen and (max-width: 767px) {
      #newsletter h5, #newsletter .h5 {
        margin-bottom: 30px; } }
    @media screen and (max-width: 480px) {
      #newsletter h5, #newsletter .h5 {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px; } }
  #newsletter .newsletter_field {
    margin: auto; }
    #newsletter .newsletter_field .btn--small {
      width: 100%;
      margin-left: -1px; }
    #newsletter .newsletter_field .connected_form {
      *zoom: 1; }
      #newsletter .newsletter_field .connected_form:after {
        content: '';
        display: table;
        clear: both; }
      #newsletter .newsletter_field .connected_form .input_group {
        width: 100%;
        position: relative;
        overflow: hidden; }
        #newsletter .newsletter_field .connected_form .input_group input {
          border: 1px solid #de0d41;
          background: rgba(255, 108, 167, 0.4);
          margin-bottom: 0;
          padding: 12px 20px;
          color: white; }
          #newsletter .newsletter_field .connected_form .input_group input::-webkit-input-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 14px;
            color: white;
            text-transform: normal;
            font-style: normal;
            opacity: 1;
            font-weight: 700; }
          #newsletter .newsletter_field .connected_form .input_group input:-moz-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 14px;
            color: white;
            text-transform: normal;
            font-style: normal;
            opacity: 1;
            font-weight: 700; }
          #newsletter .newsletter_field .connected_form .input_group input::-moz-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 14px;
            color: white;
            text-transform: normal;
            font-style: normal;
            opacity: 1;
            font-weight: 700; }
          #newsletter .newsletter_field .connected_form .input_group input:-ms-input-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 14px;
            color: white;
            text-transform: normal;
            font-style: normal;
            opacity: 1;
            font-weight: 700; }
          #newsletter .newsletter_field .connected_form .input_group input:focus::-webkit-input-placeholder {
            color: transparent; }
          #newsletter .newsletter_field .connected_form .input_group input:focus:-moz-placeholder {
            color: transparent; }
          #newsletter .newsletter_field .connected_form .input_group input:focus::-moz-placeholder {
            color: transparent; }
          #newsletter .newsletter_field .connected_form .input_group input:focus:-ms-input-placeholder {
            color: transparent; }
          @media screen and (max-width: 767px) {
            #newsletter .newsletter_field .connected_form .input_group input {
              padding: 8px 20px; } }
        #newsletter .newsletter_field .connected_form .input_group .email_btn {
          padding: 9px 20px;
          position: absolute;
          right: 0;
          top: 0;
          color: white;
          font-size: 26px;
          line-height: 26px;
          background: rgba(255, 108, 167, 0.7); }
          #newsletter .newsletter_field .connected_form .input_group .email_btn:after {
            content: '\f105';
            font-family: 'FontAwesome'; }
      #newsletter .newsletter_field .connected_form .form--success {
        color: #c5b52d; }

#sub_header {
  padding: 12px  0;
  position: fixed;
  background-color: #333333;
  width: 100%;
  z-index: 999999;
  top: 0;
  display: none; }
  @media screen and (max-width: 1024px) {
    #sub_header {
      display: block; } }
  @media screen and (max-width: 767px) {
    #sub_header {
      padding: 10px 0;
      top: 0; } }
  #sub_header .sub_header_logo {
    margin-left: 4%;
    float: left; }
    @media screen and (min-width: 481px) and (max-width: 1024px) {
      #sub_header .sub_header_logo {
        width: 170px; } }
    @media screen and (max-width: 767px) {
      #sub_header .sub_header_logo {
        width: 160px; } }
    #sub_header .sub_header_logo a {
      display: block; }
      #sub_header .sub_header_logo a img {
        display: block; }
  #sub_header #st-trigger-effects {
    border: none;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    float: right;
    margin-right: 4%;
    position: relative;
    top: 6px;
    width: 36px;
    height: 24px; }
    @media screen and (max-width: 1024px) {
      #sub_header #st-trigger-effects {
        display: block; } }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      #sub_header #st-trigger-effects {
        top: 6px;
        width: 24px;
        height: 19px; } }
    @media screen and (max-width: 480px) {
      #sub_header #st-trigger-effects {
        top: 9px;
        width: 24px;
        height: 19px; } }
    #sub_header #st-trigger-effects span {
      width: 36px;
      height: 4px;
      border-radius: 3px;
      margin-bottom: 4px;
      background-color: red;
      display: block;
      -webkit-transition: all ease-in 0.2s;
      -moz-transition: all ease-in 0.2s;
      transition: all ease-in 0.2s; }
      @media screen and (max-width: 480px) {
        #sub_header #st-trigger-effects span {
          width: 24px;
          height: 3px;
          margin-bottom: 3px; } }
    #sub_header #st-trigger-effects.close span {
      position: relative; }
      #sub_header #st-trigger-effects.close span:first-child {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 10px;
        left: 1px; }
        @media screen and (max-width: 480px) {
          #sub_header #st-trigger-effects.close span:first-child {
            top: 6px;
            left: 1px; } }
      #sub_header #st-trigger-effects.close span:last-child {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -6px;
        left: 1px; }
      #sub_header #st-trigger-effects.close span:nth-child(2) {
        opacity: 0; }

@media screen and (max-width: 480px) {
  .nicescroll-rails.nicescroll-rails-vr {
    left: 250px !important;
    top: 63px !important; } }
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .nicescroll-rails.nicescroll-rails-vr {
    top: 74px !important;
    left: 270px !important; } }

/* Scss Document */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; }
  .owl-carousel .owl-item {
    float: left;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden; }
  .owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 1px; }
    .owl-carousel .owl-wrapper-outer.autoHeight {
      -webkit-transition: height 500ms ease-in-out;
      -moz-transition: height 500ms ease-in-out;
      transition: height 500ms ease-in-out; }
    .owl-carousel .owl-wrapper-outer .owl-wrapper {
      display: none;
      position: relative;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      backface-visibility: hidden; }
      .owl-carousel .owl-wrapper-outer .owl-wrapper:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0; }
  .owl-carousel .owl-controls {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
    .owl-carousel .owl-controls .owl-pagination .owl-page {
      cursor: pointer; }
    .owl-carousel .owl-controls .owl-buttons {
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out;
      -moz-transition: opacity 0.3s ease-in-out;
      transition: opacity 0.3s ease-in-out; }
      .owl-carousel .owl-controls .owl-buttons div {
        cursor: pointer;
        position: absolute;
        top: 50%;
        margin-top: -13px;
        outline: 0;
        width: 14px;
        height: 26px;
        text-indent: -9999px;
        z-index: 9999; }
      .owl-carousel .owl-controls .owl-buttons .owl-prev {
        left: -40px;
        background: url(control.png) no-repeat 0 0px;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out; }
        .owl-carousel .owl-controls .owl-buttons .owl-prev:hover {
          background-position: 0 -26px; }
      .owl-carousel .owl-controls .owl-buttons .owl-next {
        right: -40px;
        background: url(control.png) no-repeat -14px 0px;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out; }
        .owl-carousel .owl-controls .owl-buttons .owl-next:hover {
          background-position: -14px -26px; }
  .owl-carousel:hover .owl-buttons {
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; }
    .owl-carousel:hover .owl-buttons .owl-prev {
      left: 20px;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out; }
    .owl-carousel:hover .owl-buttons .owl-next {
      right: 20px;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out; }

.grabbing {
  cursor: url(grabbing.png) 8 8, move; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel .owl-controls .owl-dot, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-dots {
  text-align: center; }
  .owl-dots .owl-dot {
    display: inline-block;
    margin: 20px 2px 0; }
    .owl-dots .owl-dot span {
      width: 8px;
      height: 8px;
      background-color: #999999;
      display: block; }
    .owl-dots .owl-dot.active span {
      background-color: #181923; }

/** BxSlider
===================================*/
.bx-viewport, .bx-wrapper {
  position: relative;
  width: 100%;
  top: 0;
  left: 0; }

.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1; }
  .bx-wrapper img {
    max-width: 100%;
    display: block; }
  .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 99999;
    padding: 0 30px; }
  .bx-wrapper .bx-loading {
    min-height: 50px;
    background: url(bx_loader.gif) center center no-repeat white;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000; }
  .bx-wrapper .bx-controls .bx-controls-auto {
    text-align: center; }
    .bx-wrapper .bx-controls .bx-controls-auto .bx-start {
      display: block;
      text-indent: -9999px;
      width: 10px;
      height: 11px;
      outline: 0;
      background: url(//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/controls.png?24556) -86px -11px no-repeat;
      margin: 0 3px; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-start:hover {
        background-position: -86px 0; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-start:active {
        background-position: -86px 0; }
    .bx-wrapper .bx-controls .bx-controls-auto .bx-stop {
      display: block;
      text-indent: -9999px;
      width: 9px;
      height: 11px;
      outline: 0;
      background: url(//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/controls.png?24556) -86px -44px no-repeat;
      margin: 0 3px; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-stop:hover {
        background-position: -86px -33px; }
      .bx-wrapper .bx-controls .bx-controls-auto .bx-stop:active {
        background-position: -86px -33px; }
  .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%; }
  .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px; }
  .bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666666 \9;
    background: rgba(80, 80, 80, 0.75);
    width: 100%; }
    .bx-wrapper .bx-caption span {
      color: #fff;
      font-family: Arial;
      display: block;
      font-size: .85em;
      padding: 10px; }

/*==============  slider controls  ================*/
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  z-index: 9999;
  margin: 0;
  bottom: 0px;
  width: 50px;
  height: 50px;
  background: none;
  padding: 6px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media screen and (max-width: 767px) {
    .bx-wrapper .bx-controls-direction a {
      padding: 3px;
      width: 40px;
      height: 40px;
      margin: 0; } }
  .bx-wrapper .bx-controls-direction a.disabled {
    display: none; }
  .bx-wrapper .bx-controls-direction a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    content: '';
    opacity: 0.2;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .bx-wrapper .bx-controls-direction a span {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    height: 100%; }
    .bx-wrapper .bx-controls-direction a span:before, .bx-wrapper .bx-controls-direction a span:after {
      position: absolute;
      left: 25%;
      width: 3px;
      height: 50%;
      background: #fff;
      content: '';
      -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
      -moz-transition: -moz-transform 0.3s, background-color 0.3s;
      transition: transform 0.3s, background-color 0.3s;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      backface-visibility: hidden; }
    .bx-wrapper .bx-controls-direction a span:before {
      -webkit-transform: translateX(-50%) rotate(45deg);
      -moz-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
      -webkit-transform-origin: 0 100%;
      -moz-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
      transform-origin: 0 100%; }
    .bx-wrapper .bx-controls-direction a span:after {
      top: 50%;
      -webkit-transform: translateX(-50%) rotate(-45deg);
      -moz-transform: translateX(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) rotate(-45deg);
      transform: translateX(-50%) rotate(-45deg);
      -webkit-transform-origin: 0 0;
      -moz-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
      transform-origin: 0 0; }
  .bx-wrapper .bx-controls-direction a.bx-prev {
    left: 0px; }
  .bx-wrapper .bx-controls-direction a.bx-next {
    right: 0px; }
    .bx-wrapper .bx-controls-direction a.bx-next span {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  .bx-wrapper .bx-controls-direction a:hover:before {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .bx-wrapper .bx-controls-direction a:hover span:before, .bx-wrapper .bx-controls-direction a:hover span:after {
    background: #fff; }

/*==============  slider pager  ================*/
.bx-wrapper {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  cursor: default; }
  .bx-wrapper .bx-pager {
    left: 0;
    right: 0;
    position: absolute;
    z-index: 999;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 7.28%;
    bottom: 20px;
    text-align: center; }
    .bx-wrapper .bx-pager .bx-pager-item {
      position: relative;
      display: inline-block;
      margin: 0 5px;
      width: 50px;
      height: 5px;
      cursor: pointer; }
      .bx-wrapper .bx-pager .bx-pager-item a {
        overflow: hidden;
        background-color: rgba(255, 255, 255, 0.7);
        font-size: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-indent: -999em;
        cursor: pointer;
        position: absolute; }
      .bx-wrapper .bx-pager .bx-pager-item.active a {
        background-color: red; }

.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline; }

#banner_slider {
  height: calc(100vh - 150px); }
  @media screen and (min-width: 1024px) {
    #banner_slider {
      height: calc(100vh - 62px); } }
  #banner_slider .bx-viewport {
    height: calc(100vh - 150px) !important; }
    @media screen and (min-width: 1024px) {
      #banner_slider .bx-viewport {
        height: calc(100vh - 62px) !important; } }
  #banner_slider .bxslider {
    height: 100% !important; }
    #banner_slider .bxslider li {
      height: 100% !important; }
      #banner_slider .bxslider li.active .caption_box .caption {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-transition: 0.6s ease-in-out 0.6s;
        -moz-transition: 0.6s ease-in-out 0.6s;
        transition: 0.6s ease-in-out 0.6s; }
        #banner_slider .bxslider li.active .caption_box .caption .btn--quidel {
          opacity: 1;
          -webkit-transform: translateY(0%);
          -moz-transform: translateY(0%);
          -ms-transform: translateY(0%);
          transform: translateY(0%);
          -webkit-transition: 0.8s ease-in-out 1s;
          -moz-transition: 0.8s ease-in-out 1s;
          transition: 0.8s ease-in-out 1s; }
      #banner_slider .bxslider li .container {
        height: calc(100vh - 250px);
        overflow: hidden; }
        @media screen and (min-width: 1024px) {
          #banner_slider .bxslider li .container {
            height: calc(100vh - 62px); } }
        #banner_slider .bxslider li .container .caption_box {
          max-width: 520px;
          position: relative;
          top: 50%;
          -webkit-box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
          -moz-box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
          box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
          overflow: hidden;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
          @media screen and (min-width: 481px) and (max-width: 767px) {
            #banner_slider .bxslider li .container .caption_box {
              -webkit-transform: translateY(-40%);
              -moz-transform: translateY(-40%);
              -ms-transform: translateY(-40%);
              transform: translateY(-40%); } }
          @media screen and (max-width: 767px) {
            #banner_slider .bxslider li .container .caption_box {
              left: 0; } }
          @media screen and (min-width: 768px) and (max-width: 1366px) {
            #banner_slider .bxslider li .container .caption_box {
              max-width: 360px; } }
          @media screen and (max-width: 767px) {
            #banner_slider .bxslider li .container .caption_box {
              text-align: center;
              float: none;
              display: block;
              margin: auto;
              width: 90%;
              max-width: 520px; } }
        @media screen and (min-width: 768px) {
          #banner_slider .bxslider li .container .slider_caption_center {
            float: none;
            left: 0;
            right: 0;
            margin-left: auto;
            margin-right: auto;
            text-align: center; } }
        @media screen and (min-width: 768px) {
          #banner_slider .bxslider li .container .slider_caption_right {
            float: right;
            right: 6%; } }
        @media screen and (min-width: 768px) {
          #banner_slider .bxslider li .container .slider_caption_left {
            float: left;
            left: 6%; } }
        #banner_slider .bxslider li .container .caption {
          position: relative;
          max-width: 520px;
          color: #181923;
          margin: 0px;
          padding: 60px 50px;
          letter-spacing: 0px;
          font-weight: 700;
          font-size: 40px;
          text-transform: uppercase;
          -webkit-transform: translateY(-101%);
          -moz-transform: translateY(-101%);
          -ms-transform: translateY(-101%);
          transform: translateY(-101%);
          background: white;
          background-color: rgba(255, 255, 255, 0.8); }
          @media screen and (min-width: 768px) and (max-width: 1366px) {
            #banner_slider .bxslider li .container .caption {
              padding: 35px 25px 20px;
              max-width: 360px;
              font-size: 30px; } }
          @media screen and (max-width: 767px) {
            #banner_slider .bxslider li .container .caption {
              padding: 25px 20px 20px;
              width: 100%;
              text-align: center;
              background: white;
              background-color: rgba(255, 255, 255, 0.8); } }
          #banner_slider .bxslider li .container .caption.caption_left {
            float: left; }
            @media screen and (max-width: 767px) {
              #banner_slider .bxslider li .container .caption.caption_left {
                text-align: center;
                float: none;
                display: block;
                margin: auto; } }
          #banner_slider .bxslider li .container .caption.caption_center {
            text-align: center;
            margin: auto; }
          #banner_slider .bxslider li .container .caption.caption_right {
            float: right; }
            @media screen and (max-width: 767px) {
              #banner_slider .bxslider li .container .caption.caption_right {
                text-align: center;
                float: none;
                display: block;
                margin: auto; } }
          #banner_slider .bxslider li .container .caption h2, #banner_slider .bxslider li .container .caption .h2 {
            margin-bottom: 25px;
            font-weight: 700;
            font-family: "Roboto Condensed", sans-serif;
            line-height: 1.1; }
            @media screen and (max-width: 767px) {
              #banner_slider .bxslider li .container .caption h2, #banner_slider .bxslider li .container .caption .h2 {
                margin-bottom: 20px;
                font-size: 30px; } }
          #banner_slider .bxslider li .container .caption .btn--quidel {
            font-size: 15px;
            font-weight: 700;
            font-family: "Roboto Condensed", sans-serif;
            display: inherit;
            -webkit-transform: translateY(100%);
            -moz-transform: translateY(100%);
            -ms-transform: translateY(100%);
            transform: translateY(100%);
            opacity: 0;
            display: inline-block;
            padding: 10px 40px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 40px; }
            @media screen and (max-width: 767px) {
              #banner_slider .bxslider li .container .caption .btn--quidel {
                font-size: 14px; } }
          #banner_slider .bxslider li .container .caption p {
            display: none;
            margin-bottom: 26px; }
            @media screen and (max-width: 767px) {
              #banner_slider .bxslider li .container .caption p {
                display: none; } }
          @media screen and (max-width: 767px) {
            #banner_slider .bxslider li .container .caption .btn, #banner_slider .bxslider li .container .caption .btn--primary, #banner_slider .bxslider li .container .caption .btn--secondary {
              padding: 12px 30px;
              font-size: 14px;
              margin-top: 25px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    #banner_slider .bx-controls .bx-pager {
      bottom: 0; } }

/*==============  slider mobile  ================*/
.bxslider__caption--mobile {
  text-align: center;
  padding: 24px 0; }
  .bxslider__caption--mobile h2, .bxslider__caption--mobile .h2 {
    font-weight: 700;
    line-height: 1.1; }

.bxslider__btn--mobile {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 40px; }

/*============================================================================
  #MainContent
==============================================================================*/
.site_title {
  text-align: center;
  margin-bottom: 0;
  padding: 69px 0 39px; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    .site_title {
      padding: 49px 0 29px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .site_title {
      padding: 45px 0 30px; } }
  @media screen and (max-width: 767px) {
    .site_title {
      padding: 25px 0 25px; } }

/*--======  #PRODUCT CATEGORIES  ======*/
#categories .grid, #categories .grid--rev, #categories .grid--full {
  margin: 0; }
  #categories .grid .grid__item, #categories .grid--rev .grid__item, #categories .grid--full .grid__item {
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    #categories .grid .grid__item .categories_item, #categories .grid--rev .grid__item .categories_item, #categories .grid--full .grid__item .categories_item {
      position: relative;
      overflow: hidden;
      text-align: center;
      cursor: pointer;
      display: block; }
      #categories .grid .grid__item .categories_item .categories_img, #categories .grid--rev .grid__item .categories_item .categories_img, #categories .grid--full .grid__item .categories_item .categories_img {
        width: 100%;
        height: 360px; }
        @media screen and (min-width: 768px) and (max-width: 1366px) {
          #categories .grid .grid__item .categories_item .categories_img, #categories .grid--rev .grid__item .categories_item .categories_img, #categories .grid--full .grid__item .categories_item .categories_img {
            height: 260px; } }
        @media screen and (min-width: 481px) and (max-width: 767px) {
          #categories .grid .grid__item .categories_item .categories_img, #categories .grid--rev .grid__item .categories_item .categories_img, #categories .grid--full .grid__item .categories_item .categories_img {
            height: 190px; } }
        @media screen and (max-width: 480px) {
          #categories .grid .grid__item .categories_item .categories_img, #categories .grid--rev .grid__item .categories_item .categories_img, #categories .grid--full .grid__item .categories_item .categories_img {
            height: 190px; } }
        #categories .grid .grid__item .categories_item .categories_img img, #categories .grid--rev .grid__item .categories_item .categories_img img, #categories .grid--full .grid__item .categories_item .categories_img img {
          position: relative;
          display: block;
          height: 100%;
          width: 100%;
          object-fit: cover; }
      #categories .grid .grid__item .categories_item .categories_info, #categories .grid--rev .grid__item .categories_item .categories_info, #categories .grid--full .grid__item .categories_item .categories_info {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-transform: uppercase; }
        #categories .grid .grid__item .categories_item .categories_info:before, #categories .grid--rev .grid__item .categories_item .categories_info:before, #categories .grid--full .grid__item .categories_item .categories_info:before {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: -webkit-linear-gradient(top, rgba(37, 37, 37, 0) 0%, rgba(37, 37, 37, 0.8) 75%);
          background: linear-gradient(to bottom, rgba(37, 37, 37, 0) 0%, rgba(37, 37, 37, 0.8) 75%);
          content: '';
          opacity: 0;
          -webkit-transform: translate3d(0, 50%, 0);
          -moz-transform: translate3d(0, 50%, 0);
          -ms-transform: translate3d(0, 50%, 0);
          transform: translate3d(0, 50%, 0);
          -webkit-transition: all 0.4s ease-in-out;
          -moz-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out; }
          @media screen and (max-width: 1024px) {
            #categories .grid .grid__item .categories_item .categories_info:before, #categories .grid--rev .grid__item .categories_item .categories_info:before, #categories .grid--full .grid__item .categories_item .categories_info:before {
              opacity: 1;
              -webkit-transform: translate3d(0, 0px, 0);
              -moz-transform: translate3d(0, 0px, 0);
              -ms-transform: translate3d(0, 0px, 0);
              transform: translate3d(0, 0px, 0); } }
        #categories .grid .grid__item .categories_item .categories_info h3, #categories .grid--rev .grid__item .categories_item .categories_info h3, #categories .grid--full .grid__item .categories_item .categories_info h3, #categories .grid .grid__item .categories_item .categories_info .h3, #categories .grid--rev .grid__item .categories_item .categories_info .h3, #categories .grid--full .grid__item .categories_item .categories_info .h3, #categories .grid .grid__item .categories_item .categories_info p, #categories .grid--rev .grid__item .categories_item .categories_info p, #categories .grid--full .grid__item .categories_item .categories_info p, #categories .grid .grid__item .categories_item .categories_info .btn--secondary, #categories .grid--rev .grid__item .categories_item .categories_info .btn--secondary, #categories .grid--full .grid__item .categories_item .categories_info .btn--secondary {
          position: absolute;
          bottom: 0;
          left: 50%;
          margin: 0;
          opacity: 0; }
        #categories .grid .grid__item .categories_item .categories_info p, #categories .grid--rev .grid__item .categories_item .categories_info p, #categories .grid--full .grid__item .categories_item .categories_info p {
          padding: 0;
          color: white;
          width: 80%;
          text-transform: none;
          font-size: 18px;
          -webkit-transition: all 0.5s ease-in-out;
          -moz-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
          -webkit-transform: translate3d(-50%, -40px, 0);
          -moz-transform: translate3d(-50%, -40px, 0);
          -ms-transform: translate3d(-50%, -40px, 0);
          transform: translate3d(-50%, -40px, 0); }
          @media screen and (max-width: 1024px) {
            #categories .grid .grid__item .categories_item .categories_info p, #categories .grid--rev .grid__item .categories_item .categories_info p, #categories .grid--full .grid__item .categories_item .categories_info p {
              display: none; } }
          @media screen and (min-width: 1025px) and (max-width: 1366px) {
            #categories .grid .grid__item .categories_item .categories_info p, #categories .grid--rev .grid__item .categories_item .categories_info p, #categories .grid--full .grid__item .categories_item .categories_info p {
              display: none; } }
          @media screen and (min-width: 768px) and (max-width: 1024px) {
            #categories .grid .grid__item .categories_item .categories_info p, #categories .grid--rev .grid__item .categories_item .categories_info p, #categories .grid--full .grid__item .categories_item .categories_info p {
              display: none; } }
          @media screen and (max-width: 767px) {
            #categories .grid .grid__item .categories_item .categories_info p, #categories .grid--rev .grid__item .categories_item .categories_info p, #categories .grid--full .grid__item .categories_item .categories_info p {
              display: none; } }
        #categories .grid .grid__item .categories_item .categories_info .btn--small, #categories .grid--rev .grid__item .categories_item .categories_info .btn--small, #categories .grid--full .grid__item .categories_item .categories_info .btn--small {
          -webkit-transform: translate3d(-50%, -10px, 0);
          -moz-transform: translate3d(-50%, -10px, 0);
          -ms-transform: translate3d(-50%, -10px, 0);
          transform: translate3d(-50%, -10px, 0);
          -webkit-transition: all 0.6s ease-in-out;
          -moz-transition: all 0.6s ease-in-out;
          transition: all 0.6s ease-in-out;
          color: white;
          border: none;
          -webkit-box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.45);
          -moz-box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.45);
          font-size: 14px; }
          @media screen and (max-width: 1024px) {
            #categories .grid .grid__item .categories_item .categories_info .btn--small, #categories .grid--rev .grid__item .categories_item .categories_info .btn--small, #categories .grid--full .grid__item .categories_item .categories_info .btn--small {
              display: none; } }
        #categories .grid .grid__item .categories_item .categories_info h3, #categories .grid--rev .grid__item .categories_item .categories_info h3, #categories .grid--full .grid__item .categories_item .categories_info h3, #categories .grid .grid__item .categories_item .categories_info .h3, #categories .grid--rev .grid__item .categories_item .categories_info .h3, #categories .grid--full .grid__item .categories_item .categories_info .h3 {
          width: 100%;
          color: white;
          font-weight: 700;
          -webkit-transition: all 0.4s ease-in-out;
          -moz-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
          -webkit-transform: translate3d(-50%, -80px, 0);
          -moz-transform: translate3d(-50%, -80px, 0);
          -ms-transform: translate3d(-50%, -80px, 0);
          transform: translate3d(-50%, -80px, 0); }
          @media screen and (max-width: 480px) {
            #categories .grid .grid__item .categories_item .categories_info h3, #categories .grid--rev .grid__item .categories_item .categories_info h3, #categories .grid--full .grid__item .categories_item .categories_info h3, #categories .grid .grid__item .categories_item .categories_info .h3, #categories .grid--rev .grid__item .categories_item .categories_info .h3, #categories .grid--full .grid__item .categories_item .categories_info .h3 {
              font-size: 20px; } }
          @media screen and (max-width: 1024px) {
            #categories .grid .grid__item .categories_item .categories_info h3, #categories .grid--rev .grid__item .categories_item .categories_info h3, #categories .grid--full .grid__item .categories_item .categories_info h3, #categories .grid .grid__item .categories_item .categories_info .h3, #categories .grid--rev .grid__item .categories_item .categories_info .h3, #categories .grid--full .grid__item .categories_item .categories_info .h3 {
              -webkit-transform: translate3d(-50%, -20px, 0);
              -moz-transform: translate3d(-50%, -20px, 0);
              -ms-transform: translate3d(-50%, -20px, 0);
              transform: translate3d(-50%, -20px, 0);
              opacity: 1; } }
      #categories .grid .grid__item .categories_item:hover .categories_info:before, #categories .grid--rev .grid__item .categories_item:hover .categories_info:before, #categories .grid--full .grid__item .categories_item:hover .categories_info:before {
        opacity: 1;
        -webkit-transform: translate3d(0, 0px, 0);
        -moz-transform: translate3d(0, 0px, 0);
        -ms-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0); }
      #categories .grid .grid__item .categories_item:hover .categories_info h3, #categories .grid--rev .grid__item .categories_item:hover .categories_info h3, #categories .grid--full .grid__item .categories_item:hover .categories_info h3, #categories .grid .grid__item .categories_item:hover .categories_info .h3, #categories .grid--rev .grid__item .categories_item:hover .categories_info .h3, #categories .grid--full .grid__item .categories_item:hover .categories_info .h3 {
        opacity: 1;
        -webkit-transform: translate3d(-50%, -120px, 0);
        -moz-transform: translate3d(-50%, -120px, 0);
        -ms-transform: translate3d(-50%, -120px, 0);
        transform: translate3d(-50%, -120px, 0); }
        @media screen and (min-width: 1025px) and (max-width: 1366px) {
          #categories .grid .grid__item .categories_item:hover .categories_info h3, #categories .grid--rev .grid__item .categories_item:hover .categories_info h3, #categories .grid--full .grid__item .categories_item:hover .categories_info h3, #categories .grid .grid__item .categories_item:hover .categories_info .h3, #categories .grid--rev .grid__item .categories_item:hover .categories_info .h3, #categories .grid--full .grid__item .categories_item:hover .categories_info .h3 {
            padding-bottom: 20px;
            -webkit-transform: translate3d(-50%, -50px, 0);
            -moz-transform: translate3d(-50%, -50px, 0);
            -ms-transform: translate3d(-50%, -50px, 0);
            transform: translate3d(-50%, -50px, 0); } }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item:hover .categories_info h3, #categories .grid--rev .grid__item .categories_item:hover .categories_info h3, #categories .grid--full .grid__item .categories_item:hover .categories_info h3, #categories .grid .grid__item .categories_item:hover .categories_info .h3, #categories .grid--rev .grid__item .categories_item:hover .categories_info .h3, #categories .grid--full .grid__item .categories_item:hover .categories_info .h3 {
            -webkit-transform: translate3d(-50%, -30px, 0);
            -moz-transform: translate3d(-50%, -30px, 0);
            -ms-transform: translate3d(-50%, -30px, 0);
            transform: translate3d(-50%, -30px, 0); } }
      #categories .grid .grid__item .categories_item:hover .categories_info p, #categories .grid--rev .grid__item .categories_item:hover .categories_info p, #categories .grid--full .grid__item .categories_item:hover .categories_info p {
        opacity: 1;
        -webkit-transform: translate3d(-50%, -90px, 0);
        -moz-transform: translate3d(-50%, -90px, 0);
        -ms-transform: translate3d(-50%, -90px, 0);
        transform: translate3d(-50%, -90px, 0); }
        @media screen and (min-width: 1025px) and (max-width: 1366px) {
          #categories .grid .grid__item .categories_item:hover .categories_info p, #categories .grid--rev .grid__item .categories_item:hover .categories_info p, #categories .grid--full .grid__item .categories_item:hover .categories_info p {
            -webkit-transform: translate3d(-50%, -80px, 0);
            -moz-transform: translate3d(-50%, -80px, 0);
            -ms-transform: translate3d(-50%, -80px, 0);
            transform: translate3d(-50%, -80px, 0); } }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item:hover .categories_info p, #categories .grid--rev .grid__item .categories_item:hover .categories_info p, #categories .grid--full .grid__item .categories_item:hover .categories_info p {
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            transform: none; } }
      #categories .grid .grid__item .categories_item:hover .categories_info .btn--secondary, #categories .grid--rev .grid__item .categories_item:hover .categories_info .btn--secondary, #categories .grid--full .grid__item .categories_item:hover .categories_info .btn--secondary {
        opacity: 1;
        -webkit-transform: translate3d(-50%, -40px, 0);
        -moz-transform: translate3d(-50%, -40px, 0);
        -ms-transform: translate3d(-50%, -40px, 0);
        transform: translate3d(-50%, -40px, 0); }
        @media screen and (min-width: 1025px) and (max-width: 1366px) {
          #categories .grid .grid__item .categories_item:hover .categories_info .btn--secondary, #categories .grid--rev .grid__item .categories_item:hover .categories_info .btn--secondary, #categories .grid--full .grid__item .categories_item:hover .categories_info .btn--secondary {
            -webkit-transform: translate3d(-50%, -30px, 0);
            -moz-transform: translate3d(-50%, -30px, 0);
            -ms-transform: translate3d(-50%, -30px, 0);
            transform: translate3d(-50%, -30px, 0); } }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item:hover .categories_info .btn--secondary, #categories .grid--rev .grid__item .categories_item:hover .categories_info .btn--secondary, #categories .grid--full .grid__item .categories_item:hover .categories_info .btn--secondary {
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            transform: none; } }
      #categories .grid .grid__item .categories_item .categories_info__purple:before, #categories .grid--rev .grid__item .categories_item .categories_info__purple:before, #categories .grid--full .grid__item .categories_item .categories_info__purple:before {
        background: -webkit-linear-gradient(top, rgba(138, 60, 226, 0) 0%, #8a3ce2 75%);
        background: linear-gradient(to bottom, rgba(138, 60, 226, 0) 0%, #8a3ce2 75%); }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item .categories_info__purple:before, #categories .grid--rev .grid__item .categories_item .categories_info__purple:before, #categories .grid--full .grid__item .categories_item .categories_info__purple:before {
            background: -webkit-linear-gradient(top, rgba(138, 60, 226, 0) 40%, #8a3ce2 85%);
            background: linear-gradient(to bottom, rgba(138, 60, 226, 0) 40%, #8a3ce2 85%); } }
      #categories .grid .grid__item .categories_item .categories_info__purple .btn--small, #categories .grid--rev .grid__item .categories_item .categories_info__purple .btn--small, #categories .grid--full .grid__item .categories_item .categories_info__purple .btn--small {
        background-color: #8a3ce2; }
      #categories .grid .grid__item .categories_item .categories_info__red:before, #categories .grid--rev .grid__item .categories_item .categories_info__red:before, #categories .grid--full .grid__item .categories_item .categories_info__red:before {
        background: -webkit-linear-gradient(top, rgba(255, 0, 61, 0) 0%, #ff003d 75%);
        background: linear-gradient(to bottom, rgba(255, 0, 61, 0) 0%, #ff003d 75%); }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item .categories_info__red:before, #categories .grid--rev .grid__item .categories_item .categories_info__red:before, #categories .grid--full .grid__item .categories_item .categories_info__red:before {
            background: -webkit-linear-gradient(top, rgba(255, 0, 61, 0) 40%, #ff003d 85%);
            background: linear-gradient(to bottom, rgba(255, 0, 61, 0) 40%, #ff003d 85%); } }
      #categories .grid .grid__item .categories_item .categories_info__red .btn--small, #categories .grid--rev .grid__item .categories_item .categories_info__red .btn--small, #categories .grid--full .grid__item .categories_item .categories_info__red .btn--small {
        background-color: #ff003d; }
      #categories .grid .grid__item .categories_item .categories_info__yellow:before, #categories .grid--rev .grid__item .categories_item .categories_info__yellow:before, #categories .grid--full .grid__item .categories_item .categories_info__yellow:before {
        background: -webkit-linear-gradient(top, rgba(255, 178, 56, 0) 0%, #ffb238 75%);
        background: linear-gradient(to bottom, rgba(255, 178, 56, 0) 0%, #ffb238 75%); }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item .categories_info__yellow:before, #categories .grid--rev .grid__item .categories_item .categories_info__yellow:before, #categories .grid--full .grid__item .categories_item .categories_info__yellow:before {
            background: -webkit-linear-gradient(top, rgba(255, 178, 56, 0) 40%, #ffb238 85%);
            background: linear-gradient(to bottom, rgba(255, 178, 56, 0) 40%, #ffb238 85%); } }
      #categories .grid .grid__item .categories_item .categories_info__yellow .btn--small, #categories .grid--rev .grid__item .categories_item .categories_info__yellow .btn--small, #categories .grid--full .grid__item .categories_item .categories_info__yellow .btn--small {
        background-color: #ffb238; }
      #categories .grid .grid__item .categories_item .categories_info__green:before, #categories .grid--rev .grid__item .categories_item .categories_info__green:before, #categories .grid--full .grid__item .categories_item .categories_info__green:before {
        background: -webkit-linear-gradient(top, rgba(95, 229, 42, 0) 0%, #5fe52a 75%);
        background: linear-gradient(to bottom, rgba(95, 229, 42, 0) 0%, #5fe52a 75%); }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item .categories_info__green:before, #categories .grid--rev .grid__item .categories_item .categories_info__green:before, #categories .grid--full .grid__item .categories_item .categories_info__green:before {
            background: -webkit-linear-gradient(top, rgba(95, 229, 42, 0) 40%, #5fe52a 85%);
            background: linear-gradient(to bottom, rgba(95, 229, 42, 0) 40%, #5fe52a 85%); } }
      #categories .grid .grid__item .categories_item .categories_info__green .btn--small, #categories .grid--rev .grid__item .categories_item .categories_info__green .btn--small, #categories .grid--full .grid__item .categories_item .categories_info__green .btn--small {
        background-color: #5fe52a; }
      #categories .grid .grid__item .categories_item .categories_info__blue:before, #categories .grid--rev .grid__item .categories_item .categories_info__blue:before, #categories .grid--full .grid__item .categories_item .categories_info__blue:before {
        background: -webkit-linear-gradient(top, rgba(10, 220, 218, 0) 0%, #0adcda 75%);
        background: linear-gradient(to bottom, rgba(10, 220, 218, 0) 0%, #0adcda 75%); }
        @media screen and (max-width: 1024px) {
          #categories .grid .grid__item .categories_item .categories_info__blue:before, #categories .grid--rev .grid__item .categories_item .categories_info__blue:before, #categories .grid--full .grid__item .categories_item .categories_info__blue:before {
            background: -webkit-linear-gradient(top, rgba(10, 220, 218, 0) 40%, #0adcda 85%);
            background: linear-gradient(to bottom, rgba(10, 220, 218, 0) 40%, #0adcda 85%); } }
      #categories .grid .grid__item .categories_item .categories_info__blue .btn--small, #categories .grid--rev .grid__item .categories_item .categories_info__blue .btn--small, #categories .grid--full .grid__item .categories_item .categories_info__blue .btn--small {
        background-color: #0adcda; }

/*========================  #PRODUCT LIST  ========================*/
#collection {
  position: relative;
  margin: 0; }
  @media screen and (min-width: 1024px) {
    #collection {
      margin: 20px 0 40px 0; } }
  #collection .grid, #collection .grid--rev, #collection .grid--full {
    margin: 0; }
    #collection .grid .grid__item, #collection .grid--rev .grid__item, #collection .grid--full .grid__item {
      padding: 0; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #collection > .container > .products_grid > .grid > .grid__item, #collection > .container > .products_grid > .grid--rev > .grid__item, #collection > .container > .products_grid > .grid--full > .grid__item {
      width: 33.33%; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #collection.best_sellers .product_list .grid__item, #collection.related_product .product_list .grid__item {
      width: 33.33%; }
      #collection.best_sellers .product_list .grid__item:last-child, #collection.related_product .product_list .grid__item:last-child {
        display: none; } }
  #collection.best_sellers .product_img {
    height: auto !important; }

@media screen and (min-width: 768px) and (max-width: 991px) {
  #collection > .container > .product_list.grid > .grid__item, #collection > .container > .product_list.grid--rev > .grid__item, #collection > .container > .product_list.grid--full > .grid__item {
    width: 33.33%; } }

.product_item {
  position: relative;
  text-align: left;
  background-color: white;
  margin: 0 -1px -1px 0; }
  @media screen and (max-width: 480px) {
    .product_item {
      margin-bottom: 20px; } }
  .product_item .price {
    font-weight: 700;
    font-size: 20px;
    color: #181923;
    position: relative;
    text-align: center;
    z-index: 999; }
    @media screen and (max-width: 1366px) {
      .product_item .price {
        margin-top: 8px; } }
    @media screen and (max-width: 1024px) {
      .product_item .price {
        font-size: 20px;
        line-height: 20px;
        font-weight: 500; } }
    .product_item .price span {
      margin-left: 2px;
      vertical-align: bottom; }
      .product_item .price span.money {
        line-height: 20px;
        font-size: 20px; }
    .product_item .price .compare {
      margin-left: 8px; }
      .product_item .price .compare span {
        font-size: 14px;
        color: #999999;
        text-decoration: line-through; }
        @media screen and (max-width: 767px) {
          .product_item .price .compare span {
            font-size: 12px; } }
  .product_item .sale_tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    display: inline-block;
    line-height: 22px;
    color: #181923;
    padding: 2px 5px 0 20px;
    position: absolute;
    top: 25px;
    right: 0; }
    @media screen and (max-width: 1366px) {
      .product_item .sale_tag {
        font-size: 10px;
        font-weight: 500;
        line-height: 20px; } }
    @media screen and (max-width: 1024px) {
      .product_item .sale_tag {
        top: 8px; } }
    .product_item .sale_tag:after, .product_item .sale_tag:before {
      content: '';
      width: 18px;
      height: 1px;
      display: inline-block;
      background: #e5e5e5;
      position: absolute;
      left: -2px; }
      @media screen and (max-width: 1366px) {
        .product_item .sale_tag:after, .product_item .sale_tag:before {
          width: 16px; } }
    .product_item .sale_tag:before {
      top: 6px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
      @media screen and (max-width: 1366px) {
        .product_item .sale_tag:before {
          top: 5px; } }
    .product_item .sale_tag:after {
      bottom: 5px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
      @media screen and (max-width: 1366px) {
        .product_item .sale_tag:after {
          bottom: 4px; } }
  .product_item .product_img {
    position: relative;
    display: block;
    z-index: 99;
    background: #f2f2f2;
    padding: 10px;
    width: calc(90% - 2px);
    margin: 12px auto 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    .product_item .product_img > a {
      display: block;
      width: 100%; }
    .product_item .product_img img {
      display: block;
      max-width: 70%;
      margin: auto; }
    .product_item .product_img .placeholder-svg {
      border: none; }
    .product_item .product_img:before {
      content: "";
      display: block;
      padding-top: 90%; }
  .product_item .product_info {
    padding: 16px 25px;
    position: relative;
    z-index: 99;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    *zoom: 1; }
    .product_item .product_info:after {
      content: '';
      display: table;
      clear: both; }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      .product_item .product_info {
        padding: 12px 16px; } }
    @media screen and (min-width: 481px) and (max-width: 1024px) {
      .product_item .product_info {
        padding: 8px 10px; } }
    @media screen and (max-width: 480px) {
      .product_item .product_info {
        padding: 10px 15px; } }
    .product_item .product_info:before {
      position: absolute;
      top: -1px;
      left: 0px;
      right: 0px;
      content: '';
      opacity: 1;
      -webkit-transition: opacity 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
      -moz-transition: opacity 0.35s ease-in-out, -moz-transform 0.35s ease-in-out;
      transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
      -webkit-transform: scale(0, 1);
      -moz-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
      transform: scale(0, 1); }
    .product_item .product_info > div .view_btn {
      position: absolute;
      width: calc(100% - 2px);
      height: calc(100% - 2px);
      top: 1px;
      left: 1px;
      background: #fff;
      text-transform: uppercase;
      opacity: 0;
      visibility: hidden;
      top: 60%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: all 0.35s ease-in-out;
      -moz-transition: all 0.35s ease-in-out;
      transition: all 0.35s ease-in-out; }
      @media screen and (max-width: 1024px) {
        .product_item .product_info > div .view_btn {
          display: none; } }
      .product_item .product_info > div .view_btn a {
        font-size: 16px;
        line-height: 30px;
        font-weight: 500;
        color: red;
        display: inline-block;
        border-bottom: 2px solid red;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
        @media screen and (max-width: 767px) {
          .product_item .product_info > div .view_btn a {
            font-size: 15px;
            line-height: 2em; } }
    .product_item .product_info > div > .product_info_text {
      line-height: 24px;
      margin-bottom: 0;
      text-align: center;
      text-transform: none;
      display: inline;
      font-size: inherit;
      opacity: 1;
      display: block;
      -webkit-transition: -webkit-transform 0.35s ease-in-out;
      -moz-transition: -moz-transform 0.35s ease-in-out;
      transition: transform 0.35s ease-in-out; }
      @media screen and (min-width: 768px) and (max-width: 1366px) {
        .product_item .product_info > div > .product_info_text {
          line-height: 20px; } }
      @media screen and (max-width: 767px) {
        .product_item .product_info > div > .product_info_text {
          line-height: 18px; } }
      .product_item .product_info > div > .product_info_text a {
        font-size: 14px;
        font-weight: 400; }
        @media screen and (min-width: 768px) and (max-width: 1366px) {
          .product_item .product_info > div > .product_info_text a {
            font-size: 12px; } }
        @media screen and (max-width: 767px) {
          .product_item .product_info > div > .product_info_text a {
            font-weight: 500;
            display: block;
            font-size: 12px; } }
    .product_item .product_info .fa {
      color: red;
      padding: 0; }
      @media screen and (min-width: 768px) and (max-width: 1366px) {
        .product_item .product_info .fa {
          font-size: 18px; } }
      @media screen and (max-width: 767px) {
        .product_item .product_info .fa {
          font-size: 16px; } }
    .product_item .product_info:hover > div > #product-title {
      opacity: 0; }
      @media screen and (max-width: 1024px) {
        .product_item .product_info:hover > div > #product-title {
          opacity: 1; } }
    .product_item .product_info:hover .view_btn {
      opacity: 1;
      visibility: visible;
      top: 50%; }
    .product_item .product_info:hover:before {
      opacity: 1;
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
  .product_item .border_effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9; }
    .product_item .border_effect:before, .product_item .border_effect:after {
      position: absolute;
      top: -1px;
      right: -1px;
      bottom: -1px;
      left: -1px;
      content: '';
      opacity: 1;
      -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
      -moz-transition: opacity 0.35s, -moz-transform 0.5s;
      transition: opacity 0.35s, transform 0.5s; }
    .product_item .border_effect:before {
      border-top: 1px solid red;
      border-bottom: 1px solid red;
      -webkit-transform: scale(0, 1);
      -moz-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
      transform: scale(0, 1); }
    .product_item .border_effect:after {
      border-right: 1px solid red;
      border-left: 1px solid red;
      -webkit-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      transform: scale(1, 0); }
  .product_item:hover .border_effect:before, .product_item:hover .border_effect:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }

/*========================  #SHOP BY BRANDS  ========================*/
#shop_brands {
  background-color: #f2f2f2;
  padding-bottom: 60px;
  margin-top: 80px; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    #shop_brands {
      margin-top: 60px;
      padding-bottom: 50px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #shop_brands {
      margin-top: 50px;
      padding-bottom: 40px; } }
  @media screen and (max-width: 767px) {
    #shop_brands {
      margin-top: 30px;
      padding-bottom: 30px; } }

.brand_list {
  margin-top: 0;
  margin-bottom: 0; }
  .brand_list li {
    list-style: none;
    height: 68px;
    margin-bottom: 0;
    background-color: white;
    border: 1px solid #e5e5e5;
    overflow: hidden; }
    @media screen and (max-width: 1366px) {
      .brand_list li {
        height: 50px; } }
    .brand_list li a {
      display: block;
      position: relative;
      margin: auto;
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      .brand_list li a img {
        display: block;
        max-width: none;
        max-height: 90%;
        margin: 0 auto; }

#owl-demo .item {
  background: #42bdc2;
  padding: 30px 0px;
  margin: 5px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center; }

/*============================================================================
  #BLOG
==============================================================================*/
/*========================   #BLOG LIST   ========================*/
#blog {
  margin: 40px 0; }
  @media screen and (min-width: 1024px) {
    #blog {
      margin: 20px 0 40px 0; } }
  #blog .blog_list .blog_item {
    margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      #blog .blog_list .blog_item {
        margin-bottom: 20px; } }

.blog_item {
  position: relative;
  margin-bottom: 30px; }
  @media screen and (max-width: 480px) {
    .blog_item {
      margin-bottom: 25px;
      display: block;
      min-height: auto; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .blog_item {
      min-height: 367px; } }
  .blog_item .blog_img {
    height: 325px;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover; }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      .blog_item .blog_img {
        height: 270px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .blog_item .blog_img {
        height: 270px; } }
    @media screen and (max-width: 480px) {
      .blog_item .blog_img {
        height: 270px; } }
    .blog_item .blog_img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .blog_item .blog_img .blog_img_overlay {
      width: 100%;
      height: 100%;
      position: relative;
      background-image: url(//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/blog_img_overlay.png?v=7687276465107434164);
      background-repeat: repeat-x;
      background-position: bottom center; }
    .blog_item .blog_img .blog_header {
      position: absolute;
      bottom: 10px;
      left: 30px; }
    .blog_item .blog_img .blog_date {
      color: red;
      font-size: 14px;
      text-transform: uppercase; }
    .blog_item .blog_img a {
      color: white;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase; }
  .blog_item .blog_info {
    position: relative;
    padding: 20px 26px 22px;
    z-index: 99; }
    @media screen and (max-width: 480px) {
      .blog_item .blog_info {
        padding: 15px 15px 20px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .blog_item .blog_info {
        padding: 15px; } }
    .blog_item .blog_info h5, .blog_item .blog_info .h5 {
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 15px;
      display: inline-block;
      line-height: 1.3; }
    .blog_item .blog_info .blog_creat {
      line-height: 1.3;
      margin-bottom: 5px; }
      @media screen and (max-width: 480px) {
        .blog_item .blog_info .blog_creat {
          margin: 8px 0 10px; } }
      .blog_item .blog_info .blog_creat span {
        color: #999999;
        font-size: 12px; }
        .blog_item .blog_info .blog_creat span:after {
          content: '|';
          padding: 0 10px; }
        .blog_item .blog_info .blog_creat span:last-child:after {
          display: none; }
    .blog_item .blog_info .blog_div {
      width: 50px;
      height: 2px;
      background: red;
      margin: 15px 0 15px; }
    .blog_item .blog_info p {
      margin-bottom: 0;
      min-height: 48px;
      overflow: hidden;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-transition: opacity 0.35s ease-in-out;
      -moz-transition: opacity 0.35s ease-in-out;
      transition: opacity 0.35s ease-in-out; }
    .blog_item .blog_info .view_btn {
      position: absolute;
      width: 100%;
      bottom: 0;
      left: 0;
      text-align: center;
      text-transform: uppercase;
      opacity: 0;
      -webkit-transform: translate3d(0, 0px, 0);
      -moz-transform: translate3d(0, 0px, 0);
      -ms-transform: translate3d(0, 0px, 0);
      transform: translate3d(0, 0px, 0);
      -webkit-transition: opacity 0.35s, -webkit-transform 0.35s ease-in-out;
      -moz-transition: opacity 0.35s, -moz-transform 0.35s ease-in-out;
      transition: opacity 0.35s, transform 0.35s ease-in-out; }
      .blog_item .blog_info .view_btn a {
        font-size: 18px;
        line-height: 30px;
        font-weight: 700;
        color: red;
        display: inline-block;
        border-bottom: 2px solid red; }
    @media screen and (max-width: 1024px) {
      .blog_item .blog_info .view_btn {
        opacity: 1;
        -webkit-transform: translate3d(0, -29px, 0);
        -moz-transform: translate3d(0, -29px, 0);
        -ms-transform: translate3d(0, -29px, 0);
        transform: translate3d(0, -29px, 0);
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s ease-in-out;
        -moz-transition: opacity 0.35s, -moz-transform 0.35s ease-in-out;
        transition: opacity 0.35s, transform 0.35s ease-in-out; }
      .blog_item .blog_info P {
        opacity: 0;
        -webkit-transition: opacity 0.35s ease-in-out;
        -moz-transition: opacity 0.35s ease-in-out;
        transition: opacity 0.35s ease-in-out; } }
  .blog_item .border_effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9; }
    .blog_item .border_effect:before, .blog_item .border_effect:after {
      position: absolute;
      top: -1px;
      right: -1px;
      bottom: -1px;
      left: -1px;
      content: '';
      opacity: 1;
      -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
      -moz-transition: opacity 0.35s, -moz-transform 0.5s;
      transition: opacity 0.35s, transform 0.5s; }
    .blog_item .border_effect:before {
      border-top: 1px solid red;
      border-bottom: 1px solid red;
      -webkit-transform: scale(0, 1);
      -moz-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
      transform: scale(0, 1); }
    .blog_item .border_effect:after {
      border-right: 1px solid red;
      border-left: 1px solid red;
      -webkit-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      transform: scale(1, 0); }
  .blog_item:hover .view_btn {
    opacity: 1;
    -webkit-transform: translate3d(0, -29px, 0);
    -moz-transform: translate3d(0, -29px, 0);
    -ms-transform: translate3d(0, -29px, 0);
    transform: translate3d(0, -29px, 0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s ease-in-out;
    -moz-transition: opacity 0.35s, -moz-transform 0.35s ease-in-out;
    transition: opacity 0.35s, transform 0.35s ease-in-out; }
  .blog_item:hover P {
    opacity: 0;
    -webkit-transition: opacity 0.35s ease-in-out;
    -moz-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #blog .blog_item .blog_item {
    min-height: 100%;
    height: auto;
    width: 100%;
    max-width: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); } }
.blog_list ul {
  list-style-position: inherit;
  margin-left: 15px; }
.blog_list > .grid, .blog_list > .grid--rev, .blog_list > .grid--full {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap; }
  @media screen and (max-width: 767px) {
    .blog_list > .grid, .blog_list > .grid--rev, .blog_list > .grid--full {
      display: block; } }
  .blog_list > .grid > .grid__item, .blog_list > .grid--rev > .grid__item, .blog_list > .grid--full > .grid__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    @media screen and (max-width: 767px) {
      .blog_list > .grid > .grid__item, .blog_list > .grid--rev > .grid__item, .blog_list > .grid--full > .grid__item {
        display: block; } }
    .blog_list > .grid > .grid__item > .blog_item, .blog_list > .grid--rev > .grid__item > .blog_item, .blog_list > .grid--full > .grid__item > .blog_item {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-direction: column;
      -webkit-flex-direction: column; }
      @media screen and (max-width: 767px) {
        .blog_list > .grid > .grid__item > .blog_item, .blog_list > .grid--rev > .grid__item > .blog_item, .blog_list > .grid--full > .grid__item > .blog_item {
          display: block; } }

/*========================   #BLOG FULL   =============@include flex-wrap(wrap);===========*/
#blog_section.blog_details {
  padding-top: 50px; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #blog_section.blog_details {
      padding-top: 90px; } }
  @media screen and (max-width: 767px) {
    #blog_section.blog_details {
      padding-top: 80px; } }

#blog_section .blog_list .blog_item {
  width: 100%;
  border: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  *zoom: 1; }
  #blog_section .blog_list .blog_item:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (max-width: 991px) {
    #blog_section .blog_list .blog_item {
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap; } }
  #blog_section .blog_list .blog_item:last-child {
    margin-bottom: 0; }
  #blog_section .blog_list .blog_item .blog_img {
    height: auto;
    width: 50%; }
    @media screen and (max-width: 991px) {
      #blog_section .blog_list .blog_item .blog_img {
        width: 100%; } }
    @media screen and (min-width: 481px) and (max-width: 991px) {
      #blog_section .blog_list .blog_item .blog_img {
        height: 280px !important; } }
    @media screen and (max-width: 480px) {
      #blog_section .blog_list .blog_item .blog_img {
        height: 180px !important; } }
    #blog_section .blog_list .blog_item .blog_img a {
      display: block;
      height: 100%; }
      #blog_section .blog_list .blog_item .blog_img a img {
        display: block; }
  #blog_section .blog_list .blog_item .blog_info {
    width: 50%;
    padding: 0 0 0 30px; }
    @media screen and (max-width: 991px) {
      #blog_section .blog_list .blog_item .blog_info {
        width: 100%;
        padding: 15px 0 0; } }
    #blog_section .blog_list .blog_item .blog_info p {
      color: #999999;
      opacity: 1; }
    #blog_section .blog_list .blog_item .blog_info .h5 {
      margin-bottom: 15px;
      font-size: 22px;
      line-height: 1.3;
      text-transform: uppercase; }
      @media screen and (min-width: 1025px) and (max-width: 991px) {
        #blog_section .blog_list .blog_item .blog_info .h5 {
          font-size: 22px;
          margin-bottom: 12px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        #blog_section .blog_list .blog_item .blog_info .h5 {
          font-size: 18px;
          margin-bottom: 5px; } }
      @media screen and (max-width: 767px) {
        #blog_section .blog_list .blog_item .blog_info .h5 {
          font-size: 16px;
          margin-bottom: 8px; } }
    #blog_section .blog_list .blog_item .blog_info .btn, #blog_section .blog_list .blog_item .blog_info .btn--primary, #blog_section .blog_list .blog_item .blog_info .btn--secondary {
      margin-top: 30px;
      font-size: 12px;
      text-transform: uppercase; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        #blog_section .blog_list .blog_item .blog_info .btn, #blog_section .blog_list .blog_item .blog_info .btn--primary, #blog_section .blog_list .blog_item .blog_info .btn--secondary {
          margin-top: 20px; } }
      @media screen and (max-width: 767px) {
        #blog_section .blog_list .blog_item .blog_info .btn, #blog_section .blog_list .blog_item .blog_info .btn--primary, #blog_section .blog_list .blog_item .blog_info .btn--secondary {
          margin-top: 10px; } }
@media screen and (min-width: 768px) and (max-width: 991px) {
  #blog_section > .container > .grid > .nine-twelfths, #blog_section > .container > .grid--rev > .nine-twelfths, #blog_section > .container > .grid--full > .nine-twelfths {
    width: 66.66%; } }
@media screen and (min-width: 768px) and (max-width: 991px) {
  #blog_section > .container > .grid > .three-twelfths, #blog_section > .container > .grid--rev > .three-twelfths, #blog_section > .container > .grid--full > .three-twelfths {
    width: 33.33%; } }

.blog_full .blog_title {
  margin: 0 0 20px; }
.blog_full img {
  padding: 0px 0px 25px; }
  @media screen and (max-width: 767px) {
    .blog_full img {
      padding-bottom: 10px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .blog_full img {
      padding-bottom: 15px; } }
.blog_full svg {
  height: auto; }
.blog_full h5, .blog_full .h5 {
  margin-bottom: 5px;
  line-height: 1.4; }
.blog_full h1, .blog_full .h1, .blog_full h2, .blog_full .h2, .blog_full h3, .blog_full .h3, .blog_full h4, .blog_full .h4 {
  margin: 40px 0 20px; }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .blog_full h1, .blog_full .h1, .blog_full h2, .blog_full .h2, .blog_full h3, .blog_full .h3, .blog_full h4, .blog_full .h4 {
      margin: 30px 0 15px; } }
  @media screen and (max-width: 480px) {
    .blog_full h1, .blog_full .h1, .blog_full h2, .blog_full .h2, .blog_full h3, .blog_full .h3, .blog_full h4, .blog_full .h4 {
      margin: 20px 0 10px; } }
.blog_full .blog_creat {
  margin-bottom: 5px; }
  .blog_full .blog_creat span {
    font-size: 12px;
    color: #999999; }
    .blog_full .blog_creat span:after {
      content: '|';
      padding: 0 10px; }
    .blog_full .blog_creat span:last-child:after {
      display: none; }
.blog_full p {
  margin-bottom: 30px; }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .blog_full p {
      margin-bottom: 25px; } }
  @media screen and (max-width: 480px) {
    .blog_full p {
      margin-bottom: 20px; } }
.blog_full blockquote p {
  margin-bottom: 0;
  font-weight: 500; }
  @media screen and (max-width: 480px) {
    .blog_full blockquote p {
      font-size: 13px;
      padding: 6px 0px 8px 15px; } }
.blog_full blockquote span {
  color: #b47b83;
  display: inline-block;
  font-size: 11px;
  font-style: normal;
  padding-top: 0;
  text-align: right;
  width: 100%; }
.blog_full ul, .blog_full ol {
  padding-top: 10px; }

.qodef-post-info {
  *zoom: 1;
  padding-bottom: 8px;
  margin-top: 30px;
  border-bottom: 1px solid #e5e5e5; }
  .qodef-post-info:after {
    content: '';
    display: table;
    clear: both; }
  .qodef-post-info .qodef-holder {
    float: left; }
    @media screen and (max-width: 1024px) {
      .qodef-post-info .qodef-holder {
        width: 100%; } }
    .qodef-post-info .qodef-holder h6.qodef-title, .qodef-post-info .qodef-holder .qodef-title.h6 {
      font-size: 16px;
      float: left;
      margin: 0 10px 0 0;
      line-height: 22px; }
      @media screen and (max-width: 480px) {
        .qodef-post-info .qodef-holder h6.qodef-title, .qodef-post-info .qodef-holder .qodef-title.h6 {
          margin: 0 10px 10px 0; } }
    .qodef-post-info .qodef-holder .qodef-tags {
      float: left;
      line-height: 22px; }
      .qodef-post-info .qodef-holder .qodef-tags a {
        text-transform: uppercase;
        line-height: 22px;
        display: inline-block;
        font-weight: 500;
        color: red;
        margin: 0 5px; }
        .qodef-post-info .qodef-holder .qodef-tags a:hover {
          color: #181923; }
  .qodef-post-info .qodef-blog-share {
    float: right;
    text-align: right;
    padding: 0; }
    @media screen and (max-width: 1024px) {
      .qodef-post-info .qodef-blog-share {
        text-align: left;
        padding: 20px 0 0 0;
        width: 100%; } }
    .qodef-post-info .qodef-blog-share li {
      display: inline-block;
      list-style: none;
      margin: 0 6px; }
      .qodef-post-info .qodef-blog-share li a {
        font-size: 18px; }
        .qodef-post-info .qodef-blog-share li a:hover {
          color: red; }

/*========================   #BLOG COMMENTS   ========================*/
.comment_list {
  padding-top: 80px; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    .comment_list {
      padding-top: 60px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .comment_list {
      padding-top: 50px; } }
  @media screen and (max-width: 767px) {
    .comment_list {
      padding-top: 40px; } }
  .comment_list h5, .comment_list .h5 {
    margin-bottom: 40px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .comment_list h5, .comment_list .h5 {
        margin-bottom: 30px; } }
  .comment_list .comment_item {
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 15px;
    margin-bottom: 25px; }
    @media screen and (max-width: 767px) {
      .comment_list .comment_item {
        padding-bottom: 0; } }
    .comment_list .comment_item .comment_img {
      height: 100px;
      width: 100px;
      margin: auto; }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .comment_list .comment_item .comment_img {
          height: 70px;
          width: 70px; } }
      @media screen and (max-width: 767px) {
        .comment_list .comment_item .comment_img {
          width: 68px;
          height: 68px; } }
      @media screen and (max-width: 480px) {
        .comment_list .comment_item .comment_img {
          margin-bottom: 20px; } }
      .comment_list .comment_item .comment_img img {
        height: 100%;
        object-fit: cover;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%; }
    .comment_list .comment_item .comment_desc p {
      margin-bottom: 15px; }
      @media screen and (max-width: 767px) {
        .comment_list .comment_item .comment_desc p {
          font-size: 12px;
          line-height: 20px; } }
      @media screen and (max-width: 480px) {
        .comment_list .comment_item .comment_desc p {
          text-align: justify; } }
    .comment_list .comment_item .comment_desc h6 span, .comment_list .comment_item .comment_desc .h6 span {
      float: right;
      font-size: 15px;
      color: #999999; }
    .comment_list .comment_item:last-child {
      margin-bottom: 0; }

.comment_section {
  text-align: center;
  padding: 80px 0 0; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    .comment_section {
      padding: 60px 0 0; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .comment_section {
      padding: 50px 0 0 0; } }
  @media screen and (max-width: 767px) {
    .comment_section {
      padding: 40px 0 0; } }
  .comment_section h5, .comment_section .h5 {
    margin-bottom: 25px; }
  .comment_section .comment_form .submit_row {
    width: auto;
    display: inline-block; }
  .comment_section .comment_form textarea {
    height: 160px; }

@media screen and (min-width: 481px) and (max-width: 767px) {
  #blog_section .blog_item {
    min-height: auto; } }
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #blog_section .blog_item .blog_info p {
    min-height: 70px; } }
@media screen and (min-width: 481px) and (max-width: 767px) {
  #blog_section .blog_item .blog_info p {
    min-height: auto; } }

.sidebar_section {
  margin-bottom: 60px;
  padding-left: 30px;
  border-left: 1px solid #e5e5e5; }
  @media screen and (max-width: 767px) {
    .sidebar_section {
      margin-bottom: 0px;
      padding: 50px 0 0; } }
  @media screen and (max-width: 991px) {
    .sidebar_section {
      border: 0;
      padding-left: 0; } }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sidebar_section {
      padding-left: 20px; } }
  .sidebar_section .sidebar_title {
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px; }
    .sidebar_section .sidebar_title h6, .sidebar_section .sidebar_title .h6 {
      margin-bottom: 0; }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .sidebar_section .sidebar_title h6, .sidebar_section .sidebar_title .h6 {
          font-size: 14px; } }
  .sidebar_section .blog_search {
    position: relative;
    margin-bottom: 50px; }
    @media screen and (max-width: 991px) {
      .sidebar_section .blog_search {
        margin-bottom: 40px; } }
    .sidebar_section .blog_search .search-bar {
      margin: 0; }
      .sidebar_section .blog_search .search-bar input {
        padding: 8px 10px;
        line-height: 23px;
        font-weight: 600; }
        .sidebar_section .blog_search .search-bar input::-webkit-input-placeholder {
          font-family: "Roboto Condensed", sans-serif;
          font-size: 14px;
          color: #181923;
          text-transform: normal;
          font-style: italic;
          opacity: 1;
          font-weight: 600; }
        .sidebar_section .blog_search .search-bar input:-moz-placeholder {
          font-family: "Roboto Condensed", sans-serif;
          font-size: 14px;
          color: #181923;
          text-transform: normal;
          font-style: italic;
          opacity: 1;
          font-weight: 600; }
        .sidebar_section .blog_search .search-bar input::-moz-placeholder {
          font-family: "Roboto Condensed", sans-serif;
          font-size: 14px;
          color: #181923;
          text-transform: normal;
          font-style: italic;
          opacity: 1;
          font-weight: 600; }
        .sidebar_section .blog_search .search-bar input:-ms-input-placeholder {
          font-family: "Roboto Condensed", sans-serif;
          font-size: 14px;
          color: #181923;
          text-transform: normal;
          font-style: italic;
          opacity: 1;
          font-weight: 600; }
        .sidebar_section .blog_search .search-bar input:focus::-webkit-input-placeholder {
          color: transparent; }
        .sidebar_section .blog_search .search-bar input:focus:-moz-placeholder {
          color: transparent; }
        .sidebar_section .blog_search .search-bar input:focus::-moz-placeholder {
          color: transparent; }
        .sidebar_section .blog_search .search-bar input:focus:-ms-input-placeholder {
          color: transparent; }
      .sidebar_section .blog_search .search-bar button {
        border: 0;
        padding: 0;
        width: 45px;
        height: 28px;
        position: absolute;
        top: 9px;
        right: 0;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out; }
        .sidebar_section .blog_search .search-bar button.search_icon:after {
          color: #999999;
          font-size: 18px; }
    @media screen and (max-width: 768px) {
      .sidebar_section .blog_search input[type=text] {
        padding: 9px 10px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .sidebar_section .blog_search input[type=text] {
        font-size: 12px;
        padding: 9px; } }
  .sidebar_section .blog_categories_list {
    margin-bottom: 30px; }
    .sidebar_section .blog_categories_list ul li {
      margin-bottom: 0;
      list-style: none; }
      .sidebar_section .blog_categories_list ul li a {
        font-size: 14px;
        line-height: 28px;
        text-transform: capitalize; }
        .sidebar_section .blog_categories_list ul li a.active {
          color: red; }
      .sidebar_section .blog_categories_list ul li:hover a {
        color: red; }
  .sidebar_section .latest_blog_list {
    margin-bottom: 42px; }
    @media screen and (max-width: 767px) {
      .sidebar_section .latest_blog_list {
        margin-bottom: 20px; } }
    .sidebar_section .latest_blog_list .sidebar_title {
      margin-bottom: 30px; }
    .sidebar_section .latest_blog_list .latest_blog_item {
      padding-bottom: 20px;
      *zoom: 1; }
      .sidebar_section .latest_blog_list .latest_blog_item:after {
        content: '';
        display: table;
        clear: both; }
      @media screen and (max-width: 767px) {
        .sidebar_section .latest_blog_list .latest_blog_item {
          padding-bottom: 12px; } }
      .sidebar_section .latest_blog_list .latest_blog_item:last-child {
        padding-bottom: 0; }
      .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_img {
        width: 80px;
        margin: 0 15px 10px 0;
        float: left;
        height: 80px;
        display: block; }
        @media screen and (min-width: 1025px) and (max-width: 1366px) {
          .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_img {
            width: 60px;
            height: 60px; } }
        .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_img img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
      .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc h6, .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc .h6 {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
        line-height: 1;
        text-transform: none;
        font-size: 14px; }
        .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc h6:hover, .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc .h6:hover {
          color: red; }
        @media screen and (max-width: 767px) {
          .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc h6, .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc .h6 {
            line-height: 18px; } }
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc h6, .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc .h6 {
            font-size: 12px;
            margin-bottom: 5px; } }
        @media screen and (min-width: 1025px) and (max-width: 1366px) {
          .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc h6, .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc .h6 {
            font-size: 14px; } }
      .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc p {
        margin-bottom: 0;
        color: #999999;
        font-size: 12px;
        line-height: 18px; }
        @media screen and (max-width: 767px) {
          .sidebar_section .latest_blog_list .latest_blog_item .latest_blog_desc p {
            line-height: 16px; } }
  .sidebar_section .post_tags .post_tag_list {
    margin-top: 30px;
    *zoom: 1; }
    .sidebar_section .post_tags .post_tag_list:after {
      content: '';
      display: table;
      clear: both; }
    @media screen and (max-width: 1024px) {
      .sidebar_section .post_tags .post_tag_list {
        margin-top: 20px; } }
    .sidebar_section .post_tags .post_tag_list ul li {
      display: inline-block; }
      .sidebar_section .post_tags .post_tag_list ul li.active a {
        background: #333333;
        color: white; }
      .sidebar_section .post_tags .post_tag_list ul li a {
        font-size: 13px;
        font-weight: 500;
        text-transform: capitalize;
        display: inline-block;
        margin-right: 2px;
        margin-bottom: 2px;
        padding: 5px 20px;
        border-radius: 20px;
        background: #f2f2f2;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .sidebar_section .post_tags .post_tag_list ul li a:hover {
          background: #333333;
          color: white; }
        @media screen and (max-width: 767px) {
          .sidebar_section .post_tags .post_tag_list ul li a {
            font-size: 12px; } }
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          .sidebar_section .post_tags .post_tag_list ul li a {
            font-size: 12px;
            padding: 3px 16px; } }
        @media screen and (min-width: 1025px) and (max-width: 1366px) {
          .sidebar_section .post_tags .post_tag_list ul li a {
            font-size: 12px;
            padding: 4px 20px; } }

/*========================   #INSTAGRAM   ========================*/
#instagram {
  margin: 40px 0; }
  @media screen and (min-width: 1024px) {
    #instagram {
      margin: 20px 0 40px 0; } }
  #instagram .grid, #instagram .grid--rev, #instagram .grid--full {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0; }
    @media screen and (max-width: 767px) {
      #instagram .grid, #instagram .grid--rev, #instagram .grid--full {
        display: block; } }
    #instagram .grid .grid__item, #instagram .grid--rev .grid__item, #instagram .grid--full .grid__item {
      padding: 0; }
      #instagram .grid .grid__item a, #instagram .grid--rev .grid__item a, #instagram .grid--full .grid__item a, #instagram .grid .grid__item img, #instagram .grid--rev .grid__item img, #instagram .grid--full .grid__item img {
        display: block; }
  #instagram .insta_title {
    background-color: #f2f2f2;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    @media screen and (max-width: 767px) {
      #instagram .insta_title {
        display: block;
        text-align: center; } }
    @media screen and (max-width: 767px) {
      #instagram .insta_title {
        height: auto !important; } }
    #instagram .insta_title h6, #instagram .insta_title .h6 {
      text-align: center;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 0;
      font-size: 14px;
      line-height: 24px; }
      @media screen and (min-width: 768px) and (max-width: 1366px) {
        #instagram .insta_title h6, #instagram .insta_title .h6 {
          font-size: 12px;
          line-height: 20px; } }
      @media screen and (max-width: 767px) {
        #instagram .insta_title h6, #instagram .insta_title .h6 {
          text-transform: uppercase;
          text-align: center;
          position: relative;
          top: auto;
          -webkit-transform: none;
          -moz-transform: none;
          -ms-transform: none;
          transform: none;
          padding: 30px 0 20px;
          margin-bottom: 0; } }
  #instagram a {
    position: relative; }
    #instagram a .insta_img {
      position: relative;
      width: 100%;
      height: 200px;
      background-position: center;
      background-size: cover; }
      #instagram a .insta_img:after {
        content: '';
        width: 90%;
        height: 90%;
        left: 5%;
        top: 5%;
        position: absolute;
        z-index: 99;
        background: #181923;
        background-color: rgba(24, 25, 35, 0.6);
        border: 1px solid rgba(50, 50, 50, 0.4);
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out; }
      #instagram a .insta_img img {
        -webkit-transition: opacity 0.3s ease-in-out;
        -moz-transition: opacity 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out;
        width: 100%;
        height: 100%;
        Object-fit: cover; }
    #instagram a .likes {
      position: absolute;
      top: 50%;
      width: 100%;
      text-align: center;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: 0.3s ease-in-out 0.2s;
      -moz-transition: 0.3s ease-in-out 0.2s;
      transition: 0.3s ease-in-out 0.2s;
      opacity: 0;
      z-index: 9999; }
      #instagram a .likes .fa {
        font-size: 30px;
        color: white;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9); }
    #instagram a:hover .insta_img:after {
      opacity: 1;
      transform: scale(1);
      visibility: visible; }
    #instagram a:hover .likes {
      opacity: 1; }

#instafeed:after {
  content: '';
  display: table;
  clear: both; }

/*========================   #INSTAGRAM CURATED   ========================*/
.instagram-curated__info,
.instagram-curated__follow {
  padding: 18px;
  font-size: 14px;
  line-height: 1.4; }

.instagram-curated__info {
  margin-bottom: 18px; }

.instagram-curated__follow {
  display: block;
  margin-top: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: red; }
  .instagram-curated__follow:hover {
    transition: 0.4s;
    opacity: 0.7; }

.instagram-curated__post {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover; }
  .instagram-curated__post a {
    display: block;
    width: 100%;
    height: 100%; }

/*========================   #PS4 WALLPAPERS   ========================*/
.ps4-wallpapers__instructions {
  max-width: 760px;
  padding: 0 30px; }
  .ps4-wallpapers__instructions h4, .ps4-wallpapers__instructions .h4 {
    margin: 64px 0 24px 0; }
  .ps4-wallpapers__instructions p {
    text-align: left !important;
    margin: 0; }
  .ps4-wallpapers__instructions a {
    color: red; }

.ps4-wallpapers__feed {
  margin-top: 56px; }

.ps4-wallpapers__wallpaper {
  position: relative;
  min-height: 200px; }

.ps4-wallpapers__download {
  position: absolute;
  width: 100%;
  padding: 5px;
  bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  background: rgba(0, 0, 0, 0.75); }
  .ps4-wallpapers__download a {
    display: inline-block;
    margin: 0 12px;
    color: #FFF;
    transition: 0.4s; }
    .ps4-wallpapers__download a:hover {
      opacity: 0.8; }

/*============================================================================
  #MORTAL KOMBAT VOTE
==============================================================================*/
@font-face {
  font-family: 'SevenElevenSerifRegular';
  src: url("SevenElevenSerifRegular.eot");
  src: url("SevenElevenSerifRegular.eot?#") format("embedded-opentype"), url("SevenElevenSerifRegular.woff") format("woff"), url("SevenElevenSerifRegular.ttf") format("truetype"); }

/*============================================================================
  #COLLECTION CATEGORIES
==============================================================================*/
.clear {
  clear: both; }

#collections_all .collections_list {
  margin-bottom: 36px; }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    #collections_all .collections_list {
      margin-bottom: 30px; } }
  @media screen and (max-width: 480px) {
    #collections_all .collections_list {
      margin-bottom: 20px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #collections_all .collections_list > .container > .grid > .grid__item, #collections_all .collections_list > .container > .grid--rev > .grid__item, #collections_all .collections_list > .container > .grid--full > .grid__item {
      width: 100%; } }
  #collections_all .collections_list .grid > .grid__item .collections_img, #collections_all .collections_list .grid--rev > .grid__item .collections_img, #collections_all .collections_list .grid--full > .grid__item .collections_img {
    position: relative;
    width: 100%;
    text-align: right; }
    @media screen and (max-width: 991px) {
      #collections_all .collections_list .grid > .grid__item .collections_img, #collections_all .collections_list .grid--rev > .grid__item .collections_img, #collections_all .collections_list .grid--full > .grid__item .collections_img {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-flex-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      #collections_all .collections_list .grid > .grid__item .collections_img, #collections_all .collections_list .grid--rev > .grid__item .collections_img, #collections_all .collections_list .grid--full > .grid__item .collections_img {
        height: 400px !important; } }
    @media screen and (max-width: 767px) {
      #collections_all .collections_list .grid > .grid__item .collections_img, #collections_all .collections_list .grid--rev > .grid__item .collections_img, #collections_all .collections_list .grid--full > .grid__item .collections_img {
        height: 280px !important; } }
    #collections_all .collections_list .grid > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content {
      padding: 120px 40px 0; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        #collections_all .collections_list .grid > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content {
          padding: 0 30px 0; } }
      @media screen and (max-width: 767px) {
        #collections_all .collections_list .grid > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content {
          padding: 0 20px 0; } }
      @media screen and (max-width: 480px) {
        #collections_all .collections_list .grid > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content {
          text-align: center; } }
      #collections_all .collections_list .grid > .grid__item .collections_img .collection_content h6, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content h6, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content h6, #collections_all .collections_list .grid > .grid__item .collections_img .collection_content .h6, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content .h6, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content .h6 {
        font-size: 15px;
        font-weight: 700;
        display: none; }
      #collections_all .collections_list .grid > .grid__item .collections_img .collection_content h4, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content h4, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content h4, #collections_all .collections_list .grid > .grid__item .collections_img .collection_content .h4, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content .h4, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content .h4 {
        font-weight: 700;
        margin-bottom: 10px; }
      #collections_all .collections_list .grid > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content p {
        width: 50%;
        float: right;
        font-size: 12px;
        line-height: 1.9;
        color: #666;
        margin-bottom: 25px; }
        @media screen and (min-width: 1025px) and (max-width: 1366px) {
          #collections_all .collections_list .grid > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content p {
            width: 80%;
            font-size: 13px; } }
        @media screen and (min-width: 481px) and (max-width: 1024px) {
          #collections_all .collections_list .grid > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content p {
            width: 90%; } }
        @media screen and (min-width: 768px) and (max-width: 991px) {
          #collections_all .collections_list .grid > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content p {
            width: 70%; } }
        @media screen and (max-width: 480px) {
          #collections_all .collections_list .grid > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--rev > .grid__item .collections_img .collection_content p, #collections_all .collections_list .grid--full > .grid__item .collections_img .collection_content p {
            width: 100%; } }
  @media screen and (max-width: 991px) {
    #collections_all .collections_list .grid > .grid__item.collection_product, #collections_all .collections_list .grid--rev > .grid__item.collection_product, #collections_all .collections_list .grid--full > .grid__item.collection_product {
      display: none; } }
  #collections_all .collections_list .grid > .grid__item.collection_product > .grid, #collections_all .collections_list .grid--rev > .grid__item.collection_product > .grid, #collections_all .collections_list .grid--full > .grid__item.collection_product > .grid, #collections_all .collections_list .grid > .grid__item.collection_product > .grid--rev, #collections_all .collections_list .grid--rev > .grid__item.collection_product > .grid--rev, #collections_all .collections_list .grid--full > .grid__item.collection_product > .grid--rev, #collections_all .collections_list .grid > .grid__item.collection_product > .grid--full, #collections_all .collections_list .grid--rev > .grid__item.collection_product > .grid--full, #collections_all .collections_list .grid--full > .grid__item.collection_product > .grid--full {
    margin: 0; }
    #collections_all .collections_list .grid > .grid__item.collection_product > .grid > .grid__item, #collections_all .collections_list .grid--rev > .grid__item.collection_product > .grid > .grid__item, #collections_all .collections_list .grid--full > .grid__item.collection_product > .grid > .grid__item, #collections_all .collections_list .grid > .grid__item.collection_product > .grid--rev > .grid__item, #collections_all .collections_list .grid--rev > .grid__item.collection_product > .grid--rev > .grid__item, #collections_all .collections_list .grid--full > .grid__item.collection_product > .grid--rev > .grid__item, #collections_all .collections_list .grid > .grid__item.collection_product > .grid--full > .grid__item, #collections_all .collections_list .grid--rev > .grid__item.collection_product > .grid--full > .grid__item, #collections_all .collections_list .grid--full > .grid__item.collection_product > .grid--full > .grid__item {
      padding: 0 0; }
  #collections_all .collections_list:nth-child(2n) > .container > .grid > .grid__item:nth-child(1), #collections_all .collections_list:nth-child(2n) > .container > .grid--rev > .grid__item:nth-child(1), #collections_all .collections_list:nth-child(2n) > .container > .grid--full > .grid__item:nth-child(1) {
    float: right; }
  #collections_all .collections_list:nth-child(2n) > .container > .grid > .grid__item:nth-child(2), #collections_all .collections_list:nth-child(2n) > .container > .grid--rev > .grid__item:nth-child(2), #collections_all .collections_list:nth-child(2n) > .container > .grid--full > .grid__item:nth-child(2) {
    float: left; }
  #collections_all .collections_list:nth-child(2n) > .container > .grid > .grid__item .collections_img, #collections_all .collections_list:nth-child(2n) > .container > .grid--rev > .grid__item .collections_img, #collections_all .collections_list:nth-child(2n) > .container > .grid--full > .grid__item .collections_img {
    text-align: left; }
    #collections_all .collections_list:nth-child(2n) > .container > .grid > .grid__item .collections_img p, #collections_all .collections_list:nth-child(2n) > .container > .grid--rev > .grid__item .collections_img p, #collections_all .collections_list:nth-child(2n) > .container > .grid--full > .grid__item .collections_img p {
      float: left; }
  #collections_all .collections_list:last-child {
    margin-bottom: 0; }

/*==========================   #BANNER   ==========================*/
#page_banner {
  height: 340px;
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    #page_banner {
      height: 280px; } }
  @media screen and (max-width: 767px) {
    #page_banner {
      height: 200px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    #page_banner {
      height: 220px; } }
  #page_banner > .breadcrumb {
    position: absolute;
    top: 30px;
    left: 30px; }
    #page_banner > .breadcrumb span {
      font-weight: 700; }
    #page_banner > .breadcrumb a {
      color: white; }
      #page_banner > .breadcrumb a:hover {
        color: white; }
  #page_banner > .container {
    position: absolute;
    bottom: 30px;
    z-index: 99;
    width: 100%; }
    #page_banner > .container > .banner_caption {
      margin: 0 auto; }
      #page_banner > .container > .banner_caption h3, #page_banner > .container > .banner_caption .h3, #page_banner > .container > .banner_caption h1, #page_banner > .container > .banner_caption .h1 {
        text-align: center;
        color: white;
        margin-bottom: 15px;
        font-size: 55px;
        font-weight: 700; }
        @media screen and (max-width: 767px) {
          #page_banner > .container > .banner_caption h3, #page_banner > .container > .banner_caption .h3, #page_banner > .container > .banner_caption h1, #page_banner > .container > .banner_caption .h1 {
            margin-bottom: 5px;
            font-size: 45px; } }
      #page_banner > .container > .banner_caption p {
        text-align: center;
        color: white;
        font-size: 25px; }
        @media screen and (max-width: 767px) {
          #page_banner > .container > .banner_caption p {
            margin-bottom: 0px;
            font-size: 18px; } }
      #page_banner > .container > .banner_caption .dark {
        color: #181923; }
  #page_banner:after {
    /*
    content:'';
    width:100%;
    height:100%;
    z-index:98;
    background-color:rgba(51, 51, 51, 0.6);
    position:absolute;
    top:0;
    left:0;
    */ }

/*==========================   #PRODUCT FILTER   ==========================*/
.filter_options {
  -webkit-box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
  -moz-box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
  box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
  margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .filter_options {
      margin-bottom: 0px;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; } }
  .filter_options .filter_header {
    position: relative; }
    .filter_options .filter_header .filter_section {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      .filter_options .filter_header .filter_section .filter-icon, .filter_options .filter_header .filter_section .clear_filter_btn {
        position: relative;
        cursor: pointer;
        text-align: center;
        float: left;
        color: #8b8d99;
        text-transform: uppercase;
        font-size: 16px;
        line-height: 45px;
        padding: 0 20px;
        margin: 10px 0; }
        .filter_options .filter_header .filter_section .filter-icon span, .filter_options .filter_header .filter_section .clear_filter_btn span {
          margin-left: 4px; }
        .filter_options .filter_header .filter_section .filter-icon.active, .filter_options .filter_header .filter_section .clear_filter_btn.active {
          color: white;
          background: #8b8d99; }
          .filter_options .filter_header .filter_section .filter-icon.active .fa-sliders:before, .filter_options .filter_header .filter_section .clear_filter_btn.active .fa-sliders:before {
            content: '\f00d'; }
        @media screen and (max-width: 767px) {
          .filter_options .filter_header .filter_section .filter-icon.active, .filter_options .filter_header .filter_section .clear_filter_btn.active {
            padding: 0;
            margin: 0;
            width: 52px;
            height: 52px; }
            .filter_options .filter_header .filter_section .filter-icon.active span, .filter_options .filter_header .filter_section .clear_filter_btn.active span {
              display: none; } }
        @media screen and (max-width: 767px) {
          .filter_options .filter_header .filter_section .filter-icon .fa, .filter_options .filter_header .filter_section .clear_filter_btn .fa {
            font-size: 22px;
            line-height: 51px; } }
      .filter_options .filter_header .filter_section .clear_filter_btn a:before {
        font-family: 'FontAwesome';
        content: '\f00d';
        margin-right: 4px; }
      @media screen and (max-width: 767px) {
        .filter_options .filter_header .filter_section .clear_filter_btn {
          margin-left: 10px;
          width: auto; }
          .filter_options .filter_header .filter_section .clear_filter_btn span {
            display: none; }
          .filter_options .filter_header .filter_section .clear_filter_btn a {
            line-height: 51px;
            font-size: 14px; } }
    .filter_options .filter_header .form-horizontal select {
      width: auto;
      margin-left: 5px;
      background-color: white; }
    .filter_options .filter_header .sort_product {
      float: right;
      margin: 13px;
      padding-right: 20px;
      font-size: 16px;
      *zoom: 1; }
      @media screen and (max-width: 767px) {
        .filter_options .filter_header .sort_product {
          margin: 0;
          padding-right: 10px; } }
      .filter_options .filter_header .sort_product:after {
        content: '';
        display: table;
        clear: both; }
      .filter_options .filter_header .sort_product .collection-view {
        border: none;
        *zoom: 1;
        font-size: 16px;
        float: left;
        *zoom: 1; }
        .filter_options .filter_header .sort_product .collection-view:after {
          content: '';
          display: table;
          clear: both; }
        .filter_options .filter_header .sort_product .collection-view:after {
          content: '';
          display: table;
          clear: both; }
        @media screen and (max-width: 767px) {
          .filter_options .filter_header .sort_product .collection-view {
            margin-top: 4px; } }
        .filter_options .filter_header .sort_product .collection-view .view {
          background-color: #181923; }
        .filter_options .filter_header .sort_product .collection-view label {
          float: left;
          margin-right: 10px;
          line-height: 37px; }
      .filter_options .filter_header .sort_product .filter_item {
        position: relative;
        float: left;
        padding-left: 25px;
        line-height: 40px;
        margin-left: 20px; }
        @media screen and (max-width: 767px) {
          .filter_options .filter_header .sort_product .filter_item {
            padding-left: 18px;
            line-height: 42px;
            margin-left: 6px; } }
        .filter_options .filter_header .sort_product .filter_item span {
          color: #999;
          text-transform: capitalize;
          margin-right: 3px; }
          @media screen and (max-width: 767px) {
            .filter_options .filter_header .sort_product .filter_item span {
              display: none; } }
  .filter_options .product-filter {
    display: none;
    width: 100%;
    z-index: 999;
    border: 1px solid #e5e5e5;
    border-top: 0;
    padding: 30px; }
    @media screen and (min-width: 1024px) {
      .filter_options .product-filter {
        border: none; } }
    .filter_options .product-filter h6, .filter_options .product-filter .h6 {
      font-size: 15px;
      margin-bottom: 20px; }
    .filter_options .product-filter ul.sidebar-tag, .filter_options .product-filter ul.filter-tag {
      list-style: none;
      max-height: 180px;
      overflow: auto; }
      .filter_options .product-filter ul.sidebar-tag::-webkit-scrollbar, .filter_options .product-filter ul.filter-tag::-webkit-scrollbar {
        width: 6px; }
      .filter_options .product-filter ul.sidebar-tag::-webkit-scrollbar-track, .filter_options .product-filter ul.filter-tag::-webkit-scrollbar-track {
        background-color: #cccccc; }
      .filter_options .product-filter ul.sidebar-tag::-webkit-scrollbar-thumb, .filter_options .product-filter ul.filter-tag::-webkit-scrollbar-thumb {
        background-color: #333333; }
      .filter_options .product-filter ul.sidebar-tag input[type="checkbox"] + label, .filter_options .product-filter ul.sidebar-tag input[type="radio"] + label, .filter_options .product-filter ul.filter-tag input[type="checkbox"] + label, .filter_options .product-filter ul.filter-tag input[type="radio"] + label {
        color: #181923;
        font-size: 13px;
        text-transform: capitalize; }
      .filter_options .product-filter ul.sidebar-tag a, .filter_options .product-filter ul.filter-tag a {
        color: #181923;
        text-transform: capitalize; }
        .filter_options .product-filter ul.sidebar-tag a:hover, .filter_options .product-filter ul.filter-tag a:hover {
          color: #333333; }
  @media screen and (max-width: 991px) {
    .filter_options.active {
      padding: 0;
      background-color: white;
      top: 0;
      position: fixed;
      z-index: 9999999;
      margin: 0;
      width: 100%; }
      .filter_options.active .filter-col-size {
        padding: 10px 0; }
      .filter_options.active > .container {
        width: 100%;
        padding: 0; }
        .filter_options.active > .container > .grid, .filter_options.active > .container > .grid--rev, .filter_options.active > .container > .grid--full {
          margin: 0; }
      .filter_options.active .filter_header {
        border: 0;
        z-index: 99;
        box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15); }
      .filter_options.active .filter-option-item {
        padding-top: 15px; }
      .filter_options.active .mobileclear {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 110px;
        z-index: 999;
        font-size: 15px;
        text-transform: capitalize; }
      .filter_options.active .apply_filter {
        display: block;
        position: fixed;
        top: 16px;
        z-index: 99;
        right: 5px; }
      .filter_options.active .product-filter {
        padding: 0;
        border: 0; }
        .filter_options.active .product-filter > .grid, .filter_options.active .product-filter > .grid--rev, .filter_options.active .product-filter > .grid--full {
          margin: 0; }
        .filter_options.active .product-filter #mobile_filter {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          position: fixed;
          width: 100%;
          height: 100%; }
          .filter_options.active .product-filter #mobile_filter .mobile_filter_tab {
            padding-top: 15px;
            float: left;
            width: 25%;
            background-color: #f7f7f7;
            border-right: 1px solid #e5e5e5;
            list-style: none;
            overflow-x: scroll; }
            .filter_options.active .product-filter #mobile_filter .mobile_filter_tab li {
              margin: 5px 0 0;
              padding: 0 12px; }
              .filter_options.active .product-filter #mobile_filter .mobile_filter_tab li a {
                font-size: 15px;
                text-transform: uppercase;
                font-weight: 700;
                color: #333333;
                display: block;
                padding: 5px 0;
                width: 100%; }
              .filter_options.active .product-filter #mobile_filter .mobile_filter_tab li.ui-tabs-active a {
                color: red; }
          .filter_options.active .product-filter #mobile_filter .ui-tabs-panel {
            float: left;
            width: 75%;
            background-color: white;
            overflow-y: scroll; }
            .filter_options.active .product-filter #mobile_filter .ui-tabs-panel h6, .filter_options.active .product-filter #mobile_filter .ui-tabs-panel .h6 {
              display: none; }
            .filter_options.active .product-filter #mobile_filter .ui-tabs-panel ul li {
              border-bottom: 1px solid #e5e5e5;
              padding: 8px 18px;
              margin-bottom: 0;
              list-style: none; }
              .filter_options.active .product-filter #mobile_filter .ui-tabs-panel ul li input[type="checkbox"] + label, .filter_options.active .product-filter #mobile_filter .ui-tabs-panel ul li input[type="radio"] + label {
                color: #181923;
                font-size: 13px;
                text-transform: capitalize; }
      .filter_options.active .sort_product {
        display: none; } }
      @media screen and (max-width: 991px) and (max-width: 767px) {
        .filter_options.active .mobileclear {
          top: 13px; } }
      @media screen and (max-width: 991px) and (max-width: 767px) {
        .filter_options.active .apply_filter {
          top: 13px;
          padding: 4px 20px 2px; } }
          @media screen and (max-width: 991px) and (max-width: 991px) {
            .filter_options.active .product-filter #mobile_filter .mobile_filter_tab {
              display: block; } }
          @media screen and (max-width: 991px) and (max-width: 767px) {
            .filter_options.active .product-filter #mobile_filter .mobile_filter_tab {
              width: 33.33%; } }
              @media screen and (max-width: 991px) and (max-width: 767px) {
                .filter_options.active .product-filter #mobile_filter .mobile_filter_tab li a {
                  font-size: 13px; } }
          @media screen and (max-width: 991px) and (max-width: 767px) {
            .filter_options.active .product-filter #mobile_filter .ui-tabs-panel {
              width: 66.66%; } }
  .filter_options .mobileclear {
    display: none !important; }
  .filter_options .apply_filter {
    display: none; }
  .filter_options .mobile_filter_tab {
    display: none; }

#flavor input[type="checkbox"] + label span, #flavor input[type="radio"] + label span {
  margin: -10px 10px 0 0; }
#flavor li {
  margin-top: 4px !important;
  padding-bottom: 4px !important; }
  @media screen and (min-width: 1024px) {
    #flavor li {
      margin-bottom: 0 !important; } }

@media screen and (min-width: 1024px) {
  #special, #type {
    border-left: 1px solid #dfe0e6; } }

.flavor-filter-tag {
  height: 18px;
  width: auto; }

.filter-option-item label:hover, .filter-option-item li:hover {
  cursor: pointer; }

.filter_tags .tag_list {
  color: #666;
  width: calc(100% - 66px);
  display: block;
  margin-top: 20px; }
  @media screen and (max-width: 991px) {
    .filter_tags .tag_list {
      display: none; } }
  .filter_tags .tag_list p {
    display: inline-block;
    margin: 0 15px 0;
    text-transform: capitalize;
    color: #999999; }
  .filter_tags .tag_list span {
    background: #e5e5e5;
    padding: 3px 15px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin: 0 3px;
    cursor: pointer; }
    .filter_tags .tag_list span.clear_all {
      background-color: #333333;
      color: white; }
  .filter_tags .tag_list .fa {
    margin-left: 8px;
    font-size: 13px; }

/*=========   #DROPDOWN   =========*/
.heapBox {
  width: auto;
  position: relative;
  display: inline-block; }
  .heapBox .holder {
    display: block;
    color: #333333;
    font-weight: 600;
    letter-spacing: 0;
    cursor: pointer;
    margin-bottom: 0px;
    text-transform: capitalize;
    cursor: pointer;
    text-align: right;
    padding-right: 25px; }
    @media screen and (max-width: 480px) {
      .heapBox .holder {
        padding-right: 20px; } }
    .heapBox .holder:after {
      content: '\f107';
      font-family: 'FontAwesome';
      font-size: 20px;
      position: absolute;
      right: 0;
      top: 1px; }
  .heapBox .heap {
    top: 38px;
    right: -10px;
    position: absolute;
    width: 220px;
    z-index: 9999;
    border: 1px solid #e5e5e5;
    padding: 10px 0;
    background-color: white; }
    .heapBox .heap ul {
      border-top: 0; }
      .heapBox .heap ul li {
        list-style: none;
        margin-bottom: 0; }
        .heapBox .heap ul li a {
          color: #333333;
          padding: 5px 15px;
          width: 100%;
          display: block;
          line-height: 24px; }
        .heapBox .heap ul li:hover {
          background-color: #f2f2f2;
          -webkit-transition: 0.3s ease-in-out;
          -moz-transition: 0.3s ease-in-out;
          transition: 0.3s ease-in-out; }
          .heapBox .heap ul li:hover a {
            color: red;
            transition: none;
            -webkit-transition: 0.3s ease-in-out;
            -moz-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out; }

/*============================================================================
  #PRODUCT DETAILS
==============================================================================*/
/*==========================   #PRODUCT DETAIL   ==========================*/
#product_details {
  padding: 20px 0 60px; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #product_details {
      padding: 30px 0 60px; } }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    #product_details {
      padding: 30px 0 60px; } }
  @media screen and (max-width: 991px) {
    #product_details {
      padding-top: 10px;
      padding-bottom: 18px; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    #product_details > .container > .grid > .grid__item, #product_details > .container > .grid--rev > .grid__item, #product_details > .container > .grid--full > .grid__item {
      width: 100%; } }

.prodcut_slider .slider {
  height: 100%;
  border-right: 1px solid #e5e5e5; }
  .prodcut_slider .slider li {
    height: 520px;
    margin-bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    list-style: none;
    background-color: white;
    opacity: 0.96;
    text-align: center; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      .prodcut_slider .slider li {
        height: 500px; } }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      .prodcut_slider .slider li {
        height: 380px; } }
    @media screen and (max-width: 480px) {
      .prodcut_slider .slider li {
        height: 340px; } }
    .prodcut_slider .slider li > span {
      height: 100%;
      width: 100%;
      display: -webkit-box !important;
      display: -moz-box !important;
      display: -ms-flexbox !important;
      display: -webkit-flex !important;
      display: flex !important;
      -webkit-box-align: center;
      -webkit-flex-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      .prodcut_slider .slider li > span img {
        margin: 0 auto; }
    .prodcut_slider .slider li img {
      max-height: 100%; }
      @media screen and (max-width: 1024px) {
        .prodcut_slider .slider li img {
          margin: 0 auto;
          display: block; } }
.prodcut_slider #thumbnail {
  margin-top: 40px; }
  .prodcut_slider #thumbnail .thumb_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer;
    height: 136px;
    width: 100%;
    margin-bottom: 0px !important;
    padding-bottom: 3px; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      .prodcut_slider #thumbnail .thumb_item {
        height: 92px; } }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      .prodcut_slider #thumbnail .thumb_item {
        height: 68px; } }
    @media screen and (max-width: 480px) {
      .prodcut_slider #thumbnail .thumb_item {
        height: 60px; } }
    .prodcut_slider #thumbnail .thumb_item a {
      display: block;
      width: 100%;
      background-color: white;
      opacity: 0.96; }
      .prodcut_slider #thumbnail .thumb_item a img {
        max-height: 100%;
        display: block;
        margin: auto;
        width: auto; }
.prodcut_slider .bx-wrapper .bx-controls-direction a.bx-prev {
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  top: 0;
  margin: 0; }
  .prodcut_slider .bx-wrapper .bx-controls-direction a.bx-prev span:after, .prodcut_slider .bx-wrapper .bx-controls-direction a.bx-prev span:before {
    background: red; }
.prodcut_slider .bx-wrapper .bx-controls-direction a.bx-next {
  left: 50%;
  top: auto;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  margin: 0;
  right: auto;
  bottom: 0; }
  .prodcut_slider .bx-wrapper .bx-controls-direction a.bx-next span:after, .prodcut_slider .bx-wrapper .bx-controls-direction a.bx-next span:before {
    background: red; }

.breadcrumb_product {
  width: 100%; }
  .breadcrumb_product a {
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize; }
    .breadcrumb_product a:hover {
      color: #333333; }
    .breadcrumb_product a.disable {
      color: #999999; }
  .breadcrumb_product .next_product {
    float: right; }
  .breadcrumb_product:after {
    display: block;
    content: '';
    clear: both; }

.product_detail_info {
  margin-top: 75px;
  margin-left: 20px; }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .product_detail_info {
      margin-top: 40px; } }
  @media screen and (max-width: 767px) {
    .product_detail_info {
      margin-top: 15px; } }
  .product_detail_info .pd_title {
    text-transform: capitalize; }
    @media screen and (max-width: 767px) {
      .product_detail_info .pd_title {
        margin-bottom: 0px;
        font-size: 16px;
        line-height: 22px;
        font-weight: 700; } }
  .product_detail_info .pd_price {
    margin-bottom: 44px; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      .product_detail_info .pd_price {
        margin-bottom: 30px; } }
    @media screen and (max-width: 767px) {
      .product_detail_info .pd_price {
        margin-bottom: 20px; } }
    .product_detail_info .pd_price .money {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.6; }
  .product_detail_info .review_star {
    margin-bottom: 12px; }
    @media screen and (max-width: 767px) {
      .product_detail_info .review_star {
        margin-bottom: 6px; } }
    .product_detail_info .review_star .star span {
      margin: 0 10px 0 0; }
    .product_detail_info .review_star:after {
      clear: both;
      display: block;
      content: ''; }
  .product_detail_info p.quick_dec {
    margin-bottom: 40px;
    color: #999999;
    font-size: 13px;
    line-height: 23px;
    border-top: 1px solid #e5e5e5;
    padding: 30px 0 30px;
    border-bottom: 1px solid #e5e5e5; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      .product_detail_info p.quick_dec {
        margin-bottom: 30px;
        padding: 25px 0 25px; } }
    @media screen and (max-width: 767px) {
      .product_detail_info p.quick_dec {
        margin-bottom: 25px;
        padding: 20px 0 20px; } }
  .product_detail_info .product_variant {
    /****=================  SELECT  SIZE  ===============****/ }
    .product_detail_info .product_variant label {
      font-weight: 900;
      text-transform: uppercase;
      float: left;
      width: 75px;
      line-height: 30px;
      font-size: 12px; }
    .product_detail_info .product_variant .btn--outlined {
      background-color: white;
      color: #181923;
      border: 2px solid #ccc;
      margin-bottom: 15px;
      width: 160px;
      padding: 11px 0px; }
      .product_detail_info .product_variant .btn--outlined:hover {
        opacity: 0.7; }
      @media screen and (max-width: 767px) {
        .product_detail_info .product_variant .btn--outlined {
          width: calc(100% - 20px); } }
    .product_detail_info .product_variant .selector-wrapper {
      *zoom: 1;
      margin-bottom: 25px; }
      .product_detail_info .product_variant .selector-wrapper:after {
        content: '';
        display: table;
        clear: both; }
      @media screen and (max-width: 767px) {
        .product_detail_info .product_variant .selector-wrapper {
          margin-bottom: 18px; } }
      .product_detail_info .product_variant .selector-wrapper select {
        float: left;
        min-width: 85px;
        height: 36px;
        padding: 6px 25px 6px 15px;
        margin-bottom: 0;
        border-radius: 20px;
        width: auto;
        border: 2px solid #cccccc;
        background-color: white;
        color: #333333;
        font-weight: 700;
        background-position: right 14px center; }
      @media screen and (min-width: 768px) and (max-width: 1366px) {
        .product_detail_info .product_variant .selector-wrapper {
          margin-bottom: 18px; } }
      .product_detail_info .product_variant .selector-wrapper label {
        line-height: 36px; }
    .product_detail_info .product_variant .Quantity-wrapper {
      *zoom: 1;
      margin-bottom: 30px;
      padding-bottom: 40px; }
      .product_detail_info .product_variant .Quantity-wrapper:after {
        content: '';
        display: table;
        clear: both; }
      @media screen and (min-width: 768px) and (max-width: 1366px) {
        .product_detail_info .product_variant .Quantity-wrapper {
          padding-bottom: 30px; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .product_detail_info .product_variant .Quantity-wrapper {
          margin-bottom: 15px; } }
      @media screen and (max-width: 767px) {
        .product_detail_info .product_variant .Quantity-wrapper {
          margin-bottom: 20px;
          padding-bottom: 25px; } }
      .product_detail_info .product_variant .Quantity-wrapper label {
        line-height: 36px; }
    .product_detail_info .product_variant .AddToCart-wrapper {
      float: left;
      margin-right: 10px;
      position: relative;
      margin-bottom: 15px; }
      .product_detail_info .product_variant .AddToCart-wrapper .disabled {
        padding: 11px 45px; }
      @media screen and (max-width: 767px) {
        .product_detail_info .product_variant .AddToCart-wrapper {
          width: calc(100% - 20px); }
          .product_detail_info .product_variant .AddToCart-wrapper .btn--yellow, .product_detail_info .product_variant .AddToCart-wrapper .disabled {
            width: 100%; } }
      .product_detail_info .product_variant .AddToCart-wrapper #AddedConfirmation {
        position: absolute;
        background-color: red !important;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #ffc520 !important;
        color: #181923 !important;
        border: none !important;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        padding: 12px 0;
        z-index: 99;
        cursor: default;
        display: none; }
    @media screen and (max-width: 480px) {
      .product_detail_info .product_variant .wishlist {
        margin: 0 auto;
        float: none;
        display: block; } }
    .product_detail_info .product_variant .prodcut_share {
      *zoom: 1;
      border-top: 1px solid #e5e5e5;
      padding-top: 20px;
      margin-top: 30px; }
      .product_detail_info .product_variant .prodcut_share:after {
        content: '';
        display: table;
        clear: both; }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .product_detail_info .product_variant .prodcut_share {
          margin-top: 15px; } }
      @media screen and (max-width: 767px) {
        .product_detail_info .product_variant .prodcut_share {
          margin-top: 20px; } }
      .product_detail_info .product_variant .prodcut_share label {
        line-height: 22px; }
      .product_detail_info .product_variant .prodcut_share .social-icons {
        float: left; }
        .product_detail_info .product_variant .prodcut_share .social-icons .fa {
          margin-right: 10px;
          font-size: 18px;
          line-height: 24px;
          color: #999999; }
          .product_detail_info .product_variant .prodcut_share .social-icons .fa:hover {
            color: #181923; }

.selector-buttons-wrapper span {
  display: inline-block;
  padding: 6px 24px;
  color: red;
  background-color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid #EBECF0;
  transition: 0.4s;
  margin-right: 6px;
  margin-bottom: 18px;
  cursor: pointer; }
  .selector-buttons-wrapper span:hover {
    border-color: red; }
  .selector-buttons-wrapper span.active {
    color: #FFF;
    border-color: #FFF;
    background: none; }

@-moz-document url-prefix() {
  .product_detail_info .product_variant .selector-wrapper select {
    padding: 6px 25px 7px 15px; }

  .sidebar_section .blog_search .search-bar button {
    top: 7px; } }

.bogof_variant .selector-wrapper label {
  font-size: 14px;
  line-height: 15px !important;
  color: red; }
.bogof_variant .selector-wrapper select {
  border-color: red !important; }

/****=================  PRODUCT REVIEW  ===============****/
.star {
  float: left; }
  .star .fa {
    color: red; }
    .star .fa.empty-star {
      color: #999999; }
  .star span {
    color: #999999;
    margin-left: 20px; }

.add_review {
  margin-left: 10px;
  text-transform: capitalize; }
  .add_review:before {
    content: '|';
    margin-right: 10px; }

/*=================  PRODUCT QUANTITY  ===============*/
.product_input {
  *zoom: 1; }
  .product_input:after {
    content: '';
    display: table;
    clear: both; }
  .product_input .plus, .product_input .minus {
    background-color: white;
    border: 2px solid #cccccc;
    border-left: 0;
    width: 40px;
    height: 36px;
    float: left;
    font-family: 'FontAwesome';
    font-size: 12px; }
    @media screen and (max-width: 480px) {
      .product_input .plus, .product_input .minus {
        width: 36px; } }
    .product_input .plus:after, .product_input .minus:after {
      content: "\f067";
      top: 1px;
      position: relative; }
  .product_input .minus {
    border-right: 0;
    border-left: 2px solid #cccccc; }
    .product_input .minus:after {
      content: "\f068";
      top: 1px;
      position: relative;
      display: inline-block; }
  .product_input input[type="text"] {
    float: left;
    height: 36px;
    width: 60px;
    text-align: center;
    font-size: 15px;
    padding: 6px 0 4px;
    font-weight: 700;
    margin-bottom: 0;
    border: 2px solid #cccccc;
    border-right: 0;
    border-left: 0;
    background: white;
    margin: 0 2px; }

@-moz-document url-prefix() {
  .product_input input[type="text"] {
    padding: 5px 0 5px; }

  .product_input .minus:after, .product_input .plus:after, .product_input .minus:after {
    top: 0; } }

/*==========================   #RELATED PRODUCT   ==========================*/
.related_product h5, .related_product .h5 {
  font-weight: 300; }
.related_product .product_list.grid, .related_product .product_list.grid--rev, .related_product .product_list.grid--full {
  margin: 0; }
  .related_product .product_list.grid .owl-item, .related_product .product_list.grid--rev .owl-item, .related_product .product_list.grid--full .owl-item {
    padding: 0; }
    .related_product .product_list.grid .owl-item .grid__item, .related_product .product_list.grid--rev .owl-item .grid__item, .related_product .product_list.grid--full .owl-item .grid__item {
      width: 100%;
      padding: 0; }
      .related_product .product_list.grid .owl-item .grid__item .product_item, .related_product .product_list.grid--rev .owl-item .grid__item .product_item, .related_product .product_list.grid--full .owl-item .grid__item .product_item {
        margin: 0 -1px 0 0; }
  .related_product .product_list.grid .owl-dots .owl-dot, .related_product .product_list.grid--rev .owl-dots .owl-dot, .related_product .product_list.grid--full .owl-dots .owl-dot {
    margin: 0px 2px 0; }

/*==========================   #PRODUCT FULL DESCRIPTION  ==========================*/
#desc_pro, #tabs {
  padding-bottom: 10px; }
  @media screen and (max-width: 1366px) {
    #desc_pro .grid__item, #tabs .grid__item {
      width: 100% !important; } }
  @media screen and (max-width: 480px) {
    #desc_pro .grid__item, #tabs .grid__item {
      width: 100%; } }
  #desc_pro > ul, #tabs > ul {
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    *zoom: 1; }
    #desc_pro > ul:after, #tabs > ul:after {
      content: '';
      display: table;
      clear: both; }
    #desc_pro > ul .ui-state-default, #tabs > ul .ui-state-default {
      list-style: none;
      margin-bottom: 0;
      display: inline-block;
      position: relative; }
      @media screen and (max-width: 480px) {
        #desc_pro > ul .ui-state-default, #tabs > ul .ui-state-default {
          width: 100%;
          text-align: center; } }
      #desc_pro > ul .ui-state-default:after, #tabs > ul .ui-state-default:after {
        content: '';
        width: 100%;
        height: 2px;
        position: absolute;
        bottom: -1px;
        background-color: red;
        display: block;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: -webkit-transform ease-in-out 0.4s;
        -moz-transition: -moz-transform ease-in-out 0.4s;
        transition: transform ease-in-out 0.4s; }
        @media screen and (max-width: 480px) {
          #desc_pro > ul .ui-state-default:after, #tabs > ul .ui-state-default:after {
            display: none; } }
      #desc_pro > ul .ui-state-default:hover .ui-tabs-anchor, #tabs > ul .ui-state-default:hover .ui-tabs-anchor {
        color: red; }
      #desc_pro > ul .ui-state-default:hover:after, #tabs > ul .ui-state-default:hover:after {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); }
      #desc_pro > ul .ui-state-default .ui-tabs-anchor, #tabs > ul .ui-state-default .ui-tabs-anchor {
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        padding: 13px 30px;
        display: block;
        color: #8b8d99; }
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          #desc_pro > ul .ui-state-default .ui-tabs-anchor, #tabs > ul .ui-state-default .ui-tabs-anchor {
            line-height: 1;
            padding: 16px 30px; } }
        @media screen and (min-width: 481px) and (max-width: 767px) {
          #desc_pro > ul .ui-state-default .ui-tabs-anchor, #tabs > ul .ui-state-default .ui-tabs-anchor {
            padding: 10px 18px; } }
        @media screen and (max-width: 480px) {
          #desc_pro > ul .ui-state-default .ui-tabs-anchor, #tabs > ul .ui-state-default .ui-tabs-anchor {
            padding: 3px 0px;
            display: inline-block;
            text-align: center; } }
      #desc_pro > ul .ui-state-default.ui-tabs-active:after, #tabs > ul .ui-state-default.ui-tabs-active:after {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); }
      #desc_pro > ul .ui-state-default.ui-tabs-active .ui-tabs-anchor, #tabs > ul .ui-state-default.ui-tabs-active .ui-tabs-anchor {
        color: red; }
  #desc_pro .ui-tabs-panel, #tabs .ui-tabs-panel {
    padding: 30px 30px 0px 30px; }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      #desc_pro .ui-tabs-panel, #tabs .ui-tabs-panel {
        padding: 20px 0px 10px 0px; } }
    @media screen and (max-width: 480px) {
      #desc_pro .ui-tabs-panel, #tabs .ui-tabs-panel {
        padding: 25px 0 0; } }
    #desc_pro .ui-tabs-panel ul, #tabs .ui-tabs-panel ul {
      list-style: none; }
      #desc_pro .ui-tabs-panel ul li, #tabs .ui-tabs-panel ul li {
        margin-bottom: 0; }
    #desc_pro .ui-tabs-panel p, #tabs .ui-tabs-panel p {
      margin-bottom: 15px; }
      @media screen and (max-width: 767px) {
        #desc_pro .ui-tabs-panel p, #tabs .ui-tabs-panel p {
          margin-bottom: 10px; } }
    #desc_pro .ui-tabs-panel h6, #desc_pro .ui-tabs-panel .h6, #tabs .ui-tabs-panel h6, #tabs .ui-tabs-panel .h6 {
      margin-bottom: 15px; }
      @media screen and (max-width: 767px) {
        #desc_pro .ui-tabs-panel h6, #desc_pro .ui-tabs-panel .h6, #tabs .ui-tabs-panel h6, #tabs .ui-tabs-panel .h6 {
          margin-bottom: 6px; } }
  #desc_pro div, #desc_pro p, #tabs div, #tabs p {
    line-height: 1.3;
    font-size: 14px; }

/*============================================================================
  #PRODUCT 2019
==============================================================================*/
/* PRODUCT 2019 - GENERAL STYLES */
.product-btn {
  display: inline-block;
  height: auto;
  width: auto;
  min-width: 210px;
  padding: 14px 24px;
  color: red;
  background-color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  border: 2px solid #EBECF0;
  border-radius: 24px;
  transition: 0.4s;
  cursor: pointer; }
  .product-btn:hover {
    border-color: red; }
  .product-btn[disabled], .product-btn.disabled {
    cursor: default;
    color: #b6b6b6;
    border-color: #b6b6b6; }
  @media screen and (max-width: 768px) {
    .product-btn {
      width: 100%; } }

.product-btn--outlined {
  background: rgba(0, 0, 0, 0.2);
  color: #FFF;
  min-width: 170px; }
  .product-btn--outlined:hover {
    color: red; }

.product-btn--squared {
  border-radius: 0px; }

.product-btn--wide {
  width: 100%; }

/* PRODUCT 2019 - HEADER */
@media screen and (max-width: 768px) {
  .product-header {
    padding: 24px 0px; }
    .product-header h3, .product-header .h3 {
      line-height: 1 !important; } }
@media screen and (min-width: 768px) {
  .product-header {
    height: 100vh;
    min-height: 660px;
    max-height: 1320px;
    overflow: hidden; }
    .product-header .container, .product-header .grid, .product-header .grid--rev, .product-header .grid--full {
      height: 100%; }
    .product-header .grid, .product-header .grid--rev, .product-header .grid--full {
      display: table; }
      .product-header .grid .grid__item, .product-header .grid--rev .grid__item, .product-header .grid--full .grid__item {
        float: none; }
      .product-header .grid > div, .product-header .grid--rev > div, .product-header .grid--full > div {
        display: table-cell;
        vertical-align: middle; } }
@media screen and (min-width: 768px) {
  .product-header .AddToCart-wrapper {
    display: inline-block;
    margin-right: 8px; } }

.product-header__owl,
.other-flavors__owl {
  width: 100%;
  max-width: 420px;
  margin: auto; }
  .product-header__owl .owl-dot,
  .other-flavors__owl .owl-dot {
    margin: 0px 6px 0; }
    .product-header__owl .owl-dot span,
    .other-flavors__owl .owl-dot span {
      border-radius: 12px;
      width: 15px;
      height: 15px;
      border: 1px solid #FFF;
      background: rgba(255, 255, 255, 0.3); }
  .product-header__owl .owl-dot.active span,
  .other-flavors__owl .owl-dot.active span {
    border: none;
    background: #FFF; }
  .product-header__owl .owl-item,
  .other-flavors__owl .owl-item {
    opacity: 0; }
  .product-header__owl .owl-item.active,
  .other-flavors__owl .owl-item.active {
    opacity: 1; }
  .product-header__owl .owl-prev, .product-header__owl .owl-next,
  .other-flavors__owl .owl-prev,
  .other-flavors__owl .owl-next {
    position: absolute;
    color: #FFF; }
  .product-header__owl .owl-prev,
  .other-flavors__owl .owl-prev {
    left: calc(50% - 100px); }
  .product-header__owl .owl-next,
  .other-flavors__owl .owl-next {
    right: calc(50% - 100px); }

@media screen and (max-width: 480px) {
  .product-header__owl {
    max-width: 65%; } }
.product-header__image {
  margin: 8px 12px;
  padding: 2px; }

/* PRODUCT 2019 - DETAILS */
.product-details {
  direction: initial; }
  @media screen and (max-width: 768px) {
    .product-details {
      padding: 0px 30px; } }

.product-details__upper, .product-details__lower {
  width: 100%;
  display: table; }
  @media screen and (max-width: 768px) {
    .product-details__upper, .product-details__lower {
      text-align: center; } }

.product-details__upper {
  height: 40%; }

.product-details__lower {
  height: 60%; }

.product-details__header {
  display: table-cell;
  vertical-align: bottom; }
  .product-details__header h3, .product-details__header .h3 {
    font-weight: bold;
    font-size: 40px;
    line-height: 0.75;
    margin: 0; }
  .product-details__header h6, .product-details__header .h6 {
    color: #B3B3B3;
    font-size: 22px; }
  .product-details__header h6, .product-details__header .h6, .product-details__header .star_container {
    display: inline-block; }
  .product-details__header .star_container {
    margin-left: 8px; }
    .product-details__header .star_container .group-stars .ind_cnt {
      display: none !important; }
  @media screen and (max-width: 768px) {
    .product-details__header {
      display: block;
      text-align: center;
      margin: 0px auto 24px auto; } }

.product-details__award {
  margin-bottom: 16px; }
  .product-details__award .shopperlink {
    margin-right: 20px; }
    .product-details__award .shopperlink img {
      width: 100px !important; }
  @media screen and (max-width: 768px) {
    .product-details__award {
      margin-left: auto;
      margin-right: auto;
      left: 0;
      right: 0; } }

.product-details__asterisk {
  font-weight: bold;
  color: #FFF;
  font-size: 16px; }
  @media screen and (max-width: 768px) {
    .product-details__asterisk {
      margin-top: 8px; } }

.product-details__asterisk--big {
  font-size: 24px; }

.product-details__actions {
  margin: 16px 0; }
  @media screen and (max-width: 768px) {
    .product-details__actions {
      margin: 48px 0 16px 0;
      text-align: left; } }
  .product-details__actions .pd_price {
    color: white; }
    .product-details__actions .pd_price .money {
      font-size: 28px; }
  .product-details__actions .selector-wrapper, .product-details__actions .Quantity-wrapper, .product-details__actions .other-flavors {
    margin-bottom: 20px; }
    .product-details__actions .selector-wrapper label, .product-details__actions .Quantity-wrapper label, .product-details__actions .other-flavors label {
      color: #FFF;
      font-weight: bold;
      line-height: 36px;
      text-transform: uppercase;
      float: left;
      width: 64px;
      font-size: 12px; }
  .product-details__actions .selector-wrapper {
    *zoom: 1;
    margin-bottom: 25px; }
    .product-details__actions .selector-wrapper:after {
      content: '';
      display: table;
      clear: both; }
    @media screen and (max-width: 767px) {
      .product-details__actions .selector-wrapper {
        margin-bottom: 18px; } }
    .product-details__actions .selector-wrapper select {
      min-width: 85px;
      height: 36px;
      padding: 6px 25px 6px 15px;
      margin-bottom: 0;
      width: auto;
      border: 2px solid #EBECF0;
      background-color: #FFF;
      color: #333333;
      font-weight: 700;
      background-position: right 14px center; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      .product-details__actions .selector-wrapper {
        margin-bottom: 18px; } }
    .product-details__actions .selector-wrapper label {
      line-height: 1.3; }
  .product-details__actions .pd_price {
    display: inline-flex; }
  .product-details__actions .selector-wrapper, .product-details__actions .Quantity-wrapper {
    display: grid;
    max-width: 280px; }
  .product-details__actions .Quantity-wrapper {
    vertical-align: super; }
    .product-details__actions .Quantity-wrapper input {
      border-left: 1px solid #EBECF0;
      border-right: 1px solid #EBECF0;
      border-color: #EBECF0; }
    .product-details__actions .Quantity-wrapper button {
      color: red;
      border-color: #EBECF0; }

.other-flavors {
  margin-top: 24px; }
  .other-flavors label {
    width: auto !important;
    display: block;
    float: none !important;
    margin-right: 8px;
    vertical-align: text-bottom; }
  @media screen and (max-width: 768px) {
    .other-flavors {
      margin-top: 48px; } }

.other-flavors__owl {
  width: 260px;
  display: inline-block;
  margin: 0px 32px; }
  .other-flavors__owl .owl-prev, .other-flavors__owl .owl-next {
    color: rgba(0, 0, 0, 0.2);
    top: 20px; }
  .other-flavors__owl .owl-prev {
    left: -32px; }
  .other-flavors__owl .owl-next {
    right: -8px; }
  @media screen and (max-width: 768px) {
    .other-flavors__owl {
      margin: 0px auto; }
      .other-flavors__owl .owl-prev {
        left: -24px; }
      .other-flavors__owl .owl-next {
        right: -24px; } }
  .other-flavors__owl a:hover {
    opacity: 0.7;
    transition: 0.4s; }

.other-flavors__img {
  max-height: 65px; }

@media screen and (max-width: 480px) {
  .product-details__header {
    margin: 0px auto 16px auto; }
    .product-details__header h3, .product-details__header .h3 {
      font-size: 32px; }
    .product-details__header h6, .product-details__header .h6 {
      margin-bottom: 4px; } }
/* PRODUCT 2019 - DESCRIPTION */
.product-description {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to bottom, white 0%, rgba(24, 25, 35, 0.05) 100%); }

.product-description__copy {
  width: 50%;
  min-width: 480px;
  margin: 0 0 0 auto;
  padding: 120px 48px; }
  @media screen and (max-width: 768px) {
    .product-description__copy {
      width: 100%;
      min-width: 0;
      padding: 48px 30px;
      font-size: 15px;
      margin: 0; } }

/* PRODUCT 2019 - EXTRA INFO */
.product-extra-info {
  margin-top: 48px;
  max-width: 960px;
  padding: 0px 30px; }
  @media screen and (max-width: 480px) {
    .product-extra-info #desc_pro .grid__item, .product-extra-info #tabs .grid__item {
      width: 100% !important; } }
  @media screen and (max-width: 480px) {
    .product-extra-info #desc_pro > ul .ui-state-default, .product-extra-info #tabs > ul .ui-state-default {
      width: auto;
      text-align: center; } }
  @media screen and (max-width: 480px) {
    .product-extra-info #desc_pro > ul .ui-state-default:after, .product-extra-info #tabs > ul .ui-state-default:after {
      display: block; } }
  @media screen and (max-width: 480px) {
    .product-extra-info #desc_pro > ul .ui-state-default .ui-tabs-anchor, .product-extra-info #tabs > ul .ui-state-default .ui-tabs-anchor {
      padding: 10px 18px;
      display: block; } }

.product-extra-info__img {
  padding: 24px; }
  .product-extra-info__img img {
    max-height: 180px;
    max-width: 100%; }

/* PRODUCT 2019 - ICONS */
.product-icons {
  margin-top: 48px; }
  .product-icons .container {
    max-width: 700px; }
  .product-icons .grid, .product-icons .grid--rev, .product-icons .grid--full {
    display: table; }
    .product-icons .grid .grid__item, .product-icons .grid--rev .grid__item, .product-icons .grid--full .grid__item {
      float: none; }
    .product-icons .grid > div, .product-icons .grid--rev > div, .product-icons .grid--full > div {
      display: table-cell;
      vertical-align: middle; }

.product-icons__icon {
  padding: 20px 40px;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    .product-icons__icon {
      padding: 16px 24px; } }
  .product-icons__icon:after {
    content: '';
    mix-blend-mode: screen;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    border-radius: 100%;
    transform-origin: 50% 50%;
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding-top: 48px; }
  .product-icons__icon:hover:after {
    animation: ripple 1s ease-in; }

.product-icons__icon--energy:after {
  content: 'ENERGY'; }

.product-icons__icon--focus:after {
  content: 'FOCUS'; }

.product-icons__icon--endurance:after {
  content: 'ENDURANCE'; }

.product-icons__icon--reaction:after {
  content: 'REACTION'; }

/* PRODUCT 2019 - NUTRITION */
.product-nutrition {
  margin-top: 0px; }
  @media screen and (min-width: 768px) {
    .product-nutrition .grid, .product-nutrition .grid--rev, .product-nutrition .grid--full {
      display: table; }
      .product-nutrition .grid .grid__item, .product-nutrition .grid--rev .grid__item, .product-nutrition .grid--full .grid__item {
        float: none; }
      .product-nutrition .grid > div, .product-nutrition .grid--rev > div, .product-nutrition .grid--full > div {
        display: table-cell;
        vertical-align: middle; } }

.product-nutrition__label {
  padding: 60px 30px; }
  .product-nutrition__label img {
    width: 100%;
    max-width: 320px;
    -webkit-box-shadow: 0px 0px 59px 0px rgba(24, 25, 35, 0.2);
    -moz-box-shadow: 0px 0px 59px 0px rgba(24, 25, 35, 0.2);
    box-shadow: 0px 0px 59px 0px rgba(24, 25, 35, 0.2); }

.product-nutrition__info {
  text-align: left;
  color: #494949;
  padding: 60px 30px; }
  @media screen and (max-width: 768px) {
    .product-nutrition__info {
      padding-top: 0px; } }
  .product-nutrition__info h4, .product-nutrition__info .h4 {
    font-size: 32px;
    margin-bottom: 32px;
    color: red; }
  .product-nutrition__info h5, .product-nutrition__info .h5 {
    margin-top: 12px;
    font-size: 18px; }

/* PRODUCT 2019 - DYNAMIC BUTTONS */
.shopify-payment-button {
  display: inline-block !important;
  width: 100%; }
  .shopify-payment-button .shopify-payment-button__button {
    border-radius: 0px !important; }
  .shopify-payment-button .shopify-payment-button__button--unbranded {
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #EBECF0 !important;
    background: rgba(0, 0, 0, 0.2) !important;
    color: #FFF !important;
    transition: 0.4s; }
    .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
      opacity: 0.7; }
  .shopify-payment-button .shopify-payment-button__more-options {
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: underline;
    margin: 4px 0px 8px 0px;
    padding: 4px 0px; }

/*============================================================================
  #CONTACT US
==============================================================================*/
/*--======  #CONTACT WAY  ============--*/
#contact_way {
  margin-bottom: 80px; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    #contact_way {
      margin-bottom: 60px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #contact_way {
      margin-bottom: 50px; } }
  @media screen and (max-width: 767px) {
    #contact_way {
      margin-bottom: 10px; } }
  #contact_way .connect_with {
    *zoom: 1; }
    #contact_way .connect_with:after {
      content: '';
      display: table;
      clear: both; }
    @media screen and (max-width: 767px) {
      #contact_way .connect_with {
        border: 0;
        margin-bottom: 25px; } }
    #contact_way .connect_with .icon {
      text-align: center;
      margin: 0 auto 25px; }
      @media screen and (max-width: 767px) {
        #contact_way .connect_with .icon {
          margin-bottom: 12px; } }
      #contact_way .connect_with .icon .fa {
        font-size: 50px;
        color: #181923; }
    #contact_way .connect_with .connect_link {
      text-align: center; }
      #contact_way .connect_with .connect_link h6, #contact_way .connect_with .connect_link .h6 {
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 800; }
        @media screen and (max-width: 767px) {
          #contact_way .connect_with .connect_link h6, #contact_way .connect_with .connect_link .h6 {
            margin-bottom: 10px; } }
      #contact_way .connect_with .connect_link a, #contact_way .connect_with .connect_link p {
        font-size: 14px;
        display: block;
        color: #999999;
        line-height: 22px;
        margin-bottom: 0; }
      #contact_way .connect_with .connect_link span {
        display: block;
        text-transform: uppercase; }
  #contact_way .container--small {
    max-width: 1170px;
    width: 100%;
    margin: 50px auto; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      #contact_way .container--small {
        padding: 0 40px; } }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      #contact_way .container--small {
        padding: 0 40px; } }
    @media screen and (max-width: 480px) {
      #contact_way .container--small {
        padding: 0 30px; } }

/*--======  #GET IN TOUCH ============--*/
#map-canvas {
  height: 100%; }
  @media screen and (max-width: 767px) {
    #map-canvas {
      height: 280px; } }

.divider {
  width: 50px;
  height: 3px;
  background-color: red;
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .divider {
      margin-bottom: 20px; } }

#contact_us {
  position: relative; }
  #contact_us > .one-half {
    float: left; }
    #contact_us > .one-half.map_address {
      position: absolute;
      height: 100%;
      right: 0; }
      @media screen and (max-width: 767px) {
        #contact_us > .one-half.map_address {
          position: relative; } }
  @media screen and (max-width: 767px) {
    #contact_us .connect_us {
      display: block; } }
  #contact_us .connect_us .get_in_touch {
    padding: 60px 50px; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      #contact_us .connect_us .get_in_touch {
        padding: 40px 30px; } }
    @media screen and (max-width: 767px) {
      #contact_us .connect_us .get_in_touch {
        padding: 40px 25px; } }
    #contact_us .connect_us .get_in_touch input:not([type="submit"]), #contact_us .connect_us .get_in_touch textarea {
      background-color: #fff; }

/*============================================================================
  #ABOUT US
==============================================================================*/
/*--======   #ABOUT SHOP  =======--*/
#about_shop {
  padding-bottom: 80px; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #about_shop {
      padding-bottom: 50px; } }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    #about_shop {
      padding: 0 0 60px; } }
  @media screen and (max-width: 767px) {
    #about_shop {
      padding-bottom: 20px; } }
  #about_shop .about_story img {
    float: left;
    margin: 0 20px 15px 0; }
  #about_shop .about_story .divider {
    width: 60px;
    height: 3px;
    background-color: red;
    display: inline-block;
    margin-bottom: 20px; }
    @media screen and (max-width: 767px) {
      #about_shop .about_story .divider {
        margin-bottom: 15px; } }
  #about_shop .about_story h5, #about_shop .about_story .h5 {
    margin-bottom: 12px; }
  #about_shop .about_story ul {
    margin-bottom: 20px;
    margin-left: 16px; }

/*--======   #TESTIMONIALS  =======--*/
#section-testimonial {
  background: #f2f2f2 !important;
  padding: 80px 0 100px;
  margin-bottom: 80px;
  position: relative; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    #section-testimonial {
      margin-bottom: 60px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #section-testimonial {
      margin-bottom: 50px;
      padding: 60px 0 80px; } }
  @media screen and (max-width: 767px) {
    #section-testimonial {
      margin-bottom: 40px;
      padding: 50px 0 60px; } }
  #section-testimonial h5, #section-testimonial .h5 {
    font-weight: 700;
    margin-bottom: 0; }
  #section-testimonial .testimonial {
    position: relative;
    z-index: 999;
    margin: 0 auto;
    text-align: center;
    max-width: 770px; }
  #section-testimonial .testimonial-list li {
    margin: auto; }
    #section-testimonial .testimonial-list li .client_review {
      padding: 30px 0px 0;
      margin: auto;
      text-align: center; }
      #section-testimonial .testimonial-list li .client_review .client_img {
        width: 100px;
        height: 100px;
        display: block;
        margin: 0px auto 20px; }
        @media screen and (max-width: 767px) {
          #section-testimonial .testimonial-list li .client_review .client_img {
            width: 80px;
            height: 80px;
            margin-bottom: 15px; } }
        #section-testimonial .testimonial-list li .client_review .client_img img {
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          -ms-border-radius: 50%;
          border-radius: 50%;
          object-fit: cover;
          -webkit-object-fit: cover;
          -ms-object-fit: cover;
          -moz-object-fit: cover;
          width: 100%;
          height: 100%; }
      #section-testimonial .testimonial-list li .client_review p {
        margin-bottom: 15px;
        font-size: 16px; }
        @media screen and (max-width: 767px) {
          #section-testimonial .testimonial-list li .client_review p {
            font-size: 13px;
            line-height: 20px; } }
      #section-testimonial .testimonial-list li .client_review .divider {
        display: block;
        margin: auto;
        width: 100px;
        height: 1px;
        background: red;
        margin-bottom: 35px; }
      #section-testimonial .testimonial-list li .client_review h6, #section-testimonial .testimonial-list li .client_review .h6 {
        margin-bottom: 10px;
        color: red;
        font-size: 14px; }
      #section-testimonial .testimonial-list li .client_review span {
        font-size: 12px;
        font-weight: 400;
        color: #252525;
        text-transform: none;
        color: white; }
  #section-testimonial .bx-wrapper .bx-controls-direction a.bx-prev {
    left: -100px; }
    @media screen and (max-width: 767px) {
      #section-testimonial .bx-wrapper .bx-controls-direction a.bx-prev {
        left: -35px; } }
  #section-testimonial .bx-wrapper .bx-controls-direction a.bx-next {
    right: -100px; }
    @media screen and (max-width: 767px) {
      #section-testimonial .bx-wrapper .bx-controls-direction a.bx-next {
        right: -35px; } }
  #section-testimonial .bx-wrapper .bx-pager {
    bottom: -40px; }

/*---=======  services  =======---*/
#our_services .services_title {
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 0; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    #our_services .services_title {
      padding-bottom: 30px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #our_services .services_title {
      padding-bottom: 20px; } }
  @media screen and (max-width: 767px) {
    #our_services .services_title {
      padding-bottom: 15px; } }
#our_services .services_item {
  text-align: center; }
  @media screen and (max-width: 767px) {
    #our_services .services_item {
      margin-bottom: 20px; } }
  #our_services .services_item .services_icon .fa {
    font-size: 60px;
    margin-bottom: 30px; }
  #our_services .services_item h6, #our_services .services_item .h6 {
    margin-bottom: 5px; }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      #our_services .services_item h6, #our_services .services_item .h6 {
        font-size: 16px; } }
  #our_services .services_item p {
    margin-bottom: 0;
    color: #999999; }

/*============================================================================
  #CART & WISHLIST
==============================================================================*/
.cart-layout .cart-header {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
  *zoom: 1; }
  .cart-layout .cart-header:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (max-width: 767px) {
    .cart-layout .cart-header {
      padding: 12px 0 10px; } }
  .cart-layout .cart-header h6, .cart-layout .cart-header .h6 {
    font-size: 14px;
    margin-bottom: 0; }
  .cart-layout .cart-header .cart-total {
    text-align: center; }
    @media screen and (max-width: 767px) {
      .cart-layout .cart-header .cart-total {
        text-align: right; } }
  .cart-layout .cart-header .cart-price {
    text-align: center; }
    @media screen and (max-width: 767px) {
      .cart-layout .cart-header .cart-price {
        display: none; } }
  .cart-layout .cart-header .qty {
    text-align: center; }
    @media screen and (max-width: 767px) {
      .cart-layout .cart-header .qty {
        display: none; } }
  @media screen and (max-width: 767px) {
    .cart-layout .cart-header .medium-large--one-eighth,
    .cart-layout .cart-header .grid_qty {
      display: none; } }
.cart-layout .cart-items .cart-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  *zoom: 1; }
  .cart-layout .cart-items .cart-item:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (max-width: 767px) {
    .cart-layout .cart-items .cart-item {
      display: block !important; } }
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .cart-layout .cart-items .cart-item > .grid__item {
      padding: 0 6px; } }
  .cart-layout .cart-items .cart-item .grid__item {
    float: none; }
    @media screen and (max-width: 767px) {
      .cart-layout .cart-items .cart-item .grid__item {
        float: left; } }
    @media screen and (max-width: 480px) {
      .cart-layout .cart-items .cart-item .grid__item {
        padding: 0 9px; } }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      .cart-layout .cart-items .cart-item .grid__item {
        padding: 0 7px; } }
  .cart-layout .cart-items .cart-item .cart-total {
    text-align: center; }
    @media screen and (min-width: 1025px) and (max-width: 1366px) {
      .cart-layout .cart-items .cart-item .cart-total .btn--small {
        width: 100%;
        font-size: 12px;
        padding: 8px 5px 6px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .cart-layout .cart-items .cart-item .cart-total .btn--small {
        width: 100%;
        font-size: 10px;
        padding: 8px 5px 6px; } }
    @media screen and (max-width: 480px) {
      .cart-layout .cart-items .cart-item .cart-total .btn--small {
        padding: 6px 5px 4px;
        width: 100%; } }
  .cart-layout .cart-items .cart-item .cart-item-name {
    height: 100px; }
    .cart-layout .cart-items .cart-item .cart-item-name img {
      max-height: 100%;
      display: block;
      margin: auto; }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      .cart-layout .cart-items .cart-item .cart-item-name {
        width: 100%;
        height: 80px; } }
    @media screen and (max-width: 480px) {
      .cart-layout .cart-items .cart-item .cart-item-name {
        width: auto;
        height: 70px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .cart-layout .cart-items .cart-item .cart-item-name {
        height: 70px; } }
  .cart-layout .cart-items .cart-item .cart-total p {
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
    color: red; }
    @media screen and (max-width: 767px) {
      .cart-layout .cart-items .cart-item .cart-total p {
        text-align: right; } }
  .cart-layout .cart-items .cart-item .cart-total .btn--secondary {
    border-color: red;
    background-color: red;
    color: white; }
    .cart-layout .cart-items .cart-item .cart-total .btn--secondary:hover {
      color: red;
      background-color: white; }
  .cart-layout .cart-items .cart-item .qty {
    text-align: center;
    position: relative; }
    @media screen and (max-width: 480px) {
      .cart-layout .cart-items .cart-item .qty {
        text-align: left; } }
    .cart-layout .cart-items .cart-item .qty .product_input {
      display: inline-block;
      vertical-align: middle; }
      @media screen and (min-width: 481px) and (max-width: 1024px) {
        .cart-layout .cart-items .cart-item .qty .product_input .minus, .cart-layout .cart-items .cart-item .qty .product_input .plus, .cart-layout .cart-items .cart-item .qty .product_input .minus {
          width: 30px; } }
      @media screen and (max-width: 480px) {
        .cart-layout .cart-items .cart-item .qty .product_input .minus, .cart-layout .cart-items .cart-item .qty .product_input .plus, .cart-layout .cart-items .cart-item .qty .product_input .minus {
          width: 25px; } }
      .cart-layout .cart-items .cart-item .qty .product_input input[type="text"] {
        margin: 0px; }
        @media screen and (min-width: 481px) and (max-width: 1024px) {
          .cart-layout .cart-items .cart-item .qty .product_input input[type="text"] {
            width: 32px; } }
    .cart-layout .cart-items .cart-item .qty .trash {
      display: none; }
      @media screen and (min-width: 481px) and (max-width: 767px) {
        .cart-layout .cart-items .cart-item .qty .trash {
          display: inline-block;
          vertical-align: middle;
          margin-left: 10px; } }
      @media screen and (max-width: 480px) {
        .cart-layout .cart-items .cart-item .qty .trash {
          position: absolute;
          right: -15px;
          top: 6px;
          display: block; } }
  .cart-layout .cart-items .cart-item .cart-price p {
    margin-bottom: 0;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .cart-layout .cart-items .cart-item .cart-price p {
        text-align: left; } }
    .cart-layout .cart-items .cart-item .cart-price p .money {
      font-size: 16px;
      font-weight: 600; }
  .cart-layout .cart-items .cart-item .cart-stock P {
    font-weight: 500;
    margin-bottom: 0;
    text-align: center; }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    .cart-layout .cart-items .cart-item .cart-des {
      min-height: 100px; } }
  @media screen and (max-width: 480px) {
    .cart-layout .cart-items .cart-item .cart-des {
      min-height: 80px; } }
  .cart-layout .cart-items .cart-item .cart-des h6, .cart-layout .cart-items .cart-item .cart-des .h6 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px; }
    @media screen and (max-width: 480px) {
      .cart-layout .cart-items .cart-item .cart-des h6, .cart-layout .cart-items .cart-item .cart-des .h6 {
        font-weight: 500;
        line-height: 18px; } }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .cart-layout .cart-items .cart-item .cart-des h6, .cart-layout .cart-items .cart-item .cart-des .h6 {
        font-size: 14px;
        font-weight: 500;
        text-transform: capitalize; } }
  .cart-layout .cart-items .cart-item .cart-des p {
    font-weight: 500;
    margin-bottom: 0; }
    @media screen and (max-width: 480px) {
      .cart-layout .cart-items .cart-item .cart-des p {
        font-weight: 400;
        line-height: 1.4; } }
    .cart-layout .cart-items .cart-item .cart-des p span {
      color: red;
      margin-right: 5px; }
  .cart-layout .cart-items .cart-item .trash {
    text-align: center; }
    @media screen and (max-width: 767px) {
      .cart-layout .cart-items .cart-item .trash {
        display: none; } }
    .cart-layout .cart-items .cart-item .trash .fa {
      font-size: 16px;
      color: #333333; }
.cart-layout .checkout-section {
  margin-top: 24px;
  margin-bottom: 40px;
  *zoom: 1; }
  .cart-layout .checkout-section:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    .cart-layout .checkout-section {
      margin-left: 25%; } }
  @media screen and (min-width: 1366px) {
    .cart-layout .checkout-section {
      position: -webkit-sticky;
      position: sticky;
      top: 100px;
      left: 0;
      margin-top: 0px;
      margin-bottom: 0px; } }
  .cart-layout .checkout-section .cart_total_note h6, .cart-layout .checkout-section .cart_total_note .h6 {
    color: #333333;
    font-size: 15px; }
  .cart-layout .checkout-section .cart_total_note textarea {
    color: #e5e5e5;
    margin-bottom: 0px; }
  .cart-layout .checkout-section .cart_total p {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0;
    color: #e5e5e5; }
    .cart-layout .checkout-section .cart_total p .money {
      font-weight: 600;
      font-size: 14px;
      float: right; }
  .cart-layout .checkout-section .cart_total h5, .cart-layout .checkout-section .cart_total .h5 {
    margin-bottom: 8px;
    color: #333333;
    width: 96%;
    margin-left: 2%; }
    @media screen and (max-width: 480px) {
      .cart-layout .checkout-section .cart_total h5, .cart-layout .checkout-section .cart_total .h5 {
        margin-bottom: 15px; } }
    .cart-layout .checkout-section .cart_total h5 .money, .cart-layout .checkout-section .cart_total .h5 .money {
      font-weight: 600;
      float: right;
      color: red;
      font-size: 22px;
      line-height: 1; }
  .cart-layout .checkout-section .cart_total .btn--white {
    background-color: white;
    color: #181923;
    border: 2px solid #ccc;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    width: 48%;
    margin: auto 1%;
    display: block;
    float: left;
    margin-top: 20px;
    padding: 12px 5px 10px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; }
    .cart-layout .checkout-section .cart_total .btn--white:hover {
      background-color: white;
      color: #181923;
      opacity: 0.7; }
  .cart-layout .checkout-section .cart_total #checkout {
    width: 98%;
    background-color: #ffc520 !important;
    color: #181923 !important;
    border: none !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    .cart-layout .checkout-section .cart_total #checkout:hover {
      opacity: 0.7; }
.cart-layout .total_price {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px; }
  .cart-layout .total_price .money {
    color: red;
    margin-left: 20px;
    font-weight: 700;
    line-height: 1; }

@-moz-document url-prefix() {
  .cart-layout .checkout-section .cart_total .btn--primary {
    padding: 11px 5px 11px; } }

@media screen and (max-width: 767px) {
  .cart_total_note {
    margin-bottom: 30px; } }

.money {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif; }
  @media screen and (max-width: 767px) {
    .money {
      line-height: 36px; } }

.currency_note {
  max-width: 1000px;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #8b8d99;
  padding: 20px; }

/*============================================================================
  #ACCOUNT
==============================================================================*/
.account_content {
  max-width: 350px;
  margin: 0 auto;
  width: 100%; }
  .account_content .or_hr {
    position: relative;
    margin-bottom: 30px; }
    .account_content .or_hr:after {
      content: '';
      width: 100%;
      height: 1px;
      display: block;
      background-color: #999999; }
    .account_content .or_hr span {
      padding: 2px 20px;
      background-color: white;
      font-size: 15px;
      font-weight: 500;
      text-transform: uppercase;
      position: relative;
      top: 14px; }

#customer-account .divider {
  margin: 12px auto 25px; }
#customer-account .section_title {
  margin-bottom: 25px; }
#customer-account .return_account {
  font-weight: 500;
  text-decoration: underline; }
#customer-account h4, #customer-account .h4 {
  margin-bottom: 20px;
  text-transform: none;
  font-weight: 400; }
#customer-account .customer-account__hint {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 15px;
  padding: 8px;
  text-align: left; }
#customer-account #LoggedIn {
  text-align: center; }
#customer-account #customer_login .login_footer, #customer-account #create_customer .login_footer {
  *zoom: 1;
  margin-top: 15px; }
  #customer-account #customer_login .login_footer:after, #customer-account #create_customer .login_footer:after {
    content: '';
    display: table;
    clear: both; }
  #customer-account #customer_login .login_footer a, #customer-account #create_customer .login_footer a {
    font-weight: 500;
    margin-top: 5px;
    font-size: 12px; }
    #customer-account #customer_login .login_footer a .fa, #customer-account #create_customer .login_footer a .fa {
      font-size: 16px; }
    #customer-account #customer_login .login_footer a:hover, #customer-account #create_customer .login_footer a:hover {
      color: red; }
    #customer-account #customer_login .login_footer a:first-child, #customer-account #create_customer .login_footer a:first-child {
      float: right;
      color: red; }
      @media screen and (max-width: 480px) {
        #customer-account #customer_login .login_footer a:first-child, #customer-account #create_customer .login_footer a:first-child {
          float: none;
          display: block;
          text-align: center; } }
      #customer-account #customer_login .login_footer a:first-child .fa, #customer-account #create_customer .login_footer a:first-child .fa {
        margin-left: 8px; }
        @media screen and (max-width: 480px) {
          #customer-account #customer_login .login_footer a:first-child .fa, #customer-account #create_customer .login_footer a:first-child .fa {
            display: none; } }
    #customer-account #customer_login .login_footer a:nth-child(2), #customer-account #create_customer .login_footer a:nth-child(2) {
      float: left;
      color: #181923; }
      @media screen and (max-width: 480px) {
        #customer-account #customer_login .login_footer a:nth-child(2), #customer-account #create_customer .login_footer a:nth-child(2) {
          float: none;
          display: block;
          text-align: center; } }
      #customer-account #customer_login .login_footer a:nth-child(2) .fa, #customer-account #create_customer .login_footer a:nth-child(2) .fa {
        margin-right: 8px; }
        @media screen and (max-width: 480px) {
          #customer-account #customer_login .login_footer a:nth-child(2) .fa, #customer-account #create_customer .login_footer a:nth-child(2) .fa {
            display: none; } }
#customer-account #customer_sidebar {
  display: block;
  padding: 16px 64px 64px 0px; }
  @media screen and (max-width: 767px) {
    #customer-account #customer_sidebar {
      padding: 32px 0px 40px 0px; } }
  #customer-account #customer_sidebar p {
    margin-bottom: 10px;
    font-family: "Roboto Condensed", sans-serif; }
    #customer-account #customer_sidebar p.email {
      font-weight: 700; }
  #customer-account #customer_sidebar h5, #customer-account #customer_sidebar .h5 {
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 25px; }
  #customer-account #customer_sidebar .address a {
    margin-top: 25px; }
  #customer-account #customer_sidebar .customer-account__recover {
    color: red;
    margin-top: 32px;
    display: block; }
    #customer-account #customer_sidebar .customer-account__recover .fa {
      margin-left: 8px; }
#customer-account #customer-addresses .customer_address_full .customer_address {
  margin-bottom: 25px; }
#customer-account #customer-addresses .customer_address_full .edit_assress {
  margin-bottom: 30px; }
  #customer-account #customer-addresses .customer_address_full .edit_assress .section_title {
    margin-bottom: 15px; }
#customer-account #customer-addresses .view_address p {
  margin-bottom: 6px; }
#customer-account #customer-addresses .address_actions {
  margin-bottom: 20px; }
  #customer-account #customer-addresses .address_actions a {
    text-transform: uppercase;
    font-weight: 700; }
#customer-account #customer-addresses .address-section .add-new-address {
  text-transform: uppercase;
  margin: 0px 0 20px;
  display: inline-block;
  font-weight: 700; }
#customer-account #customer-addresses .address-section select {
  color: #181923; }
#customer-account #customer-addresses .address-section .action_bottom {
  margin-top: 25px;
  *zoom: 1; }
  #customer-account #customer-addresses .address-section .action_bottom:after {
    content: '';
    display: table;
    clear: both; }
  #customer-account #customer-addresses .address-section .action_bottom .btn--small {
    float: left;
    margin-right: 15px; }
#customer-account .meaning-block {
  margin-top: 20px;
  text-align: center; }
  #customer-account .meaning-block p {
    margin: 0 auto 30px;
    width: 70%; }
#customer-account .Shipping_address {
  margin-top: 60px; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    #customer-account .Shipping_address {
      margin-top: 40px; } }
  @media screen and (max-width: 767px) {
    #customer-account .Shipping_address {
      margin-top: 30px; } }
  #customer-account .Shipping_address h6, #customer-account .Shipping_address .h6 {
    font-size: 16px; }
  #customer-account .Shipping_address p {
    margin-bottom: 5px; }
    #customer-account .Shipping_address p strong {
      color: #333333; }
    #customer-account .Shipping_address p.address {
      color: #999999; }
@media screen and (max-width: 767px) {
  #customer-account .Billing_address {
    margin-top: 30px; } }
#customer-account .Billing_address p {
  margin-bottom: 5px; }
  #customer-account .Billing_address p strong {
    color: #333333; }
  #customer-account .Billing_address p.address {
    color: #999999; }

.customer_address {
  *zoom: 1; }
  .customer_address:after {
    content: '';
    display: table;
    clear: both; }

#RecoverPasswordForm {
  text-align: center; }
  #RecoverPasswordForm p {
    line-height: 1.3; }

.order_table h6, .order_table .h6 {
  margin-bottom: 5px;
  font-size: 16px; }
.order_table p, .order_table td, .order_table td a {
  color: #999999; }
.order_table td a:hover {
  color: red; }
.order_table td strong {
  color: #181923; }

/*====================================================================
  #SEARCH RESULT
=====================================================================*/
.results {
  margin-bottom: 30px; }

/****=================  COLOR SWATCH   ===============****/
.swatch {
  *zoom: 1;
  margin-bottom: 25px; }
  .swatch:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (max-width: 767px) {
    .swatch {
      margin-bottom: 18px; } }
  .swatch .header {
    font-weight: 900;
    text-transform: uppercase;
    float: left;
    width: 75px;
    line-height: 32px;
    font-size: 12px; }
    @media screen and (max-width: 767px) {
      .swatch .header {
        line-height: 26px; } }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    .swatch {
      margin-bottom: 18px; } }
  .swatch .swatch-element {
    float: left;
    position: relative; }
    .swatch .swatch-element input[type="radio"] {
      display: none; }
      .swatch .swatch-element input[type="radio"]:checked + label {
        border: 2px solid #333333; }
    .swatch .swatch-element label {
      float: left;
      position: relative;
      margin-right: 5px;
      width: 50px;
      height: 32px;
      border: 2px solid #cccccc;
      border-radius: 16px; }
      @media screen and (max-width: 767px) {
        .swatch .swatch-element label {
          width: 44px;
          height: 26px; } }
      .swatch .swatch-element label span {
        width: 40px;
        height: 24px;
        border: 0 !important;
        display: inline-block;
        text-align: center;
        position: relative;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        border-radius: 12px;
        top: 6px;
        left: 3px;
        position: absolute;
        cursor: pointer; }
        @media screen and (max-width: 767px) {
          .swatch .swatch-element label span {
            width: 34px;
            height: 18px; } }
        .swatch .swatch-element label span:after {
          display: none; }

.swatch .tooltip {
  text-align: center;
  background: #cccccc;
  color: #333333;
  bottom: 100%;
  padding: 6px 10px 2px;
  display: block;
  position: absolute;
  text-transform: uppercase;
  width: 100px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 900;
  left: 50%;
  margin-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000; }
  .swatch .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%; }
  .swatch .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid #cccccc 10px;
    bottom: -10px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0; }
.swatch .swatch-element:hover .tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0px);
  -moz-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px); }
.swatch.error {
  background-color: #e8d2d2 !important;
  color: #333333 !important;
  padding: 1em;
  border-radius: 5px; }
  .swatch.error p {
    margin: 0.7em 0; }
    .swatch.error p:first-child {
      margin-top: 0; }
    .swatch.error p:last-child {
      margin-bottom: 0; }

.wishlist-btn {
  padding: 10px 16px; }
  @media screen and (max-width: 767px) {
    .wishlist-btn {
      padding: 10px 12px; } }
  .wishlist-btn.fa {
    font-size: 18px; }
    @media screen and (max-width: 767px) {
      .wishlist-btn.fa {
        font-size: 14px; } }

.wishlist_heart {
  position: relative;
  top: 2px; }
  .wishlist_heart.fa, .wishlist_heart .fa {
    font-size: 24px; }

.product_variant .product_wishlist_btn {
  display: inline-block; }
  .product_variant .product_wishlist_btn .wishlist_heart {
    position: static !important;
    transform: none; }
    .product_variant .product_wishlist_btn .wishlist_heart .fa {
      font-size: 18px;
      padding: 12px 22px 8px;
      font-weight: 700; }
      @media screen and (max-width: 767px) {
        .product_variant .product_wishlist_btn .wishlist_heart .fa {
          padding: 7px 22px 5px; } }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #product_details .product_detail_info .btn--small.wishlist.fa {
    font-size: 18px;
    padding: 10px 16px; } }
@media screen and (max-width: 767px) {
  #product_details .product_detail_info .btn--small.wishlist.fa {
    font-size: 14px;
    padding: 10px 12px; } }

.product_item .product_info .js-wish-list {
  float: right; }

/* === list view css === */
#collection .product_list_hor .grid, #collection .product_list_hor .grid--rev, #collection .product_list_hor .grid--full {
  margin-left: -18px;
  margin-right: -18px; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    #collection .product_list_hor .grid, #collection .product_list_hor .grid--rev, #collection .product_list_hor .grid--full {
      margin-left: -12px;
      margin-right: -12px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    #collection .product_list_hor .grid, #collection .product_list_hor .grid--rev, #collection .product_list_hor .grid--full {
      margin-left: -9px;
      margin-right: -9px; } }
  @media screen and (max-width: 480px) {
    #collection .product_list_hor .grid, #collection .product_list_hor .grid--rev, #collection .product_list_hor .grid--full {
      margin-left: -5px;
      margin-right: -5px; } }
  #collection .product_list_hor .grid .grid__item, #collection .product_list_hor .grid--rev .grid__item, #collection .product_list_hor .grid--full .grid__item {
    padding-left: 18px;
    padding-right: 18px; }
    @media screen and (min-width: 768px) and (max-width: 1366px) {
      #collection .product_list_hor .grid .grid__item, #collection .product_list_hor .grid--rev .grid__item, #collection .product_list_hor .grid--full .grid__item {
        padding-left: 12px;
        padding-right: 12px; } }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      #collection .product_list_hor .grid .grid__item, #collection .product_list_hor .grid--rev .grid__item, #collection .product_list_hor .grid--full .grid__item {
        padding-left: 9px;
        padding-right: 9px; } }
    @media screen and (max-width: 480px) {
      #collection .product_list_hor .grid .grid__item, #collection .product_list_hor .grid--rev .grid__item, #collection .product_list_hor .grid--full .grid__item {
        padding-left: 5px;
        padding-right: 5px; } }

@media screen and (max-width: 767px) {
  .product_list_hor {
    padding-top: 20px; } }
.product_list_hor > .grid > .grid__item:first-child .product_item, .product_list_hor > .grid--rev > .grid__item:first-child .product_item, .product_list_hor > .grid--full > .grid__item:first-child .product_item {
  padding-top: 0; }
.product_list_hor .product_item {
  padding: 40px 0;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 10px 0; }
  @media screen and (max-width: 1367px) {
    .product_list_hor .product_item {
      padding: 25px 0;
      margin-bottom: 0; } }
  .product_list_hor .product_item .product_img {
    margin-top: 0;
    display: block; }
    @media screen and (max-width: 767px) {
      .product_list_hor .product_item .product_img {
        height: auto; }
        .product_list_hor .product_item .product_img img {
          position: static;
          -webkit-transform: none;
          -moz-transform: none;
          -ms-transform: none;
          transform: none; } }
    .product_list_hor .product_item .product_img .placeholder-svg {
      border: none; }
    @media screen and (max-width: 480px) {
      .product_list_hor .product_item .product_img {
        margin-bottom: 10px; } }
  .product_list_hor .product_item .product_detail_info {
    margin-top: 0; }
    .product_list_hor .product_item .product_detail_info .pd_title {
      line-height: 1.4; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .product_list_hor .product_item .product_detail_info .pd_title {
          margin-bottom: 4px; } }
      @media screen and (min-width: 481px) and (max-width: 767px) {
        .product_list_hor .product_item .product_detail_info .pd_title {
          font-size: 16px;
          line-height: 1.4; } }
    .product_list_hor .product_item .product_detail_info .price_review {
      margin-bottom: 25px;
      *zoom: 1; }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .product_list_hor .product_item .product_detail_info .price_review {
          margin-bottom: 12px; } }
      @media screen and (max-width: 767px) {
        .product_list_hor .product_item .product_detail_info .price_review {
          margin-bottom: 10px; } }
      .product_list_hor .product_item .product_detail_info .price_review:after {
        content: '';
        display: table;
        clear: both; }
      .product_list_hor .product_item .product_detail_info .price_review .pd_price {
        float: left;
        margin: 0 10px 0 0;
        line-height: 27px; }
        .product_list_hor .product_item .product_detail_info .price_review .pd_price .money {
          font-weight: 700; }
        .product_list_hor .product_item .product_detail_info .price_review .pd_price:after {
          content: '|';
          color: #999999;
          padding: 0 5px 0 20px; }
      .product_list_hor .product_item .product_detail_info .price_review .review_star {
        float: left;
        margin: 0; }
        .product_list_hor .product_item .product_detail_info .price_review .review_star .spr-badge-caption {
          display: none; }
    .product_list_hor .product_item .product_detail_info p {
      color: #999999;
      margin-bottom: 30px;
      line-height: 22px; }
      @media screen and (max-width: 767px) {
        .product_list_hor .product_item .product_detail_info p {
          margin-bottom: 18px;
          font-size: 13px; } }
      @media screen and (min-width: 768px) and (max-width: 991px) {
        .product_list_hor .product_item .product_detail_info p {
          margin-bottom: 18px; } }
      @media screen and (max-width: 767px) {
        .product_list_hor .product_item .product_detail_info p {
          margin-bottom: 15px; } }
    .product_list_hor .product_item .product_detail_info .product_variant .wishlist_heart {
      position: static !important;
      right: auto;
      top: auto;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      transform: none;
      display: inline-block; }
      .product_list_hor .product_item .product_detail_info .product_variant .wishlist_heart .fa {
        font-size: 18px;
        padding: 8px 18px 4px;
        font-weight: 700; }
        @media screen and (max-width: 767px) {
          .product_list_hor .product_item .product_detail_info .product_variant .wishlist_heart .fa {
            font-size: 14px;
            padding: 8px 18px 4px; }
            .product_list_hor .product_item .product_detail_info .product_variant .wishlist_heart .fa:before {
              position: relative;
              top: 1px; } }
    .product_list_hor .product_item .product_detail_info .product_variant .wishlist-btn {
      padding: 8px 16px 6px; }
      @media screen and (max-width: 767px) {
        .product_list_hor .product_item .product_detail_info .product_variant .wishlist-btn .fa {
          font-size: 14px;
          padding: 10px 12px; }
          .product_list_hor .product_item .product_detail_info .product_variant .wishlist-btn .fa:before {
            position: relative;
            top: 1px; } }
.product_list_hor > .grid__item:last-child .product_item {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0; }

#product_description {
  padding-bottom: 60px;
  border-bottom: 1px solid #e5e5e5; }
  @media screen and (max-width: 767px) {
    #product_description #shopify-product-reviews {
      margin: 0; } }
  #product_description .spr-form {
    padding-bottom: 0px; }
  #product_description .spr-header-title {
    font-weight: 700; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      #product_description .spr-header-title {
        font-size: 18px; } }
    @media screen and (max-width: 767px) {
      #product_description .spr-header-title {
        font-size: 16px; } }
  #product_description .spr-summary-actions-newreview {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline; }
  #product_description .spr-form, #product_description .spr-review {
    border-top: 1px solid #e5e5e5; }
    #product_description .spr-form .spr-form-title, #product_description .spr-review .spr-form-title {
      font-weight: 500; }
    #product_description .spr-form .spr-form-contact .spr-form-contact-name, #product_description .spr-review .spr-form-contact .spr-form-contact-name {
      width: 48%;
      margin-right: 2%;
      float: left; }
      @media screen and (max-width: 480px) {
        #product_description .spr-form .spr-form-contact .spr-form-contact-name, #product_description .spr-review .spr-form-contact .spr-form-contact-name {
          width: 100%;
          margin-right: 0; } }
    #product_description .spr-form .spr-form-contact .spr-form-contact-email, #product_description .spr-review .spr-form-contact .spr-form-contact-email {
      width: 48%;
      margin-left: 2%;
      float: left; }
      @media screen and (max-width: 480px) {
        #product_description .spr-form .spr-form-contact .spr-form-contact-email, #product_description .spr-review .spr-form-contact .spr-form-contact-email {
          width: 100%;
          margin-left: 0; } }
    #product_description .spr-form .spr-form-review .spr-form-review-rating, #product_description .spr-review .spr-form-review .spr-form-review-rating {
      width: 48%;
      margin-right: 2%;
      float: left; }
      @media screen and (max-width: 480px) {
        #product_description .spr-form .spr-form-review .spr-form-review-rating, #product_description .spr-review .spr-form-review .spr-form-review-rating {
          width: 100%;
          margin-right: 0; } }
    #product_description .spr-form .spr-form-review .spr-form-review-title, #product_description .spr-review .spr-form-review .spr-form-review-title {
      width: 48%;
      margin-left: 2%;
      float: left; }
      @media screen and (max-width: 480px) {
        #product_description .spr-form .spr-form-review .spr-form-review-title, #product_description .spr-review .spr-form-review .spr-form-review-title {
          width: 100%;
          margin-left: 0; } }
    #product_description .spr-form .spr-form-review .spr-form-review-body, #product_description .spr-review .spr-form-review .spr-form-review-body {
      wisth: 100%; }
  #product_description .spr-form-label {
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 4px;
    display: none; }
  #product_description .spr-form-review-rating .spr-form-label {
    display: block; }

.spr-review-header-byline {
  opacity: 1 !Important; }

.spr-icon {
  margin: 0 1px; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome, #instagram .insta_img a img {
    width: 100%;
    height: auto;
    Object-fit: cover; } }
#about_shop ul {
  margin-bottom: 30px; }

.ajax-error-modal {
  bottom: auto;
  left: 0px;
  position: fixed;
  right: auto;
  top: 50%;
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 10px 20px; }

.modal {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1050;
  display: none;
  overflow: auto;
  outline: 0px; }

.ajax-success-modal .overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  background: rgba(45, 45, 50, 0.8); }

.ajax-success-modal .content {
  bottom: auto;
  left: 50%;
  margin-left: -270px;
  margin-top: -100px;
  min-height: 200px;
  position: fixed;
  right: auto;
  width: 535px;
  top: 50%;
  background: white;
  padding: 45px 40px 35px; }

.ajax-success-modal .ajax-left {
  float: left;
  margin-right: 50px;
  margin-bottom: 0px;
  width: 20%; }

.ajax-product-title {
  text-align: left;
  margin-bottom: 12px; }
  .ajax-product-title span {
    font-weight: 700; }

.success-message {
  height: 40px;
  line-height: 40px;
  color: #5f943c;
  margin-bottom: 20px;
  background: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/icons_new14.png?24556") 14px -1476px no-repeat;
  padding: 0px 10px 0px 40px;
  border-bottom: 1px solid #dde8d6;
  text-transform: uppercase;
  font-weight: 600; }

.close-modal {
  height: 29px;
  width: 29px;
  position: absolute;
  right: -15px;
  top: -15px;
  z-index: 9;
  text-indent: -999em;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  opacity: 1;
  padding: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  background: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/icons_new14.png?24556") 0px -877px black; }

.actions .btn--secondary {
  padding: 14px 30px 12px;
  font-size: 13px; }

.actions {
  width: 100%;
  display: inline-block; }

.ajax-success-modal .ajax-right {
  float: left; }

@-moz-document url-prefix() {
  .change-view .fa {
    top: 0; }

  input, textarea, select {
    padding-top: 9px;
    padding-bottom: 11px; } }

.add_link {
  float: right; }

#AddAddress.customer_address {
  margin-top: 40px; }

.empty_wishlist, .cart-empty {
  padding: 45px 0; }
  @media screen and (max-width: 767px) {
    .empty_wishlist, .cart-empty {
      padding: 0px 0; } }
  .empty_wishlist h6, .empty_wishlist .h6, .cart-empty h6, .cart-empty .h6 {
    margin-bottom: 30px;
    text-transform: capitalize; }
  .empty_wishlist .empty_icon, .cart-empty .empty_icon {
    width: 60px;
    height: 70px;
    display: block;
    margin: 0 auto 30px;
    background: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/cart-empty.png?v=12011222919020209027") center no-repeat;
    background-size: 100%; }
  .empty_wishlist .cart_divider, .cart-empty .cart_divider {
    padding: 20px 0 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999999;
    font-size: 16px; }
  .empty_wishlist p, .cart-empty p {
    margin-bottom: 5px;
    color: #999999; }
  .empty_wishlist .collection_link a, .cart-empty .collection_link a {
    text-transform: uppercase;
    font-weight: 600; }
    .empty_wishlist .collection_link a:after, .cart-empty .collection_link a:after {
      content: '|';
      padding: 0 10px;
      color: red; }
    .empty_wishlist .collection_link a:last-child:after, .cart-empty .collection_link a:last-child:after {
      content: '';
      display: none; }

.wishlist-logout .fa {
  font-size: 42px;
  margin-bottom: 20px; }
.wishlist-logout h6, .wishlist-logout .h6 {
  margin-bottom: 15px; }
.wishlist-logout .btn--small {
  margin-bottom: 5px; }
.wishlist-logout .text-link {
  color: red;
  font-weight: 500; }
  .wishlist-logout .text-link:hover {
    color: #333333; }

@media screen and (max-width: 767px) {
  .wishlist-items .cart-des {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; } }

div#messageBox, a#cartMessageBox {
  position: fixed;
  top: 51px;
  max-width: 400px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: 'Roboto Condensed', sans-serif;
  background: #333333;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  padding: 20px 30px;
  display: none;
  z-index: 99999999;
  text-align: center;
  font-size: 15px; }
  @media screen and (min-width: 1024px) {
    div#messageBox, a#cartMessageBox {
      top: 10px; } }

.customer_orders table td a {
  text-decoration: underline;
  font-weight: 700; }

/*============================================================================
  #NEWSLETTER POPUP
==============================================================================*/
.overlay.pop_class {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s; }

.newsletter_overlay,
.app_overlay,
.offer_overlay,
.cart_overlay,
.password_overlay,
.motivator-popup__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  top: 0;
  background: rgba(38, 36, 35, 0.9);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; }
  .newsletter_overlay.newsletter_popupactive,
  .app_overlay.newsletter_popupactive,
  .offer_overlay.newsletter_popupactive,
  .cart_overlay.newsletter_popupactive,
  .password_overlay.newsletter_popupactive,
  .motivator-popup__overlay.newsletter_popupactive {
    opacity: 1;
    z-index: 9999999; }
  .newsletter_overlay .pop_up_overlay,
  .app_overlay .pop_up_overlay,
  .offer_overlay .pop_up_overlay,
  .cart_overlay .pop_up_overlay,
  .password_overlay .pop_up_overlay,
  .motivator-popup__overlay .pop_up_overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7); }
    @media screen and (max-width: 767px) {
      .newsletter_overlay .pop_up_overlay,
      .app_overlay .pop_up_overlay,
      .offer_overlay .pop_up_overlay,
      .cart_overlay .pop_up_overlay,
      .password_overlay .pop_up_overlay,
      .motivator-popup__overlay .pop_up_overlay {
        display: block; } }
  .newsletter_overlay .newsletter_popup,
  .newsletter_overlay .app_popup,
  .newsletter_overlay .offer_popup,
  .newsletter_overlay .cart_popup,
  .newsletter_overlay .password_popup,
  .newsletter_overlay .motivator-popup,
  .app_overlay .newsletter_popup,
  .app_overlay .app_popup,
  .app_overlay .offer_popup,
  .app_overlay .cart_popup,
  .app_overlay .password_popup,
  .app_overlay .motivator-popup,
  .offer_overlay .newsletter_popup,
  .offer_overlay .app_popup,
  .offer_overlay .offer_popup,
  .offer_overlay .cart_popup,
  .offer_overlay .password_popup,
  .offer_overlay .motivator-popup,
  .cart_overlay .newsletter_popup,
  .cart_overlay .app_popup,
  .cart_overlay .offer_popup,
  .cart_overlay .cart_popup,
  .cart_overlay .password_popup,
  .cart_overlay .motivator-popup,
  .password_overlay .newsletter_popup,
  .password_overlay .app_popup,
  .password_overlay .offer_popup,
  .password_overlay .cart_popup,
  .password_overlay .password_popup,
  .password_overlay .motivator-popup,
  .motivator-popup__overlay .newsletter_popup,
  .motivator-popup__overlay .app_popup,
  .motivator-popup__overlay .offer_popup,
  .motivator-popup__overlay .cart_popup,
  .motivator-popup__overlay .password_popup,
  .motivator-popup__overlay .motivator-popup {
    padding: 10px;
    background-color: #333;
    background-size: cover;
    background-repeat: no-repeat;
    width: 460px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media screen and (min-width: 481px) and (max-width: 767px) {
      .newsletter_overlay .newsletter_popup,
      .newsletter_overlay .app_popup,
      .newsletter_overlay .offer_popup,
      .newsletter_overlay .cart_popup,
      .newsletter_overlay .password_popup,
      .newsletter_overlay .motivator-popup,
      .app_overlay .newsletter_popup,
      .app_overlay .app_popup,
      .app_overlay .offer_popup,
      .app_overlay .cart_popup,
      .app_overlay .password_popup,
      .app_overlay .motivator-popup,
      .offer_overlay .newsletter_popup,
      .offer_overlay .app_popup,
      .offer_overlay .offer_popup,
      .offer_overlay .cart_popup,
      .offer_overlay .password_popup,
      .offer_overlay .motivator-popup,
      .cart_overlay .newsletter_popup,
      .cart_overlay .app_popup,
      .cart_overlay .offer_popup,
      .cart_overlay .cart_popup,
      .cart_overlay .password_popup,
      .cart_overlay .motivator-popup,
      .password_overlay .newsletter_popup,
      .password_overlay .app_popup,
      .password_overlay .offer_popup,
      .password_overlay .cart_popup,
      .password_overlay .password_popup,
      .password_overlay .motivator-popup,
      .motivator-popup__overlay .newsletter_popup,
      .motivator-popup__overlay .app_popup,
      .motivator-popup__overlay .offer_popup,
      .motivator-popup__overlay .cart_popup,
      .motivator-popup__overlay .password_popup,
      .motivator-popup__overlay .motivator-popup {
        width: 80%;
        height: 300px; } }
    @media screen and (max-width: 480px) {
      .newsletter_overlay .newsletter_popup,
      .newsletter_overlay .app_popup,
      .newsletter_overlay .offer_popup,
      .newsletter_overlay .cart_popup,
      .newsletter_overlay .password_popup,
      .newsletter_overlay .motivator-popup,
      .app_overlay .newsletter_popup,
      .app_overlay .app_popup,
      .app_overlay .offer_popup,
      .app_overlay .cart_popup,
      .app_overlay .password_popup,
      .app_overlay .motivator-popup,
      .offer_overlay .newsletter_popup,
      .offer_overlay .app_popup,
      .offer_overlay .offer_popup,
      .offer_overlay .cart_popup,
      .offer_overlay .password_popup,
      .offer_overlay .motivator-popup,
      .cart_overlay .newsletter_popup,
      .cart_overlay .app_popup,
      .cart_overlay .offer_popup,
      .cart_overlay .cart_popup,
      .cart_overlay .password_popup,
      .cart_overlay .motivator-popup,
      .password_overlay .newsletter_popup,
      .password_overlay .app_popup,
      .password_overlay .offer_popup,
      .password_overlay .cart_popup,
      .password_overlay .password_popup,
      .password_overlay .motivator-popup,
      .motivator-popup__overlay .newsletter_popup,
      .motivator-popup__overlay .app_popup,
      .motivator-popup__overlay .offer_popup,
      .motivator-popup__overlay .cart_popup,
      .motivator-popup__overlay .password_popup,
      .motivator-popup__overlay .motivator-popup {
        width: 90%;
        height: 340px; } }
    .newsletter_overlay .newsletter_popup .close_btn,
    .newsletter_overlay .app_popup .close_btn,
    .newsletter_overlay .offer_popup .close_btn,
    .newsletter_overlay .cart_popup .close_btn,
    .newsletter_overlay .password_popup .close_btn,
    .newsletter_overlay .motivator-popup .close_btn,
    .app_overlay .newsletter_popup .close_btn,
    .app_overlay .app_popup .close_btn,
    .app_overlay .offer_popup .close_btn,
    .app_overlay .cart_popup .close_btn,
    .app_overlay .password_popup .close_btn,
    .app_overlay .motivator-popup .close_btn,
    .offer_overlay .newsletter_popup .close_btn,
    .offer_overlay .app_popup .close_btn,
    .offer_overlay .offer_popup .close_btn,
    .offer_overlay .cart_popup .close_btn,
    .offer_overlay .password_popup .close_btn,
    .offer_overlay .motivator-popup .close_btn,
    .cart_overlay .newsletter_popup .close_btn,
    .cart_overlay .app_popup .close_btn,
    .cart_overlay .offer_popup .close_btn,
    .cart_overlay .cart_popup .close_btn,
    .cart_overlay .password_popup .close_btn,
    .cart_overlay .motivator-popup .close_btn,
    .password_overlay .newsletter_popup .close_btn,
    .password_overlay .app_popup .close_btn,
    .password_overlay .offer_popup .close_btn,
    .password_overlay .cart_popup .close_btn,
    .password_overlay .password_popup .close_btn,
    .password_overlay .motivator-popup .close_btn,
    .motivator-popup__overlay .newsletter_popup .close_btn,
    .motivator-popup__overlay .app_popup .close_btn,
    .motivator-popup__overlay .offer_popup .close_btn,
    .motivator-popup__overlay .cart_popup .close_btn,
    .motivator-popup__overlay .password_popup .close_btn,
    .motivator-popup__overlay .motivator-popup .close_btn {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      z-index: 99999999; }
      .newsletter_overlay .newsletter_popup .close_btn:after,
      .newsletter_overlay .app_popup .close_btn:after,
      .newsletter_overlay .offer_popup .close_btn:after,
      .newsletter_overlay .cart_popup .close_btn:after,
      .newsletter_overlay .password_popup .close_btn:after,
      .newsletter_overlay .motivator-popup .close_btn:after,
      .app_overlay .newsletter_popup .close_btn:after,
      .app_overlay .app_popup .close_btn:after,
      .app_overlay .offer_popup .close_btn:after,
      .app_overlay .cart_popup .close_btn:after,
      .app_overlay .password_popup .close_btn:after,
      .app_overlay .motivator-popup .close_btn:after,
      .offer_overlay .newsletter_popup .close_btn:after,
      .offer_overlay .app_popup .close_btn:after,
      .offer_overlay .offer_popup .close_btn:after,
      .offer_overlay .cart_popup .close_btn:after,
      .offer_overlay .password_popup .close_btn:after,
      .offer_overlay .motivator-popup .close_btn:after,
      .cart_overlay .newsletter_popup .close_btn:after,
      .cart_overlay .app_popup .close_btn:after,
      .cart_overlay .offer_popup .close_btn:after,
      .cart_overlay .cart_popup .close_btn:after,
      .cart_overlay .password_popup .close_btn:after,
      .cart_overlay .motivator-popup .close_btn:after,
      .password_overlay .newsletter_popup .close_btn:after,
      .password_overlay .app_popup .close_btn:after,
      .password_overlay .offer_popup .close_btn:after,
      .password_overlay .cart_popup .close_btn:after,
      .password_overlay .password_popup .close_btn:after,
      .password_overlay .motivator-popup .close_btn:after,
      .motivator-popup__overlay .newsletter_popup .close_btn:after,
      .motivator-popup__overlay .app_popup .close_btn:after,
      .motivator-popup__overlay .offer_popup .close_btn:after,
      .motivator-popup__overlay .cart_popup .close_btn:after,
      .motivator-popup__overlay .password_popup .close_btn:after,
      .motivator-popup__overlay .motivator-popup .close_btn:after {
        content: '';
        width: 20px;
        height: 20px;
        background: url(cross_white.png) center no-repeat;
        display: block;
        background-size: 100%; }
    .newsletter_overlay .newsletter_popup form,
    .newsletter_overlay .app_popup form,
    .newsletter_overlay .offer_popup form,
    .newsletter_overlay .cart_popup form,
    .newsletter_overlay .password_popup form,
    .newsletter_overlay .motivator-popup form,
    .app_overlay .newsletter_popup form,
    .app_overlay .app_popup form,
    .app_overlay .offer_popup form,
    .app_overlay .cart_popup form,
    .app_overlay .password_popup form,
    .app_overlay .motivator-popup form,
    .offer_overlay .newsletter_popup form,
    .offer_overlay .app_popup form,
    .offer_overlay .offer_popup form,
    .offer_overlay .cart_popup form,
    .offer_overlay .password_popup form,
    .offer_overlay .motivator-popup form,
    .cart_overlay .newsletter_popup form,
    .cart_overlay .app_popup form,
    .cart_overlay .offer_popup form,
    .cart_overlay .cart_popup form,
    .cart_overlay .password_popup form,
    .cart_overlay .motivator-popup form,
    .password_overlay .newsletter_popup form,
    .password_overlay .app_popup form,
    .password_overlay .offer_popup form,
    .password_overlay .cart_popup form,
    .password_overlay .password_popup form,
    .password_overlay .motivator-popup form,
    .motivator-popup__overlay .newsletter_popup form,
    .motivator-popup__overlay .app_popup form,
    .motivator-popup__overlay .offer_popup form,
    .motivator-popup__overlay .cart_popup form,
    .motivator-popup__overlay .password_popup form,
    .motivator-popup__overlay .motivator-popup form {
      color: white;
      text-align: center;
      position: relative;
      top: 50%;
      width: 100%;
      padding: 0 60px;
      float: right;
      z-index: 9999999;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media screen and (min-width: 481px) and (max-width: 767px) {
        .newsletter_overlay .newsletter_popup form,
        .newsletter_overlay .app_popup form,
        .newsletter_overlay .offer_popup form,
        .newsletter_overlay .cart_popup form,
        .newsletter_overlay .password_popup form,
        .newsletter_overlay .motivator-popup form,
        .app_overlay .newsletter_popup form,
        .app_overlay .app_popup form,
        .app_overlay .offer_popup form,
        .app_overlay .cart_popup form,
        .app_overlay .password_popup form,
        .app_overlay .motivator-popup form,
        .offer_overlay .newsletter_popup form,
        .offer_overlay .app_popup form,
        .offer_overlay .offer_popup form,
        .offer_overlay .cart_popup form,
        .offer_overlay .password_popup form,
        .offer_overlay .motivator-popup form,
        .cart_overlay .newsletter_popup form,
        .cart_overlay .app_popup form,
        .cart_overlay .offer_popup form,
        .cart_overlay .cart_popup form,
        .cart_overlay .password_popup form,
        .cart_overlay .motivator-popup form,
        .password_overlay .newsletter_popup form,
        .password_overlay .app_popup form,
        .password_overlay .offer_popup form,
        .password_overlay .cart_popup form,
        .password_overlay .password_popup form,
        .password_overlay .motivator-popup form,
        .motivator-popup__overlay .newsletter_popup form,
        .motivator-popup__overlay .app_popup form,
        .motivator-popup__overlay .offer_popup form,
        .motivator-popup__overlay .cart_popup form,
        .motivator-popup__overlay .password_popup form,
        .motivator-popup__overlay .motivator-popup form {
          padding: 0 30px; } }
      @media screen and (max-width: 480px) {
        .newsletter_overlay .newsletter_popup form,
        .newsletter_overlay .app_popup form,
        .newsletter_overlay .offer_popup form,
        .newsletter_overlay .cart_popup form,
        .newsletter_overlay .password_popup form,
        .newsletter_overlay .motivator-popup form,
        .app_overlay .newsletter_popup form,
        .app_overlay .app_popup form,
        .app_overlay .offer_popup form,
        .app_overlay .cart_popup form,
        .app_overlay .password_popup form,
        .app_overlay .motivator-popup form,
        .offer_overlay .newsletter_popup form,
        .offer_overlay .app_popup form,
        .offer_overlay .offer_popup form,
        .offer_overlay .cart_popup form,
        .offer_overlay .password_popup form,
        .offer_overlay .motivator-popup form,
        .cart_overlay .newsletter_popup form,
        .cart_overlay .app_popup form,
        .cart_overlay .offer_popup form,
        .cart_overlay .cart_popup form,
        .cart_overlay .password_popup form,
        .cart_overlay .motivator-popup form,
        .password_overlay .newsletter_popup form,
        .password_overlay .app_popup form,
        .password_overlay .offer_popup form,
        .password_overlay .cart_popup form,
        .password_overlay .password_popup form,
        .password_overlay .motivator-popup form,
        .motivator-popup__overlay .newsletter_popup form,
        .motivator-popup__overlay .app_popup form,
        .motivator-popup__overlay .offer_popup form,
        .motivator-popup__overlay .cart_popup form,
        .motivator-popup__overlay .password_popup form,
        .motivator-popup__overlay .motivator-popup form {
          padding: 0; } }
      .newsletter_overlay .newsletter_popup form h6, .newsletter_overlay .newsletter_popup form .h6,
      .newsletter_overlay .app_popup form h6,
      .newsletter_overlay .app_popup form .h6,
      .newsletter_overlay .offer_popup form h6,
      .newsletter_overlay .offer_popup form .h6,
      .newsletter_overlay .cart_popup form h6,
      .newsletter_overlay .cart_popup form .h6,
      .newsletter_overlay .password_popup form h6,
      .newsletter_overlay .password_popup form .h6,
      .newsletter_overlay .motivator-popup form h6,
      .newsletter_overlay .motivator-popup form .h6,
      .app_overlay .newsletter_popup form h6,
      .app_overlay .newsletter_popup form .h6,
      .app_overlay .app_popup form h6,
      .app_overlay .app_popup form .h6,
      .app_overlay .offer_popup form h6,
      .app_overlay .offer_popup form .h6,
      .app_overlay .cart_popup form h6,
      .app_overlay .cart_popup form .h6,
      .app_overlay .password_popup form h6,
      .app_overlay .password_popup form .h6,
      .app_overlay .motivator-popup form h6,
      .app_overlay .motivator-popup form .h6,
      .offer_overlay .newsletter_popup form h6,
      .offer_overlay .newsletter_popup form .h6,
      .offer_overlay .app_popup form h6,
      .offer_overlay .app_popup form .h6,
      .offer_overlay .offer_popup form h6,
      .offer_overlay .offer_popup form .h6,
      .offer_overlay .cart_popup form h6,
      .offer_overlay .cart_popup form .h6,
      .offer_overlay .password_popup form h6,
      .offer_overlay .password_popup form .h6,
      .offer_overlay .motivator-popup form h6,
      .offer_overlay .motivator-popup form .h6,
      .cart_overlay .newsletter_popup form h6,
      .cart_overlay .newsletter_popup form .h6,
      .cart_overlay .app_popup form h6,
      .cart_overlay .app_popup form .h6,
      .cart_overlay .offer_popup form h6,
      .cart_overlay .offer_popup form .h6,
      .cart_overlay .cart_popup form h6,
      .cart_overlay .cart_popup form .h6,
      .cart_overlay .password_popup form h6,
      .cart_overlay .password_popup form .h6,
      .cart_overlay .motivator-popup form h6,
      .cart_overlay .motivator-popup form .h6,
      .password_overlay .newsletter_popup form h6,
      .password_overlay .newsletter_popup form .h6,
      .password_overlay .app_popup form h6,
      .password_overlay .app_popup form .h6,
      .password_overlay .offer_popup form h6,
      .password_overlay .offer_popup form .h6,
      .password_overlay .cart_popup form h6,
      .password_overlay .cart_popup form .h6,
      .password_overlay .password_popup form h6,
      .password_overlay .password_popup form .h6,
      .password_overlay .motivator-popup form h6,
      .password_overlay .motivator-popup form .h6,
      .motivator-popup__overlay .newsletter_popup form h6,
      .motivator-popup__overlay .newsletter_popup form .h6,
      .motivator-popup__overlay .app_popup form h6,
      .motivator-popup__overlay .app_popup form .h6,
      .motivator-popup__overlay .offer_popup form h6,
      .motivator-popup__overlay .offer_popup form .h6,
      .motivator-popup__overlay .cart_popup form h6,
      .motivator-popup__overlay .cart_popup form .h6,
      .motivator-popup__overlay .password_popup form h6,
      .motivator-popup__overlay .password_popup form .h6,
      .motivator-popup__overlay .motivator-popup form h6,
      .motivator-popup__overlay .motivator-popup form .h6 {
        text-transform: capitalize;
        font-weight: 400;
        font-size: 15px; }
      .newsletter_overlay .newsletter_popup form h2, .newsletter_overlay .newsletter_popup form .h2,
      .newsletter_overlay .app_popup form h2,
      .newsletter_overlay .app_popup form .h2,
      .newsletter_overlay .offer_popup form h2,
      .newsletter_overlay .offer_popup form .h2,
      .newsletter_overlay .cart_popup form h2,
      .newsletter_overlay .cart_popup form .h2,
      .newsletter_overlay .password_popup form h2,
      .newsletter_overlay .password_popup form .h2,
      .newsletter_overlay .motivator-popup form h2,
      .newsletter_overlay .motivator-popup form .h2,
      .app_overlay .newsletter_popup form h2,
      .app_overlay .newsletter_popup form .h2,
      .app_overlay .app_popup form h2,
      .app_overlay .app_popup form .h2,
      .app_overlay .offer_popup form h2,
      .app_overlay .offer_popup form .h2,
      .app_overlay .cart_popup form h2,
      .app_overlay .cart_popup form .h2,
      .app_overlay .password_popup form h2,
      .app_overlay .password_popup form .h2,
      .app_overlay .motivator-popup form h2,
      .app_overlay .motivator-popup form .h2,
      .offer_overlay .newsletter_popup form h2,
      .offer_overlay .newsletter_popup form .h2,
      .offer_overlay .app_popup form h2,
      .offer_overlay .app_popup form .h2,
      .offer_overlay .offer_popup form h2,
      .offer_overlay .offer_popup form .h2,
      .offer_overlay .cart_popup form h2,
      .offer_overlay .cart_popup form .h2,
      .offer_overlay .password_popup form h2,
      .offer_overlay .password_popup form .h2,
      .offer_overlay .motivator-popup form h2,
      .offer_overlay .motivator-popup form .h2,
      .cart_overlay .newsletter_popup form h2,
      .cart_overlay .newsletter_popup form .h2,
      .cart_overlay .app_popup form h2,
      .cart_overlay .app_popup form .h2,
      .cart_overlay .offer_popup form h2,
      .cart_overlay .offer_popup form .h2,
      .cart_overlay .cart_popup form h2,
      .cart_overlay .cart_popup form .h2,
      .cart_overlay .password_popup form h2,
      .cart_overlay .password_popup form .h2,
      .cart_overlay .motivator-popup form h2,
      .cart_overlay .motivator-popup form .h2,
      .password_overlay .newsletter_popup form h2,
      .password_overlay .newsletter_popup form .h2,
      .password_overlay .app_popup form h2,
      .password_overlay .app_popup form .h2,
      .password_overlay .offer_popup form h2,
      .password_overlay .offer_popup form .h2,
      .password_overlay .cart_popup form h2,
      .password_overlay .cart_popup form .h2,
      .password_overlay .password_popup form h2,
      .password_overlay .password_popup form .h2,
      .password_overlay .motivator-popup form h2,
      .password_overlay .motivator-popup form .h2,
      .motivator-popup__overlay .newsletter_popup form h2,
      .motivator-popup__overlay .newsletter_popup form .h2,
      .motivator-popup__overlay .app_popup form h2,
      .motivator-popup__overlay .app_popup form .h2,
      .motivator-popup__overlay .offer_popup form h2,
      .motivator-popup__overlay .offer_popup form .h2,
      .motivator-popup__overlay .cart_popup form h2,
      .motivator-popup__overlay .cart_popup form .h2,
      .motivator-popup__overlay .password_popup form h2,
      .motivator-popup__overlay .password_popup form .h2,
      .motivator-popup__overlay .motivator-popup form h2,
      .motivator-popup__overlay .motivator-popup form .h2 {
        margin-bottom: 7px;
        line-height: 1;
        font-weight: 700;
        font-size: 60px;
        letter-spacing: 6px; }
        @media screen and (max-width: 767px) {
          .newsletter_overlay .newsletter_popup form h2, .newsletter_overlay .newsletter_popup form .h2,
          .newsletter_overlay .app_popup form h2,
          .newsletter_overlay .app_popup form .h2,
          .newsletter_overlay .offer_popup form h2,
          .newsletter_overlay .offer_popup form .h2,
          .newsletter_overlay .cart_popup form h2,
          .newsletter_overlay .cart_popup form .h2,
          .newsletter_overlay .password_popup form h2,
          .newsletter_overlay .password_popup form .h2,
          .newsletter_overlay .motivator-popup form h2,
          .newsletter_overlay .motivator-popup form .h2,
          .app_overlay .newsletter_popup form h2,
          .app_overlay .newsletter_popup form .h2,
          .app_overlay .app_popup form h2,
          .app_overlay .app_popup form .h2,
          .app_overlay .offer_popup form h2,
          .app_overlay .offer_popup form .h2,
          .app_overlay .cart_popup form h2,
          .app_overlay .cart_popup form .h2,
          .app_overlay .password_popup form h2,
          .app_overlay .password_popup form .h2,
          .app_overlay .motivator-popup form h2,
          .app_overlay .motivator-popup form .h2,
          .offer_overlay .newsletter_popup form h2,
          .offer_overlay .newsletter_popup form .h2,
          .offer_overlay .app_popup form h2,
          .offer_overlay .app_popup form .h2,
          .offer_overlay .offer_popup form h2,
          .offer_overlay .offer_popup form .h2,
          .offer_overlay .cart_popup form h2,
          .offer_overlay .cart_popup form .h2,
          .offer_overlay .password_popup form h2,
          .offer_overlay .password_popup form .h2,
          .offer_overlay .motivator-popup form h2,
          .offer_overlay .motivator-popup form .h2,
          .cart_overlay .newsletter_popup form h2,
          .cart_overlay .newsletter_popup form .h2,
          .cart_overlay .app_popup form h2,
          .cart_overlay .app_popup form .h2,
          .cart_overlay .offer_popup form h2,
          .cart_overlay .offer_popup form .h2,
          .cart_overlay .cart_popup form h2,
          .cart_overlay .cart_popup form .h2,
          .cart_overlay .password_popup form h2,
          .cart_overlay .password_popup form .h2,
          .cart_overlay .motivator-popup form h2,
          .cart_overlay .motivator-popup form .h2,
          .password_overlay .newsletter_popup form h2,
          .password_overlay .newsletter_popup form .h2,
          .password_overlay .app_popup form h2,
          .password_overlay .app_popup form .h2,
          .password_overlay .offer_popup form h2,
          .password_overlay .offer_popup form .h2,
          .password_overlay .cart_popup form h2,
          .password_overlay .cart_popup form .h2,
          .password_overlay .password_popup form h2,
          .password_overlay .password_popup form .h2,
          .password_overlay .motivator-popup form h2,
          .password_overlay .motivator-popup form .h2,
          .motivator-popup__overlay .newsletter_popup form h2,
          .motivator-popup__overlay .newsletter_popup form .h2,
          .motivator-popup__overlay .app_popup form h2,
          .motivator-popup__overlay .app_popup form .h2,
          .motivator-popup__overlay .offer_popup form h2,
          .motivator-popup__overlay .offer_popup form .h2,
          .motivator-popup__overlay .cart_popup form h2,
          .motivator-popup__overlay .cart_popup form .h2,
          .motivator-popup__overlay .password_popup form h2,
          .motivator-popup__overlay .password_popup form .h2,
          .motivator-popup__overlay .motivator-popup form h2,
          .motivator-popup__overlay .motivator-popup form .h2 {
            font-size: 40px; } }
      .newsletter_overlay .newsletter_popup form .social_box,
      .newsletter_overlay .app_popup form .social_box,
      .newsletter_overlay .offer_popup form .social_box,
      .newsletter_overlay .cart_popup form .social_box,
      .newsletter_overlay .password_popup form .social_box,
      .newsletter_overlay .motivator-popup form .social_box,
      .app_overlay .newsletter_popup form .social_box,
      .app_overlay .app_popup form .social_box,
      .app_overlay .offer_popup form .social_box,
      .app_overlay .cart_popup form .social_box,
      .app_overlay .password_popup form .social_box,
      .app_overlay .motivator-popup form .social_box,
      .offer_overlay .newsletter_popup form .social_box,
      .offer_overlay .app_popup form .social_box,
      .offer_overlay .offer_popup form .social_box,
      .offer_overlay .cart_popup form .social_box,
      .offer_overlay .password_popup form .social_box,
      .offer_overlay .motivator-popup form .social_box,
      .cart_overlay .newsletter_popup form .social_box,
      .cart_overlay .app_popup form .social_box,
      .cart_overlay .offer_popup form .social_box,
      .cart_overlay .cart_popup form .social_box,
      .cart_overlay .password_popup form .social_box,
      .cart_overlay .motivator-popup form .social_box,
      .password_overlay .newsletter_popup form .social_box,
      .password_overlay .app_popup form .social_box,
      .password_overlay .offer_popup form .social_box,
      .password_overlay .cart_popup form .social_box,
      .password_overlay .password_popup form .social_box,
      .password_overlay .motivator-popup form .social_box,
      .motivator-popup__overlay .newsletter_popup form .social_box,
      .motivator-popup__overlay .app_popup form .social_box,
      .motivator-popup__overlay .offer_popup form .social_box,
      .motivator-popup__overlay .cart_popup form .social_box,
      .motivator-popup__overlay .password_popup form .social_box,
      .motivator-popup__overlay .motivator-popup form .social_box {
        margin-top: 30px; }
        @media screen and (max-width: 767px) {
          .newsletter_overlay .newsletter_popup form .social_box,
          .newsletter_overlay .app_popup form .social_box,
          .newsletter_overlay .offer_popup form .social_box,
          .newsletter_overlay .cart_popup form .social_box,
          .newsletter_overlay .password_popup form .social_box,
          .newsletter_overlay .motivator-popup form .social_box,
          .app_overlay .newsletter_popup form .social_box,
          .app_overlay .app_popup form .social_box,
          .app_overlay .offer_popup form .social_box,
          .app_overlay .cart_popup form .social_box,
          .app_overlay .password_popup form .social_box,
          .app_overlay .motivator-popup form .social_box,
          .offer_overlay .newsletter_popup form .social_box,
          .offer_overlay .app_popup form .social_box,
          .offer_overlay .offer_popup form .social_box,
          .offer_overlay .cart_popup form .social_box,
          .offer_overlay .password_popup form .social_box,
          .offer_overlay .motivator-popup form .social_box,
          .cart_overlay .newsletter_popup form .social_box,
          .cart_overlay .app_popup form .social_box,
          .cart_overlay .offer_popup form .social_box,
          .cart_overlay .cart_popup form .social_box,
          .cart_overlay .password_popup form .social_box,
          .cart_overlay .motivator-popup form .social_box,
          .password_overlay .newsletter_popup form .social_box,
          .password_overlay .app_popup form .social_box,
          .password_overlay .offer_popup form .social_box,
          .password_overlay .cart_popup form .social_box,
          .password_overlay .password_popup form .social_box,
          .password_overlay .motivator-popup form .social_box,
          .motivator-popup__overlay .newsletter_popup form .social_box,
          .motivator-popup__overlay .app_popup form .social_box,
          .motivator-popup__overlay .offer_popup form .social_box,
          .motivator-popup__overlay .cart_popup form .social_box,
          .motivator-popup__overlay .password_popup form .social_box,
          .motivator-popup__overlay .motivator-popup form .social_box {
            margin-top: 20px; } }
        .newsletter_overlay .newsletter_popup form .social_box ul,
        .newsletter_overlay .app_popup form .social_box ul,
        .newsletter_overlay .offer_popup form .social_box ul,
        .newsletter_overlay .cart_popup form .social_box ul,
        .newsletter_overlay .password_popup form .social_box ul,
        .newsletter_overlay .motivator-popup form .social_box ul,
        .app_overlay .newsletter_popup form .social_box ul,
        .app_overlay .app_popup form .social_box ul,
        .app_overlay .offer_popup form .social_box ul,
        .app_overlay .cart_popup form .social_box ul,
        .app_overlay .password_popup form .social_box ul,
        .app_overlay .motivator-popup form .social_box ul,
        .offer_overlay .newsletter_popup form .social_box ul,
        .offer_overlay .app_popup form .social_box ul,
        .offer_overlay .offer_popup form .social_box ul,
        .offer_overlay .cart_popup form .social_box ul,
        .offer_overlay .password_popup form .social_box ul,
        .offer_overlay .motivator-popup form .social_box ul,
        .cart_overlay .newsletter_popup form .social_box ul,
        .cart_overlay .app_popup form .social_box ul,
        .cart_overlay .offer_popup form .social_box ul,
        .cart_overlay .cart_popup form .social_box ul,
        .cart_overlay .password_popup form .social_box ul,
        .cart_overlay .motivator-popup form .social_box ul,
        .password_overlay .newsletter_popup form .social_box ul,
        .password_overlay .app_popup form .social_box ul,
        .password_overlay .offer_popup form .social_box ul,
        .password_overlay .cart_popup form .social_box ul,
        .password_overlay .password_popup form .social_box ul,
        .password_overlay .motivator-popup form .social_box ul,
        .motivator-popup__overlay .newsletter_popup form .social_box ul,
        .motivator-popup__overlay .app_popup form .social_box ul,
        .motivator-popup__overlay .offer_popup form .social_box ul,
        .motivator-popup__overlay .cart_popup form .social_box ul,
        .motivator-popup__overlay .password_popup form .social_box ul,
        .motivator-popup__overlay .motivator-popup form .social_box ul {
          list-style: none; }
          .newsletter_overlay .newsletter_popup form .social_box ul li,
          .newsletter_overlay .app_popup form .social_box ul li,
          .newsletter_overlay .offer_popup form .social_box ul li,
          .newsletter_overlay .cart_popup form .social_box ul li,
          .newsletter_overlay .password_popup form .social_box ul li,
          .newsletter_overlay .motivator-popup form .social_box ul li,
          .app_overlay .newsletter_popup form .social_box ul li,
          .app_overlay .app_popup form .social_box ul li,
          .app_overlay .offer_popup form .social_box ul li,
          .app_overlay .cart_popup form .social_box ul li,
          .app_overlay .password_popup form .social_box ul li,
          .app_overlay .motivator-popup form .social_box ul li,
          .offer_overlay .newsletter_popup form .social_box ul li,
          .offer_overlay .app_popup form .social_box ul li,
          .offer_overlay .offer_popup form .social_box ul li,
          .offer_overlay .cart_popup form .social_box ul li,
          .offer_overlay .password_popup form .social_box ul li,
          .offer_overlay .motivator-popup form .social_box ul li,
          .cart_overlay .newsletter_popup form .social_box ul li,
          .cart_overlay .app_popup form .social_box ul li,
          .cart_overlay .offer_popup form .social_box ul li,
          .cart_overlay .cart_popup form .social_box ul li,
          .cart_overlay .password_popup form .social_box ul li,
          .cart_overlay .motivator-popup form .social_box ul li,
          .password_overlay .newsletter_popup form .social_box ul li,
          .password_overlay .app_popup form .social_box ul li,
          .password_overlay .offer_popup form .social_box ul li,
          .password_overlay .cart_popup form .social_box ul li,
          .password_overlay .password_popup form .social_box ul li,
          .password_overlay .motivator-popup form .social_box ul li,
          .motivator-popup__overlay .newsletter_popup form .social_box ul li,
          .motivator-popup__overlay .app_popup form .social_box ul li,
          .motivator-popup__overlay .offer_popup form .social_box ul li,
          .motivator-popup__overlay .cart_popup form .social_box ul li,
          .motivator-popup__overlay .password_popup form .social_box ul li,
          .motivator-popup__overlay .motivator-popup form .social_box ul li {
            display: inline-block;
            margin: 0 5px; }
            .newsletter_overlay .newsletter_popup form .social_box ul li a,
            .newsletter_overlay .app_popup form .social_box ul li a,
            .newsletter_overlay .offer_popup form .social_box ul li a,
            .newsletter_overlay .cart_popup form .social_box ul li a,
            .newsletter_overlay .password_popup form .social_box ul li a,
            .newsletter_overlay .motivator-popup form .social_box ul li a,
            .app_overlay .newsletter_popup form .social_box ul li a,
            .app_overlay .app_popup form .social_box ul li a,
            .app_overlay .offer_popup form .social_box ul li a,
            .app_overlay .cart_popup form .social_box ul li a,
            .app_overlay .password_popup form .social_box ul li a,
            .app_overlay .motivator-popup form .social_box ul li a,
            .offer_overlay .newsletter_popup form .social_box ul li a,
            .offer_overlay .app_popup form .social_box ul li a,
            .offer_overlay .offer_popup form .social_box ul li a,
            .offer_overlay .cart_popup form .social_box ul li a,
            .offer_overlay .password_popup form .social_box ul li a,
            .offer_overlay .motivator-popup form .social_box ul li a,
            .cart_overlay .newsletter_popup form .social_box ul li a,
            .cart_overlay .app_popup form .social_box ul li a,
            .cart_overlay .offer_popup form .social_box ul li a,
            .cart_overlay .cart_popup form .social_box ul li a,
            .cart_overlay .password_popup form .social_box ul li a,
            .cart_overlay .motivator-popup form .social_box ul li a,
            .password_overlay .newsletter_popup form .social_box ul li a,
            .password_overlay .app_popup form .social_box ul li a,
            .password_overlay .offer_popup form .social_box ul li a,
            .password_overlay .cart_popup form .social_box ul li a,
            .password_overlay .password_popup form .social_box ul li a,
            .password_overlay .motivator-popup form .social_box ul li a,
            .motivator-popup__overlay .newsletter_popup form .social_box ul li a,
            .motivator-popup__overlay .app_popup form .social_box ul li a,
            .motivator-popup__overlay .offer_popup form .social_box ul li a,
            .motivator-popup__overlay .cart_popup form .social_box ul li a,
            .motivator-popup__overlay .password_popup form .social_box ul li a,
            .motivator-popup__overlay .motivator-popup form .social_box ul li a {
              width: 30px;
              height: 30px;
              line-height: 30px;
              background-color: white;
              -webkit-border-radius: 15px;
              -moz-border-radius: 15px;
              -ms-border-radius: 15px;
              border-radius: 15px;
              display: inline-block; }
              .newsletter_overlay .newsletter_popup form .social_box ul li a .fa,
              .newsletter_overlay .app_popup form .social_box ul li a .fa,
              .newsletter_overlay .offer_popup form .social_box ul li a .fa,
              .newsletter_overlay .cart_popup form .social_box ul li a .fa,
              .newsletter_overlay .password_popup form .social_box ul li a .fa,
              .newsletter_overlay .motivator-popup form .social_box ul li a .fa,
              .app_overlay .newsletter_popup form .social_box ul li a .fa,
              .app_overlay .app_popup form .social_box ul li a .fa,
              .app_overlay .offer_popup form .social_box ul li a .fa,
              .app_overlay .cart_popup form .social_box ul li a .fa,
              .app_overlay .password_popup form .social_box ul li a .fa,
              .app_overlay .motivator-popup form .social_box ul li a .fa,
              .offer_overlay .newsletter_popup form .social_box ul li a .fa,
              .offer_overlay .app_popup form .social_box ul li a .fa,
              .offer_overlay .offer_popup form .social_box ul li a .fa,
              .offer_overlay .cart_popup form .social_box ul li a .fa,
              .offer_overlay .password_popup form .social_box ul li a .fa,
              .offer_overlay .motivator-popup form .social_box ul li a .fa,
              .cart_overlay .newsletter_popup form .social_box ul li a .fa,
              .cart_overlay .app_popup form .social_box ul li a .fa,
              .cart_overlay .offer_popup form .social_box ul li a .fa,
              .cart_overlay .cart_popup form .social_box ul li a .fa,
              .cart_overlay .password_popup form .social_box ul li a .fa,
              .cart_overlay .motivator-popup form .social_box ul li a .fa,
              .password_overlay .newsletter_popup form .social_box ul li a .fa,
              .password_overlay .app_popup form .social_box ul li a .fa,
              .password_overlay .offer_popup form .social_box ul li a .fa,
              .password_overlay .cart_popup form .social_box ul li a .fa,
              .password_overlay .password_popup form .social_box ul li a .fa,
              .password_overlay .motivator-popup form .social_box ul li a .fa,
              .motivator-popup__overlay .newsletter_popup form .social_box ul li a .fa,
              .motivator-popup__overlay .app_popup form .social_box ul li a .fa,
              .motivator-popup__overlay .offer_popup form .social_box ul li a .fa,
              .motivator-popup__overlay .cart_popup form .social_box ul li a .fa,
              .motivator-popup__overlay .password_popup form .social_box ul li a .fa,
              .motivator-popup__overlay .motivator-popup form .social_box ul li a .fa {
                font-size: 18px;
                line-height: 32px; }
              .newsletter_overlay .newsletter_popup form .social_box ul li a:hover,
              .newsletter_overlay .app_popup form .social_box ul li a:hover,
              .newsletter_overlay .offer_popup form .social_box ul li a:hover,
              .newsletter_overlay .cart_popup form .social_box ul li a:hover,
              .newsletter_overlay .password_popup form .social_box ul li a:hover,
              .newsletter_overlay .motivator-popup form .social_box ul li a:hover,
              .app_overlay .newsletter_popup form .social_box ul li a:hover,
              .app_overlay .app_popup form .social_box ul li a:hover,
              .app_overlay .offer_popup form .social_box ul li a:hover,
              .app_overlay .cart_popup form .social_box ul li a:hover,
              .app_overlay .password_popup form .social_box ul li a:hover,
              .app_overlay .motivator-popup form .social_box ul li a:hover,
              .offer_overlay .newsletter_popup form .social_box ul li a:hover,
              .offer_overlay .app_popup form .social_box ul li a:hover,
              .offer_overlay .offer_popup form .social_box ul li a:hover,
              .offer_overlay .cart_popup form .social_box ul li a:hover,
              .offer_overlay .password_popup form .social_box ul li a:hover,
              .offer_overlay .motivator-popup form .social_box ul li a:hover,
              .cart_overlay .newsletter_popup form .social_box ul li a:hover,
              .cart_overlay .app_popup form .social_box ul li a:hover,
              .cart_overlay .offer_popup form .social_box ul li a:hover,
              .cart_overlay .cart_popup form .social_box ul li a:hover,
              .cart_overlay .password_popup form .social_box ul li a:hover,
              .cart_overlay .motivator-popup form .social_box ul li a:hover,
              .password_overlay .newsletter_popup form .social_box ul li a:hover,
              .password_overlay .app_popup form .social_box ul li a:hover,
              .password_overlay .offer_popup form .social_box ul li a:hover,
              .password_overlay .cart_popup form .social_box ul li a:hover,
              .password_overlay .password_popup form .social_box ul li a:hover,
              .password_overlay .motivator-popup form .social_box ul li a:hover,
              .motivator-popup__overlay .newsletter_popup form .social_box ul li a:hover,
              .motivator-popup__overlay .app_popup form .social_box ul li a:hover,
              .motivator-popup__overlay .offer_popup form .social_box ul li a:hover,
              .motivator-popup__overlay .cart_popup form .social_box ul li a:hover,
              .motivator-popup__overlay .password_popup form .social_box ul li a:hover,
              .motivator-popup__overlay .motivator-popup form .social_box ul li a:hover {
                background-color: #f2f2f2; }
      .newsletter_overlay .newsletter_popup form .filed_grp,
      .newsletter_overlay .app_popup form .filed_grp,
      .newsletter_overlay .offer_popup form .filed_grp,
      .newsletter_overlay .cart_popup form .filed_grp,
      .newsletter_overlay .password_popup form .filed_grp,
      .newsletter_overlay .motivator-popup form .filed_grp,
      .app_overlay .newsletter_popup form .filed_grp,
      .app_overlay .app_popup form .filed_grp,
      .app_overlay .offer_popup form .filed_grp,
      .app_overlay .cart_popup form .filed_grp,
      .app_overlay .password_popup form .filed_grp,
      .app_overlay .motivator-popup form .filed_grp,
      .offer_overlay .newsletter_popup form .filed_grp,
      .offer_overlay .app_popup form .filed_grp,
      .offer_overlay .offer_popup form .filed_grp,
      .offer_overlay .cart_popup form .filed_grp,
      .offer_overlay .password_popup form .filed_grp,
      .offer_overlay .motivator-popup form .filed_grp,
      .cart_overlay .newsletter_popup form .filed_grp,
      .cart_overlay .app_popup form .filed_grp,
      .cart_overlay .offer_popup form .filed_grp,
      .cart_overlay .cart_popup form .filed_grp,
      .cart_overlay .password_popup form .filed_grp,
      .cart_overlay .motivator-popup form .filed_grp,
      .password_overlay .newsletter_popup form .filed_grp,
      .password_overlay .app_popup form .filed_grp,
      .password_overlay .offer_popup form .filed_grp,
      .password_overlay .cart_popup form .filed_grp,
      .password_overlay .password_popup form .filed_grp,
      .password_overlay .motivator-popup form .filed_grp,
      .motivator-popup__overlay .newsletter_popup form .filed_grp,
      .motivator-popup__overlay .app_popup form .filed_grp,
      .motivator-popup__overlay .offer_popup form .filed_grp,
      .motivator-popup__overlay .cart_popup form .filed_grp,
      .motivator-popup__overlay .password_popup form .filed_grp,
      .motivator-popup__overlay .motivator-popup form .filed_grp {
        margin-top: 45px;
        *zoom: 1; }
        .newsletter_overlay .newsletter_popup form .filed_grp:after,
        .newsletter_overlay .app_popup form .filed_grp:after,
        .newsletter_overlay .offer_popup form .filed_grp:after,
        .newsletter_overlay .cart_popup form .filed_grp:after,
        .newsletter_overlay .password_popup form .filed_grp:after,
        .newsletter_overlay .motivator-popup form .filed_grp:after,
        .app_overlay .newsletter_popup form .filed_grp:after,
        .app_overlay .app_popup form .filed_grp:after,
        .app_overlay .offer_popup form .filed_grp:after,
        .app_overlay .cart_popup form .filed_grp:after,
        .app_overlay .password_popup form .filed_grp:after,
        .app_overlay .motivator-popup form .filed_grp:after,
        .offer_overlay .newsletter_popup form .filed_grp:after,
        .offer_overlay .app_popup form .filed_grp:after,
        .offer_overlay .offer_popup form .filed_grp:after,
        .offer_overlay .cart_popup form .filed_grp:after,
        .offer_overlay .password_popup form .filed_grp:after,
        .offer_overlay .motivator-popup form .filed_grp:after,
        .cart_overlay .newsletter_popup form .filed_grp:after,
        .cart_overlay .app_popup form .filed_grp:after,
        .cart_overlay .offer_popup form .filed_grp:after,
        .cart_overlay .cart_popup form .filed_grp:after,
        .cart_overlay .password_popup form .filed_grp:after,
        .cart_overlay .motivator-popup form .filed_grp:after,
        .password_overlay .newsletter_popup form .filed_grp:after,
        .password_overlay .app_popup form .filed_grp:after,
        .password_overlay .offer_popup form .filed_grp:after,
        .password_overlay .cart_popup form .filed_grp:after,
        .password_overlay .password_popup form .filed_grp:after,
        .password_overlay .motivator-popup form .filed_grp:after,
        .motivator-popup__overlay .newsletter_popup form .filed_grp:after,
        .motivator-popup__overlay .app_popup form .filed_grp:after,
        .motivator-popup__overlay .offer_popup form .filed_grp:after,
        .motivator-popup__overlay .cart_popup form .filed_grp:after,
        .motivator-popup__overlay .password_popup form .filed_grp:after,
        .motivator-popup__overlay .motivator-popup form .filed_grp:after {
          content: '';
          display: table;
          clear: both; }
        @media screen and (max-width: 767px) {
          .newsletter_overlay .newsletter_popup form .filed_grp,
          .newsletter_overlay .app_popup form .filed_grp,
          .newsletter_overlay .offer_popup form .filed_grp,
          .newsletter_overlay .cart_popup form .filed_grp,
          .newsletter_overlay .password_popup form .filed_grp,
          .newsletter_overlay .motivator-popup form .filed_grp,
          .app_overlay .newsletter_popup form .filed_grp,
          .app_overlay .app_popup form .filed_grp,
          .app_overlay .offer_popup form .filed_grp,
          .app_overlay .cart_popup form .filed_grp,
          .app_overlay .password_popup form .filed_grp,
          .app_overlay .motivator-popup form .filed_grp,
          .offer_overlay .newsletter_popup form .filed_grp,
          .offer_overlay .app_popup form .filed_grp,
          .offer_overlay .offer_popup form .filed_grp,
          .offer_overlay .cart_popup form .filed_grp,
          .offer_overlay .password_popup form .filed_grp,
          .offer_overlay .motivator-popup form .filed_grp,
          .cart_overlay .newsletter_popup form .filed_grp,
          .cart_overlay .app_popup form .filed_grp,
          .cart_overlay .offer_popup form .filed_grp,
          .cart_overlay .cart_popup form .filed_grp,
          .cart_overlay .password_popup form .filed_grp,
          .cart_overlay .motivator-popup form .filed_grp,
          .password_overlay .newsletter_popup form .filed_grp,
          .password_overlay .app_popup form .filed_grp,
          .password_overlay .offer_popup form .filed_grp,
          .password_overlay .cart_popup form .filed_grp,
          .password_overlay .password_popup form .filed_grp,
          .password_overlay .motivator-popup form .filed_grp,
          .motivator-popup__overlay .newsletter_popup form .filed_grp,
          .motivator-popup__overlay .app_popup form .filed_grp,
          .motivator-popup__overlay .offer_popup form .filed_grp,
          .motivator-popup__overlay .cart_popup form .filed_grp,
          .motivator-popup__overlay .password_popup form .filed_grp,
          .motivator-popup__overlay .motivator-popup form .filed_grp {
            margin-top: 20px; } }
        .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"],
        .newsletter_overlay .app_popup form .filed_grp input[type="email"],
        .newsletter_overlay .offer_popup form .filed_grp input[type="email"],
        .newsletter_overlay .cart_popup form .filed_grp input[type="email"],
        .newsletter_overlay .password_popup form .filed_grp input[type="email"],
        .newsletter_overlay .motivator-popup form .filed_grp input[type="email"],
        .app_overlay .newsletter_popup form .filed_grp input[type="email"],
        .app_overlay .app_popup form .filed_grp input[type="email"],
        .app_overlay .offer_popup form .filed_grp input[type="email"],
        .app_overlay .cart_popup form .filed_grp input[type="email"],
        .app_overlay .password_popup form .filed_grp input[type="email"],
        .app_overlay .motivator-popup form .filed_grp input[type="email"],
        .offer_overlay .newsletter_popup form .filed_grp input[type="email"],
        .offer_overlay .app_popup form .filed_grp input[type="email"],
        .offer_overlay .offer_popup form .filed_grp input[type="email"],
        .offer_overlay .cart_popup form .filed_grp input[type="email"],
        .offer_overlay .password_popup form .filed_grp input[type="email"],
        .offer_overlay .motivator-popup form .filed_grp input[type="email"],
        .cart_overlay .newsletter_popup form .filed_grp input[type="email"],
        .cart_overlay .app_popup form .filed_grp input[type="email"],
        .cart_overlay .offer_popup form .filed_grp input[type="email"],
        .cart_overlay .cart_popup form .filed_grp input[type="email"],
        .cart_overlay .password_popup form .filed_grp input[type="email"],
        .cart_overlay .motivator-popup form .filed_grp input[type="email"],
        .password_overlay .newsletter_popup form .filed_grp input[type="email"],
        .password_overlay .app_popup form .filed_grp input[type="email"],
        .password_overlay .offer_popup form .filed_grp input[type="email"],
        .password_overlay .cart_popup form .filed_grp input[type="email"],
        .password_overlay .password_popup form .filed_grp input[type="email"],
        .password_overlay .motivator-popup form .filed_grp input[type="email"],
        .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"],
        .motivator-popup__overlay .app_popup form .filed_grp input[type="email"],
        .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"],
        .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"],
        .motivator-popup__overlay .password_popup form .filed_grp input[type="email"],
        .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"] {
          border-radius: 4px;
          -moz-border-radius: 4px;
          -ms-border-radius: 4px;
          -webkit-border-radius: 4px;
          height: 38px;
          padding: 5px 15px 7px;
          line-height: 26px; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]::-webkit-input-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]::-webkit-input-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 13px;
            color: #181923;
            text-transform: capitalize;
            font-style: normal;
            opacity: 1;
            font-weight: 400; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]:-moz-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]:-moz-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]:-moz-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]:-moz-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]:-moz-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]:-moz-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]:-moz-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 13px;
            color: #181923;
            text-transform: capitalize;
            font-style: normal;
            opacity: 1;
            font-weight: 400; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]::-moz-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]::-moz-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]::-moz-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]::-moz-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]::-moz-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]::-moz-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]::-moz-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 13px;
            color: #181923;
            text-transform: capitalize;
            font-style: normal;
            opacity: 1;
            font-weight: 400; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]:-ms-input-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]:-ms-input-placeholder {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 13px;
            color: #181923;
            text-transform: capitalize;
            font-style: normal;
            opacity: 1;
            font-weight: 400; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]:focus::-webkit-input-placeholder {
            color: transparent; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]:focus:-moz-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]:focus:-moz-placeholder {
            color: transparent; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]:focus::-moz-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]:focus::-moz-placeholder {
            color: transparent; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .newsletter_overlay .app_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .newsletter_overlay .offer_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .newsletter_overlay .cart_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .newsletter_overlay .password_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .app_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .app_overlay .app_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .app_overlay .offer_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .app_overlay .cart_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .app_overlay .password_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .app_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .offer_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .offer_overlay .app_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .offer_overlay .offer_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .offer_overlay .cart_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .offer_overlay .password_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .offer_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .cart_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .cart_overlay .app_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .cart_overlay .offer_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .cart_overlay .cart_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .cart_overlay .password_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .cart_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .password_overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .password_overlay .app_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .password_overlay .offer_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .password_overlay .cart_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .password_overlay .password_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .password_overlay .motivator-popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="email"]:focus:-ms-input-placeholder {
            color: transparent; }
        .newsletter_overlay .newsletter_popup form .filed_grp input[type="submit"],
        .newsletter_overlay .app_popup form .filed_grp input[type="submit"],
        .newsletter_overlay .offer_popup form .filed_grp input[type="submit"],
        .newsletter_overlay .cart_popup form .filed_grp input[type="submit"],
        .newsletter_overlay .password_popup form .filed_grp input[type="submit"],
        .newsletter_overlay .motivator-popup form .filed_grp input[type="submit"],
        .app_overlay .newsletter_popup form .filed_grp input[type="submit"],
        .app_overlay .app_popup form .filed_grp input[type="submit"],
        .app_overlay .offer_popup form .filed_grp input[type="submit"],
        .app_overlay .cart_popup form .filed_grp input[type="submit"],
        .app_overlay .password_popup form .filed_grp input[type="submit"],
        .app_overlay .motivator-popup form .filed_grp input[type="submit"],
        .offer_overlay .newsletter_popup form .filed_grp input[type="submit"],
        .offer_overlay .app_popup form .filed_grp input[type="submit"],
        .offer_overlay .offer_popup form .filed_grp input[type="submit"],
        .offer_overlay .cart_popup form .filed_grp input[type="submit"],
        .offer_overlay .password_popup form .filed_grp input[type="submit"],
        .offer_overlay .motivator-popup form .filed_grp input[type="submit"],
        .cart_overlay .newsletter_popup form .filed_grp input[type="submit"],
        .cart_overlay .app_popup form .filed_grp input[type="submit"],
        .cart_overlay .offer_popup form .filed_grp input[type="submit"],
        .cart_overlay .cart_popup form .filed_grp input[type="submit"],
        .cart_overlay .password_popup form .filed_grp input[type="submit"],
        .cart_overlay .motivator-popup form .filed_grp input[type="submit"],
        .password_overlay .newsletter_popup form .filed_grp input[type="submit"],
        .password_overlay .app_popup form .filed_grp input[type="submit"],
        .password_overlay .offer_popup form .filed_grp input[type="submit"],
        .password_overlay .cart_popup form .filed_grp input[type="submit"],
        .password_overlay .password_popup form .filed_grp input[type="submit"],
        .password_overlay .motivator-popup form .filed_grp input[type="submit"],
        .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="submit"],
        .motivator-popup__overlay .app_popup form .filed_grp input[type="submit"],
        .motivator-popup__overlay .offer_popup form .filed_grp input[type="submit"],
        .motivator-popup__overlay .cart_popup form .filed_grp input[type="submit"],
        .motivator-popup__overlay .password_popup form .filed_grp input[type="submit"],
        .motivator-popup__overlay .motivator-popup form .filed_grp input[type="submit"] {
          border-radius: 4px;
          -moz-border-radius: 4px;
          -ms-border-radius: 4px;
          -webkit-border-radius: 4px;
          background-color: red;
          color: white;
          border-color: red;
          padding: 8px 40px 6px; }
          .newsletter_overlay .newsletter_popup form .filed_grp input[type="submit"]:hover,
          .newsletter_overlay .app_popup form .filed_grp input[type="submit"]:hover,
          .newsletter_overlay .offer_popup form .filed_grp input[type="submit"]:hover,
          .newsletter_overlay .cart_popup form .filed_grp input[type="submit"]:hover,
          .newsletter_overlay .password_popup form .filed_grp input[type="submit"]:hover,
          .newsletter_overlay .motivator-popup form .filed_grp input[type="submit"]:hover,
          .app_overlay .newsletter_popup form .filed_grp input[type="submit"]:hover,
          .app_overlay .app_popup form .filed_grp input[type="submit"]:hover,
          .app_overlay .offer_popup form .filed_grp input[type="submit"]:hover,
          .app_overlay .cart_popup form .filed_grp input[type="submit"]:hover,
          .app_overlay .password_popup form .filed_grp input[type="submit"]:hover,
          .app_overlay .motivator-popup form .filed_grp input[type="submit"]:hover,
          .offer_overlay .newsletter_popup form .filed_grp input[type="submit"]:hover,
          .offer_overlay .app_popup form .filed_grp input[type="submit"]:hover,
          .offer_overlay .offer_popup form .filed_grp input[type="submit"]:hover,
          .offer_overlay .cart_popup form .filed_grp input[type="submit"]:hover,
          .offer_overlay .password_popup form .filed_grp input[type="submit"]:hover,
          .offer_overlay .motivator-popup form .filed_grp input[type="submit"]:hover,
          .cart_overlay .newsletter_popup form .filed_grp input[type="submit"]:hover,
          .cart_overlay .app_popup form .filed_grp input[type="submit"]:hover,
          .cart_overlay .offer_popup form .filed_grp input[type="submit"]:hover,
          .cart_overlay .cart_popup form .filed_grp input[type="submit"]:hover,
          .cart_overlay .password_popup form .filed_grp input[type="submit"]:hover,
          .cart_overlay .motivator-popup form .filed_grp input[type="submit"]:hover,
          .password_overlay .newsletter_popup form .filed_grp input[type="submit"]:hover,
          .password_overlay .app_popup form .filed_grp input[type="submit"]:hover,
          .password_overlay .offer_popup form .filed_grp input[type="submit"]:hover,
          .password_overlay .cart_popup form .filed_grp input[type="submit"]:hover,
          .password_overlay .password_popup form .filed_grp input[type="submit"]:hover,
          .password_overlay .motivator-popup form .filed_grp input[type="submit"]:hover,
          .motivator-popup__overlay .newsletter_popup form .filed_grp input[type="submit"]:hover,
          .motivator-popup__overlay .app_popup form .filed_grp input[type="submit"]:hover,
          .motivator-popup__overlay .offer_popup form .filed_grp input[type="submit"]:hover,
          .motivator-popup__overlay .cart_popup form .filed_grp input[type="submit"]:hover,
          .motivator-popup__overlay .password_popup form .filed_grp input[type="submit"]:hover,
          .motivator-popup__overlay .motivator-popup form .filed_grp input[type="submit"]:hover {
            background-color: #333333;
            border-color: #333333; }

.overflow-hidden {
  overflow: hidden; }

@media screen and (max-width: 991px) {
  .overflow_hidden {
    overflow: hidden; } }

.wishlist_empty_txt .cart-empty {
  padding: 0px 0px 40px 0px; }
  .wishlist_empty_txt .cart-empty.wishlist-logout {
    padding-bottom: 0; }
    .wishlist_empty_txt .cart-empty.wishlist-logout p {
      letter-spacing: 0.1em;
      color: #333333; }
      .wishlist_empty_txt .cart-empty.wishlist-logout p a {
        color: red;
        text-decoration: none; }
        .wishlist_empty_txt .cart-empty.wishlist-logout p a:hover {
          color: #333333; }

.wishlist_empty_txt .cart-empty .fa {
  font-size: 60px;
  padding-bottom: 15px; }

#desc_pro_hide {
  display: none; }

.spr-container .spr-form-contact .spr-form-label, .spr-container .spr-form-review .spr-form-label {
  display: none; }

.overflow {
  overflow: hidden; }

/*============================================================================
  #APP POPUP
==============================================================================*/
.app-popup-content, .offer-popup-content, .password-popup-content {
  color: white;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 9999999;
  margin-top: 50px; }
  .app-popup-content .popup-title, .offer-popup-content .popup-title, .password-popup-content .popup-title {
    font-size: 40px;
    font-weight: 700;
    padding: 0 20px;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1; }

/*============================================================================
  #OFFER POPUP
==============================================================================*/
.offer-popup-content h2, .offer-popup-content .h2 {
  font-size: 28px;
  line-height: 1.2; }
.offer-popup-content .popup-title {
  font-size: 46px; }
.offer-popup-content .offer-popup-button {
  line-height: 36px;
  padding: 0px 40px;
  border-radius: 200px;
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid white;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out; }
  .offer-popup-content .offer-popup-button i {
    margin-left: 15px;
    margin-top: -5px;
    font-size: 24px;
    vertical-align: middle; }
  .offer-popup-content .offer-popup-button:hover {
    background-color: rgba(255, 255, 255, 0.3); }

/*============================================================================
  #PASSWORD POPUP
==============================================================================*/
.password-popup-content h2, .password-popup-content .h2 {
  font-size: 18px;
  line-height: 1.2; }
.password-popup-content .popup-title {
  font-size: 34px; }
.password-popup-content .password-popup-button {
  line-height: 36px;
  padding: 0px 40px;
  border-radius: 200px;
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid white;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out; }
  .password-popup-content .password-popup-button:hover {
    background-color: rgba(255, 255, 255, 0.3); }
.password-popup-content .password-error-button {
  background-color: rgba(153, 0, 36, 0.2) !important;
  color: #990024;
  border-color: #990024; }
.password-popup-content a {
  color: white;
  transition: 0.3s ease-in-out;
  font-weight: 700; }
  .password-popup-content a:hover {
    color: white;
    opacity: 0.7; }

/*============================================================================
  #CART POPUP
==============================================================================*/
.cart_popup .close_btn {
  background-color: #ccc;
  border-radius: 50%;
  padding: 5px; }

.cart-popup-content {
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 9999999;
  margin-top: 50px;
  color: #181923; }
  .cart-popup-content .popup-title {
    font-size: 40px;
    font-weight: 700;
    padding: 0 20px;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1; }
  .cart-popup-content span {
    font-size: 18px; }
  .cart-popup-content .btn--white, .cart-popup-content .btn--red {
    padding: 12px 0; }

.cart-popup__motivator-msg {
  display: block;
  color: red;
  font-weight: bold;
  border: 1px solid;
  padding: 10px;
  margin: 30px 10px 0px 10px; }

/*============================================================================
  #MOTIVATOR POPUP
==============================================================================*/
.motivator-popup {
  height: 400px !important; }

.motivator-popup__close {
  background-color: #ccc;
  border-radius: 50%;
  padding: 5px; }

.motivator-popup__title {
  padding: 12px 18px;
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 12px 32px; }

.motivator-popup__caption {
  text-align: center;
  margin: 12px 32px;
  color: #181923;
  font-weight: 700;
  line-height: 1.4; }

.motivator-popup__img img {
  height: 200px; }

/*============================================================================
  #404 ERROR 
==============================================================================*/
.page_content_404 {
  display: flex;
  align-items: center;
  height: 100vh;
  background-size: cover !important;
  background-position: 50% 50% !important; }
  .page_content_404:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.52);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9; }
  @media screen and (max-width: 767px) {
    .page_content_404 {
      height: auto;
      padding: 40px 0; } }
  .page_content_404 .error-content {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 99;
    color: white; }
    .page_content_404 .error-content .brand-name {
      width: 300px;
      margin: 0 auto 60px; }
      @media screen and (min-width: 768px) and (max-width: 1366px) {
        .page_content_404 .error-content .brand-name {
          width: 260px;
          margin: 0 auto 30px; } }
      @media screen and (max-width: 767px) {
        .page_content_404 .error-content .brand-name {
          width: 180px;
          margin: 0 auto 30px; } }
      .page_content_404 .error-content .brand-name a {
        display: block; }
    .page_content_404 .error-content .error_msg {
      width: 100%;
      max-width: 768px;
      margin: 0 auto; }
      @media screen and (max-width: 767px) {
        .page_content_404 .error-content .error_msg {
          padding: 0 20px; } }
      .page_content_404 .error-content .error_msg h1, .page_content_404 .error-content .error_msg .h1 {
        font-size: 260px;
        margin-bottom: 60px;
        letter-spacing: 0.1em; }
        @media screen and (min-width: 768px) and (max-width: 1366px) {
          .page_content_404 .error-content .error_msg h1, .page_content_404 .error-content .error_msg .h1 {
            font-size: 180px;
            margin-bottom: 50px; } }
        @media screen and (max-width: 767px) {
          .page_content_404 .error-content .error_msg h1, .page_content_404 .error-content .error_msg .h1 {
            font-size: 80px;
            margin-bottom: 30px; } }
      .page_content_404 .error-content .error_msg h6, .page_content_404 .error-content .error_msg .h6 {
        letter-spacing: 6px;
        line-height: 1.3;
        text-transform: uppercase;
        margin-bottom: 20px; }
        @media screen and (max-width: 767px) {
          .page_content_404 .error-content .error_msg h6, .page_content_404 .error-content .error_msg .h6 {
            letter-spacing: 3px; } }
      .page_content_404 .error-content .error_msg p {
        margin-bottom: 30px; }
        @media screen and (max-width: 767px) {
          .page_content_404 .error-content .error_msg p {
            margin-bottom: 25px;
            line-height: 22px; } }
      .page_content_404 .error-content .error_msg .btn--primary {
        background-color: white;
        border-color: white;
        color: #333333; }
        .page_content_404 .error-content .error_msg .btn--primary:hover {
          background-color: red;
          border-color: red;
          color: #333333; }
    .page_content_404 .error-content .bottom_social {
      margin-top: 40px; }
      .page_content_404 .error-content .bottom_social .fa {
        color: red; }
        .page_content_404 .error-content .bottom_social .fa:hover {
          color: white; }
      .page_content_404 .error-content .bottom_social a {
        font-size: 20px;
        margin: 0 7px; }

.loading-modal {
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0 !important;
  overflow: hidden;
  padding: 0px;
  text-indent: -999999em;
  z-index: 999999;
  background: white url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/loading.gif?v=9162385319598246531") 50% 200px no-repeat; }

#search_result {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 10px; }
  #search_result .results h6, #search_result .results .h6 {
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5; }
  #search_result .results form {
    text-align: center; }

#share_via_mail {
  margin-top: 10px;
  display: inline-block; }

.accordion .ui-state-default {
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
  padding: 12px 15px;
  margin: 2px 0 0 0;
  font-size: 14px;
  position: relative;
  cursor: pointer; }
  .accordion .ui-state-default .ui-icon:after {
    content: '\f0d7';
    display: block;
    font-family: 'FontAwesome';
    width: 12px;
    height: 14px;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    transition: 0.2s ease-in-out; }
  .accordion .ui-state-default.ui-accordion-header-active .ui-icon:after {
    transform: rotate(-180deg);
    top: 16px; }
.accordion .ui-accordion-content {
  padding: 20px 20px 10px; }

#ComparePrice span {
  text-decoration: line-through;
  color: #999;
  font-size: 22px;
  margin-left: 8px; }

body {
  overflow: hidden; }

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999999; }

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/loading.gif?v=9162385319598246531);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

#newsletter {
  position: relative; }
  @media screen and (max-width: 767px) {
    #newsletter #scrollToTop {
      cursor: pointer;
      background-color: red;
      display: inline-block;
      height: 35px;
      width: 35px;
      color: white;
      font-size: 26px;
      text-align: center;
      text-decoration: none;
      line-height: 35px;
      position: absolute;
      top: -18px;
      right: 10px; } }
  @media screen and (min-width: 768px) {
    #newsletter #scrollToTop {
      display: none; } }

.product-single__variants {
  display: none; }

/*========================================================================
Onbroding css
=========================================================================*/
.placeholder-svg, .icon--placeholder {
  display: block;
  fill: rgba(85, 85, 85, 0.35);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(85, 85, 85, 0.15); }

/*========================   SALES BAR   ========================*/
.sales-bar {
  width: 85%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 0px; }
  @media screen and (max-width: 1024px) {
    .sales-bar {
      width: 100% !important;
      margin-top: 50px; } }
  .sales-bar .sales-bar-item {
    display: block;
    text-align: center;
    padding: 10px 0px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; }
    .sales-bar .sales-bar-item span {
      font-size: 14px;
      font-weight: normal;
      margin-top: -5px; }
    @media screen and (max-width: 768px) {
      .sales-bar .sales-bar-item {
        border: none;
        font-size: 14px; }
        .sales-bar .sales-bar-item span {
          font-size: 14px;
          margin-top: 0px; } }
    .sales-bar .sales-bar-item:hover, .sales-bar .sales-bar-item:focus {
      opacity: 0.7; }

.countdown-bar {
  padding: 8px 0px 10px; }
  @media screen and (max-width: 768px) {
    .countdown-bar {
      padding: 0px 0px 5px; } }

.countdown-bar .sales-bar-item {
  line-height: 1.2;
  font-weight: 500;
  vertical-align: middle; }
  @media screen and (max-width: 768px) {
    .countdown-bar .sales-bar-item {
      font-weight: bold; } }
  .countdown-bar .sales-bar-item:hover, .countdown-bar .sales-bar-item:focus {
    opacity: 1; }
    .countdown-bar .sales-bar-item:hover .countdown-call-to-action, .countdown-bar .sales-bar-item:focus .countdown-call-to-action {
      opacity: 0.7; }
  .countdown-bar .sales-bar-item span {
    font-weight: bold; }
  .countdown-bar .sales-bar-item .countdown-end {
    font-size: 20px;
    margin: 0px 6px; }
    .countdown-bar .sales-bar-item .countdown-end .cd-days, .countdown-bar .sales-bar-item .countdown-end .cd-hours, .countdown-bar .sales-bar-item .countdown-end .cd-minutes, .countdown-bar .sales-bar-item .countdown-end .cd-seconds {
      position: relative;
      margin-left: -1px; }
    .countdown-bar .sales-bar-item .countdown-end .cd-days-val, .countdown-bar .sales-bar-item .countdown-end .cd-hours-val, .countdown-bar .sales-bar-item .countdown-end .cd-minutes-val, .countdown-bar .sales-bar-item .countdown-end .cd-seconds-val {
      font-size: 18px;
      padding: 0px 5px 2px 5px;
      border-radius: 3px; }
      @media screen and (max-width: 768px) {
        .countdown-bar .sales-bar-item .countdown-end .cd-days-val, .countdown-bar .sales-bar-item .countdown-end .cd-hours-val, .countdown-bar .sales-bar-item .countdown-end .cd-minutes-val, .countdown-bar .sales-bar-item .countdown-end .cd-seconds-val {
          font-size: 15px;
          padding: 1px 5px; } }
    .countdown-bar .sales-bar-item .countdown-end .cd-days-label, .countdown-bar .sales-bar-item .countdown-end .cd-hours-label, .countdown-bar .sales-bar-item .countdown-end .cd-minutes-label, .countdown-bar .sales-bar-item .countdown-end .cd-seconds-label {
      font-size: 8px;
      position: absolute;
      top: -9px;
      left: 5px;
      box-shadow: none; }
    .countdown-bar .sales-bar-item .countdown-end .cd-hours-label {
      left: 2px; }
  .countdown-bar .sales-bar-item .countdown-call-to-action {
    font-size: 16px;
    padding: 5px 16px;
    border-radius: 30px;
    margin-left: 6px;
    background-color: white;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; }
    @media screen and (max-width: 768px) {
      .countdown-bar .sales-bar-item .countdown-call-to-action {
        font-size: 14px;
        padding: 4px 16px; } }
  .countdown-bar .sales-bar-item .cd-box-shadow {
    -webkit-box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.1); }

#sales-bar-push {
  width: 100%;
  height: 54px; }
  @media screen and (min-width: 1024px) {
    #sales-bar-push {
      height: 76px; } }

.sales-bar-push-double {
  height: 76px !important; }

#countdown-bar-push {
  width: 100%;
  height: 62px; }
  @media screen and (max-width: 768px) {
    #countdown-bar-push {
      height: 80px; } }

#motivator-bar-push {
  width: 100%;
  height: 68px; }
  @media screen and (min-width: 1024px) {
    #motivator-bar-push {
      height: 76px; } }

/*========================   How it Works Video   ========================*/
.homepage_video_section, #showcase_video_section {
  padding: 30px 0px 100px 0px;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/homepage-video-bg.jpg?v=9143408342209348248");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover; }
  @media screen and (max-width: 768px) {
    .homepage_video_section, #showcase_video_section {
      padding: 50px 0px; } }
  .homepage_video_section .video-container, #showcase_video_section .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; }
  .homepage_video_section .video-caption, #showcase_video_section .video-caption {
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #0f1017;
    padding: 20px;
    padding-bottom: 0px; }
    @media screen and (max-width: 768px) {
      .homepage_video_section .video-caption, #showcase_video_section .video-caption {
        padding: 20px 10px; } }
  .homepage_video_section .video, #showcase_video_section .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #ffb238; }

.homepage_video_icons {
  padding: 0 60px;
  font-weight: 700;
  font-size: 12px; }
  .homepage_video_icons img {
    width: 60%;
    margin: 0 20%; }

.homepage_video_btn {
  text-transform: uppercase;
  color: white;
  background-color: #ffb238;
  padding: 0px 40px;
  border-radius: 200px;
  box-shadow: 0px 0px 50px 6px #ffce80;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 36px;
  border: none; }
  @media screen and (max-width: 768px) {
    .homepage_video_btn {
      box-shadow: 0px 0px 80px 25px #fed697; } }
  @media screen and (max-width: 480px) {
    .homepage_video_btn {
      font-size: 14px;
      line-height: 32px;
      padding: 0px 30px; } }
  .homepage_video_btn:hover, .homepage_video_btn:active, .homepage_video_btn:focus {
    background-color: #ffb238;
    box-shadow: 0px 0px 80px 25px #fed697; }

/*========================   INFLUENCER BLOCK   ========================*/
.influencers_block {
  margin: 40px 0; }
  @media screen and (min-width: 1024px) {
    .influencers_block {
      margin: 20px 0 40px 0; } }
  .influencers_block .influencer {
    padding: 0;
    position: relative;
    margin-bottom: -9px; }
    .influencers_block .influencer img {
      width: 100%; }
    .influencers_block .influencer .influencer_overlay {
      width: 100%;
      height: calc(100% - 8px);
      position: absolute;
      opacity: 0;
      top: 0;
      left: 0;
      background-color: rgba(255, 0, 61, 0.8);
      transition: all 0.3s ease;
      overflow: hidden;
      padding: 30px; }
      .influencers_block .influencer .influencer_overlay .influencer_caption {
        top: calc(50% - 25px);
        position: absolute;
        color: white;
        font-weight: bold;
        font-size: 30px;
        clear: both; }
      .influencers_block .influencer .influencer_overlay .influencer_button {
        color: white;
        border: none;
        -webkit-box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.3);
        font-size: 14px;
        background-color: #ff003d;
        position: absolute;
        width: 80%;
        max-width: 240px;
        bottom: 10%; }
        @media screen and (max-width: 1024px) {
          .influencers_block .influencer .influencer_overlay .influencer_button {
            display: none; } }
    .influencers_block .influencer:hover .influencer_overlay {
      opacity: 1; }

/*========================   COUNTDOWN BLOCK   ========================*/
.countdown_block .countdown_item {
  margin-top: 50px;
  position: relative; }
  .countdown_block .countdown_item img {
    width: 100%; }
  .countdown_block .countdown_item .countdown_item_label {
    position: absolute;
    top: 0;
    padding: 5px 16px;
    background-color: rgba(255, 0, 0, 0.9);
    color: white;
    font-weight: bold;
    text-transform: uppercase; }
  .countdown_block .countdown_item .countdown_item_content {
    margin-top: 15px; }
    .countdown_block .countdown_item .countdown_item_content .countdown_item_title {
      font-size: 22px;
      font-weight: bold;
      line-height: 28px; }
    .countdown_block .countdown_item .countdown_item_content .countdown_item_details {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 10px; }
    .countdown_block .countdown_item .countdown_item_content .countdown_item_link {
      font-size: 14px;
      font-weight: 700;
      line-height: 16px;
      text-transform: uppercase;
      color: red;
      padding: 8px 8px 8px 0px; }
      .countdown_block .countdown_item .countdown_item_content .countdown_item_link:after {
        content: '\f105';
        font-family: 'FontAwesome';
        padding-left: 12px;
        font-size: 14px; }
.countdown_block .countdown_item_expired img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.7; }
.countdown_block .countdown_item_expired .countdown_item_title, .countdown_block .countdown_item_expired .countdown_item_details {
  color: #8b8d99; }
.countdown_block .countdown_item_expired .countdown_item_label {
  background-color: rgba(139, 141, 153, 0.9);
  color: white; }
.countdown_block .countdown_item_upcoming img {
  opacity: 0.7; }
.countdown_block .countdown_item_upcoming .countdown_item_title, .countdown_block .countdown_item_upcoming .countdown_item_details {
  color: #8b8d99; }

/*========================   AFFILIATES  ========================*/
.affiliates {
  padding-bottom: 30px; }
  .affiliates .container {
    max-width: 1400px; }

.affiliate {
  padding: 20px;
  margin-top: -30px;
  margin-bottom: -30px; }
  @media screen and (max-width: 480px) {
    .affiliate {
      margin-top: -25px;
      margin-bottom: -60px; } }

/*========================   OUR STORY   ========================*/
.our_story {
  font-size: 15px; }
  .our_story .container {
    max-width: 1100px;
    padding: 20px 20px 40px 20px; }

.video_banner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative; }
  .video_banner .play_button {
    font-size: 60px;
    color: white;
    opacity: 0.9;
    text-shadow: 0px 0px 25px #111113;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    top: 50%;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  .video_banner:hover .play_button {
    color: white;
    opacity: 0.7; }

/*========================   PRODUCT GRID ITEM   ========================*/
.product_item {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; }
  .product_item .sold-out {
    color: red;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600; }
  .product_item .product-btn {
    display: block;
    margin-top: 8px;
    padding: 12px 20px;
    font-size: 12px;
    min-width: auto;
    width: 100%; }
  .product_item .product-btn--view {
    color: #181923; }
  @media screen and (min-width: 768px) {
    .product_item:hover .product_item_overlay {
      opacity: 1; } }

.product_item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 100; }
  .product_item_overlay .btn, .product_item_overlay .btn--primary, .product_item_overlay .btn--secondary {
    color: #181923;
    border: none;
    -webkit-box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    width: 130px;
    display: block;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; }
    .product_item_overlay .btn:hover, .product_item_overlay .btn--primary:hover, .product_item_overlay .btn--secondary:hover {
      opacity: 0.7; }
  .product_item_overlay .btn--red {
    background-color: red;
    color: white; }
  .product_item_overlay .btn--white {
    background-color: white;
    margin-bottom: 15px;
    margin-top: calc(50% - 30px); }

/*========================   HOW IT WORKS PORT   ========================*/
.hiw-next-section {
  width: 100%;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_bottom-banner.jpg?v=10238120819910312879");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0f1017;
  background-size: cover; }
  .hiw-next-section .hiw-next-section-right {
    padding: 50px 0px;
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/dark-bg.png?v=1781726558910335418");
    background-position: top right;
    background-repeat: no-repeat;
    background-color: #0f1017;
    background-size: cover; }
    @media screen and (min-width: 1366px) {
      .hiw-next-section .hiw-next-section-right {
        padding: 100px 0px; } }
    .hiw-next-section .hiw-next-section-right div {
      max-width: 590px;
      padding: 50px;
      color: white; }
      .hiw-next-section .hiw-next-section-right div h1, .hiw-next-section .hiw-next-section-right div .h1 {
        font-weight: bold;
        font-size: 4.28571em;
        line-height: 1; }
      .hiw-next-section .hiw-next-section-right div p {
        font-weight: 500;
        font-size: 1.14286em; }
      .hiw-next-section .hiw-next-section-right div a {
        text-align: center;
        margin-left: 0;
        margin-top: 30px; }
      @media screen and (max-width: 768px) {
        .hiw-next-section .hiw-next-section-right div {
          text-align: center;
          margin-left: auto;
          margin-right: auto;
          left: 0;
          right: 0; }
          .hiw-next-section .hiw-next-section-right div a {
            margin-left: auto; } }

.hiw-next-section-2 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_bottom-banner.jpg?v=3683270750287363381"); }

.hiw-next-section-3 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_bottom-banner.jpg?v=6582062358377286004"); }

.hiw-next-section-4 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-4_bottom-banner.jpg?v=17891941610462086701"); }

.hiw-faq {
  margin-bottom: 20px;
  max-width: 800px;
  padding: 0px 15px; }
  .hiw-faq h4, .hiw-faq .h4 {
    color: red; }
  .hiw-faq p {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 14px; }
  .hiw-faq a {
    text-align: center;
    margin-top: 30px; }

.hiw-banner {
  width: 100%;
  padding: 200px 10px;
  color: white;
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_top-banner.jpg?24556");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0f1017;
  background-size: cover;
  background-attachment: fixed; }
  @media screen and (max-width: 768px) {
    .hiw-banner {
      background-attachment: scroll;
      padding: 120px 10px;
      font-size: 70px; } }

.hiw-banner-2 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_top-banner.jpg?v=16301608808871556367"); }

#hiw-benefits, #hiw-flavors-for-everyone, .hiw-faq-section, #hiw-nutrition-facts, #hiw-caffeine-free, #hiw-join-the-movement, #hiw-when-to-fuel-up,
#hiw-satisfied-customers, #hiw-quit-the-can {
  margin: 40px 0; }
  @media screen and (min-width: 1024px) {
    #hiw-benefits, #hiw-flavors-for-everyone, .hiw-faq-section, #hiw-nutrition-facts, #hiw-caffeine-free, #hiw-join-the-movement, #hiw-when-to-fuel-up,
    #hiw-satisfied-customers, #hiw-quit-the-can {
      margin: 20px 0 40px 0; } }

#hiw-benefits .benefit {
  margin-bottom: 70px; }
  #hiw-benefits .benefit .benefit-title {
    font-weight: bold;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px; }
  #hiw-benefits .benefit .benefit-icon {
    height: auto;
    margin-bottom: 10px; }
  #hiw-benefits .benefit .benefit-caption {
    font-size: 18px;
    line-height: 20px;
    width: 70%;
    margin-left: 15%; }

#hiw-how-to, #hiw-complex, #showcase_how_to {
  color: white; }
  #hiw-how-to div, #hiw-complex div, #showcase_how_to div {
    padding: 70px 0px;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s; }
  #hiw-how-to h3, #hiw-how-to .h3, #hiw-complex h3, #hiw-complex .h3, #showcase_how_to h3, #showcase_how_to .h3 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1; }
  #hiw-how-to p, #hiw-complex p, #showcase_how_to p {
    font-size: 16px;
    font-weight: 500;
    width: 80%;
    max-width: 420px; }
  @media screen and (min-width: 1366px) {
    #hiw-how-to div, #hiw-complex div, #showcase_how_to div {
      padding-top: 220px;
      height: 600px; } }
  #hiw-how-to .pour-it, #hiw-complex .pour-it, #showcase_how_to .pour-it {
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_pour-it.jpg?v=3978064011818781906"); }
    #hiw-how-to .pour-it:hover, #hiw-complex .pour-it:hover, #showcase_how_to .pour-it:hover {
      background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_pour-it_color.jpg?v=14000519136708957138"); }
  #hiw-how-to .shake-it, #hiw-complex .shake-it, #showcase_how_to .shake-it {
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_shake-it.jpg?v=17740285493034859447"); }
    #hiw-how-to .shake-it:hover, #hiw-complex .shake-it:hover, #showcase_how_to .shake-it:hover {
      background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_shake-it_color.jpg?v=8447552573224140102"); }
  #hiw-how-to .take-it, #hiw-complex .take-it, #showcase_how_to .take-it {
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_enjoy.jpg?v=8713447226234373420"); }
    #hiw-how-to .take-it:hover, #hiw-complex .take-it:hover, #showcase_how_to .take-it:hover {
      background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_enjoy_color.jpg?v=15456493164819231925"); }
  #hiw-how-to .hiw-how-to-number, #hiw-complex .hiw-how-to-number, #showcase_how_to .hiw-how-to-number {
    border-radius: 100px;
    border: 4px solid white;
    font-size: 32px;
    line-height: 42px;
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0; }

#hiw-how-to-preload:after {
  display: none;
  content: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_pour-it_color.jpg?v=14000519136708957138") url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_shake-it_color.jpg?v=8447552573224140102") url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-1_enjoy_color.jpg?v=15456493164819231925"); }

#hiw-flavors-for-everyone .flavors-for-everyone-section {
  padding: 0px 30px !important;
  margin-bottom: 70px; }
  #hiw-flavors-for-everyone .flavors-for-everyone-section img {
    width: 80%;
    height: auto;
    margin-bottom: 10px;
    max-width: 375px;
    display: block; }

.hiw-nutrition-fact {
  margin-bottom: 30px; }
  .hiw-nutrition-fact a {
    font-size: 90px;
    font-weight: bold;
    color: #0f1017;
    border: 5px solid #8a3ce2;
    border-radius: 100px;
    margin-bottom: 20px;
    width: 180px;
    height: 180px;
    line-height: 180px;
    display: inline-block;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s; }
    .hiw-nutrition-fact a:hover {
      color: white;
      background-color: #8a3ce2; }
  .hiw-nutrition-fact div {
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px;
    color: #8a3ce2; }

.hiw-nutrition-fact-2 a {
  border-color: #ff003d; }
  .hiw-nutrition-fact-2 a:hover {
    background-color: #ff003d; }
.hiw-nutrition-fact-2 div {
  color: #ff003d; }

.hiw-nutrition-fact-3 a {
  border-color: #ffb238; }
  .hiw-nutrition-fact-3 a:hover {
    background-color: #ffb238; }
.hiw-nutrition-fact-3 div {
  color: #ffb238; }

.hiw-nutrition-fact-4 a {
  border-color: #5fe52a; }
  .hiw-nutrition-fact-4 a:hover {
    background-color: #5fe52a; }
.hiw-nutrition-fact-4 div {
  color: #5fe52a; }

#hiw-complex a {
  border-color: white;
  color: white;
  background: none; }
  #hiw-complex a:hover, #hiw-complex a:active, #hiw-complex a:focus {
    background-color: rgba(255, 255, 255, 0.3); }
#hiw-complex div {
  padding-top: 170px; }
@media screen and (max-width: 1025px) {
  #hiw-complex div {
    padding: 70px 0px;
    height: auto; } }

#hiw-complex-preload:after {
  display: none;
  content: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_energy_color.jpg?v=6789602468656568193") url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_focus_color.jpg?v=15377076079301231134") url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_antioxidant_color.jpg?v=13185811763284613240"); }

.hiw-energy-complex {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_energy.jpg?v=5968752004214336986"); }
  .hiw-energy-complex:hover {
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_energy_color.jpg?v=6789602468656568193"); }

.hiw-focus-complex {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_focus.jpg?v=898696799527503784"); }
  .hiw-focus-complex:hover {
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_focus_color.jpg?v=15377076079301231134"); }

.hiw-antioxidant-complex {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_antioxidant.jpg?v=1477762990983691381"); }
  .hiw-antioxidant-complex:hover {
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-2_antioxidant_color.jpg?v=13185811763284613240"); }

#hiw-caffeine-free .video-caption, #hiw-when-to-fuel-up .video-caption {
  font-size: 16px; }

#hiw-join-the-movement .hiw-influencer {
  margin-bottom: 70px; }
  #hiw-join-the-movement .hiw-influencer .hiw-influencer-video {
    position: relative;
    display: block;
    width: 80%;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0; }
    #hiw-join-the-movement .hiw-influencer .hiw-influencer-video img {
      width: 100%;
      margin-bottom: 0px; }
    #hiw-join-the-movement .hiw-influencer .hiw-influencer-video span {
      position: absolute;
      top: calc(50% - 25px);
      left: 0;
      text-align: center;
      width: 100%; }
    #hiw-join-the-movement .hiw-influencer .hiw-influencer-video i {
      font-size: 4.28571em;
      color: white;
      opacity: 0.9;
      text-shadow: 0px 0px 25px #111113;
      -o-transition: all .3s;
      -ms-transition: all .3s;
      -moz-transition: all .3s;
      -webkit-transition: all .3s;
      transition: all .3s; }
    #hiw-join-the-movement .hiw-influencer .hiw-influencer-video:hover i {
      opacity: 0.7; }
  #hiw-join-the-movement .hiw-influencer .hiw-influencer-name {
    color: red;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px; }
  #hiw-join-the-movement .hiw-influencer .hiw-influencer-caption {
    font-size: 14px;
    line-height: 18px;
    width: 70%;
    margin-left: 15%; }

.hiw-3_with-us {
  position: relative;
  margin-bottom: -1px; }

.hiw-3_with-us_slider div {
  color: white;
  min-height: 475px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0f1017;
  background-size: cover; }
  .hiw-3_with-us_slider div h3, .hiw-3_with-us_slider div .h3 {
    font-weight: bold;
    font-size: 3.57143em;
    line-height: 1;
    padding: 0px 50px;
    hyphens: auto;
    margin-top: 150px; }
    @media screen and (max-width: 768px) {
      .hiw-3_with-us_slider div h3, .hiw-3_with-us_slider div .h3 {
        margin-top: 100px; } }
  .hiw-3_with-us_slider div p {
    font-weight: 500;
    font-size: 1.14286em;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    padding: 0px 50px;
    margin-bottom: 150px; }
    @media screen and (max-width: 768px) {
      .hiw-3_with-us_slider div p {
        margin-bottom: 100px; } }

.hiw-3_with-us_slider-container {
  position: relative; }
  .hiw-3_with-us_slider-container .hiw-3_with-us_slider {
    display: none; }
  .hiw-3_with-us_slider-container .slick-initialized {
    display: block; }
  @media screen and (max-width: 768px) {
    .hiw-3_with-us_slider-container {
      margin-top: -40px; } }

.hiw-3_with-us_slide-1 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-slide-1.jpg?v=8879719217316035078"); }

.hiw-3_with-us_slide-2 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-slide-2.jpg?v=15013261576225517123"); }

.hiw-3_with-us_slide-3 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-slide-3.jpg?v=7959411724257839435"); }

.hiw-3_with-us_slide-4 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-slide-4.jpg?v=13967432948664686020"); }

.hiw-3_with-us_slide-5 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-slide-5.jpg?v=14509105335855969176"); }

.hiw-3_with-us_slide-6 {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-slide-6.jpg?v=3862177275426359525"); }

.hiw-3_with-us_slider-arrows {
  position: absolute;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 0; }
  .hiw-3_with-us_slider-arrows div {
    display: inline-block; }
    .hiw-3_with-us_slider-arrows div button {
      color: white;
      font-size: 2.14286em;
      width: 40px;
      line-height: 40px; }
  .hiw-3_with-us_slider-arrows .arrow-left {
    float: left; }
  .hiw-3_with-us_slider-arrows .arrow-right {
    float: right; }

.hiw-3_with-us_slider-buttons {
  position: absolute;
  width: 1180px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

.hiw-3_with-us_button {
  position: relative; }
  .hiw-3_with-us_button span, .hiw-3_with-us_button button {
    position: absolute;
    left: 30px;
    top: 30px;
    border-radius: 100px;
    width: 150px; }
  .hiw-3_with-us_button span {
    height: 150px;
    background-color: white; }
  .hiw-3_with-us_button button {
    line-height: 150px;
    color: white;
    font-weight: bold;
    font-size: 1.42857em;
    cursor: pointer;
    text-shadow: 0px 3px 15px #111113;
    background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-button.jpg?v=10821366437732918440");
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
    background-size: cover; }
    .hiw-3_with-us_button button:hover {
      opacity: 0.5; }
  .hiw-3_with-us_button .hiw-3_with-us_active-button {
    opacity: 0.5; }

.hiw-3_with-us_button-2 button {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-button-2.jpg?v=16776918386586191021"); }

.hiw-3_with-us_button-3 button {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-button-3.jpg?v=4970637871478313949"); }

.hiw-3_with-us_button-4 button {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-button-4.jpg?v=12490761463425480466"); }

.hiw-3_with-us_button-5 button {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-button-5.jpg?v=7517535524413867456"); }

.hiw-3_with-us_button-6 button {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-3_with-us-button-6.jpg?v=16066004619563960294"); }

#hiw-satisfied-customers .container {
  width: 1200px; }

#hiw-our-way-their-way .hiw-our-way, #hiw-our-way-their-way .hiw-their-way {
  height: 580px;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-4_our-way.jpg?v=2612899663380003737");
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover; }
  #hiw-our-way-their-way .hiw-our-way p, #hiw-our-way-their-way .hiw-their-way p {
    float: left;
    width: 170px;
    margin: 20px; }
  @media screen and (max-width: 768px) {
    #hiw-our-way-their-way .hiw-our-way, #hiw-our-way-their-way .hiw-their-way {
      width: 100% !important;
      height: 360px; } }
#hiw-our-way-their-way .hiw-our-way {
  margin-right: 5px;
  margin-left: -10px; }
  @media screen and (max-width: 768px) {
    #hiw-our-way-their-way .hiw-our-way {
      margin: 0px; } }
#hiw-our-way-their-way .hiw-their-way {
  margin-left: 5px;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/hiw-4_their-way.jpg?v=3057546556544061532"); }
  #hiw-our-way-their-way .hiw-their-way p {
    float: right; }
  @media screen and (max-width: 768px) {
    #hiw-our-way-their-way .hiw-their-way {
      margin: 0px; } }

#hiw-quit-the-can .group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*not always necessary*/ }
#hiw-quit-the-can .hiw-quit-the-can-section {
  margin-bottom: 70px;
  padding-bottom: 30px;
  border: 1px solid #d2d4e3; }
  #hiw-quit-the-can .hiw-quit-the-can-section img {
    width: 100%;
    margin-bottom: 20px; }
  #hiw-quit-the-can .hiw-quit-the-can-section .hiw-quit-the-can-section-title {
    color: red;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px;
    text-transform: uppercase; }
  #hiw-quit-the-can .hiw-quit-the-can-section .hiw-quit-the-can-section-caption {
    font-size: 14px;
    line-height: 18px;
    width: 70%;
    margin-left: 15%; }

/*========================   GET THE APP   ========================*/
.mobile-app-landing-page {
  color: white;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/red_bubbles_bg.jpg?v=10090324305239718891");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
  .mobile-app-landing-page .container {
    margin-top: 120px;
    margin-bottom: 100px; }
  @media screen and (max-width: 1366px) {
    .mobile-app-landing-page {
      background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/app_page_bg-mob.jpg?v=7489002427590013407"); }
      .mobile-app-landing-page .container {
        margin-top: 70px;
        margin-bottom: 100px; } }
  .mobile-app-landing-page #footer {
    display: none; }

.app-page-screenshot {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 320px; }
  .app-page-screenshot img {
    width: 320px; }

.app-page-header {
  margin-top: 0px;
  font-size: 70px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  margin-top: 160px; }
  @media screen and (max-width: 1366px) {
    .app-page-header {
      margin-top: 0px; } }

.app-page-sub-header {
  margin-top: 20px;
  text-align: center;
  color: white !important;
  padding: 0px 60px;
  text-transform: none;
  font-size: 20px; }
  @media screen and (max-width: 1366px) {
    .app-page-sub-header {
      padding: 30px 0; } }

.app-page-buttons {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 310px; }

/*========================   CUSTOM BOX   ========================*/
#custom-box {
  max-width: 900px;
  margin-top: 60px;
  text-align: left !important; }
  #custom-box h5, #custom-box .h5 {
    font-size: 28px; }
  #custom-box .inactive {
    color: #b6b6b6 !important; }

#choose-right.choose-your-fuel-Right {
  float: right;
  width: 350px;
  margin-top: 75px; }

li.slot {
  background: #ccc;
  border: 3px solid #999;
  height: 50px;
  text-align: center;
  padding: 0 5px;
  margin-top: 10px;
  box-shadow: 2px 2px 5px #000, -1px -1px 1px #000; }

#selected-items {
  margin-top: 30px !important;
  margin-bottom: 30px !important; }

.selected-item-content {
  display: none; }

/*.selected-item-content .close{ display: table-cell; vertical-align: middle;}*/
.prod-title {
  display: table-cell;
  vertical-align: middle;
  padding: 4px 10px;
  font-size: 14px; }

.prod-img {
  display: table-cell;
  vertical-align: middle;
  width: 35px;
  margin-right: 5px; }

.selected-item-text {
  margin-top: 10px; }

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

#choose-right .choose-your-fuel-product-info {
  margin: 0 auto;
  padding: 50px 0 0 0;
  text-align: center;
  width: 174px;
  float: none; }

.slots {
  position: absolute;
  height: 95px;
  width: 110px; }

#slot-holder, #selected-items {
  list-style: none;
  margin: 0; }

.box-choice-container, .box-choice-holder, .box-back {
  width: 300px;
  height: 400px; }

.box-choice-holder {
  position: absolute; }

.box-back {
  position: absolute;
  z-index: 1; }

.box-back img {
  height: 400px;
  width: 250px; }

.box-front {
  position: absolute;
  z-index: 25;
  top: 10px;
  height: 0; }

.slot-seperator {
  position: absolute;
  z-index: 11;
  top: 123px;
  left: 80px; }

.slot-seperator img {
  height: 278px;
  width: 80px; }

.slot-1 {
  z-index: 5;
  top: 80px;
  left: 35px; }

.slot-1:hover {
  top: 60px; }

.slot-2 {
  z-index: 10;
  left: 0px;
  top: 165px; }

.slot-2:hover {
  top: 145px; }

.slot-3 {
  z-index: 15;
  left: 135px;
  top: 80px; }

.slot-3:hover {
  top: 60px; }

.slot-4 {
  z-index: 20;
  left: 95px;
  top: 165px; }

.slot-4:hover {
  top: 145px; }

.slots img {
  height: 250px;
  width: 110px; }

img.box-front-top {
  height: 75px;
  width: 36px;
  position: relative;
  left: 212px;
  top: 109px; }

img.box-front-middle {
  height: 80px;
  width: 73px;
  position: relative;
  left: 136px;
  top: 189px; }

img.box-front-bottom {
  height: 145px;
  width: 248px;
  top: 180px;
  position: relative; }

.carousel-inner .active.left {
  left: -25%; }

.carousel-inner .active.right {
  left: 25%; }

.carousel-inner .next {
  left: 25%; }

.carousel-inner .prev {
  left: -25%; }

.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0.2) 100%); }

.carousel-control.right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.6) 100%); }

.carousel-inner .item {
  background: white; }

.box-container {
  margin: 30px auto 0;
  float: none;
  height: 550px; }

#choose-right-1 {
  float: none;
  position: relative;
  height: 177px; }

.slide-container {
  margin: 0 auto;
  float: none; }

#selected-items li {
  clear: both; }

.box-choice-container {
  position: relative;
  float: left;
  padding-left: 40px; }

.flavor-container {
  left: 0px;
  position: relative; }

.flavor-header h4, .flavor-header .h4 {
  color: #fff;
  background-color: #151518;
  text-align: center;
  padding: 4px; }

.flavor-inner li.item {
  padding: 0px;
  border: 1px solid #52525b;
  border-top: 0px solid;
  cursor: pointer;
  list-style: none;
  margin: 0; }

.flavor-inner {
  margin: 0; }

.flavor-inner li.item:hover {
  opacity: 0.7; }

.flavor-inner .pick {
  clear: both;
  display: block;
  vertical-align: middle;
  width: 100%;
  text-align: center; }

.flavor-inner .pick img {
  width: 170px;
  margin-top: 6px; }

.choose-your-fuel-product-info.special-box {
  float: right;
  padding: 0;
  width: 100%;
  left: 0px;
  position: relative; }

#selected-items .close-btn {
  float: right; }

.product-price {
  margin-top: 30px; }

.user-notify {
  margin-top: 35px;
  font-weight: bold; }

#selected-items button.close {
  color: #F00;
  opacity: .4; }

#selected-items button.close:hover {
  color: #F00;
  opacity: 1; }

.mt-20 {
  margin-top: 20px; }

/*========================   HUBSPOT   ========================*/
.hbspt-form {
  height: 100px; }

.hs-form-field label {
  color: white;
  text-align: right;
  font-weight: 700;
  float: left;
  font-size: 16px; }
.hs-form-field li {
  list-style: none; }

.hs-input {
  border: 1px solid #de0d41;
  background: rgba(255, 108, 167, 0.4);
  padding: 12px 20px;
  color: white;
  margin-bottom: 0; }

.hs_email, .hs_submit {
  width: 70%;
  display: inline-block;
  float: left; }

#showcase_form_section .hs_email {
  width: 100% !important; }
  #showcase_form_section .hs_email .hs-input {
    width: 100% !important; }
    @media screen and (max-width: 480px) {
      #showcase_form_section .hs_email .hs-input {
        width: 95% !important; } }

.hs_submit {
  width: 30%;
  margin-top: 16px; }
  .hs_submit input {
    margin-top: 10px;
    color: white;
    text-transform: uppercase;
    background: rgba(255, 108, 167, 0.8);
    border: none;
    font-weight: 700;
    font-size: 16px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; }
    .hs_submit input:hover {
      opacity: 0.7; }

/*========================   SHOPPER APPROVED CUSTOMISATIONS   ========================*/
.ind_cnt {
  text-align: left !important;
  display: none !important; }

#product_just_stars {
  margin-bottom: 15px; }

#shopper_approved_reviews {
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5; }
  @media screen and (min-width: 1024px) {
    #shopper_approved_reviews {
      padding: 20px 0 40px 0; } }
  #shopper_approved_reviews .shopperapproved_widget td {
    border: none; }

#shopper_approved_award {
  margin-top: 40px;
  padding: 60px 0;
  overflow: hidden;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/shopper-approved-awards-bg.jpg?v=11436905490927031504");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #252938;
  font-size: 26px;
  color: white;
  line-height: 1.2; }
  #shopper_approved_award a {
    color: red; }
  #shopper_approved_award .shopper-approved-caption {
    margin-top: 95px; }
  #shopper_approved_award .shopperlink-container {
    display: block;
    box-shadow: 0 0 0 45px rgba(147, 164, 222, 0.3);
    width: 270px;
    height: 270px;
    border-radius: 50%;
    padding-top: 45px; }
  #shopper_approved_award .shopperlink {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 0 45px rgba(147, 164, 222, 0.6); }
    #shopper_approved_award .shopperlink img {
      margin-top: 50px; }

/*========================   SWELL REWARDS PAGE   ========================*/
.tier-value {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px; }

.earning-section, .redeem-section {
  padding-top: 60px; }
  .earning-section h5, .earning-section .h5, .redeem-section h5, .redeem-section .h5 {
    font-weight: 400 !important; }
  .earning-section h3, .earning-section .h3, .redeem-section h3, .redeem-section .h3 {
    color: #8A3CE2; }
  .earning-section a, .redeem-section a {
    font-weight: bold; }

.campaign-section h3, .campaign-section .h3, .tier-section h3, .tier-section .h3 {
  text-align: center;
  padding: 32px 0; }

.referral-section {
  margin-top: 60px; }

.redeem-banner-section {
  text-align: center; }
  .redeem-banner-section h2, .redeem-banner-section .h2, .redeem-banner-section h5, .redeem-banner-section .h5 {
    color: white; }
  .redeem-banner-section a {
    display: inline-block;
    width: 80%;
    max-width: 220px;
    background: #0F1017;
    border: 2px solid #8A3CE2;
    padding: 0.5em 1em;
    color: white;
    margin-top: 1em; }
    .redeem-banner-section a:hover {
      background: #8A3CE2; }

.redeem-preview-section {
  position: relative;
  width: 972px; }
  .redeem-preview-section .redeem-preview-overlay {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%; }
    .redeem-preview-section .redeem-preview-overlay h4, .redeem-preview-section .redeem-preview-overlay .h4 {
      color: #181923 !important;
      margin-top: 140px; }
  .redeem-preview-section:hover #carousel, .redeem-preview-section:hover .redeem-preview-overlay {
    transition: opacity 0.4s ease-in-out; }
  .redeem-preview-section:hover .redeem-preview-overlay {
    opacity: 1; }
  .redeem-preview-section:hover #carousel {
    opacity: 0.05; }

/*========================   SWELL REDEEM PAGE   ========================*/
.redeem-sign-in-bar, .redeem-tracker-bar {
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  width: 85%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999; }
  @media screen and (max-width: 1024px) {
    .redeem-sign-in-bar, .redeem-tracker-bar {
      width: 100% !important;
      margin-top: 50px; } }
  .redeem-sign-in-bar b, .redeem-tracker-bar b {
    font-size: 18px; }
  .redeem-sign-in-bar .grid, .redeem-sign-in-bar .grid--rev, .redeem-sign-in-bar .grid--full, .redeem-tracker-bar .grid, .redeem-tracker-bar .grid--rev, .redeem-tracker-bar .grid--full {
    padding: 10px 20px; }

.redeem-sign-in-bar #redeem-sign-in-bar-backing {
  background-color: rgba(0, 0, 0, 0.9); }
.redeem-sign-in-bar .sign-in-bar-buttons {
  text-align: right; }
  .redeem-sign-in-bar .sign-in-bar-buttons a {
    font-weight: bold;
    color: #8a3ce2; }
    .redeem-sign-in-bar .sign-in-bar-buttons a:hover {
      opacity: 0.8;
      color: #8a3ce2; }
  @media screen and (max-width: 768px) {
    .redeem-sign-in-bar .sign-in-bar-buttons {
      text-align: center; } }

.redeem-tracker-bar .bronze-tier {
  background-color: rgba(156, 110, 63, 0.9); }
.redeem-tracker-bar .silver-tier {
  background-color: rgba(125, 125, 134, 0.9); }
.redeem-tracker-bar .gold-tier {
  background-color: rgba(204, 165, 81, 0.9); }
.redeem-tracker-bar .platinum-tier {
  background-color: rgba(131, 145, 172, 0.9); }
.redeem-tracker-bar .tracker-bar-tier {
  text-align: left; }
  .redeem-tracker-bar .tracker-bar-tier img {
    height: 30px;
    vertical-align: middle;
    margin-right: 6px; }
.redeem-tracker-bar .tracker-bar-points {
  text-align: right; }
  .redeem-tracker-bar .tracker-bar-points span {
    margin-left: 20px; }
  @media screen and (max-width: 768px) {
    .redeem-tracker-bar .tracker-bar-points {
      text-align: center;
      margin-left: -20px; } }

.redeem-tracker-bar-push {
  width: 100%;
  height: 47px; }
  @media screen and (min-width: 1024px) {
    .redeem-tracker-bar-push {
      height: 0px; } }

.redeem-points-summary .points-summary-item {
  padding: 60px 60px 40px 60px;
  margin: 40px 0px; }
  .redeem-points-summary .points-summary-item .points-summary-title {
    font-size: 28px; }
  .redeem-points-summary .points-summary-item h3, .redeem-points-summary .points-summary-item .h3 {
    font-weight: bold;
    font-size: 72px;
    margin-bottom: 0; }
  @media screen and (max-width: 768px) {
    .redeem-points-summary .points-summary-item {
      text-align: center;
      padding: 10px; } }
.redeem-points-summary .xp-to-redeem h3, .redeem-points-summary .xp-to-redeem .h3 {
  color: #8a3ce2; }
  .redeem-points-summary .xp-to-redeem h3 span, .redeem-points-summary .xp-to-redeem .h3 span {
    opacity: 0.7;
    font-size: 42px; }
.redeem-points-summary .my-tier {
  border-left: 1px solid #d4d5da; }
  .redeem-points-summary .my-tier img {
    height: 72px;
    vertical-align: top; }
  .redeem-points-summary .my-tier .to-next-tier {
    font-size: 18px;
    text-transform: uppercase; }
  .redeem-points-summary .my-tier .bronze-tier {
    color: #9c6e3f; }
  .redeem-points-summary .my-tier .silver-tier {
    color: #7d7d86; }
  .redeem-points-summary .my-tier .gold-tier {
    color: #cca551; }
  .redeem-points-summary .my-tier .platinum-tier {
    color: #8391ac; }
  @media screen and (max-width: 768px) {
    .redeem-points-summary .my-tier {
      border: none; } }
.redeem-points-summary .lifetime-xp {
  border-left: 1px solid #d4d5da; }
  .redeem-points-summary .lifetime-xp h3, .redeem-points-summary .lifetime-xp .h3 {
    margin-bottom: 35px; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    .redeem-points-summary .lifetime-xp {
      border: none; } }
  @media screen and (max-width: 768px) {
    .redeem-points-summary .lifetime-xp {
      border: none; } }

.redeem-tier-toggle {
  margin-top: 30px; }
  .redeem-tier-toggle .grid__item {
    margin: 0px;
    padding: 0px; }
  .redeem-tier-toggle .tier-toggle-item {
    opacity: 0.4;
    padding: 20px 0px;
    position: relative;
    cursor: pointer; }
    .redeem-tier-toggle .tier-toggle-item img {
      height: 125px;
      display: block; }
    .redeem-tier-toggle .tier-toggle-item h3, .redeem-tier-toggle .tier-toggle-item .h3 {
      color: white;
      font-weight: bold;
      font-size: 30px;
      text-align: center; }
    @media screen and (max-width: 768px) {
      .redeem-tier-toggle .tier-toggle-item {
        padding: 15px 0px; }
        .redeem-tier-toggle .tier-toggle-item img {
          height: 85px; } }
    @media screen and (max-width: 768px) {
      .redeem-tier-toggle .tier-toggle-item {
        padding: 10px 0px; }
        .redeem-tier-toggle .tier-toggle-item img {
          height: 75px; } }
    .redeem-tier-toggle .tier-toggle-item:hover {
      opacity: 1; }
  .redeem-tier-toggle .active-tier {
    opacity: 1; }
    .redeem-tier-toggle .active-tier::after {
      content: '';
      position: absolute;
      left: calc(50% - 20px);
      top: 100%;
      width: 0;
      height: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      clear: both; }
  .redeem-tier-toggle .bronze-tier {
    background-color: #9c6e3f; }
    .redeem-tier-toggle .bronze-tier::after {
      border-top: 20px solid #9c6e3f; }
  .redeem-tier-toggle .silver-tier {
    background-color: #7d7d86; }
    .redeem-tier-toggle .silver-tier::after {
      border-top: 20px solid #7d7d86; }
  .redeem-tier-toggle .gold-tier {
    background-color: #cca551; }
    .redeem-tier-toggle .gold-tier::after {
      border-top: 20px solid #cca551; }
  .redeem-tier-toggle .platinum-tier {
    background-color: #8391ac; }
    .redeem-tier-toggle .platinum-tier::after {
      border-top: 20px solid #8391ac; }

.redeem-tier-products .tier-products-header {
  -webkit-box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
  -moz-box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
  box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
  padding: 30px 60px;
  margin: 40px 0px; }
  .redeem-tier-products .tier-products-header h3, .redeem-tier-products .tier-products-header .h3 {
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 5px; }
  .redeem-tier-products .tier-products-header span {
    font-size: 18px;
    text-transform: uppercase; }
  @media screen and (max-width: 768px) {
    .redeem-tier-products .tier-products-header {
      text-align: center; } }
.redeem-tier-products .tier-products-item .redeem-btn, .redeem-tier-products .tier-products-item .disabled-redeem-btn {
  font-size: 16px;
  padding: 3px 12px;
  border-radius: 60px;
  cursor: pointer;
  width: 180px;
  margin-top: 6px; }
.redeem-tier-products .tier-products-item .bronze-redeem-btn {
  background-color: #9c6e3f;
  border: 2px solid #9c6e3f; }
.redeem-tier-products .tier-products-item .silver-redeem-btn {
  background-color: #7d7d86;
  border: 2px solid #7d7d86; }
.redeem-tier-products .tier-products-item .gold-redeem-btn {
  background-color: #cca551;
  border: 2px solid #cca551; }
.redeem-tier-products .tier-products-item .platinum-redeem-btn {
  background-color: #8391ac;
  border: 2px solid #8391ac; }
.redeem-tier-products .tier-products-item .redeem-btn {
  color: white;
  border: none; }
.redeem-tier-products .tier-products-item .disabled-redeem-btn {
  cursor: auto;
  padding: 1px 11px;
  background-color: white; }

/*========================   SHOWCASE   ========================*/
.showcase_page #page_banner {
  height: 100vh;
  margin-bottom: 0; }
  @media screen and (max-width: 480px) {
    .showcase_page #page_banner {
      height: calc(100vh - 100px); } }
  .showcase_page #page_banner .container {
    bottom: auto;
    -webkit-box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
    -moz-box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
    box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
    background-color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    padding: 60px 30px; }
    .showcase_page #page_banner .container h1, .showcase_page #page_banner .container .h1, .showcase_page #page_banner .container p {
      color: #181923 !important; }
    @media screen and (max-width: 500px) {
      .showcase_page #page_banner .container {
        max-width: 90%;
        padding: 30px; } }
  @media screen and (min-width: 800px) {
    .showcase_page #page_banner .page_banner_right {
      margin-right: 100px; } }
  @media screen and (min-width: 800px) {
    .showcase_page #page_banner .page_banner_left {
      margin-left: 100px; } }
.showcase_page #showcase_video_section {
  background: none; }
  @media screen and (max-width: 1600px) {
    .showcase_page #showcase_video_section .large--one-half {
      width: 100%; } }
  .showcase_page #showcase_video_section .video {
    border: none; }
  .showcase_page #showcase_video_section .video-caption {
    padding: 50px; }
    @media screen and (min-width: 1601px) and (max-width: 1700px) {
      .showcase_page #showcase_video_section .video-caption {
        padding: 0px 50px; } }
    @media screen and (max-width: 480px) {
      .showcase_page #showcase_video_section .video-caption {
        padding: 20px;
        margin-top: 10px; } }
.showcase_page #showcase_form_section {
  padding: 60px 0px 90px 0px;
  background-color: #000; }
  .showcase_page #showcase_form_section .hbspt-form .submitted-message {
    color: white;
    font-size: 19px;
    font-weight: bold; }
  .showcase_page #showcase_form_section .showcase_form {
    padding: 0px 20px;
    margin-bottom: 180px;
    padding: 50px 50px 105px 50px;
    -webkit-box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
    -moz-box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
    box-shadow: 0px 0px 144px 0px rgba(24, 25, 35, 0.4);
    background-color: rgba(255, 255, 255, 0.95); }
    .showcase_page #showcase_form_section .showcase_form fieldset {
      max-width: none !important; }
    .showcase_page #showcase_form_section .showcase_form label, .showcase_page #showcase_form_section .showcase_form ul {
      color: #8b8d99; }
    .showcase_page #showcase_form_section .showcase_form input[type="text"],
    .showcase_page #showcase_form_section .showcase_form input[type="email"] {
      border: 1px solid #e5e5e5;
      background-color: #fafafa;
      color: #181923; }
    .showcase_page #showcase_form_section .showcase_form input[type="submit"] {
      background-color: #ff003d;
      border-radius: 50px;
      margin-top: 0px; }
    @media screen and (max-width: 480px) {
      .showcase_page #showcase_form_section .showcase_form .hs-submit {
        width: 95% !important; } }
    .showcase_page #showcase_form_section .showcase_form .input {
      margin-right: 20px !important; }
      @media screen and (max-width: 480px) {
        .showcase_page #showcase_form_section .showcase_form .input {
          margin-right: 0px !important; } }
    .showcase_page #showcase_form_section .showcase_form .hs-form-field {
      margin-bottom: 12px; }
    .showcase_page #showcase_form_section .showcase_form .hs-form-field .hs-error-msgs label {
      color: #ff003d;
      font-weight: normal;
      font-size: 12px; }
    .showcase_page #showcase_form_section .showcase_form .hs_error_rollup {
      display: none !important; }
  .showcase_page #showcase_form_section .showcase_form_header {
    padding-top: 20px 40px; }
    .showcase_page #showcase_form_section .showcase_form_header h3, .showcase_page #showcase_form_section .showcase_form_header .h3, .showcase_page #showcase_form_section .showcase_form_header p {
      color: white; }
    .showcase_page #showcase_form_section .showcase_form_header p {
      margin: 30px 0px;
      font-size: 16px; }
.showcase_page #showcase_how_to .how_to_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; }
  .showcase_page #showcase_how_to .how_to_overlay:hover {
    background-color: rgba(0, 0, 0, 0.5); }
.showcase_page #showcase_how_to div {
  background-color: #000;
  text-align: center;
  position: relative; }
  .showcase_page #showcase_how_to div p {
    font-size: 20px; }
  .showcase_page #showcase_how_to div p, .showcase_page #showcase_how_to div h3, .showcase_page #showcase_how_to div .h3 {
    position: relative;
    z-index: 10; }
.showcase_page #showcase_secondary_banner {
  width: 100%;
  height: 410px;
  background-color: #000;
  background-attachment: fixed;
  background-position: center; }
  @media screen and (max-width: 480px) {
    .showcase_page #showcase_secondary_banner {
      height: 300px; } }
  @media screen and (min-width: 1024px) {
    .showcase_page #showcase_secondary_banner {
      background-position: center left 160px; } }
.showcase_page #lightbox, .showcase_page #lightboxOverlay {
  z-index: 100000; }
.showcase_page #showcase_gallery {
  margin-top: 70px; }
  .showcase_page #showcase_gallery h3, .showcase_page #showcase_gallery .h3 {
    margin-bottom: 20px; }
  @media screen and (max-width: 480px) {
    .showcase_page #showcase_gallery {
      margin-bottom: 50px; } }
  .showcase_page #showcase_gallery img {
    width: 100%; }

@media screen and (min-width: 768px) {
  .showcase_product .product_info_text a {
    font-size: 16px !important; } }
@media screen and (min-width: 1024px) {
  .showcase_product .product_info_text a {
    font-size: 18px !important; } }

/*========================   VARIETY BOX V2   ========================*/
.variety_box_product_page, .flavor_mix_maker_page {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/custom-box-bg.jpg?v=8492226045555308948");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; }
  @media screen and (max-width: 620px) {
    .variety_box_product_page, .flavor_mix_maker_page {
      background-size: 170% auto;
      background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/custom-box-mob-bg.jpg?v=11144545385511752559");
      background-position: top -50px center; } }
  .variety_box_product_page #footer, .flavor_mix_maker_page #footer {
    display: none; }

#variety_box, #flavor_mix_maker {
  width: 100%;
  height: calc(100vh - 60px);
  min-height: 825px; }
  @media screen and (max-width: 620px) {
    #variety_box, #flavor_mix_maker {
      height: auto; } }
  #variety_box .variety_box_switcher, #flavor_mix_maker .variety_box_switcher {
    margin-top: 20px; }
    #variety_box .variety_box_switcher ul, #flavor_mix_maker .variety_box_switcher ul {
      float: right; }
      #variety_box .variety_box_switcher ul li, #flavor_mix_maker .variety_box_switcher ul li {
        display: inline-block;
        color: white;
        font-size: 17px;
        font-weight: bold;
        padding: 10px 40px;
        border-bottom: 2px solid;
        border-color: rgba(255, 255, 255, 0.2);
        margin-left: -3px; }
        #variety_box .variety_box_switcher ul li span, #flavor_mix_maker .variety_box_switcher ul li span {
          font-size: 10px;
          border-radius: 50px;
          padding: 1px 6px;
          background-color: white;
          color: #353036;
          vertical-align: top; }
      #variety_box .variety_box_switcher ul .active_switcher_item, #flavor_mix_maker .variety_box_switcher ul .active_switcher_item {
        border-bottom: 2px solid #ff003d; }
    @media screen and (max-width: 620px) {
      #variety_box .variety_box_switcher, #flavor_mix_maker .variety_box_switcher {
        margin-top: 20px; }
        #variety_box .variety_box_switcher ul, #flavor_mix_maker .variety_box_switcher ul {
          width: 100%; }
          #variety_box .variety_box_switcher ul li, #flavor_mix_maker .variety_box_switcher ul li {
            width: 50%;
            font-size: 15px;
            padding: 10px 0px;
            text-align: center; } }
  #variety_box .variety_box_product_section, #flavor_mix_maker .variety_box_product_section {
    position: relative;
    height: calc(100vh - 125px);
    min-height: 760px;
    padding-top: 70px; }
    @media screen and (min-width: 1366px) and (max-width: 1690px) {
      #variety_box .variety_box_product_section, #flavor_mix_maker .variety_box_product_section {
        width: 90%; } }
    @media screen and (max-width: 620px) {
      #variety_box .variety_box_product_section, #flavor_mix_maker .variety_box_product_section {
        margin-top: -4px;
        margin-bottom: -4px;
        padding-top: 0px;
        height: auto; } }
    #variety_box .variety_box_product_section .variety_box_product, #flavor_mix_maker .variety_box_product_section .variety_box_product {
      position: absolute;
      right: 0; }
      @media screen and (max-width: 620px) {
        #variety_box .variety_box_product_section .variety_box_product, #flavor_mix_maker .variety_box_product_section .variety_box_product {
          position: relative; } }
      #variety_box .variety_box_product_section .variety_box_product .variety_box_controls, #variety_box .variety_box_product_section .variety_box_product .variety_box_preview, #variety_box .variety_box_product_section .variety_box_product .variety_box_randomize_btn_container, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_randomize_btn_container {
        display: inline-block;
        vertical-align: top; }
      #variety_box .variety_box_product_section .variety_box_product .variety_box_controls, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls {
        width: 440px;
        height: 100%;
        margin-right: 80px;
        text-align: right; }
        @media screen and (min-width: 1101px) and (max-width: 1190px) {
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls {
            width: 360px;
            margin-right: 60px; } }
        @media screen and (min-width: 1024px) and (max-width: 1100px) {
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls {
            width: 320px;
            margin-right: 40px; } }
        @media screen and (min-width: 620px) and (max-width: 880px) {
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls {
            width: calc(100% - 375px);
            margin-right: 30px;
            padding-left: 30px; } }
        @media screen and (max-width: 620px) {
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls {
            width: 100%;
            padding: 0px 20px;
            text-align: center; } }
        #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header {
          height: 140px;
          width: 100%;
          padding-top: 34px; }
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header h5, #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header .h5, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header h5, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header .h5 {
            font-size: 26px;
            color: #8b8d99; }
          @media screen and (max-width: 620px) {
            #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_header {
              height: 120px; } }
        #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form {
          margin-top: 40px; }
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_controls_instructions, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_controls_instructions {
            font-size: 14px;
            line-height: 20px;
            color: #8b8d99; }
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper {
            margin-top: 40px; }
            #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select {
              position: relative; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select .arr, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select .arr {
                position: absolute;
                height: 44px;
                width: 44px;
                right: 0;
                top: 0;
                pointer-events: none; }
                #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select .arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select .arr::after {
                  content: '';
                  position: absolute;
                  top: 24px;
                  right: 19px;
                  margin-top: -5px;
                  pointer-events: none;
                  border-top: 6px solid #181923;
                  border-left: 6px solid transparent;
                  border-right: 6px solid transparent; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select select, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select select {
                background-image: none;
                color: #181923;
                text-transform: uppercase; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected select, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected select {
                font-size: 0px;
                background-position: left 10px center;
                background-size: auto 23px; }
                #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected select option, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected select option {
                  font-size: 14px; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .battle-juice-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .battle-juice-arr::after {
                border-top-color: #faa818; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .blood-orange-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .blood-orange-arr::after {
                border-top-color: #f15730; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .blue-ice-arr::after,
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .snow-cone-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .blue-ice-arr::after,
              #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .snow-cone-arr::after {
                border-top-color: #0e76bc; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .cherry-limeade-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .cherry-limeade-arr::after {
                border-top-color: #8ec549; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .coconut-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .coconut-arr::after {
                border-top-color: #6e4b2e; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .cotton-candy-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .cotton-candy-arr::after {
                border-top-color: #f29bc1; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .fazeberry-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .fazeberry-arr::after {
                border-top-color: #850a16; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .strawberry-banana-arr::after,
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .fruit-punch-arr::after,
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .pewdiepie-arr::after,
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .twisted-kandy-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .strawberry-banana-arr::after,
              #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .fruit-punch-arr::after,
              #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .pewdiepie-arr::after,
              #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .twisted-kandy-arr::after {
                border-top-color: #ed1941; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .grape-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .grape-arr::after {
                border-top-color: #a9218e; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .green-apple-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .green-apple-arr::after {
                border-top-color: #386732; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .hype-sauce-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .hype-sauce-arr::after {
                border-top-color: #be367b; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .kiwi-strawberry-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .kiwi-strawberry-arr::after {
                border-top-color: #eb212e; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .lemon-lime-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .lemon-lime-arr::after {
                border-top-color: #015129; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .lemonade-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .lemonade-arr::after {
                border-top-color: #060000; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .mystery-flavor-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .mystery-flavor-arr::after {
                border-top-color: #27aae1; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .peach-iced-tea-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .peach-iced-tea-arr::after {
                border-top-color: #92564a; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .peach-mango-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .peach-mango-arr::after {
                border-top-color: #603500; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .pineapple-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .pineapple-arr::after {
                border-top-color: black; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .pink-lemonade-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .pink-lemonade-arr::after {
                border-top-color: #67013e; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .bahama-mama-arr::after,
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .orange-caffeine-free-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .bahama-mama-arr::after,
              #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .orange-caffeine-free-arr::after {
                border-top-color: #f47920; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .rainbow-sherbet-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .rainbow-sherbet-arr::after {
                border-top-color: #f29bc1; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .ragin-gummy-fish-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .ragin-gummy-fish-arr::after {
                border-top-color: #27aae1; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .sour-blue-chug-rug-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .sour-blue-chug-rug-arr::after {
                border-top-color: #4f5da9; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .sour-cherry-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .sour-cherry-arr::after {
                border-top-color: #e4222f; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .strawberry-shortcake-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .strawberry-shortcake-arr::after {
                border-top-color: #f29bc1; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .tropical-rain-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .tropical-rain-arr::after {
                border-top-color: #08988d; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .watermelon-arr::after, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form .variety_box_select_wrapper .variety_box_select.is-selected .watermelon-arr::after {
                border-top-color: #71bf44; }
          #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper {
            margin-top: 25px;
            float: right; }
            #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--yellow, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--yellow {
              margin-bottom: 10px; }
            #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined {
              background-color: white;
              color: #181923;
              border: 2px solid #ccc;
              margin-bottom: 15px;
              width: 160px;
              padding: 11px 0px;
              margin-right: 10px; }
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined:hover, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined:hover {
                opacity: 0.7; }
            @media screen and (max-width: 1190px) {
              #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper {
                width: 100%; }
                #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--yellow, #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .disabled, #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--yellow, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .disabled, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined {
                  width: 100%; }
                #variety_box .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_controls .variety_box_controls_form form .AddToCart-wrapper .btn--outlined {
                  margin-right: 0; } }
      #variety_box .variety_box_product_section .variety_box_product .variety_box_preview, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview {
        padding-top: 35px;
        position: relative;
        height: 640px;
        width: 340px; }
        #variety_box .variety_box_product_section .variety_box_product .variety_box_preview .variety_box_preview__back, #variety_box .variety_box_product_section .variety_box_product .variety_box_preview .variety_box_preview__front, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview .variety_box_preview__back, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview .variety_box_preview__front {
          position: absolute;
          max-width: 340px; }
        #variety_box .variety_box_product_section .variety_box_product .variety_box_preview .variety_box_preview_pack, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview .variety_box_preview_pack {
          position: absolute; }
        #variety_box .variety_box_product_section .variety_box_product .variety_box_preview #variety_box_preview_pack_3, #variety_box .variety_box_product_section .variety_box_product .variety_box_preview #variety_box_preview_pack_4, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview #variety_box_preview_pack_3, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview #variety_box_preview_pack_4 {
          margin-top: 20px; }
        @media screen and (max-width: 620px) {
          #variety_box .variety_box_product_section .variety_box_product .variety_box_preview, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview {
            margin-left: auto;
            margin-right: auto;
            left: 0;
            right: 0;
            max-width: 340px;
            width: calc(100% - 30px);
            margin-bottom: 50px;
            display: block; } }
      #variety_box .variety_box_product_section .variety_box_product .variety_box_preview--premium .variety_box_preview__back, #variety_box .variety_box_product_section .variety_box_product .variety_box_preview--premium .variety_box_preview__front, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview--premium .variety_box_preview__back, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview--premium .variety_box_preview__front {
        max-width: 580px;
        left: -120px; }
      #variety_box .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_1, #variety_box .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_2, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_1, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_2 {
        margin-top: -60px; }
      #variety_box .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_3, #variety_box .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_4, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_3, #flavor_mix_maker .variety_box_product_section .variety_box_product .variety_box_preview--premium #variety_box_preview_pack_4 {
        margin-top: -40px; }
    #variety_box .variety_box_product_section .variety_box_randomize_btn_container, #flavor_mix_maker .variety_box_product_section .variety_box_randomize_btn_container {
      padding-top: 310px;
      padding-right: 60px; }
      @media screen and (max-width: 1500px) {
        #variety_box .variety_box_product_section .variety_box_randomize_btn_container, #flavor_mix_maker .variety_box_product_section .variety_box_randomize_btn_container {
          display: none !important; } }
      #variety_box .variety_box_product_section .variety_box_randomize_btn_container .variety_box_randomize_btn, #flavor_mix_maker .variety_box_product_section .variety_box_randomize_btn_container .variety_box_randomize_btn {
        display: block;
        border-radius: 200px;
        width: 120px;
        height: 120px;
        border: 5px solid #e6e6ed;
        cursor: pointer;
        text-shadow: 0px 3px 15px rgba(17, 17, 19, 0.85);
        color: white;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        line-height: 110px;
        background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/randomize-btn-bg.png?v=13603080949170516222");
        background-position: center;
        background-repeat: no-repeat;
        background-color: white;
        background-size: cover;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out; }
        #variety_box .variety_box_product_section .variety_box_randomize_btn_container .variety_box_randomize_btn:hover, #flavor_mix_maker .variety_box_product_section .variety_box_randomize_btn_container .variety_box_randomize_btn:hover {
          background-size: 110%; }
    #variety_box .variety_box_product_section .variety_box_product_section_backing, #flavor_mix_maker .variety_box_product_section .variety_box_product_section_backing {
      position: absolute;
      right: 170px;
      left: auto;
      background-color: white;
      height: 100%;
      width: calc(100% - 170px);
      border-radius: 0px 12px 0px 0px; }
      @media screen and (max-width: 620px) {
        #variety_box .variety_box_product_section .variety_box_product_section_backing, #flavor_mix_maker .variety_box_product_section .variety_box_product_section_backing {
          width: 100%;
          border-radius: 0;
          left: 0;
          right: 0; } }
      #variety_box .variety_box_product_section .variety_box_product_section_backing .variety_box_header_backing, #flavor_mix_maker .variety_box_product_section .variety_box_product_section_backing .variety_box_header_backing {
        width: 100%;
        height: 140px;
        -webkit-box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
        -moz-box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
        box-shadow: 0px 40px 59px -19px rgba(24, 25, 35, 0.15);
        margin-bottom: 40px; }
        @media screen and (max-width: 620px) {
          #variety_box .variety_box_product_section .variety_box_product_section_backing .variety_box_header_backing, #flavor_mix_maker .variety_box_product_section .variety_box_product_section_backing .variety_box_header_backing {
            height: 120px; } }

#variety_box_product_description {
  position: relative;
  border-top: 1px solid #e5e5e5;
  background-color: white; }
  @media screen and (max-width: 620px) {
    #variety_box_product_description {
      border-top: none; } }

/*========================   FLAVOR MIX MAKER   ========================*/
.flavor_mix_maker_page {
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/flavor-mix-maker-bg.jpg?v=15619890791885294526"); }
  @media screen and (max-width: 620px) {
    .flavor_mix_maker_page {
      background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/flavor-mix-maker-bg.jpg?v=15619890791885294526"); } }

#flavor_mix_maker #flavor_mix_title {
  margin-top: 40px; }
#flavor_mix_maker .variety_box_product_section {
  height: calc(100vh - 70px);
  margin-top: 70px;
  padding-top: 0px; }
  @media screen and (max-width: 620px) {
    #flavor_mix_maker .variety_box_product_section {
      margin-top: -4px;
      margin-bottom: -4px;
      height: auto; } }

/*========================   COOKIES NOTIFICATION  ========================*/
.cookies-notification {
  position: fixed;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: white;
  z-index: 99999;
  padding: 20px 50px;
  width: calc(100% - 320px); }
  @media screen and (max-width: 1024px) {
    .cookies-notification {
      width: 100%; } }
  .cookies-notification a {
    font-weight: bold;
    color: white; }
    .cookies-notification a:hover {
      color: white;
      opacity: 0.8; }
  .cookies-notification h3, .cookies-notification .h3 {
    font-weight: bold; }
  .cookies-notification button {
    color: white;
    font-weight: bold;
    background-color: #ff003d;
    padding: 5px 20px;
    border-radius: 100px; }
    .cookies-notification button:hover {
      opacity: 0.8; }

/*========================   IFRAME   ========================*/
.iframe-section {
  position: relative;
  padding-bottom: 56.25%;
  height: 100vh;
  overflow: hidden; }
  .iframe-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; }

/*========================   SHOWCASE SECTION-SPECIFIC STYLES   ========================*/
#shopify-section-Hydration #page_banner {
  background-position-x: left !important; }

/*========================   BOLD STORE LOCATOR APP - STYLE OVERRIDES   ========================*/
#col-main {
  padding: 30px; }

/*========================   COUNTDOWN SECTION-SPECIFIC STYLES   ========================*/
#shopify-section-Countdown-Block-Calendar .countdown_item_upcoming img {
  opacity: 1 !important; }
#shopify-section-Countdown-Block-Calendar .countdown_item_upcoming .countdown_item_title, #shopify-section-Countdown-Block-Calendar .countdown_item_upcoming .countdown_item_details {
  color: #181923 !important; }

/*========================   BOGOF  ========================*/
.bogof-page {
  min-height: 100vh;
  background-color: #161718;
  background-image: url("//cdn.shopify.com/s/files/1/0223/3113/t/22/assets/bogof-bg.jpg?v=4345694813583259583");
  background-size: auto 640px;
  background-repeat: no-repeat;
  background-position: top -130px center; }
  @media screen and (max-width: 768px) {
    .bogof-page {
      background-size: auto 520px;
      background-position: top -100px center; } }
  @media screen and (max-width: 480px) {
    .bogof-page {
      background-size: auto 380px;
      background-position: top -50px center; } }

.bogof-page__header {
  width: 100%;
  height: 360px; }
  @media screen and (max-width: 768px) {
    .bogof-page__header {
      height: 310px; } }
  @media screen and (max-width: 480px) {
    .bogof-page__header {
      height: 260px; } }

.bogof-section {
  padding: 36px 24px 24px 24px;
  line-height: 1.6;
  background-color: rgba(22, 23, 24, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

.bogof-section__content {
  max-width: 1200px;
  margin: 0 auto; }

.bogof-form__guidance {
  text-align: right;
  text-transform: uppercase;
  padding: 24px 0;
  margin-top: 60px; }
  @media screen and (max-width: 1366px) {
    .bogof-form__guidance {
      margin-top: 0px;
      text-align: center; } }

.bogof-form__dropdown {
  position: relative; }
  .bogof-form__dropdown select {
    background-image: none;
    color: white;
    border: 1px solid rgba(139, 141, 153, 0.5);
    background-color: rgba(139, 141, 153, 0.15);
    text-transform: uppercase; }
  .bogof-form__dropdown .arr {
    position: absolute;
    height: 44px;
    width: 44px;
    right: 0;
    top: 0;
    pointer-events: none; }
    .bogof-form__dropdown .arr::after {
      content: '';
      position: absolute;
      top: 24px;
      right: 19px;
      margin-top: -5px;
      pointer-events: none;
      border-top: 6px solid #8b8d99;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent; }
  .bogof-form__dropdown.is-selected select {
    font-weight: bold; }

.bogof-form__dropdown--one.is-selected select {
  border: 2px solid #f559eb;
  background-color: rgba(245, 89, 235, 0.33); }
.bogof-form__dropdown--one.is-selected .arr::after {
  border-top-color: #f559eb; }

.bogof-form__dropdown--two.is-selected select {
  border: 2px solid #12beff;
  background-color: rgba(18, 190, 255, 0.33); }
.bogof-form__dropdown--two.is-selected .arr::after {
  border-top-color: #12beff; }

.bogof-form__actions {
  float: right; }
  @media screen and (max-width: 768px) {
    .bogof-form__actions {
      width: 100%; } }

.bogof-form__btn {
  margin: 12px 0 0 12px; }
  @media screen and (max-width: 768px) {
    .bogof-form__btn {
      width: 100%;
      margin-left: 0; } }

.bogof-form__btn--secondary {
  background: none !important;
  color: #8b8d99;
  border: 2px solid #8b8d99;
  padding: 11px 0px;
  min-width: 160px; }
  .bogof-form__btn--secondary:hover, .bogof-form__btn--secondary:active, .bogof-form__btn--secondary:focus {
    border-color: #fff;
    color: #fff; }

.bogof-preview {
  position: relative;
  width: 100%;
  height: 480px;
  max-width: 480px; }
  @media screen and (max-width: 1366px) {
    .bogof-preview {
      margin: 60px auto; } }
  @media screen and (max-width: 480px) {
    .bogof-preview {
      max-height: 480px;
      height: calc(100vw * 1.1 - 60px); } }

.bogof-preview__img {
  position: absolute;
  max-height: 360px;
  height: calc(100vw / 12 * 3); }
  .bogof-preview__img img {
    height: 100%; }
  @media screen and (max-width: 1366px) {
    .bogof-preview__img {
      height: 100%; } }
  @media screen and (max-width: 480px) {
    .bogof-preview__img {
      height: calc(100vw * 0.95 - 90px); } }

.bogof-preview__img--one {
  top: 0;
  left: 0; }

.bogof-preview__img--two {
  bottom: 0;
  right: 0; }

/*========================   FORTNITE WORLD CUP   ========================*/
.fwc-banner {
  padding: 88px 24px;
  text-align: center; }
  .fwc-banner h4, .fwc-banner .h4 {
    font-weight: 500; }

.fwc-intro {
  margin: 72px 24px;
  font-size: 17px;
  text-align: center; }

.fwc-roster {
  margin-top: 32px;
  margin-bottom: 48px; }

.fwc-player {
  padding: 24px 12px;
  margin: 0;
  margin-bottom: 24px;
  text-align: center; }
  @media screen and (min-width: 769px) {
    .fwc-player {
      text-align: left; } }

.fwc-team {
  text-align: center;
  padding: 32px 0;
  margin: 40px 24px 0 24px; }
  @media screen and (min-width: 769px) {
    .fwc-team {
      margin: 40px 32px 0 32px; } }

.fwc-player__photo, .fwc-team__logo {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  margin: 0px auto;
  left: 0;
  right: 0; }

.fwc-team__logo {
  height: 140px; }

.fwc-player__photo {
  #clip-path: polygon(28% 81%, 100% 93%, 100% 0, 0 0, 0 69%, 46% 77%); }
  @media screen and (min-width: 769px) {
    .fwc-player__photo {
      float: right;
      margin-right: 24px; } }

.fwc-player__name, .fwc-team__name {
  margin: 24px 0 12px 0;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold; }

.fwc-team__name {
  font-size: 32px;
  margin-top: 8px; }

.fwc-player__flavor a {
  padding: 3px 8px;
  border-radius: 200px;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  font-size: 11px;
  transition: 0.3s; }
  .fwc-player__flavor a:hover {
    opacity: 0.7; }

/*========================   GAMERS GOT TALENT   ========================*/
.ggt-header {
  width: 90%;
  max-width: 480px;
  margin: 24px; }

.ggt-guest {
  display: block;
  width: 75%;
  max-width: 240px;
  margin-top: -12px;
  margin-bottom: 24px; }

.ggt-title {
  color: #fff;
  font-weight: 700;
  padding: 20px; }

.ggt-prize {
  color: #fff;
  text-align: center;
  margin-bottom: 20px; }

.ggt-prize__sponsors img {
  height: 40px;
  padding: 0px 12px; }

.ggt-video {
  max-width: 700px;
  margin-bottom: 40px; }

.ggt-form {
  background: #fff;
  padding-top: 20px;
  border-radius: 10px;
  margin-bottom: 40px; }

.ggt-description {
  color: white;
  font-size: 16px; }

.ggt-hbspt-form {
  background: #fff;
  padding: 30px;
  padding-bottom: 4px;
  border-radius: 12px;
  margin-bottom: 40px;
  max-width: 700px; }
  .ggt-hbspt-form .hbspt-form {
    height: auto; }

.ggt-twitch {
  padding-bottom: 64px; }

/*========================   RE-USABLE CLASSES   ========================*/
.default-box-shadow {
  -webkit-box-shadow: 0px 0px 59px 0px rgba(24, 25, 35, 0.2);
  -moz-box-shadow: 0px 0px 59px 0px rgba(24, 25, 35, 0.2);
  box-shadow: 0px 0px 59px 0px rgba(24, 25, 35, 0.2);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; }
  .default-box-shadow:hover {
    -webkit-box-shadow: 0px 0px 89px 0px rgba(24, 25, 35, 0.4);
    -moz-box-shadow: 0px 0px 89px 0px rgba(24, 25, 35, 0.4);
    box-shadow: 0px 0px 89px 0px rgba(24, 25, 35, 0.4); }

.centered {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center; }

.inner-shadow-section {
  background: white;
  background: -moz-linear-gradient(top, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, rgba(24, 25, 35, 0.05)));
  background: -webkit-linear-gradient(top, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -o-linear-gradient(top, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -ms-linear-gradient(top, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: linear-gradient(to bottom, white 0%, rgba(24, 25, 35, 0.05) 100%); }

.reverse-inner-shadow-section {
  background: white;
  background: -moz-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -webkit-gradient(left bottom, left top, color-stop(0%, white), color-stop(100%, rgba(24, 25, 35, 0.05)));
  background: -webkit-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -o-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -ms-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: linear-gradient(to top, white 0%, rgba(24, 25, 35, 0.05) 100%); }

.btn--white, .btn--red {
  background-color: white;
  color: #181923;
  border: none;
  -webkit-box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  width: 190px;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; }
  .btn--white:hover, .btn--red:hover {
    background-color: white;
    color: #181923;
    opacity: 0.7; }

.btn--red {
  background-color: red; }
  .btn--red:hover {
    background-color: red; }

.btn--yellow {
  background-color: #ffc520 !important;
  color: #181923 !important;
  border: none !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 12px 75px; }
  @media screen and (min-width: 1024px) {
    .btn--yellow:hover {
      opacity: 0.7; } }
  .btn--yellow.disabled, .btn--yellow.inactive {
    color: #aeb1bf !important;
    background-color: #f6f6f6 !important; }
    .btn--yellow.disabled:hover, .btn--yellow.inactive:hover {
      opacity: 1; }

.tooltip {
  position: relative;
  display: inline-block; }
  .tooltip .tooltip__content {
    visibility: hidden;
    position: absolute;
    width: 220px;
    background-color: #555;
    color: #fff;
    line-height: 1.4;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    z-index: 1000;
    opacity: 0;
    transition: opacity .4s; }
    .tooltip .tooltip__content:after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent; }
  .tooltip .tooltip__top {
    bottom: 125%;
    left: 50%;
    margin-left: -110px; }
  .tooltip:hover .tooltip__content {
    visibility: visible;
    opacity: 1; }
  @media screen and (max-width: 768px) {
    .tooltip {
      width: 100%;
      margin-top: 20px; } }

@media screen and (max-width: 768px) {
  .tooltip--desktop-only .tooltip__content {
    visibility: hidden !important;
    opacity: 0 !important; } }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

#generic-page h3, #generic-page .h3, #generic-page h4, #generic-page .h4 {
  color: red;
  margin-top: 40px; }
#generic-page h1, #generic-page .h1, #generic-page h2, #generic-page .h2 {
  margin-top: 80px; }
#generic-page p {
  font-size: 15px; }
#generic-page .container {
  max-width: 100%;
  margin: 60px auto;
  padding: 0 40px; }
  @media screen and (min-width: 768px) and (max-width: 1366px) {
    #generic-page .container {
      padding: 0 30px; } }
  @media screen and (min-width: 481px) and (max-width: 767px) {
    #generic-page .container {
      padding: 0 30px; } }
  @media screen and (max-width: 480px) {
    #generic-page .container {
      padding: 0 20px; } }

/*========================   RE-USABLE ANIMATIONS   ========================*/
@keyframes ripple {
  0%, 15% {
    transform: scale(0);
    opacity: 1; }

  50% {
    transform: scale(1.5);
    opacity: 0.8; }

  100% {
    opacity: 0;
    transform: scale(4); } }

/* PLUGINS.CSS */
/* Zendesk Widget */
iframe#launcher {
  z-index: 99998 !important; }
  @media screen and (max-width: 480px) {
    iframe#launcher {
      bottom: 50px !important; } }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

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

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

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

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
/* Lightbox CSS */
body:after {
  content: url(close.png) url(loading.gif) url(prev.png) url(next.png);
  display: none; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1000000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-container {
  padding: 4px; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

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

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

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

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

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

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

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

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

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

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

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

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

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

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

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

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

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

/* Pre-Order CSS */
#pre-order {
  background-color: #ffc520 !important;
  color: #181923 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 12px 75px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  font-family: "Roboto Condensed",sans-serif !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  border-radius: 22px !important;
  max-width: 150px !important; }

/* Fera CSS Override (fixes margin bug) */
.banana-container-row {
  margin-top: 0px !important; }

@media screen and (max-width: 480px) {
  .fera-socialProofPopup-container .fera-bottom_right {
    margin-bottom: 54px; } }
/* Bundle Builder Overrides */
.bundle-builder-app--bundle--name {
  font-size: 34px;
  font-weight: 700; }

.bundle-builder-app--bundle--section--product-list {
  padding: 0 12px; }

.bundle-builder-app--bundle--product-image,
.bundle-builder-app--bundle--contents-image {
  max-height: 240px; }

.bundle-builder-app--bundle--product-name {
  font-size: 16px;
  line-height: 1.2; }

.bundle-builder-app--bundle--product-add-button {
  background-color: #ffc520 !important;
  color: #181923 !important;
  border: none !important; }

.bundle-builder-app--bundle--product-options {
  margin-bottom: 0 !important; }

.bundle-builder-app--bundle--product,
.bundle-builder-app--bundle--contents-item {
  margin-bottom: 32px !important; }

.bundle-builder-app--product--quantity,
.bundle-builder-app--bundle--contents--quantity {
  padding-bottom: 0 !important;
  border: 2px solid #ccc !important;
  border-radius: 30px; }

.bundle-builder-app--button {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  border-radius: 30px; }

.bundle-builder-app--button-container {
  margin: 0 0 64px 0 !important; }

.bundle-builder-app--button--decrease {
  border: none !important; }

.bundle-builder-app--quantity--variant {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 12px; }

.bundle-builder-app--quantity--amount {
  text-overflow: clip !important; }

@media screen and (max-width: 767px) {
  .bundle-builder-app--quantity--amount {
    line-height: 0.7 !important; } }
.bundle-builder-app--summary--block {
  background: white;
  background: -moz-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -webkit-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -o-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: -ms-linear-gradient(bottom, white 0%, rgba(24, 25, 35, 0.05) 100%);
  background: linear-gradient(to top, white 0%, rgba(24, 25, 35, 0.05) 100%); }

.bundle-builder-app--bundle--summary {
  border: none !important;
  border-top: 1px solid #ccc !important; }

.bundle-builder-app--bundle--price-label {
  text-transform: uppercase;
  font-weight: normal !important; }

.bundle-builder-app--bundle--price .money {
  font-size: 40px; }

.bundle-builder-app--required-section {
  margin-bottom: 44px;
  border-bottom: 1px solid #eee; }

.bundle-builder-app--bundle--contents-item {
  padding: 0px 8px; }

.bundle-builder-app--bundle--contents-remove-button {
  border: 2px solid #ff003c5d !important; }

.bundle-builder-app--bundle--alert {
  z-index: 99999 !important; }

/* Wait.li Overrides */
.wla_text,
.wla_login_text,
#wait_li_success {
  font-weight: bold;
  color: #FFF; }

@media screen and (min-width: 767px) {
  .wla_text,
  .wla_login_text_hidden,
  #wait_li_success {
    text-align: left !important; } }
