@charset "UTF-8";
/*============================================================================
  Venture by Shopify
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems

  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)

  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
@font-face {
  font-family: "Arimo";
  src: url("//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/Arimo-Regular.ttf?v=9471527301113479813") format("truetype"); }

/*============================================================================
  Strips the unit from a number.

  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}

  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ THEME SASS HELPERS ================*/
/*================ Prefix mixins ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ Style mixins ================*/
/*================ SASS VARIABLES & SETTINGS ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
/*================ Color Variables ================*/
/*================ Sizing Variables ================*/
/*================ Product Grid ================*/
/*================ Product slider ================*/
/*================ Collection Grid ================*/
/*================ Typography Variables ================*/
/*================ Z-Index ================*/
/*================ Drawers ================*/
/*================ Sticky nav ================*/
/*================ Links and Buttons ================*/
/*================ Product and Collection Cards ================*/
/*================ Search in header ================*/
/*================ Meganav ================*/
/*================ Hero ================*/
/*================ Slate ================*/
/*============================================================================
  Slate Table of Contents

  #Mixins
  #Grid
  #Normalize
  #Helper Classes
  #Basic Styles
  #Icons
  #Lists
  #Rich Text Editor
  #Links and Buttons
  #Tables
  #Reponsive Tables
  #Images and Iframes
  #Forms
  #Site Nav and Dropdowns
  #Section Headers
  #Giftcard Template
==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Media Query IE z-index Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  #Grid
==============================================================================*/
/*============================================================================
  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 {
  *zoom: 1; }
  .grid:after {
    content: '';
    display: table;
    clear: both; }

.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -20px; }

.grid__item {
  float: left;
  padding-left: 20px;
  margin-bottom: 20px;
  width: 100%;
  -ms-flex-preferred-size: auto !important;
  -webkit-flex-basis: auto !important;
  -moz-flex-basis: auto !important;
  flex-basis: auto !important; }

.grid__item[class*="--push"] {
  position: relative; }

/*================ Flex grid ================*/
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.flex__item {
  position: relative;
  -webkit-flex: 1 1 100%;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: auto !important;
  min-width: 0; }

.flex__item--fixed {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/** Whole */
.one-whole {
  width: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }

/* Halves */
.one-half {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

/* Thirds */
.one-third {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.two-thirds {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

/* Quarters */
.one-quarter {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.two-quarters {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.three-quarters {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

/* Fifths */
.one-fifth {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  flex-basis: 20%; }

.two-fifths {
  width: 40%;
  -ms-flex-preferred-size: 40%;
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  flex-basis: 40%; }

.three-fifths {
  width: 60%;
  -ms-flex-preferred-size: 60%;
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  flex-basis: 60%; }

.four-fifths {
  width: 80%;
  -ms-flex-preferred-size: 80%;
  -webkit-flex-basis: 80%;
  -moz-flex-basis: 80%;
  flex-basis: 80%; }

/* Sixths */
.one-sixth {
  width: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  flex-basis: 16.66667%; }

.two-sixths {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.three-sixths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.four-sixths {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

.five-sixths {
  width: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  flex-basis: 83.33333%; }

/* Eighths */
.one-eighth {
  width: 12.5%;
  -ms-flex-preferred-size: 12.5%;
  -webkit-flex-basis: 12.5%;
  -moz-flex-basis: 12.5%;
  flex-basis: 12.5%; }

.two-eighths {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.three-eighths {
  width: 37.5%;
  -ms-flex-preferred-size: 37.5%;
  -webkit-flex-basis: 37.5%;
  -moz-flex-basis: 37.5%;
  flex-basis: 37.5%; }

.four-eighths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.five-eighths {
  width: 62.5%;
  -ms-flex-preferred-size: 62.5%;
  -webkit-flex-basis: 62.5%;
  -moz-flex-basis: 62.5%;
  flex-basis: 62.5%; }

.six-eighths {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

.seven-eighths {
  width: 87.5%;
  -ms-flex-preferred-size: 87.5%;
  -webkit-flex-basis: 87.5%;
  -moz-flex-basis: 87.5%;
  flex-basis: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%;
  -ms-flex-preferred-size: 10%;
  -webkit-flex-basis: 10%;
  -moz-flex-basis: 10%;
  flex-basis: 10%; }

.two-tenths {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  flex-basis: 20%; }

.three-tenths {
  width: 30%;
  -ms-flex-preferred-size: 30%;
  -webkit-flex-basis: 30%;
  -moz-flex-basis: 30%;
  flex-basis: 30%; }

.four-tenths {
  width: 40%;
  -ms-flex-preferred-size: 40%;
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  flex-basis: 40%; }

.five-tenths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.six-tenths {
  width: 60%;
  -ms-flex-preferred-size: 60%;
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  flex-basis: 60%; }

.seven-tenths {
  width: 70%;
  -ms-flex-preferred-size: 70%;
  -webkit-flex-basis: 70%;
  -moz-flex-basis: 70%;
  flex-basis: 70%; }

.eight-tenths {
  width: 80%;
  -ms-flex-preferred-size: 80%;
  -webkit-flex-basis: 80%;
  -moz-flex-basis: 80%;
  flex-basis: 80%; }

.nine-tenths {
  width: 90%;
  -ms-flex-preferred-size: 90%;
  -webkit-flex-basis: 90%;
  -moz-flex-basis: 90%;
  flex-basis: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  -webkit-flex-basis: 8.33333%;
  -moz-flex-basis: 8.33333%;
  flex-basis: 8.33333%; }

.two-twelfths {
  width: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  flex-basis: 16.66667%; }

.three-twelfths {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.four-twelfths {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.five-twelfths {
  width: 41.66667%;
  -ms-flex-preferred-size: 41.66667%;
  -webkit-flex-basis: 41.66667%;
  -moz-flex-basis: 41.66667%;
  flex-basis: 41.66667%; }

.six-twelfths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.seven-twelfths {
  width: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  -webkit-flex-basis: 58.33333%;
  -moz-flex-basis: 58.33333%;
  flex-basis: 58.33333%; }

.eight-twelfths {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

.nine-twelfths {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

.ten-twelfths {
  width: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  flex-basis: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%;
  -ms-flex-preferred-size: 91.66667%;
  -webkit-flex-basis: 91.66667%;
  -moz-flex-basis: 91.66667%;
  flex-basis: 91.66667%; }

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 768px) {
  /** Whole */
  .small--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .small--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .small--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .small--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .small--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .small--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .small--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .small--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .small--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .small--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .small--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .small--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .small--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .small--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .small--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .small--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .small--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .small--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .small--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .small--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .small--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .small--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .small--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .small--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

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

  .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; } }
@media only screen and (min-width: 769px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .medium-up--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .medium-up--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .medium-up--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .medium-up--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .medium-up--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .medium-up--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .medium-up--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .medium-up--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .medium-up--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .medium-up--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .medium-up--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .medium-up--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .medium-up--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .medium-up--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .medium-up--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .medium-up--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .medium-up--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .medium-up--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .medium-up--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .medium-up--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .medium-up--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .medium-up--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .medium-up--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .medium-up--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .medium-up--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .medium-up--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

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

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

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

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

  .medium-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 990px) {
  /** Whole */
  .large-up--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .large-up--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .large-up--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .large-up--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .large-up--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .large-up--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .large-up--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .large-up--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .large-up--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .large-up--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .large-up--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .large-up--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .large-up--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .large-up--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .large-up--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .large-up--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .large-up--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .large-up--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .large-up--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .large-up--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .large-up--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .large-up--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .large-up--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .large-up--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .large-up--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .large-up--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .large-up--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .large-up--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .large-up--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .large-up--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .large-up--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .large-up--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

  .grid--uniform .large-up--one-half:nth-child(2n+1),
  .grid--uniform .large-up--one-third:nth-child(3n+1),
  .grid--uniform .large-up--one-quarter:nth-child(4n+1),
  .grid--uniform .large-up--one-fifth:nth-child(5n+1),
  .grid--uniform .large-up--one-sixth:nth-child(6n+1),
  .grid--uniform .large-up--two-sixths:nth-child(3n+1),
  .grid--uniform .large-up--three-sixths:nth-child(2n+1),
  .grid--uniform .large-up--two-eighths:nth-child(4n+1),
  .grid--uniform .large-up--four-eighths:nth-child(2n+1),
  .grid--uniform .large-up--five-tenths:nth-child(2n+1),
  .grid--uniform .large-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .large-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .large-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .large-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .large-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

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

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

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

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

  .large-up--text-center {
    text-align: center !important; } }
/*================ Grid Push Classes ================*/
@media only screen and (min-width: 769px) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }
/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*, *:before, *:after {
  box-sizing: border-box; }

body {
  margin: 0; }

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

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none; }

a {
  background-color: transparent; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  max-width: 100%;
  border: 0;
  height: auto; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

textarea {
  overflow: auto;
  -webkit-appearance: none;
  -moz-appearance: none; }

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

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

.visually-hidden, .icon__fallback-text, .no-js .lazyload, .no-js .image-content__image-wrapper, .no-js .article__photo-wrapper {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.js-focus-hidden:focus {
  outline: none; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #7b7b7b;
  background-color: white;
  padding: 10px;
  z-index: 10000;
  transition: none; }

/*================ #Basic Styles ================*/
body,
html {
  background-color: white; }

.page-width {
  *zoom: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px; }
  .page-width:after {
    content: '';
    display: table;
    clear: both; }
  @media (min-width: 1600px) {
    .page-width {
      max-width: 1500px; } }
  @media only screen and (min-width: 769px) {
    .page-width {
      padding: 0 20px; } }
  @media (min-width: 1600px) {
    .page-width {
      padding: 0  50px; } }

/*================ Typography ================*/
blockquote p + cite {
  margin-top: 10px; }
blockquote cite {
  display: block; }
  blockquote cite:before {
    content: '\2014 \0020'; }

code, pre {
  font-family: Consolas,monospace;
  font-size: 1em; }

pre {
  overflow: auto; }

/*================ #Icons ================*/
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px; }
  .no-svg .icon {
    display: none; }

.icon--wide {
  width: 40px; }

.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

svg.icon:not(.icon--full-color) circle,
svg.icon:not(.icon--full-color) ellipse,
svg.icon:not(.icon--full-color) g,
svg.icon:not(.icon--full-color) line,
svg.icon:not(.icon--full-color) path,
svg.icon:not(.icon--full-color) polygon,
svg.icon:not(.icon--full-color) polyline,
svg.icon:not(.icon--full-color) rect,
symbol.icon:not(.icon--full-color) circle,
symbol.icon:not(.icon--full-color) ellipse,
symbol.icon:not(.icon--full-color) g,
symbol.icon:not(.icon--full-color) line,
symbol.icon:not(.icon--full-color) path,
symbol.icon:not(.icon--full-color) polygon,
symbol.icon:not(.icon--full-color) polyline,
symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin-left: 5px; }
  .payment-icons .icon {
    height: 26px;
    width: 40px; }
  .payment-icons .icon--wide {
    width: 55px; }
  .payment-icons .icon-shopify_pay {
    width: 100px; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 24px;
  height: 24px; }

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

ol {
  list-style: decimal; }

.list--inline {
  padding: 0;
  margin: 0; }
  .list--inline li {
    display: inline-block;
    margin-bottom: 0;
    /*     vertical-align:middle; */ }

.rte ul, .rte ol {
  margin: 0 0 10px 20px; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

/*================ #Rich Text Editor ================*/
.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  .rte__table-wrapper td, .rte__table-wrapper th {
    border: 1px solid #aaa; }

/*================ #Links and Buttons ================*/
.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #d8232f;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #ac1c25;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: #d8232f;
    color: white; }
  .btn[disabled], [disabled].btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary {
    cursor: default;
    color: #757575;
    background-color: #d5d5d5; }
  .btn .icon, .btn--secondary .icon,
  .rte .btn .icon,
  .rte .btn--secondary .icon {
    fill: currentColor;
    path: currentColor; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #252525; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #323232;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #4b4b4b;
    color: white; }

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

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

th {
  font-weight: 700; }

th, td {
  text-align: left;
  border: 1px solid white; }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 768px) {
  .responsive-table thead {
    display: none; }
  .responsive-table tr {
    display: block; }
  .responsive-table tr,
  .responsive-table td {
    float: left;
    clear: both;
    width: 100%; }
  .responsive-table th,
  .responsive-table td {
    display: block;
    text-align: right;
    padding: 10px;
    margin: 0; }
  .responsive-table td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 14px;
    padding-right: 10px; } }
.responsive-table__row {
  border-bottom: 1px solid white; }

/*================ #Images and Iframes ================*/
svg:not(:root) {
  overflow: hidden; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  @media only screen and (min-width: 769px) {
    .video-wrapper {
      max-width: 80%;
      padding-bottom: 44%; } }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*================ Forms ================*/
@media only screen and (max-width: 989px) {
  input,
  select,
  textarea {
    font-size: 16px; } }
fieldset {
  border: 1px solid white;
  margin: 0 0 20px;
  padding: 10px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid white;
  border-radius: 0;
  max-width: 100%; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #e6e6e6; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #d5d5d5;
    border-color: #757575; }

textarea {
  min-height: 100px; }

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/ico-select.svg?v=54521815305935157");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 ================*/ }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

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

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

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

label[for] {
  cursor: pointer; }

/*================ #Site Nav and Dropdowns ================*/
@media only screen and (min-width: 769px) {
  .site-header__logo img {
    display: block;
    width: 100%;
    position: absolute;
    top: -66px;
    /*       bottom:0px; */
    /*       left:-80px; */
    z-index: 9; } }
  @media only screen and (min-width: 769px) and (min-width: 750px) and (max-width: 1050px) {
    .site-header__logo img {
      left: 20px; } }
  @media only screen and (min-width: 769px) and (min-width: 1050px) and (max-width: 1400px) {
    .site-header__logo img {
      left: 50px; } }
@media only screen and (max-width: 768px) {
  .site-header__logo img {
    padding-top: 10px;
    max-width: 100px !important; } }

.site-nav li {
  display: inline-block; }

#SiteNavLabel-contact-us {
  color: #e48e21;
  z-index: 99;
  transition: 0.4s; }
  #SiteNavLabel-contact-us:hover {
    color: #ae3737; }
  #SiteNavLabel-contact-us:after {
    content: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/signer_25x.gif?v=16013483001250823096);
    position: absolute;
    top: 10%;
    left: 40%;
    z-index: 9; }

/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }
  .site-nav__link .icon-arrow-down {
    position: relative; }
  @media (max-width: 1360px) {
    .site-nav__link {
      font-size: 1vw; } }
  @media (max-width: 1160px) {
    .site-nav__link {
      padding: 30px 10px !important; } }
  @media (max-width: 1160px) {
    .site-nav__link {
      font-size: 0.5vw; } }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  box-shadow: 0px -1px 1px 1px;
  padding: 20px 20px 0 !important;
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.9); }
  .site-nav__dropdown li {
    display: block;
    /*     background-color: rgba(37,37,37,0.8); */ }

#SiteNavLinklist-accessories, #SiteNavLinklist-others {
  padding: 20px 20px 20px 0 !important; }

/*================ #Giftcard Template ================*/
.giftcard__qr-code img {
  margin: 0 auto; }

.giftcard__apple-wallet-image {
  display: block;
  margin: 0 auto; }

.giftcard__wrap {
  margin: 0 auto 20px; }

/*================ Print Giftcard Styles ================*/
@media print {
  @page {
    margin: 0.5cm; }

  p {
    orphans: 3;
    widows: 3; }

  html, body {
    background-color: #fff;
    color: #000; }

  .giftcard__print-link,
  .giftcard__apple-wallet {
    display: none; } }
/*================ GLOBAL ================*/
.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

.no-js .js {
  display: none; }

.main-content {
  display: block;
  /*   margin-top: $gutter-site * 1.5; */
  padding-bottom: 40px; }
  @media only screen and (min-width: 769px) {
    .main-content {
      /*     margin-top: $gutter-site * 3; */
      padding-bottom: 80px; } }
  .template-index .main-content {
    padding-bottom: 0; }

.full-width {
  padding: 80px 20px;
  background-color: white; }

.full-width--return-link {
  margin-bottom: -40px; }
  @media only screen and (min-width: 769px) {
    .full-width--return-link {
      margin-bottom: -80px; } }
  .content-block + .full-width--return-link {
    margin-top: -20px; }

hr {
  margin: 16.66667px 0;
  border-color: #dcdcdc;
  border-style: solid;
  border-width: 1px 0 0; }

.hr--dark {
  border-color: #d9d9d9; }

/*================ Empty pages (404, cart) ================*/
.page-empty {
  padding: 120px 0;
  margin-bottom: 20px; }

/*================ Index sections ================*/
.index-section {
  margin-bottom: 50px; }

.index-section--flush + .index-section--flush {
  margin-top: -50px; }

.index-section--flush:last-child {
  padding-bottom: 0;
  margin-bottom: 0; }

/*================ Flex class helpers ================*/
.flex--center-vertical .flex__item {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.flex--grid {
  margin: 0 -10px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .flex--grid > .flex__item {
    padding: 10px; }

.flex--grid-center {
  justify-content: center; }

.flex--no-gutter {
  margin: 0; }
  .flex--no-gutter > .flex__item {
    padding: 0; }

/*================ Grid | Half gutters ================*/
.grid--half-gutters {
  margin-left: -10px; }
  .grid--half-gutters > .grid__item {
    padding-left: 10px; }

.grid--no-gutters {
  margin-left: 0; }
  .grid--no-gutters > .grid__item {
    padding-left: 0; }

/*================ Grid | Vertically centered items ================*/
.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }

.medium-up--grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .medium-up--grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }
  @media only screen and (max-width: 768px) {
    .medium-up--grid--table {
      display: block; }
      .medium-up--grid--table > .grid__item {
        display: block; } }

body,
input,
textarea,
button,
select {
  font-size: 15px;
  font-family: "Arimo", "Helvetica Neue", Helvetica, sans-serif;
  color: #7b7b7b;
  line-height: 1.375; }

@media only screen and (max-width: 989px) {
  input,
  textarea {
    font-size: 16px; } }
/*================ Headings ================*/
h1, .h1, .h1--mini,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #222222;
  margin: 0 0 0.66667em; }
  h1 a, .h1 a, .h1--mini a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }
  h1:last-child, .h1:last-child, .h1--mini:last-child,
  h2:last-child,
  .h2:last-child,
  h3:last-child,
  .h3:last-child,
  h4:last-child,
  .h4:last-child,
  h5:last-child,
  .h5:last-child,
  h6:last-child,
  .h6:last-child {
    margin-bottom: 0; }

h2, .h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  letter-spacing: inherit;
  text-transform: inherit;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700; }

h1, .h1, .h1--mini {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.86667em; }
  @media only screen and (min-width: 769px) {
    h1, .h1, .h1--mini {
      font-size: 2em; } }

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

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

h4, .h4 {
  font-size: 1.2em;
  text-transform: uppercase; }

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

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

.h1--mini {
  font-size: 1.86667em; }

/*================ RTE headings ================*/
.rte {
  *zoom: 1;
  margin-bottom: 20px; }
  .rte:after {
    content: '';
    display: table;
    clear: both; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1, .rte .h1, .rte .h1--mini,
  .rte h2,
  .rte .h2,
  .rte h3,
  .rte .h3,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte h6,
  .rte .h6 {
    margin-top: 40px; }
    .rte h1:first-child, .rte .h1:first-child, .rte .h1--mini:first-child,
    .rte h2:first-child,
    .rte .h2:first-child,
    .rte h3:first-child,
    .rte .h3:first-child,
    .rte h4:first-child,
    .rte .h4:first-child,
    .rte h5:first-child,
    .rte .h5:first-child,
    .rte h6:first-child,
    .rte .h6:first-child {
      margin-top: 0; }
  .rte p {
    margin: 0 0 18px; }
  .rte li {
    margin-bottom: 10px; }
    .rte li:last-child {
      margin-bottom: 0; }

.rte-setting {
  margin-bottom: 10px; }
  .rte-setting:last-child {
    margin-bottom: 0; }

/*================ Paragraph styles ================*/
p {
  margin: 0 0 10px; }
  p:last-child {
    margin-bottom: 0; }

/*================ Blockquote ================*/
blockquote {
  color: #333;
  font-size: 1em;
  font-weight: 700;
  text-align: center; }
  blockquote cite {
    font-size: 0.8em;
    font-weight: 400;
    font-style: normal; }
  @media only screen and (max-width: 768px) {
    blockquote {
      margin-left: 0;
      margin-right: 0; } }

/*================ Lists ================*/
.list--no-bullets {
  list-style: none; }

.list--bold {
  font-weight: 700;
  font-size: 1em; }

/*================ Form elements ================*/
label {
  font-size: 0.8em;
  font-weight: 700;
  color: #7b7b7b;
  text-transform: uppercase;
  margin-bottom: 13px; }

/*================ Blog styles ================*/
.blog__meta {
  font-size: 0.93333em; }

.blog__rss-link .icon-rss {
  fill: currentColor;
  width: 18px;
  height: 18px;
  vertical-align: baseline; }

.blog-menu {
  margin: 0 auto; }
  .blog-menu li {
    display: inline-block;
    background: #f4f4f4;
    padding: 10px 5px;
    color: #d8232f;
    cursor: pointer;
    margin-bottom: 5px; }
    .blog-menu li a {
      color: #636363; }
      .blog-menu li a:hover {
        color: #961821; }

/*================ Primary color inline background ================*/
.emphasized-title {
  position: relative;
  display: inline;
  font-size: 2.4em;
  line-height: 1;
  padding: 0 10px;
  background-color: #d8232f;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }

.emphasized-title--link:hover, .emphasized-title--link:focus {
  background-color: #ac1c25;
  color: white; }

@media only screen and (min-width: 769px) {
  .emphasized-title--large {
    font-size: 4em; } }
.emphasized-subtitle {
  display: inline;
  line-height: 2;
  padding: 10px;
  background-color: #262626;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-color 0.15s ease-in; }
  @media only screen and (min-width: 769px) {
    .emphasized-subtitle {
      font-size: 1.33333em; } }
  .emphasized-subtitle:hover, .emphasized-subtitle:focus {
    color: white;
    background-color: #404040; }

.emphasized-title-wrapper {
  margin-bottom: 8px; }

/*================ Tables ================*/
td,
th {
  padding: 13.33333px;
  border: 1px solid white; }

/*================ Forms and inputs ================*/
::-webkit-input-placeholder {
  color: #7b7b7b;
  opacity: 0.6; }

:-moz-placeholder {
  color: #7b7b7b;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: #7b7b7b;
  opacity: 0.6; }

::-ms-input-placeholder {
  color: #7b7b7b;
  opacity: 0.6;
  opacity: 1; }

input,
textarea,
select {
  background-color: #f4f4f4;
  color: #333333;
  border: 0;
  max-width: 100%; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    color: rgba(0, 0, 0, 0.4); }
  input.input--error,
  textarea.input--error,
  select.input--error {
    color: white; }
    input.input--error::-webkit-input-placeholder,
    textarea.input--error::-webkit-input-placeholder,
    select.input--error::-webkit-input-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error:-moz-placeholder,
    textarea.input--error:-moz-placeholder,
    select.input--error:-moz-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error:-ms-input-placeholder,
    textarea.input--error:-ms-input-placeholder,
    select.input--error:-ms-input-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error::-ms-input-placeholder,
    textarea.input--error::-ms-input-placeholder,
    select.input--error::-ms-input-placeholder {
      color: white;
      opacity: 0.6;
      opacity: 1; }

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

input,
textarea {
  padding: 13px 15px; }

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

select {
  padding-top: 13px;
  padding-left: 15px;
  padding-bottom: 13px; }

.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }
.form-vertical input[type="submit"],
.form-vertical .btn,
.form-vertical .btn--secondary {
  display: inline-block; }

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

textarea {
  min-height: 100px; }

/*================ Form feedback messages ================*/
.note,
.form-success,
.errors {
  padding: 13px;
  margin: 0 0 10px; }

.note {
  border: 1px solid white; }

.form-success {
  background-color: #59ac6c;
  color: white; }

.errors {
  background-color: #ec523e;
  color: white; }

.errors ul {
  list-style: none;
  padding: 0;
  margin: 0; }

/*============================================================================
  Input groups
  - Align a text input beside a submit button without
    any space between them. The button will size it's parent
    based on the 1% width below while maintaining its
    padding and styles.
==============================================================================*/
.input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 20px; }

.input-group__field,
.input-group__btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group__field,
.input-group__btn .btn,
.input-group__btn .btn--secondary {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0; }

.input-group__field {
  width: 100%; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .icon-arrow-right {
    width: 14px;
    height: 17px; }

/*================ Theme links and buttons ================*/
.btn, .btn--secondary,
.rte .btn--secondary,
.btn--secondary {
  font-size: 0.86667em;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 45px;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }

.btn--narrow {
  padding-left: 15px;
  padding-right: 15px; }

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

/*================ Default link styles ================*/
a,
.link-accent-color {
  color: #d8232f;
  text-decoration: none;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  a:hover, a:focus,
  .link-accent-color:hover,
  .link-accent-color:focus {
    color: #961821; }

.text-link {
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }

.link-body-color {
  color: #a12029;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  .link-body-color:hover, .link-body-color:focus {
    color: #d8232f; }

/*================ Return link ================*/
.return-link {
  display: block;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.33333em; }
  .return-link .icon {
    fill: currentColor; }

.placeholder-svg {
  fill: #bbbbbb;
  background-color: white;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(123, 123, 123, 0.2); }

.placeholder-noblocks {
  padding: 40px;
  text-align: center; }

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .placeholder-background .placeholder-svg {
    border: 0; }

.featured-card__image .placeholder-svg {
  width: auto; }

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

/*================ TEMPLATES ================*/
/*============= Templates | Password page =============*/
.template-password {
  height: 100vh;
  background-color: #262626;
  color: white; }
  .ie9 .template-password {
    height: auto;
    padding: 80px 0; }

.password-page {
  display: table;
  height: 100%;
  width: 100%; }
  .password-page a {
    color: white; }
  .password-page h1, .password-page .h1, .password-page .h1--mini,
  .password-page h2,
  .password-page .h2,
  .password-page h3,
  .password-page .h3,
  .password-page h4,
  .password-page .h4,
  .password-page h5,
  .password-page .h5,
  .password-page h6,
  .password-page .h6 {
    color: white; }
  .password-page label {
    color: white; }

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

.password-page__content,
.password-modal__content {
  max-width: 450px;
  margin: 0 auto; }

.password-page__content {
  padding: 20px 0; }

.password-logo {
  margin-top: 10px;
  margin-bottom: 20px; }

.password-logo__image {
  max-width: 100%; }

.password-page__title {
  font-size: 3.33333em;
  line-height: 1;
  margin-bottom: 20px; }

.password-page__message {
  font-size: 1.2em;
  margin-bottom: 40px; }

.password-signup-form {
  margin-bottom: 80px; }

.password-social-sharing {
  margin-bottom: 80px; }

/*================ Login link ================*/
.password-login-link {
  display: block;
  padding: 20px;
  text-align: center; }
  @media only screen and (min-width: 769px) {
    .password-login-link {
      position: absolute;
      top: 0;
      right: 0; } }
  .password-login-link .icon {
    width: 12px;
    height: 1em;
    margin-right: 6.66667px;
    fill: currentColor; }

/*================ Login modal ================*/
.password-login-form {
  margin-bottom: 40px; }
  .password-login-form .input-group {
    border: 1px solid #ddd; }

/*================ Password svg icons ================*/
.icon-shopify-logo {
  width: 77.14286px;
  height: 22.5px;
  margin-left: 6.66667px;
  fill: currentColor; }

/*============= Templates | Gift card page =============*/
.template-giftcard {
  background-color: #262626; }

.giftcard__header {
  margin: 80px auto 40px; }

.giftcard__content {
  background-color: white;
  max-width: 540px;
  margin: 0 auto 40px;
  padding: 20px; }

.giftcard__shop-url {
  display: none; }

/*================ Giftcard image, amount, and code ================*/
.giftcard__wrap {
  position: relative; }
  .giftcard__wrap:before, .giftcard__wrap:after {
    content: '';
    display: block;
    position: absolute;
    background-color: white;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1); }
  .giftcard__wrap:before {
    top: -2px;
    left: -2px;
    border-radius: 12px 0 100%;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); }
  .giftcard__wrap:after {
    bottom: -2px;
    right: -2px;
    border-radius: 100% 0 12px;
    box-shadow: -2px -2px 1px rgba(0, 0, 0, 0.05); }

.giftcard__image {
  display: block;
  border-radius: 12px;
  overflow: hidden; }

.giftcard__amount-wrapper {
  position: absolute;
  top: 6.66667px;
  right: 10px; }

.giftcard__amount,
.giftcard__amount-remaining {
  color: white; }

.giftcard__amount {
  font-size: 1.86667em;
  margin-bottom: 0;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1); }
  @media only screen and (min-width: 769px) {
    .giftcard__amount {
      font-size: 2.66667em; } }

.giftcard__code {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px; }

.giftcard__code-bubble {
  position: relative;
  display: inline-block;
  background-color: white;
  color: #7b7b7b;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 4px; }
  @media only screen and (min-width: 769px) {
    .giftcard__code-bubble {
      font-size: 1.33333em; } }
  .giftcard__code-bubble:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border: 1px dashed #7b7b7b;
    border-radius: 4px;
    opacity: 0.3; }

/*================ Print styles ================*/
@media print {
  .giftcard__shop-url {
    display: block; }

  .giftcard__wrap:before, .giftcard__wrap:after {
    display: none; }

  .giftcard__amount-wrapper {
    background-color: white;
    border-radius: 4px;
    padding: 0 6.66667px; } }
/*================ VENDOR ================*/
/*============================================================================
  Slick Slider 1.5.8

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually
  - All `outline: none;` have been removed for any elements in slideshow
    (buttons, arrows, etc) to preserve a11y
==============================================================================*/
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .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;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [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; }

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/ajax-loader.gif?v=4135686330247201572) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px\9;
  /*lte IE 8*/
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick-icons, sans-serif";
  font-size: 20px;
  line-height: 1;
  color: black;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -40px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -15px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -40px; }
  [dir="rtl"] .slick-next {
    left: -15px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

/* Dots */
@media only screen and (min-width: 769px) {
  .slick-slider {
    margin-bottom: 30px; } }

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover:before, .slick-dots li button:focus:before {
        opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick-icons, sans-serif";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: white;
      opacity: 0.75; }

/*================ MODULES ================*/
/*================ Site Header ================*/
.site-header {
  background-color: #262626;
  z-index: 999;
  /*   height:80px; */ }
  @media only screen and (min-width: 769px) {
    .site-header {
      /*     height:107px; */ } }
  @media only screen and (max-width: 768px) {
    .site-header {
      margin-top: 0px; } }

/*.site-header__upper {
  padding-top: $gutter-site / 2;
  padding-bottom: $gutter-site / 2;

  @include media-query($medium-up) {
    padding-top: $gutter-site;
    padding-bottom: $gutter-site;
  }
}*/
.site-header__logo {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  max-width: 100%; }
  .site-header__logo a {
    display: block;
    color: white; }
    @media only screen and (min-width: 769px) {
      .site-header__logo a {
        display: block;
        float: left; } }

.site-header__shop-name--small {
  font-size: 20px; }

.template-giftcard .site-header__logo-link {
  display: inline-block;
  float: none; }

.announcement-bar {
  text-align: center;
  position: relative;
  z-index: 9999; }
  @media only screen and (min-width: 769px) {
    .announcement-bar {
      display: none; } }

.announcement-bar:hover {
  opacity: 0.8; }

.announcement-bar__message {
  display: block;
  font-size: 0.8em;
  padding: 10px 5px; }
  .announcement-bar__message span {
    color: #a11b23;
    font-weight: 600; }
  @media only screen and (min-width: 769px) {
    .announcement-bar__message {
      padding: 10px;
      font-size: 0.93333em; } }

/*================ Menu toggle, Cart, and Search icons ================*/
.site-header__link {
  display: inline-block;
  color: white;
  padding: 8px;
  line-height: 1; }
  @media (min-width: 769px) and (max-width: 1100px) {
    .site-header__link {
      padding: 8px 0; } }
  .site-header__link .icon {
    width: 22px;
    height: 22px;
    fill: currentColor; }
  .site-header__link .icon-cart {
    position: relative;
    top: -1px; }
  .site-header__link:hover, .site-header__link:focus {
    color: #d8232f; }

.site-header__menu-toggle--close {
  display: none; }

.site-header__link.js-drawer-open .site-header__menu-toggle--open {
  display: none; }
.site-header__link.js-drawer-open .site-header__menu-toggle--close {
  display: block; }

/*================ Cart icon ================*/
.site-header__cart {
  position: relative; }

.header__cart021 img {
  width: 23px;
  position: relative;
  top: 7px; }

.site-header__cart-indicator {
  /*   position: absolute;
    bottom: $gutter-site; 
    right: 0;
    background-color: $color-accent;
    height: 15px;
    width: 15px;
    border-radius: 15px;
    font-size:12px;
    line-height:14px;
    text-align: center;
  
    .no-svg & {
      bottom: auto;
      top: -6px;
      right: -10px;
    } */
  color: #999999; }

/* .site-header__cart:hover .site-header__cart-indicator{ color:#fff;} */
/*================ Header search bar ================*/
.site-header__search {
  position: relative;
  display: inline; }

.site-header__search-inner {
  position: absolute;
  right: 0;
  top: -4px;
  bottom: 0;
  display: block;
  width: 0;
  z-index: 10; }

.search-header__search-inner--active {
  width: 200px; }
  @media only screen and (min-width: 990px) {
    .search-header__search-inner--active {
      width: 250px; } }

.site-header__search-input {
  position: absolute;
  opacity: 0;
  top: -4px;
  right: 8px;
  width: 0;
  padding: 10px 0;
  font-size: 0.86667em;
  color: white;
  background-color: #3a3a3a;
  transition: opacity 0.15s ease-in, width 0.15s ease-in;
  z-index: 1; }
  .site-header__search-input:focus, .site-header__search-input.site-header__search-input--visible {
    width: 100%;
    opacity: 1;
    padding-left: 10px;
    padding-right: 30px; }
  .site-header__search-input::-webkit-input-placeholder {
    color: white;
    opacity: 0.6; }
  .site-header__search-input:-moz-placeholder {
    color: white;
    opacity: 0.6; }
  .site-header__search-input:-ms-input-placeholder {
    color: white;
    opacity: 0.6; }
  .site-header__search-input::-ms-input-placeholder {
    color: white;
    opacity: 0.6;
    opacity: 1; }

.site-header__search-submit {
  position: relative;
  z-index: 2; }

/*================ Nav Bar ================*/
.nav-bar {
  position: relative;
  /*border-top: 1px solid $color-header-border;
  background-color: $color-header;*/
  z-index: 5;
  height: 80px; }
  .nav-bar:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /*     background-color: $color-header; */
    pointer-events: none;
    z-index: 6; }

/*================ Sticky bar ================*/
.sticky {
  text-align: right;
  overflow: visible;
  z-index: 5; }

.sticky--active {
  position: fixed;
  text-align: center;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }
  .sticky--active .site-nav__link-toggle svg {
    top: 13px; }
  .sticky--active #support .site-nav__link svg {
    top: 13px; }

.sticky--open {
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }

.sticky--active .sticky-hidden {
  display: none; }

.sticky-only {
  position: relative;
  display: none;
  z-index: 7; }
  .sticky--active .sticky-only {
    display: block; }

.sticky--active .nav-bar {
  height: auto; }

.sticky--active .site-nav__link {
  padding: 20px; }

/*================ Site Nav ================*/
.site-nav {
  /*margin-left: -$gutter-site;*/
  white-space: nowrap; }

.site-nav__item {
  position: relative; }

.site-nav__item--no-columns {
  position: relative; }
  .site-nav__item--no-columns .meganav {
    right: auto;
    min-width: 200px; }
  .site-nav__item--no-columns .meganav__list {
    width: 100%; }

@media (min-width: 769px) {
  .toplogo {
    width: 20%; } }
@media (min-width: 901px) and (max-width: 1100px) {
  .toplogo {
    width: 14%; } }
@media (min-width: 769px) and (max-width: 900px) {
  .toplogo {
    width: 7%; } }

@media (min-width: 769px) and (max-width: 1200px) {
  .site-header__logo img {
    max-width: 100px !important;
    top: -45px; } }

#radio-hunter > a, #free-radio > a {
  padding-left: 38px; }

.site-nav__link {
  /*font-size: $font-size-nav;
  font-weight: $font-weight-bold;
  @if $type-nav-spacing {
    letter-spacing: 0.6px;
  }*/
  text-transform: uppercase;
  position: relative;
  color: white;
  padding: 30px 12px;
  z-index: 7;
  /*.site-nav--active &:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: $gutter-site;
    right: $gutter-site;
    height: 3px;
    background-color: $color-accent;
  }*/ }
  .site-nav__link .icon-gift {
    max-width: 18px;
    position: absolute;
    left: 18px; }
    @media (max-width: 1200px) {
      .site-nav__link .icon-gift {
        display: none; } }
  @media (min-width: 1300px) {
    .site-nav__link {
      padding: 30px 22px; } }
  .site-nav__link .icon {
    position: relative;
    top: -1.5px;
    width: 9px;
    height: 9px;
    fill: currentColor; }
  .site-nav__link:hover, .site-nav__link:focus, .site-nav--active .site-nav__link {
    color: white; }
  .site-nav__link:focus {
    /*     background-color: #000; */
    color: #ae3737; }

.site-nav__link:hover {
  background: #000;
  color: #ae3737; }

.site-nav__link--compressed {
  /* margin-left: -$gutter-site;*/ }
  .site-nav__link--compressed .icon {
    width: 22px;
    height: 22px; }

.site-nav__link-menu-label {
  display: none; }
  @media only screen and (min-width: 769px) {
    .site-nav__link-menu-label {
      display: inline-block; } }

.customer-login-links {
  position: relative;
  display: inline-block;
  margin-right: -10px;
  z-index: 7; }

.customer-login-links a {
  display: inline-block;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 10px;
  font-size: 0.86667em; }
  .customer-login-links a:hover, .customer-login-links a:focus {
    color: white; }

/*============================================================================
  Meganav

  - The meganav is used in three places:
    1. Site nav as a dropdown
    2. Drawer nav as a dropdown
    3. Homepage in accordion links
==============================================================================*/
.meganav {
  display: block;
  visibility: hidden;
  /*   right: 0; */ }
  .meganav.meganav--active {
    visibility: visible;
    z-index: 6; }

/*================ Site header animation ================*/
.site-header .meganav {
  opacity: 0;
  height: 0;
  -ms-transform: translate3d(0, 15%, 0);
  -webkit-transform: translate3d(0, 15%, 0);
  transform: translate3d(0, 15%, 0);
  transition: none; }
  .site-header .meganav.meganav--active {
    opacity: 1;
    height: auto;
    z-index: 99;
    -ms-transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .site-header .meganav.meganav--no-animation {
    transition: none; }

/*================ Drawer animation ================*/
.drawer__nav .meganav {
  display: none;
  height: auto !important; }

/*================ Meganav elements ================*/
.meganav__nav {
  position: relative;
  list-style: none;
  margin: 0;
  width: 100%; }

.meganav__nav--collection {
  margin: 0 auto;
  display: inline-block;
  width: auto; }

.meganav__nav--third-level {
  padding-left: 20px; }

.meganav__list {
  /* padding: $gutter-site/2 0;*/
  /*   min-width: 200px; */ }

.meganav__list--third-level {
  background-color: white; }

.meganav__title {
  font-size: 1.6em;
  margin-bottom: 0;
  white-space: normal;
  display: none; }

.meganav__link {
  display: block;
  color: #000;
  text-align: left;
  padding: 6.66667px 13.33333px; }
  .meganav__link:hover, .meganav__link:focus {
    color: #d8232f; }

.js-drawer-open-left .drawer--left .meganav__link {
  color: #666; }

.meganav__link--has-list {
  position: relative;
  font-weight: 600;
  font-size: 17px; }
  .meganav__link--has-list .icon {
    position: relative;
    top: -1.5px;
    width: 9px;
    height: 9px;
    fill: currentColor; }

.meganav__link--active {
  /* color: $color-meganav-active-link;
   font-weight: $font-weight-bold;*/ }

/*================ Meganav product cards ================*/
.meganav__product .product-card {
  border-bottom-width: 0; }
.meganav__product:last-child .product-card {
  border-right-width: 1px; }

/*================ Site nav specific styles ================*/
#SiteNavLinklist-others .site-nav__dropdown-container, #SiteNavLinklist-accessories .site-nav__dropdown-container {
  margin-left: 0px;
  margin-right: 0px; }

.site-nav__dropdown-container {
  /* padding: 0 $gutter-site;*/
  /*   min-width: 150px; */
  /*   position: relative; */
  /* margin-left:20px;
    margin-right:20px; */ }
  .site-nav__dropdown-container.meganav--active {
    /*     background-color:#000; */ }

.site-nav__dropdown-container.meganav--active > a {
  color: #d8232f; }

.site-nav__dropdown--third-level {
  padding: 0 !important;
  background: transparent;
  box-shadow: 0 0 0 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /*   opacity: 0; */
  /*       visibility: visible; */
  height: auto;
  position: relative;
  /*   top: 100%;
    left: 0; */
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .site-nav__dropdown--third-level.meganav--active {
    visibility: visible;
    opacity: 1; }
  .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level {
    left: 20%;
    width: 20%;
    padding-top: 70px;
    height: 100%;
    overflow: hidden; }
    .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level .meganav__nav {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level .meganav__nav li {
        width: 100%;
        padding: 0 20px; }
    .meganav__nav.page-width .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level {
      margin-left: 5px; }
    .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level .meganav__link--third-level {
      white-space: normal; }
  .meganav__list:nth-child(2) .site-nav__dropdown--third-level {
    left: 40%; }
  .meganav__list:nth-child(3) .site-nav__dropdown--third-level {
    left: 60%; }
  .meganav__list:nth-child(4) .site-nav__dropdown--third-level, .meganav__list:nth-child(5) .site-nav__dropdown--third-level {
    left: 80%; }

.site-nav__dropdown--full-height {
  height: 100%; }

/*================ Drawer meganav styles ================*/
.meganav--drawer {
  background-color: white;
  visibility: visible;
  overflow: hidden;
  visibility: visible; }
  .meganav--drawer .product-card {
    margin-top: 1px; }
  .meganav--drawer .meganav__product {
    margin-left: -4px; }

.drawer__nav-toggle--open {
  display: block; }
  .meganav--active > .drawer__nav-toggle--open {
    display: none; }

.drawer__nav-toggle--close {
  display: none; }
  .meganav--active > .drawer__nav-toggle--close {
    display: block; }

/*================ Fixed width meganav columns (for horizontal scrolling) ================*/
.meganav__scroller {
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .drawer__nav--template-index .meganav__scroller {
    background-color: white;
    border-top: 1px solid white; }
  .meganav__scroller .grid__item {
    float: none;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    white-space: normal; }

.drawer__nav .meganav__scroller--has-list {
  padding-left: 20px; }

/*================ Site footer ================*/
html {
  background-color: #252525; }

.site-footer {
  position: relative;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 30px; }
  @media only screen and (min-width: 769px) {
    .site-footer {
      padding-top: 60px; } }
  .site-footer a {
    color: white;
    color: rgba(255, 255, 255, 0.6); }
    .site-footer a:hover, .site-footer a:focus {
      color: white; }
  .site-footer p {
    margin-bottom: 10px; }
  @media only screen and (max-width: 768px) {
    .site-footer .page-width {
      padding: 0 14px; } }
  .site-footer .card-logo-box {
    margin-top: 8px; }
    .site-footer .card-logo-box li {
      display: inline-block;
      margin-right: 3px; }
      .site-footer .card-logo-box li img {
        max-width: 48px; }

.flex-footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*margin: 0 (-$grid-gutter / 2);*/ }
  .flex-footer .flex__item {
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 0 10px; }
  @media only screen and (min-width: 769px) {
    .flex-footer .flex__item {
      -webkit-flex: 1 1 20%;
      -moz-flex: 1 1 20%;
      -ms-flex: 1 1 20%;
      flex: 1 1 20%; } }

.site-footer__section {
  padding-bottom: 20px; }
  @media only screen and (min-width: 769px) {
    .site-footer__section {
      padding-bottom: 24px; } }

.site-footer__copyright {
  text-align: center;
  padding: 10px 0;
  padding-bottom: 40px; }

/*================ Linklists and page content ================*/
.site-footer__section-title {
  color: white;
  font-size: 1.06667em; }

.site-footer__list {
  list-style: none; }

.site-footer__list-item {
  margin-bottom: 10px; }

/*================ Newsletter field ================*/
.site-footer__newsletter-label {
  display: block;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Arimo", "Helvetica Neue", Helvetica, sans-serif;
  font-size: inherit;
  font-weight: 400;
  text-transform: inherit; }

/*================ Icons ================*/
.site-footer .social-icons .icon,
.site-footer .payment-icons .icon {
  fill: currentColor; }
.site-footer .social-icons .icon {
  margin-right: 10px;
  width: 38px;
  height: 38px; }
.site-footer .social-icons a {
  display: block; }
  .site-footer .social-icons a:hover {
    opacity: 0.7; }
.site-footer .payment-icons {
  padding: 5px 0; }
  .site-footer .payment-icons li {
    padding: 5px 0; }

/*================ Content blocks ================*/
.content-block {
  /*background-color: $color-content;
  padding: $gutter-site * 2;*/
  margin-bottom: 20px;
  clear: both;
  padding: 5px 0;
  border-bottom: 1px solid #ccc; }
  .content-block .grid__item {
    padding-top: 20px; }
  .content-block:last-child {
    margin-bottom: 0; }

.content-block--small {
  padding: 20px; }

.content-block--no-bottom-padding {
  padding-bottom: 0; }

.content-block__item {
  margin-bottom: 20px; }

.content-block__full-image {
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 40px; }
  .content-block__full-image img {
    display: block;
    margin: 0 auto; }
  .content-block__full-image:first-child {
    margin-top: -40px; }

@media (min-width: 1200px) {
  .template-collection .product-card {
    min-height: 440px; } }
@media (min-width: 1000px) and (max-width: 1200px) {
  .template-collection .product-card {
    min-height: 400px; } }

@media (min-width: 1200px) {
  .template-page .product-card {
    min-height: 470px; } }

/*================ Product cards ================*/
.product-card {
  position: relative;
  display: block;
  background-color: white;
  text-align: center;
  /*   padding: $product-image-padding ; */
  border-color: white;
  border-style: solid;
  border-width: 0 0 1px;
  color: #7b7b7b;
  z-index: 1; }
  .grid--no-gutters .product-card {
    border-left-width: 1px; }
  .collection__card--first .product-card {
    border-left-width: 0; }
  .product-card:hover, .product-card:focus {
    color: #7b7b7b; }
  .product-card:focus {
    z-index: 2; }
  @media only screen and (max-width: 768px) {
    .product-card {
      padding: 5px; } }

/*================ Product hover/focus overlay ================*/
.product-card__overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*   background-color: $color-product-card-overlay; */
  transition: all 0.15s ease-in; }
  .product-card:hover .product-card__overlay, .product-card:focus .product-card__overlay {
    visibility: visible;
    opacity: 1; }

.product-card__overlay-btn {
  z-index: 100;
  position: relative;
  background: rgba(216, 35, 47, 0.7);
  top: 40%;
  border-radius: 4px;
  -ms-transform: translateY(-45%);
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  transition: all 0.15s ease-in; }
  @media only screen and (max-width: 768px) {
    .product-card__overlay-btn {
      top: 30%; } }
  .sca-qv-image:hover .product-card__overlay-btn {
    -ms-transform: translateY(-85%);
    -webkit-transform: translateY(-85%);
    transform: translateY(-85%); }
  .no-csstransforms .product-card__overlay-btn {
    top: 35%; }

/*================ Product image and wrapper ================*/
.product-card__image-wrapper {
  /*   height: $product-card-height;
    margin-bottom: $product-image-margin-bottom*1.3; */
  position: relative; }
  .product-card__image-wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    transition: 0.4s; }
  .product-card:hover .product-card__image-wrapper:after {
    background: rgba(0, 0, 0, 0.4); }
  .product-card__image-wrapper img {
    border-radius: 5px; }

.product-card__image {
  /*   position: relative;
    top: 40%;
    @include transform(translateY(-50%));
    @include backface(hidden);
    max-height: 100%;
  
    .no-csstransforms & {
      top: 0;
    } */ }

/*================ Product meta info ================*/
.product-card__info {
  /*   position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color:#dcdcdc; */
  padding: 3px; }
  @media only screen and (min-width: 769px) {
    .product-card__info {
      padding: 10px 12.5px 0px; } }

.product-card__name,
.product-card__availability {
  position: relative;
  z-index: 3; }

.product-card__name {
  /* font-weight: $font-weight-bold;
   color: $color-heading;*/
  margin-bottom: 5px;
  white-space: normal;
  height: 56px;
  overflow: hidden; }

.product-card__availability {
  /*font-size: $font-size-nav;
  font-weight: $font-weight-bold;
  @if $type-nav-spacing {
    letter-spacing: 0.6px;
  }*/
  text-transform: uppercase;
  font-size: 0.93333em;
  color: #d8232f; }

.contact-text {
  color: #a11b23; }

.soldout-border {
  border-radius: 4px;
  position: relative;
  color: #a11b23;
  border: 1px solid #a11b23;
  background: transparent;
  padding: 10px;
  width: 80%;
  margin-left: 10%;
  margin-top: 10px; }

.product-card__brand,
.product-card__price {
  font-size: 0.93333em; }

.product-card__regular-price {
  opacity: 1;
  color: #7b7b7b;
  font-size: 15px; }

.template-product .page-container {
  background-color: white; }

.product-single {
  margin-bottom: 30px; }
  @media only screen and (min-width: 769px) {
    .product-single {
      margin-bottom: 30px; } }

@media only screen and (max-width: 768px) {
  .product-single__info-wrapper {
    padding: 0 10px; } }
/*================ Product meta ================*/
.product-single__meta-list {
  line-height: 1;
  margin-top: 5px; }
  .product-single__meta-list li {
    padding-right: 10px; }
    .product-single__meta-list li:last-child {
      padding-right: 0; }

.product-single__vendor {
  margin-bottom: 5px; }

.product-single__title {
  margin-bottom: 10px;
  font-size: 20px; }
  @media only screen and (max-width: 768px) {
    .product-single__title {
      font-size: 1em; } }

.product-single__price {
  font-size: 1.33333em; }

.product-single__price--compare {
  color: #aeaeae; }

.product-single__stock {
  display: inline-block;
  padding: 20px 0;
  font-size: 0.86667em;
  text-transform: uppercase; }

@media only screen and (max-width: 768px) {
  .cbb-frequently-bought-title, .snize-recommendation .snize-recommendation-title {
    font-size: 1.1em !important;
    font-weight: bold !important; } }

/*================ Product form ================*/
.product-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  margin: -5px; }
  .product-form .btn, .product-form .btn--secondary {
    padding-top: 12px;
    padding-bottom: 12px; }
  .product-form .btn, .product-form .btn--secondary,
  .product-form select,
  .product-form input[type="text"] {
    min-height: 48px; }

.no-js .product-form__variants {
  display: block;
  margin-bottom: 10px; }

.product-form__item {
  -webkit-flex: 1 0 160px;
  -moz-flex: 1 0 160px;
  -ms-flex: 1 0 160px;
  flex: 1 0 160px;
  margin-bottom: 10px;
  padding: 0 5px; }
  .product-form__item label {
    display: block; }

.product-form__item--quantity {
  -webkit-flex: 0 0 100px;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px; }

.product-form__item--submit {
  -ms-flex-preferred-size: 200px;
  -webkit-flex-basis: 200px;
  -moz-flex-basis: 200px;
  flex-basis: 200px; }

.product-form__input {
  display: block;
  width: 100%; }

.btn--sold-out[disabled] {
  background-color: #a11b23;
  color: white; }

.product-form__cart-submit {
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal;
  background: #a11b23; }

/*================ Product image and thumbnail layout ================*/
.photos__item--main {
  text-align: center;
  min-width: 0; }

.photos__item--thumbs {
  max-width: 100%; }

.product-single__photo {
  margin-bottom: 0; }

/*================ Product thumbnail layout ================*/
.product-single__thumbnails.slick-vertical .slick-slide {
  border: 0;
  padding: 2px 0; }

.product-single__thumbnails.slick-initialized {
  overflow: inherit; }

.product-single__thumbnails {
  margin: 0 40px 20px; }
  @media only screen and (max-width: 768px) {
    .product-single__thumbnails {
      margin: 0 40px 0; } }
  .product-single__thumbnails.slick-initialized {
    display: block; }
  @media only screen and (min-width: 769px) {
    .product-single__thumbnails {
      margin: 0; } }
  .product-single__thumbnails .product-single__thumbnail-item:not(:first-child) {
    display: none; }
  .product-single__thumbnails .product-single__thumbnail-item.slick-slide {
    display: block; }
  @media only screen and (max-width: 768px) {
    .product-single__thumbnails .product-single__thumbnail-item {
      width: 69px; } }

.product-single__thumbnails--static {
  display: block;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .product-single__thumbnails--static .product-single__thumbnail-item {
      display: inline-block;
      width: 45%;
      max-width: 150px; } }

.product-single__thumbnail {
  position: relative;
  display: block;
  padding: 10px;
  max-width: 200px;
  margin: 0 auto; }
  .product-single__thumbnail img {
    position: relative;
    display: block;
    max-height: 110px;
    margin: 0 auto; }
    .no-csstransforms .product-single__thumbnail img {
      top: 0; }
  .is-active .product-single__thumbnail:after, .slick-current .product-single__thumbnail:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #a11b23; }

/*================ Slider arrows ================*/
.product-single__thumbnails.slick-initialized .slick-prev,
.product-single__thumbnails.slick-initialized .slick-next {
  opacity: 0.2;
  transition: opacity 0.15s ease-in;
  width: 30px;
  height: 30px; }
  .product-single__thumbnails.slick-initialized .slick-prev:before,
  .product-single__thumbnails.slick-initialized .slick-next:before {
    display: none; }
  .product-single__thumbnails.slick-initialized .slick-prev:hover, .product-single__thumbnails.slick-initialized .slick-prev:focus,
  .product-single__thumbnails.slick-initialized .slick-next:hover,
  .product-single__thumbnails.slick-initialized .slick-next:focus {
    opacity: 0.7; }
  .product-single__thumbnails.slick-initialized .slick-prev .icon,
  .product-single__thumbnails.slick-initialized .slick-next .icon {
    fill: #7b7b7b;
    width: 30px;
    height: 30px; }
.product-single__thumbnails.slick-initialized .slick-disabled {
  opacity: 0;
  visibility: hidden; }

.product-single__thumbnails.slick-vertical .slick-prev,
.product-single__thumbnails.slick-vertical .slick-next {
  top: 50%;
  margin-top: 0;
  height: auto; }
.product-single__thumbnails.slick-vertical .slick-prev {
  left: 0; }
.product-single__thumbnails.slick-vertical .slick-next {
  right: 0; }

/*================ Product image modal ================*/
.product-modal__image {
  display: block;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  max-height: 95%;
  max-width: 95%;
  margin: 0 auto; }
  .no-csstransforms .product-modal__image {
    top: 2.5%; }

.js-modal-open-product-modal {
  cursor: zoom-in; }

.product-tag {
  /*font-size: $font-size-nav;
  font-weight: $font-weight-bold;
  @if $type-nav-spacing {
    letter-spacing: 0.6px;
  }*/
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.8em;
  color: white; }

.product-tag--absolute {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

/*============================================================================
  Pagination
  - Markup build by liquid tag,
    so nesting and element selectors are necessary
==============================================================================*/
.pagination {
  text-align: center;
  margin: 40px 40px 0; }
  .pagination a {
    color: #7b7b7b; }
    .pagination a:hover, .pagination a:focus {
      color: #d8232f; }
  .pagination .current {
    font-weight: 700;
    color: #222222; }
  .pagination a,
  .pagination .current {
    display: inline-block;
    padding: 5px 10px; }

/*================ Article comments ================*/
.comment {
  margin-bottom: 20px; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment + .comment {
    padding-top: 20px;
    border-top: 1px solid white; }

/*================ Indented article/page images ================*/
.rte--indented-images .rte__image-indent {
  position: relative;
  margin-left: -20px;
  margin-right: -20px; }
  @media only screen and (min-width: 769px) {
    .rte--indented-images .rte__image-indent {
      margin-left: -40px;
      margin-right: -40px; } }

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

@media only screen and (max-width: 768px) {
  .section-header__item + .section-header__item {
    margin-top: 20px; } }
.section-header__title,
.section-header__subtext {
  margin-bottom: 0; }

@media only screen and (max-width: 768px) {
  .section-header__subtext {
    padding: 0 15px; }
    .section-header__subtext p {
      padding-left: 0 !important; } }

/*============================================================================
  Hero slider

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
.hero-wrapper {
  position: relative;
  /*   margin-top: -($gutter-site * 1.5);
  
    @include media-query($medium-up) {
      margin-top: -($gutter-site * 3);
    } */ }

.hero {
 /* border-radius: 5px;
background-color: adaptive-color($color-header, 10%); // default background color
height: 330px;
max-height: 50vh;*/
  overflow: hidden;
  /* @include media-query($medium-up) {
     height: 600px;
   }*/ }
  .hero .hero__slide,
  .hero .slick-list,
  .hero .slick-track {
    height: 100%; }
  .ie9 .hero {
    margin-bottom: 60px; }

.hero__pause:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #d8232f;
  padding: 10px;
  z-index: 10000;
  transition: none; }
  .hero__pause:focus .icon {
    fill: currentColor; }

.hero__pause-stop {
  display: block; }
  .is-paused .hero__pause-stop {
    display: none; }

.hero__pause-play {
  display: none; }
  .is-paused .hero__pause-play {
    display: block; }

/*================ Dots and prev/next pagination ================*/
.hero .slick-dots {
  margin: 0;
  bottom: 10px; }
  .hero .slick-dots li {
    margin: 0;
    vertical-align: middle; }
    .hero .slick-dots li button {
      position: relative; }
    .hero .slick-dots li button:before {
      text-indent: -9999px;
      background-color: white;
      border-radius: 100%;
      border: 2px solid transparent;
      width: 10px;
      height: 10px;
      margin: 5px 0 0 5px;
      opacity: 1;
      transition: all 0.2s; }
    .hero .slick-dots li.slick-active button:before {
      background-color: transparent;
      border-color: white;
      opacity: 1;
      width: 12px;
      height: 12px;
      margin: 4px 0 0 4px; }
    .hero .slick-dots li button:active:before {
      opacity: 0.5; }
.hero .slick-prev,
.hero .slick-next {
  top: 0;
  height: 100%;
  margin-top: 0;
  width: 40px; }
.hero .slick-prev {
  left: 0; }
.hero .slick-next {
  right: 0; }

/*================ General slide styles ================*/
.hero__slide {
  position: relative; }

.hero__image {
  border-radius: 5px;
  position: relative;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover"; }
  .slick-initialized .hero__image, .no-js .hero__image {
    opacity: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center; }
  .hero__image img {
    display: block;
    width: 100%; }

.ie9 .hero__slide {
  z-index: 1 !important; }
.ie9 .slick-dots {
  z-index: 2; }

/*================ Hero text ================*/
.hero__text-wrap {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 10px; }
  @media only screen and (min-width: 769px) {
    .hero__text-wrap {
      bottom: 120px; } }

.hero__text-content {
  opacity: 0;
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition-delay: 0.3s; }
  .slick-active .hero__text-content {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }

.hero__title-wrap {
  margin-bottom: 8px; }

.hero__title {
  display: inline;
  font-size: 2.4em;
  line-height: 1;
  margin: 0;
  padding: 0 10px;
  background-color: #d8232f;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 769px) {
    .hero__title {
      font-size: 4em; } }

.hero__title--has-link {
  transition: background-color 0.15s ease-in; }
  .hero__title--has-link:hover, .hero__title--has-link:focus {
    background-color: #ac1c25; }

.hero__link {
  color: inherit; }
  .hero__link:hover, .hero__link:focus {
    color: inherit; }

/*================ Subtext and custom arrows share style ================*/
.hero__subtitle,
.hero__arrow {
  display: inline;
  line-height: 2;
  padding: 10px;
  background-color: #262626;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 769px) {
    .hero__subtitle,
    .hero__arrow {
      font-size: 1.33333em; } }

.hero__subtitle.hero__link,
.hero__arrow {
  transition: background-color 0.15s ease-in; }
  .hero__subtitle.hero__link:hover, .hero__subtitle.hero__link:focus,
  .hero__arrow:hover,
  .hero__arrow:focus {
    color: white;
    background-color: #3a3a3a; }

/*================ Custom navigation arrows ================*/
.hero__arrows {
  display: inline;
  color: white;
  margin-right: 1px; }
  .no-js .hero__arrows {
    display: none; }

.hero__arrow {
  cursor: pointer;
  padding-right: 15px;
  padding-left: 15px;
  border: 1px solid #7d7d7d; }
  .hero__arrow .icon {
    position: relative;
    top: -3px;
    left: 3px;
    width: 11px;
    height: 11px;
    fill: currentColor; }

.hero__arrow--next {
  border-left: 1px solid #333333; }

/*================ Drawer Skeleton Styles ================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.page-container {
  overflow: hidden; }

.js-drawer-open .page-container:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10; }

.js-drawer-open {
  overflow: hidden; }

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  max-width: 95%;
  z-index: 1;
  background-color: white;
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .drawer {
      z-index: 3; } }

.drawer--left {
  width: 300px;
  left: -300px;
  z-index: 1000000; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
    overflow-y: auto; }
    .no-csstransforms .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 300px;
  right: -300px; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .no-csstransforms .js-drawer-open-right .drawer--right {
      right: 0; }

.is-moved-by-drawer {
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
    .no-csstransforms .js-drawer-open-left .is-moved-by-drawer {
      left: 300px; }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .no-csstransforms .js-drawer-open-right .is-moved-by-drawer {
      left: -300px; }

/*================ Drawer theme styles ================*/
.page-element {
  position: relative; }
  .page-element.is-transitioning {
    z-index: 2; }

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

.is-moved-by-drawer {
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open .is-moved-by-drawer {
    transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px; }
  .js-drawer-open-right .is-moved-by-drawer {
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 -5px; }

.drawer--left {
  left: -75px; }
  .js-drawer-open-left .drawer--left {
    -ms-transform: translateX(75px);
    -webkit-transform: translateX(75px);
    transform: translateX(75px); }

.drawer {
  overflow: visible;
  color: #3b3b3b; }

.drawer__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden; }

/*================ Drawer search field ================*/
.drawer__search {
  position: relative;
  background-color: white;
  padding: 10px;
  border: 1px solid #eee; }

.drawer__search-input {
  display: block;
  width: 100%;
  padding-left: 15px;
  background-color: #f1f1f1; }
  .drawer__search-input[type="search"] {
    padding-right: 60px; }
  .drawer__search-input::-webkit-search-decoration {
    display: none; }

.drawer__search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 20px; }
  .drawer__search-submit .icon {
    width: 25px;
    height: 25px;
    fill: #3b3b3b; }

/*================ Drawer linklist ================*/
.drawer__nav {
  list-style: none; }

.drawer__nav--template-index {
  position: relative;
  margin-bottom: -10px;
  background-color: white; }

.drawer__nav--margin {
  margin-bottom: 30px; }

.drawer__nav-item {
  display: block; }
  @media only screen and (max-width: 768px) {
    .drawer__nav-item {
      border-bottom: 1px solid white; } }

.drawer__nav-link {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  padding: 13.33333px 20px;
  font-size: 0.86667em;
  color: #3b3b3b; }
  .drawer__nav-link:hover, .drawer__nav-link:focus {
    color: #3b3b3b;
    background-color: #fafafa; }

/*================ Sublist expand/collapse trigger ================*/
.drawer__nav-has-sublist {
  display: table;
  width: 100%; }
  .drawer__nav-has-sublist .drawer__nav-link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.drawer__nav-toggle {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.drawer__nav-toggle-btn {
  /*   position: absolute; */
  outline: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  color: #3b3b3b;
  line-height: 1; }
  .drawer__nav-toggle-btn .icon {
    width: 18px;
    height: 18px;
    fill: currentColor; }
  .drawer__nav-toggle-btn:hover, .drawer__nav-toggle-btn:focus {
    opacity: 0.6; }

.drawer__nav-toggle-btn--small {
  color: #7b7b7b;
  line-height: 0; }
  .drawer__nav-toggle-btn--small .icon {
    width: 12px;
    height: 12px; }

.drawer__nav-toggle--open {
  display: block; }

.drawer__nav-toggle--close {
  display: none; }

/*================ Collection sorting select menus ================*/
@media only screen and (min-width: 769px) {
  #SortTags {
    max-width: 180px; } }

.collection-sort {
  display: inline-block;
  text-align: left; }
  .collection-sort + .collection-sort {
    margin-left: 20px; }
  @media only screen and (max-width: 768px) {
    .collection-sort {
      width: 50%;
      float: left;
      padding: 0 10px; }
      .collection-sort + .collection-sort {
        margin: 0; } }

.collection-sort__label {
  display: block;
  text-align: center; }
  @media only screen and (min-width: 769px) {
    .collection-sort__label {
      text-align: left;
      padding-left: 6.66667px;
      margin-bottom: 0;
      display: inline-block; } }

.collection-sort__input {
  font-weight: 700;
  padding-top: 6.66667px;
  padding-bottom: 6.66667px;
  padding-left: 6.66667px; }
  @media only screen and (max-width: 768px) {
    .collection-sort__input {
      width: 100%;
      border: 1px solid #e6e6e6; } }

/*================ Collection card and grid ================*/
.collection {
  margin-bottom: 30px; }
  .collection:last-child {
    margin-bottom: 0; }

/*================ Collection card ================*/
.collection-card {
  position: relative;
  box-sizing: content-box;
  display: block;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 12.5px;
  height: 360px;
  z-index: 1; }
  .collection-card:focus {
    z-index: 2; }
  @media only screen and (min-width: 769px) {
    .collection-card {
      padding: 25px; } }
  .collection-card:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.4;
    z-index: 1;
    transition: opacity 0.2s ease; }
  .collection-card:hover:after, .collection-card:focus:after {
    opacity: 0.6; }

.collection-card__meta {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  margin-right: 10px;
  z-index: 2; }
  @media only screen and (min-width: 769px) {
    .collection-card__meta {
      bottom: 40px; } }

.collection-card__title {
  display: inline;
  background-color: #d8232f;
  color: white;
  margin-bottom: 10px;
  padding: 2px 10px;
  letter-spacing: 0;
  font-size: 1.73333em;
  line-height: 1.2;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 990px) {
    .collection-card__title {
      font-size: 2.13333em; } }

.collection-card__subtext {
  /*font-size: $font-size-nav;
  font-weight: $font-weight-bold;
  @if $type-nav-spacing {
    letter-spacing: 0.6px;
  }*/
  text-transform: uppercase;
  margin: 10px 0 0 10px;
  font-size: 0.86667em;
  color: white; }

/*================ Social sharing icons ================*/
.social-sharing .icon {
  width: 24px;
  height: 24px;
  fill: currentColor; }

@media only screen and (max-width: 768px) {
  .social-sharing__title {
    display: inline-block;
    margin-bottom: 10px; } }
.social-sharing__link {
  color: #7b7b7b;
  opacity: 0.7; }
  .social-sharing__link:hover, .social-sharing__link:focus {
    opacity: 1;
    color: #d8232f; }
  .social-sharing__link + .social-sharing__link {
    margin-left: 10px; }

@media only screen and (max-width: 768px) {
  .social-sharing-bloglist .grid__item:first-child {
    padding-left: 0; } }

/*================ Cart ================*/
.cart-table {
  background-color: white;
  border: 0;
  margin-bottom: 20px; }
  .cart-table td,
  .cart-table th {
    border: 0; }
    @media only screen and (min-width: 769px) {
      .cart-table td,
      .cart-table th {
        padding: 20px; } }

/*================ Cart cells ================*/
@media only screen and (min-width: 769px) {
  .cart__cell--image {
    width: 180px; }

  .cart__cell--quantity {
    width: 130px; }

  .cart__cell--total {
    width: 200px;
    text-align: right; } }
/*================ Cart cell responsive labels ================*/
@media only screen and (max-width: 768px) {
  .cart-table th,
  .cart-table td {
    text-align: center; }
  .cart-table td:before {
    display: none; } }
/*================ Cart items ================*/
.cart__image {
  display: inline-block;
  max-width: 120px;
  margin: 10px auto; }
  @media only screen and (max-width: 768px) {
    .cart__image img {
      max-height: 120px; } }

.cart__quantity-label {
  display: block;
  text-align: center; }

.cart__cell--quantity .js-qty {
  max-width: 120px;
  margin: 0 auto; }

.cart__quantity {
  display: none; }
  .no-js .cart__quantity {
    display: block; }

.cart__item-total {
  font-size: 1.2em; }
  @media only screen and (min-width: 769px) {
    .cart__item-total {
      padding-right: 20px; } }

.cart__subtotal {
  margin: 30px 0 0; }
  @media only screen and (min-width: 769px) {
    .cart__subtotal {
      margin-top: 20px; } }

.cart__taxes {
  margin-bottom: 40px; }

.cart__note {
  width: 100%;
  background-color: white;
  border: 1px solid #e6e6e6; }
  @media only screen and (max-width: 768px) {
    .cart__note {
      min-height: 50px; } }

.cart__buttons .btn, .cart__buttons .btn--secondary {
  margin-bottom: 10px; }
  @media only screen and (max-width: 768px) {
    .cart__buttons .btn, .cart__buttons .btn--secondary {
      display: block;
      width: 100%; } }

.update-cart {
  display: none; }
  .no-js .update-cart {
    display: inline-block; }

/*================ Cart discounts ================*/
.cart-item__original-price,
.cart-item__discount {
  font-size: 80% !important;
  margin-bottom: 0 !important; }

/*================ Empty cart ================*/
.cart--no-cookies .cart--empty-message {
  display: none; }

.cart--no-cookies .cart--continue-message {
  display: none; }

.cart--cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cart--cookie-message {
    display: block; }

/*================ Quantity selector ================*/
.js-qty {
  position: relative; }

.js-qty--is-loading {
  opacity: 0.6; }

.js-qty__input {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center; }

.js-qty__adjust {
  position: absolute;
  top: 0;
  bottom: 0;
  text-align: center;
  width: 30px;
  padding: 0;
  background: none;
  border-style: solid;
  border-color: #e7e7e7;
  border-width: 0;
  transition: background-color 0.03s ease-in; }
  .js-qty__adjust:hover, .js-qty__adjust:focus {
    background-color: #e7e7e7;
    transition-duration: 0.08s; }
  .js-qty__adjust .icon {
    width: 8px;
    height: 8px;
    fill: currentColor; }

.js-qty__adjust--minus {
  left: 0;
  border-right-width: 1px; }

.js-qty__adjust--plus {
  right: 0;
  border-left-width: 1px; }

/*================ Notification bar ================*/
.notification {
  visibility: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: top 0.25s, visibility 0.25s, opacity 0.15s;
  transition-timing-function: cubic-bezier(0.33, 0.59, 0.14, 1);
  z-index: 4; }

.notification--promo {
  position: static;
  display: none; }

.notification--active {
  display: block;
  visibility: visible;
  top: 100%;
  opacity: 1; }

.notification__link {
  display: block;
  padding: 10px 0; }
  .notification__link:hover u {
    text-decoration: none; }

.notification__inner {
  position: relative;
  overflow: visible;
  padding: 10px 0; }

.notification__inner--has-link {
  padding: 0; }

.notification__message {
  display: block;
  padding: 0 60px;
  text-align: center;
  font-weight: 700; }
  .notification__message span {
    text-decoration: underline;
    white-space: nowrap; }

.notification--success,
.notification--promo {
  background-color: #d8232f;
  color: white; }
  .notification--success a,
  .notification--promo a {
    color: white; }

.notification--error {
  background-color: #ec523e;
  color: white; }
  .notification--error a {
    color: white; }

.notification__close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  padding: 0 10px;
  color: inherit; }
  .notification__close .icon {
    fill: currentColor; }

/*================ Modals ================*/
.modal {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  color: #7b7b7b;
  z-index: 15;
  transition: all ease-in-out 0.2s; }
  .modal.modal--is-active {
    display: block;
    opacity: 1;
    z-index: 99999; }

body.modal--is-active {
  overflow: hidden; }

.modal__inner {
  height: 100%;
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all ease-in-out 0.2s; }
  .modal--is-active .modal__inner {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }

.modal__centered {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  .modal__centered .no-csstransforms {
    top: 20%; }

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px; }
  .modal__close .icon {
    font-size: 1.33333em; }

/*================ Featured collection card ================*/
.featured-card {
  display: block;
  position: relative;
  height: 100%;
  text-align: center;
  border-color: white;
  border-style: solid;
  border-width: 0 0 1px 1px;
  background-color: white;
  padding: 0 40px; }
  .featured-card:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: opacity 0.15s ease-in;
    z-index: 1; }
  .featured-card:hover:before {
    opacity: 1; }
  @media only screen and (min-width: 769px) {
    .medium-up--one-quarter .featured-card {
      height: 470px; } }
  @media only screen and (min-width: 769px) {
    .medium-up--one-third .featured-card {
      height: 530px; } }
  @media only screen and (min-width: 769px) {
    .medium-up--one-half .featured-card {
      height: 650px; } }
  .no-js .featured-card {
    height: 625px; }

@media only screen and (max-width: 768px) {
  .featured-card--contain {
    height: 100% !important; } }

.featured-card--cover {
  height: 380px !important;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-width: 0; }

.featured-card__image-container {
  position: relative;
  width: 100%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    .featured-card--contain .featured-card__image-container {
      height: 100% !important;
      margin-bottom: 40px; } }

.featured-card__blank-image-container {
  position: relative;
  width: 100%;
  margin: 0 auto 40px; }
  .featured-card__blank-image-container .featured-card__image {
    position: relative; }
    @media only screen and (max-width: 768px) {
      .featured-card__blank-image-container .featured-card__image {
        max-width: 290px; } }

.featured-card__image {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0; }
  .no-js .featured-card__image {
    opacity: 1; }

.featured-card__header {
  padding: 30px 5% 10px;
  z-index: 1; }
  .featured-card--cover .featured-card__header {
    position: relative;
    display: inline-block; }
  @media only screen and (max-width: 768px) {
    .featured-card--contain .featured-card__header {
      height: 100% !important; } }

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

.featured-card__title {
  font-size: 1.86667em;
  margin-bottom: 0;
  color: #222222; }

.featured-card__action {
  /*font-size: $font-size-nav;
  font-weight: $font-weight-bold;
  @if $type-nav-spacing {
    letter-spacing: 0.6px;
  }*/
  text-transform: uppercase;
  font-size: 0.86667em;
  color: #d8232f; }
  .featured-card:hover .featured-card__action {
    color: inherit; }

.feature-list {
  background: #f1f1f1;
  margin-bottom: 10px; }
  .feature-list .product-card__info {
    background: #f1f1f1; }

.section-block {
  position: relative;
  /* background-color: $color-content;*/ }

.section-block--padding {
  padding: 7px 30px; }

.section-block__header {
  margin-bottom: 30px; }

.section-block__header--padded {
  padding-top: 30px; }

.section-block__title,
.section-block__subtext {
  margin-bottom: 0; }

/*================ Maps ================*/
.map-section {
  position: relative;
  min-height: 650px;
  width: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  flex-direction: row; }
  @media only screen and (min-width: 769px) {
    .map-section {
      min-height: 500px; } }
  .map-section .section-header {
    margin-bottom: 20px; }
  .map-section .btn, .map-section .btn--secondary {
    margin-top: 10px; }
  .map-section .icon-pin {
    height: 0.95333em;
    position: relative;
    top: -1px; }
  @media only screen and (min-width: 769px) {
    .ie9 .map-section {
      height: 650px; } }

.map-section__full-width {
  margin: -50px 0; }

.map-section__wrapper {
  height: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  flex-direction: row; }

.map-section__content-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 769px) {
    .map-section__content-wrapper {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -ms-flex-preferred-size: 33%;
      -webkit-flex-basis: 33%;
      -moz-flex-basis: 33%;
      flex-basis: 33%;
      flex-grow: 0; } }
  .ie9 .map-section__content-wrapper {
    top: 10%; }
    @media only screen and (min-width: 769px) {
      .ie9 .map-section__content-wrapper {
        width: 33%; } }

.map-section__image {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 769px) {
    .map-section__image {
      position: absolute; } }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section--load-error .map-section__image {
    display: block !important; }

.flex--third {
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  @media only screen and (max-width: 768px) {
    .flex--third {
      -webkit-flex: 0 1 100%;
      -moz-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%; } }
  .ie9 .flex--third {
    width: 33%; }

.flex--half {
  -webkit-flex: 1 1 50%;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%; }
  @media only screen and (max-width: 768px) {
    .flex--half {
      -webkit-flex: 0 1 100%;
      -moz-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%; } }
  .ie9 .flex--half {
    width: 50%; }

.map-section__overlay {
  width: 100%;
  min-height: auto;
  position: relative;
  display: block;
  background-color: white;
  padding: 40px;
  text-align: center;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (min-width: 769px) {
    .map-section__overlay:nth-child(2) {
      border-left: 1px solid rgba(123, 123, 123, 0.2); } }
  @media only screen and (max-width: 768px) {
    .map-section__overlay:nth-child(2) {
      border-top: 1px solid rgba(123, 123, 123, 0.2); } }
  .map-section__overlay > * {
    width: 100%; }
  @media only screen and (min-width: 769px) {
    .map-section__overlay {
      min-height: 320px;
      margin: 40px 0; } }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

@media only screen and (min-width: 769px) {
  .map-section__text {
    background-color: white;
    padding: 20px; } }
@media only screen and (max-width: 768px) {
  .map-section__text {
    order: 0;
    padding: 0 20px 20px; } }

@media only screen and (min-width: 769px) {
  .map-section__text-second-item {
    border-left: 1px solid rgba(123, 123, 123, 0.2); } }
@media only screen and (max-width: 768px) {
  .map-section__text-second-item {
    padding-top: 20px;
    border-top: 1px solid rgba(123, 123, 123, 0.2); } }

.map-section__background-wrapper {
  overflow: hidden;
  position: relative;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 769px) {
    .map-section__background-wrapper {
      position: static;
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%;
      flex-grow: 0; } }
  .ie9 .map-section__background-wrapper {
    width: 100%;
    height: 500px; }

.map-section__container {
  width: 100%;
  height: 55vh; }
  @media only screen and (min-width: 769px) {
    .map-section__container {
      position: absolute !important;
      top: 0;
      left: 0;
      width: 130%;
      height: 100%;
      margin: 0 -30% 0 0; } }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

/*================ Link block CTA ================*/
.link-block {
  position: relative;
  display: block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  flex: 1;
  background-size: cover;
  background-position: top center; }
  .link-block:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.4;
    transition: opacity 0.2s ease;
    z-index: 1; }
  .link-block:hover:after, .link-block:hover:focus {
    opacity: 0.5; }

.link-block__cta {
  word-break: break-word;
  z-index: 2; }

.link-block-no-js {
  position: relative;
  display: block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  flex: 1; }

/*================ Quote slider ================*/
.quote-icon {
  display: block;
  margin: 0 auto 20px; }

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 30px; }
  .quotes-wrapper .slick-dots li,
  .quotes-wrapper .slick-dots button {
    width: auto;
    height: auto; }
  .quotes-wrapper .slick-dots button {
    line-height: 1;
    font-size: 1em;
    opacity: 0.6;
    color: currentColor; }
    .quotes-wrapper .slick-dots button:before {
      display: none; }
  .quotes-wrapper .slick-dots .slick-active button {
    font-weight: 700;
    opacity: 1; }

.quotes-wrapper .slick-slide[tabindex="0"] {
  outline: none; }

/*================ Image content section ================*/
.image-content__image-container {
  position: relative; }

.image-content__image-wrapper {
  display: block;
  margin: 0 auto; }
  .image-content__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; }

.image-content__text {
  padding: 40px; }

/*================ Featured product section ================*/
@media only screen and (max-width: 768px) {
  .featured-product__text {
    text-align: center;
    position: relative;
    top: -50px;
    margin-bottom: -50px; } }

@media only screen and (max-width: 768px) {
  .featured-product__image {
    text-align: center; } }

/*================ Featured articles ================*/
.article-block {
  display: block;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .article-block {
      padding: 20px 0; } }

.article-block__image {
  height: 0;
  padding-bottom: 7px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }
  @media only screen and (max-width: 768px) {
    .article-block__image {
      padding-bottom: 50%; } }

.article-block__info {
  padding: 0px 10px 20px; }

.article-block__date {
  float: right;
  font-size: 0.875em;
  color: #4c4c4c !important; }
  .article-block__date:before {
    content: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/author-before.png?v=621615943336499903);
    position: relative;
    top: 3px; }

.article-block__date,
.article-block__title {
  color: #a11b23;
  margin-bottom: 5px; }

.article-block__title {
  font-size: 16px; }

/*================ Featured content ================*/
.featured-content {
  position: relative;
  padding: 120px 20px 40px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat; }
  @media only screen and (min-width: 769px) {
    .featured-content {
      padding: 80px; } }

/*============================================================================
  Styles columns.liquid and gallery.liquid
    - Background images and positioning are handled with theme settings
==============================================================================*/
@media only screen and (max-width: 768px) {
  .column-flex {
    -webkit-flex-direction: column;
    flex-direction: column; } }

.column-flex__image {
  position: relative;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center; }
  @media only screen and (min-width: 769px) {
    .column-flex__image {
      height: 380px; } }

.column-flex__image--tall {
  height: 300px; }
  @media only screen and (min-width: 769px) {
    .column-flex__image--tall {
      height: 520px; } }

.column-flex__content {
  padding: 20px; }

.custom-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto; }

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center; }

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

.align--middle-left {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.align--center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center; }

.align--middle-right {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: right; }

.align--bottom-left {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end; }

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center; }

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right; }

/*================ Video section ================*/
body.video-playing {
  overflow: hidden; }

.video-section {
  height: 200px; }
  @media only screen and (min-width: 769px) {
    .video-section {
      height: 380px; } }
  .video-section.video-section--tall {
    height: 300px; }
    @media only screen and (min-width: 769px) {
      .video-section.video-section--tall {
        height: 520px; } }

.video-section__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out; }
  @media only screen and (min-width: 769px) {
    .video-section__modal {
      width: 75%; } }
  .video-section--loaded .video-section__modal {
    opacity: 1;
    pointer-events: auto;
    z-index: 16; }

.video-section__body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out; }
  .video-section--loaded .video-section__body-overlay {
    opacity: 1;
    pointer-events: auto;
    z-index: 15; }

.video-section__player,
.video-section__player iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden; }
  .video-section--loaded .video-section__player, .video-section--loaded
  .video-section__player iframe {
    z-index: 16;
    visibility: visible; }

.video-section__player-close {
  display: none;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  border: 0; }
  .video-section__player-close:hover {
    opacity: 0.5; }
  .video-section--loaded .video-section__player-close {
    z-index: 17; }
  .video-section__player-close .icon {
    fill: black;
    width: 25px;
    height: 25px; }
  @media only screen and (max-width: 768px) {
    .video-section__player-close {
      top: 10px;
      left: 10px; } }

.video-section__cover {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  overflow: hidden;
  transition: all 0.25s ease-out;
  z-index: 2; }

.video-section__cover-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 1;
  transition: opacity 0.25s ease-out; }

.video-section__cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-section__cover-content {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 13px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.25s ease-out;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.video-section__load-player-button {
  border: 0;
  line-height: 1;
  padding: 10px;
  background-color: #d8232f;
  text-transform: uppercase;
  transition: all 0.25s ease;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  .video-section__load-player-button:hover {
    background-color: #ac1c25; }
  .video-section__load-player-button.video-section__load-player-button--large {
    padding: 0;
    background: none; }

.video-section__error {
  display: none;
  position: absolute;
  bottom: -40px;
  width: 50vw;
  min-width: 340px;
  left: 50%;
  color: white;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }
  .video-section--error .video-section__error {
    display: block; }

.video-section__load-player-text {
  margin-left: 10px;
  display: inline-block;
  letter-spacing: 0;
  font-size: 1.73333em;
  line-height: 1.2;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 990px) {
    .video-section__load-player-text {
      font-size: 2.13333em; } }

.video-section__load-player-icon {
  position: relative;
  top: 2px;
  margin: 0 auto;
  height: 20px;
  width: 20px;
  padding: 0;
  display: inline-block;
  transition: all 0.5s ease; }
  @media only screen and (min-width: 769px) {
    .video-section__load-player-icon {
      top: 0; } }
  .video-section__load-player-button--large .video-section__load-player-icon {
    width: 60px;
    height: 60px; }

.video-section__load-player-button-triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 7px solid #d8232f;
  border-bottom: 5px solid transparent;
  -ms-transform: translate(-34%, -50%);
  -webkit-transform: translate(-34%, -50%);
  transform: translate(-34%, -50%); }
  .video-section__load-player-button--large .video-section__load-player-button-triangle {
    border-top: 15px solid transparent;
    border-left: 23px solid white;
    border-bottom: 15px solid transparent; }

.video-section__load-player-button-circle {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  height: 20px;
  width: 20px;
  -moz-border-radius: 75px;
  -webkit-border-radius: 75px;
  border-top-right-radius: 75px;
  border-top-left-radius: 75px;
  border-bottom-right-radius: 75px;
  border-bottom-left-radius: 75px;
  transition: all 0.25s ease-out; }
  .video-section__load-player-button--large .video-section__load-player-button-circle {
    background-color: #d8232f;
    width: 60px;
    height: 60px; }
  .video-section__load-player-button--large:hover .video-section__load-player-button-circle, .video-section__load-player-button--large:focus .video-section__load-player-button-circle {
    background-color: #ac1c25; }

/*================ Blog ================*/
.article__photo-container {
  position: relative; }

.article__photo-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%; }

/*================ Rich text section ================*/
.rich-text__heading--large {
  font-size: 2.25em; }

.rich-text__heading--small {
  font-size: 1.5em; }

.rich-text__text--large {
  font-size: 1.13333em; }

.rich-text__text--small {
  font-size: 0.86667em; }

/*================ custom home css ================*/
.notification-bar {
  text-align: center;
  padding: 10px 0; }

.clear {
  clear: both; }

/*.site-nav__item:hover .site-nav__dropdown.meganav{ opacity: 1; visibility: visible;}
.site-nav__dropdown-container:hover .site-nav__dropdown--third-level{ opacity: 1; visibility: visible;}*/
.deal-icon {
  position: absolute;
  top: 35px; }

.breadcrumb {
  margin-bottom: 15px; }

.template-index .page-container {
  background: #252525; }

.header-icon {
  width: 20px; }

#shopify-section-mobile-slideshow {
  display: none; }

/* .meganav__nav--collection .site-nav__dropdown-container a:hover{background-color: #000;} */
.new-bottom {
  background: #444;
  font-weight: lighter;
  padding: 3% 1% 1% 0; }

.new-bottom {
  min-height: 57px; }

.new-bottom .new-title {
  color: #fff;
  float: left;
  vertical-align: top;
  width: 25%;
  border-right: 1px solid #d2d2d2;
  text-align: center; }

.new-bottom .new-info {
  color: #ccc;
  font-size: 13px;
  text-align: left;
  vertical-align: middle;
  float: right;
  width: 70%; }

.banner-box {
  position: relative; }

.template-index .flex--grid {
  margin: 0; }

.flex--grid > .flex__item .banner-box .border {
  background: #9D3033;
  height: 3px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: -3px;
  transition: all 0.3s ease 0s;
  width: 0; }

.flex--grid > .flex__item:hover .banner-box .border {
  left: 0;
  width: 100%; }

#shopify-section-1521010384672 {
  background: #fff;
  padding: 15px 0;
  margin-bottom: 0; }

.footer-top {
  margin-bottom: 20px;
  width: 100%; }

@media only screen and (min-width: 769px) {
  .footer-top .flex {
    float: left; } }

.form-vertical .input-group__field, .footer-top .input-group__btn .btn, .footer-top .input-group__btn .btn--secondary {
  height: 40px; }

.site-footer .form-vertical {
  width: 562px; }

.footer-top .form-vertical label {
  text-transform: uppercase;
  color: #e6e6e6; }

.footer-top .input-group .btn, .footer-top .input-group .btn--secondary {
  height: 41px;
  background: #ae3737;
  font-weight: lighter;
  letter-spacing: 0; }

.site-footer .social-icons {
  margin-top: 28px; }

.site-footer .social-icons span {
  width: 38px;
  height: 38px;
  display: inline-block;
  margin: 6px 16px 6px 0; }

.site-footer .social-icons a:hover span {
  opacity: 0.7; }

.product-card__price {
  color: #a11b23;
  font-weight: 600;
  font-size: 18px; }

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

.page-title h1, .page-title .h1, .page-title .h1--mini {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: lighter;
  color: #636363;
  padding: 3px 0;
  margin: 20px 0 15px;
  border-top: 2px solid #9d3033;
  display: inline-block; }

.contact-box .form-vertical ul {
  list-style: none; }

.contact-box h4, .contact-box .h4 {
  font-size: 14px;
  color: #7b7b7b; }

.contact-box p {
  margin-bottom: 20px; }

.form-vertical label {
  text-transform: none; }

.form-vertical label span {
  color: #ae3737; }

.form-vertical input, .form-vertical textarea, .form-vertical select {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  color: #7b7b7b; }

.content-block .form-vertical .btn, .content-block .form-vertical .btn--secondary {
  color: #fff;
  margin: 20px auto;
  width: 50%;
  display: block !important; }

.contact-form .flex--grid > .flex__item {
  display: block;
  padding: 5px 10px; }

@media only screen and (max-width: 768px) {
  .template-contact .contact-box .content-block .contact-form {
    padding-right: 20px; }

  .template-resellercontact .contact-box .form-vertical ul {
    margin: 0; } }
.customer-login-links {
  float: right; }

#customer_logout_link {
  color: #000;
  text-decoration: underline; }

#ly-slick-languages-switcher {
  display: inline-block !important;
  width: 50px !important;
  margin-top: 3px; }
  @media (max-width: 768px) {
    #ly-slick-languages-switcher {
      width: auto !important; } }
  #ly-slick-languages-switcher .dd-select {
    width: 65px !important;
    background: none !important;
    border: 0 !important; }
  #ly-slick-languages-switcher .dd-options {
    width: 65px !important; }
  #ly-slick-languages-switcher .dd-selected {
    padding: 5px !important; }
  #ly-slick-languages-switcher .dd-pointer {
    right: 5px !important;
    display: none; }
  #ly-slick-languages-switcher .dd-option-image, #ly-slick-languages-switcher .dd-selected-image {
    margin-right: 15px !important; }

@media only screen and (min-width: 769px) {
  .site-header__upper .medium-up--two-quarter {
    width: 90%; }
  .site-header__upper .text-right {
    width: 30%; }
  .site-header__upper .flag-box {
    float: right; } }
@media only screen and (max-width: 768px) {
  .site-header__upper .flag-box {
    float: right;
    margin-right: 3px; }
  .site-header__upper .small--one-quarter {
    width: 50%; }
  .site-header__upper #ly-slick-languages-switcher .dd-select {
    width: 55px !important; }
  .site-header__upper #ly-slick-languages-switcher .dd-selected {
    padding: 2px !important; }
  .site-header__upper .site-header__link .icon {
    width: 25px;
    height: 25px; } }
/* Deals */
/* #counter{background: #ae3737} */
#counter .title {
  font-size: 26px;
  text-align: center;
  margin: 35px 0 20px;
  color: #fff; }

#counter .time-left {
  text-align: center; }

.timeclock div {
  position: relative;
  background: url(https://cdn.shopify.com/s/files/1/0011/7220/9721/files/dealclock-bg.png?7067446199660197662) center top no-repeat;
  color: #fff;
  display: inline-block;
  font-size: 42px;
  height: 86px;
  line-height: 50px;
  margin-bottom: 25px;
  margin-top: 12px;
  padding-top: 6px;
  width: 20%; }
  @media (min-width: 1000px) {
    .timeclock div {
      background: url(https://cdn.shopify.com/s/files/1/0011/7220/9721/files/clock_bgc.png?9334) center top no-repeat; } }

.timeclock {
  margin: 0 auto;
  text-align: center;
  width: 80%; }
  @media only screen and (max-width: 768px) {
    .timeclock {
      width: 100%; } }

@media (min-width: 1000px) {
  .timeclock div span {
    text-align: justify;
    letter-spacing: 54px;
    position: relative;
    top: 14px;
    left: 25px;
    font-size: 50px; }
    .timeclock div span:after {
      display: inline-block;
      width: 100%;
      content: ''; }

  .timeclock p {
    position: absolute;
    top: -40px;
    left: 9%; }

  .point_clock {
    color: #a81429;
    font-weight: 600;
    font-size: 30px;
    position: relative;
    bottom: 50px; } }
.timeclock p {
  /*     position: absolute;
      top: -37px;
      left: 56px; */
  color: #000;
  font-size: 14px;
  text-transform: uppercase; }

/* .timeclock p{color:#252525;font-size:14px;text-transform: uppercase;} */
.clocksecond {
  color: #ae3737 !important; }
  .clocksecond p {
    color: black; }

/* --------------------- Breadcrumbs ------------------- */
.breadcrumb {
  overflow: hidden;
  margin: -15px 0 15px; }

.breadcrumb a, .breadcrumb span {
  float: left;
  font-size: 12px;
  font-family: ubuntu,"Helvetica Neue",Verdana,Arial,sans-serif;
  text-transform: uppercase;
  color: #636363;
  padding: 0 5px; }

.breadcrumb a:hover {
  color: #b24141;
  text-decoration: underline; }

.breadcrumb span {
  color: #636363;
  font-weight: bold; }

.breadcrumb span.divider {
  font-weight: lighter; }

/*================ custom view css ================*/
.product-single__info-wrapper {
  padding-left: 30px; }

.product-single__meta > span {
  display: inline-block;
  color: #212020;
  font-size: 16px; }

.product-single__meta .review {
  margin-bottom: 10px;
  color: #aeaeae;
  font-size: 13px;
  position: relative;
  display: inline-block; }

.product-single__meta .write-review {
  text-decoration: underline;
  cursor: pointer;
  height: 15px;
  line-height: 15px;
  position: absolute;
  opacity: 0;
  z-index: 9;
  top: 8px;
  width: 100%; }

.product-single__meta .sku {
  height: 15px;
  line-height: 15px;
  margin: 10px;
  border-left: 1px solid #212020;
  padding: 0 10px;
  color: #212020;
  font-size: 13px; }

.product-single__meta .brand {
  background: #9bc53d;
  color: #fff;
  display: inline-block;
  margin-top: 6px;
  margin-left: 5px;
  padding: 3px 8px 1px;
  vertical-align: top;
  font-size: 13px; }

.product-single__meta > span.outofstock {
  color: #ff0000; }

#ProductPrice-product-template {
  color: #a11b23;
  font-size: 26px; }

.short_desc ul, .short_desc ol {
  list-style: none; }

.more_info_block .nav-tabs {
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #eee;
  list-style: none; }
  @media only screen and (max-width: 768px) {
    .more_info_block .nav-tabs {
      overflow: auto;
      padding-bottom: 20px; }
      .more_info_block .nav-tabs ul {
        width: 200%; } }

.more_info_block .nav-tabs li {
  display: inline-block; }

.more_info_block .nav-tabs li a {
  background: #808080;
  color: #fff;
  display: inline-block;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  bottom: -1px; }

.more_info_block .nav-tabs li .active {
  background: #a43033;
  color: #fff;
  z-index: 5; }

.more_info_block .nav-tabs li:first-child a {
  border-left: none; }

.more_info_block .nav-tabs li .active:before {
  content: '';
  border-top: 10px solid #a43033;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%); }

.more_info_block .nav-tabs li a:after {
  content: '';
  display: block;
  opacity: 1;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: -2px;
  height: 2px;
  width: 0;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #9d3033; }

.more_info_block .nav-tabs li:hover a:after {
  width: 100%; }

.more_info_block .nav-tabs li:hover a {
  color: #fff;
  background: #a43033; }

.more_info_block .tab-content {
  padding: 30px 14px 14px;
  border: 1px solid #eee;
  border-top: 0; }

.more_info_block .tab-content > .subbox {
  display: none; }

.more_info_block .tab-content > .active {
  display: block; }

.more_info_block #shopify-product-reviews {
  margin: 0; }

.more_info_block .spr-container {
  border: none;
  color: #3e3e3e;
  padding: 0 !important; }

.more_info_block .spr-container .spr-header-title {
  display: none;
  font-size: 16px;
  height: 40px;
  line-height: 36px;
  margin: 0; }

.more_info_block .spr-container .spr-icon {
  font-size: 12px; }

.more_info_block .spr-container .spr-summary-actions-newreview {
  color: #3e3e3e;
  text-decoration: underline; }

.more_info_block .spr-container .spr-content {
  display: block; }

.more_info_block .tab-content .payment-block ol {
  list-style: none; }

.page-full #az_reviews {
  max-width: auto !important; }

/*================  about us  ================*/
@media only screen and (min-width: 769px) {
  #radio_about table td.about-img {
    width: 300px;
    padding-left: 15px; } }

#radio_about table td {
  padding-left: 0;
  padding-right: 0; }
  @media only screen and (max-width: 768px) {
    #radio_about table td {
      width: 100%;
      display: block; } }

#radio_about {
  max-width: 1200px;
  margin: auto; }

#toptit {
  list-style: none;
  margin: 0; }

#toptit a {
  color: #7b7b7b; }

#toptit a:hover {
  text-decoration: underline; }

.article_msg h2, .article_msg .h2 {
  background: url(https://cdn.shopify.com/s/files/1/0011/7220/9721/files/privacy-policy-title-icon.png?9433692592900559384) left center no-repeat;
  padding-left: 18px;
  color: #000;
  font-size: 24px;
  font-weight: lighter; }

.article_msg table tr {
  background: #fff;
  width: 100%;
  border-left: 1px solid #d1d1d1; }

.article_msg table tr.odd {
  background: #ddd; }

.article_msg table td {
  padding: 5px 10px;
  border-right: 1px solid #d1d1d1;
  vertical-align: middle;
  width: 50%; }

.article_msg table td.xl64 {
  width: 23%; }

.article_msg table td.xl65 {
  width: 20%; }

.article_msg table td.xl66 {
  width: 40%; }

.article_msg table td.xl67 {
  border-right: none; }

.article_msg img {
  max-width: 1000px;
  width: 100%; }

.article_msg ul {
  list-style: disc !important;
  margin: 12px; }

.article_msg .red {
  color: #CC232A; }

.track-block {
  width: 98%;
  background: url(../images/sprite_repeat.gif) repeat-x scroll 0 -2920px white;
  border: 1px solid #DDD;
  min-height: 300px;
  padding: 14px 10px; }

.track-block a {
  color: #a72d2c; }

.track-block .page-head h3, .track-block .page-head .h3 {
  background-position: 0 1px;
  background-repeat: no-repeat;
  border-bottom: 2px solid #BE0000;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
  padding: 0 0 6px 21px;
  text-transform: uppercase; }

.track-block .track-content {
  margin: 0 auto; }
  @media only screen and (min-width: 769px) {
    .track-block .track-content {
      background: url(https://cdn.shopify.com/s/files/1/0011/7220/9721/files/Radio-track-my-order.jpg?12567292043265573246) bottom right no-repeat; } }

.order-id {
  margin-top: 20px;
  display: inline-block; }

#trackorderid {
  background: none;
  width: 395px;
  height: 45px;
  border: 2px solid #BDC3C7;
  border-radius: 4px;
  display: inline-block;
  padding: 10px 6px 12px;
  color: #95a5a6; }

#trackbyid {
  background-color: #f39c12;
  border: medium none;
  color: #fff;
  border-radius: 6px;
  font-size: 17.5px;
  padding: 9px 28px;
  margin-top: 12px;
  margin-left: 3px; }

#trackorderid:focus {
  border-color: #3498db;
  box-shadow: none;
  color: #555; }

#trackbyid:hover {
  background-color: #f5b043;
  cursor: pointer; }

#order-status > b {
  color: #FF4200;
  background: url(../images/i_msg-error.gif) no-repeat;
  padding-left: 18px; }

#order-status table {
  background: #efefef;
  margin-top: 10px; }

#order-status table th {
  font-weight: 700; }

#order-status table td, #order-status table th {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff; }

/*================  Affliate Program  ================*/
.affiliate-wrap {
  width: 90%;
  margin: 0 auto; }

#aff-left {
  float: left;
  background: url(https://cdn.shopify.com/s/files/1/0011/7220/9721/files/affiliate-bg.jpg?10566419042740420585) right bottom no-repeat;
  height: 370px;
  width: 100%; }

#aff-left > p {
  width: 360px; }

#aff-left h2, #aff-left .h2 {
  color: #0a263c;
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 11px; }

.affiliate-wrap p {
  color: #666;
  font-family: Calibri,Arial,Helvetica,sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px; }

.affiliate-wrap .img-box {
  width: 720px;
  margin: 0 auto;
  position: relative; }

.affiliate-wrap .mobile-img {
  display: none; }

.affi-steps-row1 {
  position: relative;
  margin-top: 45px; }

.affi-steps-row1 .arrow {
  vertical-align: top;
  margin: 74px 18px 0; }

.affi-steps-row2 {
  text-align: right;
  padding-right: 85px;
  margin: 14px 10px; }

.affi-steps-row3 {
  float: right;
  padding-right: 25px;
  position: relative; }

.affi-steps-row3 .arrow {
  vertical-align: top;
  margin: 74px 16px 0; }

.affiliate-wrap .arrow5 {
  padding-left: 82px;
  margin: 78px 0 0; }

.affiliate-wrap #aff-btn {
  text-align: center; }

.affiliate-wrap a {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  width: 700px; }

.affiliate-wrap .aff-word {
  color: #fff;
  font-size: 17px;
  line-height: 18px;
  font-weight: 400; }

.affiliate-wrap #word-one {
  position: absolute;
  top: 142px;
  left: 18px; }

.affiliate-wrap #word-two {
  position: absolute;
  top: 142px;
  left: 274px; }

.affiliate-wrap #word-three {
  position: absolute;
  top: 142px;
  left: 543px; }

.affiliate-wrap #word-four {
  position: absolute;
  top: 142px;
  left: 282px; }

.affiliate-wrap #word-five {
  position: absolute;
  top: 142px;
  left: 22px; }

.affiliate-wrap .btn-lg.btn-shadow {
  padding: 4px 27% 8px;
  text-decoration: none; }

.affiliate-wrap .btn-primary.btn-shadow {
  border: 0 none;
  box-shadow: 0 -4px 0 #2f2e2f inset;
  transition: all .4s ease 0s; }

.affiliate-wrap .btn-lg {
  border-radius: 6px;
  font-size: 20px;
  line-height: 2.33;
  padding: 10px 16px;
  display: inline;
  font-weight: 700; }

.affiliate-wrap .btn-primary {
  background: #a11b23;
  border-color: #1286B5;
  transition: all .4s ease 0s; }

.affiliate-wrap .btn-primary:hover {
  background: #db2e38; }

/*================  Support nav  ================*/
/* .site-header__upperback{
 background:url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/daohangbak.png?26773") center center no-repeat;   -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
} */
#SiteNavSearchCart {
  padding-right: 5px; }

.site-header__upper {
  position: relative;
  padding: 0;
  max-width: 1320px; }
  @media (min-width: 1400px) and (max-width: 1600px) {
    .site-header__upper {
      max-width: 1350px; } }
  @media (min-width: 1600px) {
    .site-header__upper {
      max-width: 1430px; } }

.support-active {
  background: #000; }

.support-active a {
  color: #ae3737; }

.sticky--open .support-bg {
  top: 60px; }

.support-bg {
  position: absolute;
  top: 100px;
  right: 0;
  opacity: 0;
  display: none;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px -1px 1px 1px;
  border-bottom: 4px solid #a11b23;
  width: 100%;
  padding: 40px 45px 30px 45px;
  max-width: 1200px;
  right: 0;
  margin: 0 auto; }

.support-bg .support-left {
  float: left;
  width: 13%; }

.support-bg .support-left li {
  color: #000;
  list-style: disc;
  text-align: left; }

.support-bg .support-left a:hover li {
  color: #ae3737; }

.support-bg .support-right {
  float: right;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  align-items: stretch; }

.support-bg .support-box {
  display: inline-block;
  width: 24.5%;
  padding: 0;
  padding-bottom: 10px;
  text-align: center;
  vertical-align: top;
  width: 19%;
  background: #aaa;
  margin: 0 7px; }

.support-bg .support-box img {
  max-width: 230px;
  width: 100%; }

.support-bg .support-box h4, .support-bg .support-box .h4 {
  color: #a11b23;
  font-weight: lighter;
  font-size: 18px;
  text-transform: none; }

.support-bg .support-box p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.285;
  height: 34px; }

.support-bg .support-box a {
  padding: 0; }

.support-bg .support-box a:hover {
  opacity: 0.8; }

.support-bg .support-box .bottom-link span {
  font-size: 14px;
  line-height: 1.285;
  color: #fff;
  display: inline-block;
  padding: 0 6px;
  font-weight: lighter;
  border-right: 1px solid #fff; }

.support-bg .support-box .bottom-link span.first {
  padding-left: 0; }

.support-bg .support-box .bottom-link span.last {
  border-right: none;
  padding-right: 0; }

.drawer__nav #Support {
  display: none; }

/*================  download page ================*/
.download-bg {
  background: #111111;
  padding-bottom: 4%; }

.download-page {
  max-width: 1200px;
  margin: 0 auto; }

.download-lists {
  margin-bottom: 20px;
  float: left; }

.download-lists label {
  font-size: 16px;
  font-weight: lighter; }

.download-page select {
  padding-top: 9px;
  padding-bottom: 9px;
  color: #7b7b7b;
  margin-left: 12px; }

.download-page .subbox {
  display: none; }

.download-page .grid {
  margin-left: 0; }

.download-page .grid--view-items {
  margin-bottom: 0; }

.download-page .grid__item {
  padding: 0 10px; }

.download-page .grid-view-item__title {
  padding: 15px 5px;
  background-color: #dcdcdc;
  text-align: center; }

/*.download-page .grid-view-item__title p{ height:63px; overflow:hidden;}*/
.download-page .subbox .grid__item {
  cursor: pointer; }

.download-page .subbox .section-header h2, .download-page .subbox .section-header .h2 {
  color: #dcdcdc;
  font-size: 30px;
  padding-left: 10px;
  margin: 30px 0;
  padding-top: 3px; }

.download-page .download-notice {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); }

.download-page .download-box {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 560px;
  height: 460px;
  background: #fff;
  padding: 30px;
  z-index: 99; }

.download-page .download-header {
  text-align: right; }

.download-page .scroll-pos {
  position: relative; }

.download-page .download-scroll {
  height: 360px;
  overflow: auto;
  margin-top: 15px;
  position: fixed;
  width: 500px; }

.download-page .download-box .dclose-btn {
  transition: all 0.3s ease 0s;
  cursor: pointer;
  display: inline-block;
  color: #666;
  font-size: 20px;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  border: 1px solid #666;
  text-align: center; }

.download-page .download-box .dclose-btn:hover {
  color: #e60012;
  border: 1px solid #e60012; }

.download-page .download-box h4, .download-page .download-box .h4 {
  color: #e60012;
  font-size: 24px; }

.download-page .download-box p {
  color: #666; }

.download-page .download-box .dborder-top {
  border-top: 1px solid #eaeaea;
  margin-top: 30px;
  padding: 20px 0 0 20px;
  margin-right: 20px; }

.download-page .download-box h2, .download-page .download-box .h2 {
  padding-left: 30px;
  height: 22px;
  line-height: 26px;
  color: #555;
  font-size: 18px;
  margin-bottom: 15px; }

.download-page .download-box .software-box h2, .download-page .download-box .software-box .h2 {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/software-title-icon.png?5837164810061168047") left center no-repeat; }

.download-page .download-box .user-guide-box h2, .download-page .download-box .user-guide-box .h2 {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/guide-title-icon.png?5837164810061168047") left center no-repeat; }

.download-page .download-box .specification-box h2, .download-page .download-box .specification-box .h2 {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/specifition-title-icon.png?5837164810061168047") left center no-repeat; }

.download-page .download-box span {
  margin-left: 28px;
  margin-bottom: 10px;
  display: block;
  vertical-align: top; }

.download-page .download-box span a {
  text-decoration: underline;
  padding-left: 28px;
  display: inline-block; }

.download-page .download-box span a:hover {
  color: #e60012; }

.download-page .download-box span img {
  display: inline-block;
  vertical-align: top; }

.download-page .download-box .download .zip {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/software-icon.png?5837164810061168047") no-repeat; }

.download-page .download-box .download .doc {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/user-guide-icon01.png?5837164810061168047") no-repeat; }

.download-page .download-box .download .xls {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/user-guide-icon02.png?5837164810061168047") no-repeat; }

.download-page .download-box .download .pdf {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/specifition-icon.png?5837164810061168047") no-repeat; }

.download-page #dowload_search {
  float: right;
  margin-right: 10px; }

.download-page #dowload_search #searchstr, .download-page #dowload_search_all #searchall {
  padding: 9px; }

.download-page #dowload_search #search_btn, .download-page #dowload_search_all #search_btn {
  padding: 9px 25px;
  float: right; }

.download-page .show-bg {
  display: block; }

.subbox h4.type-title, .subbox .type-title.h4 {
  display: none; }

.searchall-box h4.type-title, .searchall-box .type-title.h4 {
  display: block; }

.searchall-box #dowload_search {
  display: none; }

#dowload_search_all {
  float: right;
  margin-right: 10px; }

/*other download*/
.other-download #dowload_search {
  margin: 3% auto;
  width: 580px;
  border: 1px solid #dcdcdc;
  border-radius: 4px; }

.other-download #dowload_search #searchstr {
  width: 82%;
  border: none;
  border-radius: 4px 0 0 4px;
  height: 44px;
  line-height: 44px;
  background: none; }

.other-download #dowload_search #searchstr:focus, #dowload_search #search_btn:focus {
  outline: none; }

.other-download #dowload_search #search_btn {
  width: 18%;
  float: right;
  border-radius: 0 4px 4px 0;
  border: none;
  background: #b24141;
  height: 46px;
  margin-top: -1px;
  display: block;
  padding-top: 6px; }

.other-download #dowload_search #search_btn:hover {
  opacity: 0.8; }

.other-download #dowload_search #search_btn img {
  max-width: 33px; }

.other-download .download-row {
  margin: 40px 0; }

.other-download .download_list {
  display: inline-block;
  width: 31.6%;
  vertical-align: top; }

.other-download .download_list.middle {
  margin: 0 2%; }

.other-download .download_list h3, .other-download .download_list .h3 {
  color: #3d3d3d;
  text-transform: none;
  font-size: 18px;
  font-weight: lighter; }

.other-download .download_list object {
  max-width: 350px;
  width: 100%;
  min-height: 210px; }

.other-download .col-box {
  background: #f8f8f8;
  padding: 3%; }

.other-download .col-box p a {
  background: url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/download-icon.jpg?12301230428718546184") left center no-repeat;
  color: #535353;
  font-size: 13px;
  padding-left: 20px; }

.other-download .download-box {
  border: 1px solid #cbcbcb;
  padding: 10px;
  margin: 15px 0; }

.other-download .download-box .box-row {
  width: 28%;
  float: left; }

.other-download .download-box .middle {
  margin: 0 8%; }

.other-download .download-box p.box-title {
  color: #9d3033; }

.other-download .download-box p {
  margin: 0; }

.other-download .download-row-box .download-box {
  float: left;
  width: 60%;
  margin: 0; }

.other-download .download-row-box .download-box.box-right {
  float: right;
  width: 35%;
  min-height: 82px; }

.other-download .download-row-box .download-box .box-row {
  width: 50%; }

.other-download .download-col-box .download-box {
  float: left;
  width: 24%;
  margin-right: 1.3%;
  min-height: 369px; }

.other-download .download-col-box .download-box.last {
  margin-right: 0; }

.other-download .download-col-box .download-box .box-row {
  width: 100%; }

/* accreditation page */
.accreditions-block .collection-title h4, .accreditions-block .collection-title .h4 {
  color: #5c5f60;
  font-size: 24px;
  font-weight: lighter;
  margin-bottom: 20px; }
.accreditions-block .brand-col {
  padding-left: 55px;
  margin-bottom: 5px;
  width: 33.33%;
  float: left;
  display: inline; }
  .accreditions-block .brand-col .brand-type {
    width: 100%; }
    .accreditions-block .brand-col .brand-type .brand-title {
      cursor: pointer;
      font-size: 15px;
      padding-left: 5px;
      line-height: 30px;
      border-bottom: 1px solid #cfcfcf;
      position: relative; }
      .accreditions-block .brand-col .brand-type .brand-title img {
        position: absolute;
        left: -35px; }
      .accreditions-block .brand-col .brand-type .brand-title span {
        display: inline-block;
        width: 15px;
        height: 30px;
        float: right;
        background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/files/acc-up-icon.png?v=4475294219995018064) right center no-repeat; }
    .accreditions-block .brand-col .brand-type .brand-box {
      display: none;
      margin: 20px 0; }
      .accreditions-block .brand-col .brand-type .brand-box li {
        list-style: none;
        margin-bottom: 15px;
        padding-top: 3px; }
        .accreditions-block .brand-col .brand-type .brand-box li.fcc-link {
          background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/files/fcc-title-icon.jpg?v=1364271982577152881) left center no-repeat; }
        .accreditions-block .brand-col .brand-type .brand-box li.ce-link {
          background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/files/ce-title-icon.jpg?v=14493847297340100913) left center no-repeat; }
        .accreditions-block .brand-col .brand-type .brand-box li a {
          color: #5c5f60;
          padding-left: 40px; }
  .accreditions-block .brand-col .list-selected .brand-title span {
    background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/files/acc-down-icon.png?v=6845675758685373296) right center no-repeat; }

@media (max-width: 1100px) {
  .new-bottom {
    padding: 1%; }

  .new-bottom .new-title, .new-bottom .new-info {
    float: none;
    border-right: none;
    width: 98%;
    text-align: center;
    margin: 0 auto;
    padding: 0.5%; } }
@media (max-width: 1000px) {
  .site-header__upper .medium-up--two-quarter {
    width: 60%; }

  .accreditions-block .brand-col {
    width: 50%; } }
@media (max-width: 900px) {
  .site-footer .social-icons {
    margin: 0; }

  /*   .product-card__image-wrapper{ height:170px;margin-bottom: 92px;} */
  #counter {
    height: 315px; }

  #counter .title {
    margin: 25px 0 5px;
    font-size: 22px; }

  .timeclock div {
    font-size: 32px; }

  .timeclock p {
    text-transform: none; } }
#shopify-section-slideshow {
  background: #fff;
  padding: 40px 0 10px; }

@media only screen and (max-width: 768px) {
  /*   .site-header{height:60px;} */
  .left-slidebar {
    display: none !important; }

  #shopify-section-mobile-slideshow {
    display: block !important; }

  #shopify-section-1521008067834 {
    margin-bottom: 0; }

  #shopify-section-1521008067834 .flex--grid, #shopify-section-1521008113940 .flex--grid {
    margin: 0 auto; }

  #shopify-section-1521008067834 .banner-box {
    max-width: 600px;
    margin: 0 auto; }

  #shopify-section-1521008113940 .banner-box {
    max-width: 400px;
    margin: 0 auto; }

  .site-footer__copyright .grid__item {
    margin-bottom: 0; }

  /*   .product-card__image-wrapper{ height:210px;margin-bottom: 100px;} */
  .product-card__regular-price {
    font-size: 13px; }

  .product-card__price {
    font-size: 15px; }

  #shopify-section-1521010384672 {
    background: #fff; }

  .swiper-button-prev, .swiper-button-next {
    top: 63% !important; }

  #counter .title {
    margin: 0 0 10px; }

  #counter {
    width: 100%;
    float: none;
    height: 120px; }

  .timeclock p {
    text-transform: uppercase; }

  .timeclock div {
    width: 20%; }

  .swiper-container {
    overflow: visible !important; }

  .breadcrumb {
    display: none; }

  .product-single {
    margin-bottom: 0; }

  .product-single__info-wrapper {
    padding-left: 0; }

  .more_info_block .nav-tabs li a {
    padding: 0 20px;
    font-size: 15px; }

  #aff-left {
    background: none;
    height: auto; }

  #aff-left > p {
    width: 100%; }

  .affiliate-wrap .img-box {
    display: none; }

  .affiliate-wrap .mobile-img {
    display: block;
    max-width: 694px;
    width: 100%; }

  .download-lists li {
    width: 19.4%; }

  .download-page .grid__item {
    padding: 0 20px; }

  .download-page .download-box {
    width: 460px;
    height: 360px;
    padding: 20px; }

  .download-page .download-box .dborder-top {
    margin-top: 15px; }

  .download-page .download-scroll {
    height: 270px;
    width: 410px; }

  .download-page .download-scroll > div > p {
    display: none; }

  .other-download .download-col-box .download-box, .other-download .download-row-box .download-box, .other-download .download-row-box .download-box.box-right, .other-download .download-box .box-row {
    float: none;
    width: 100%; }

  .other-download .download-col-box .download-box {
    min-height: auto; }

  .other-download .download-box .middle {
    margin: 0; }

  .other-download #dowload_search {
    width: 90%; }

  .other-download .download-row {
    margin: 20px 0; }

  .other-download .download_list {
    width: 46%;
    margin-bottom: 15px; } }
@media (max-width: 550px) {
  .footer-top .form-vertical label {
    text-transform: none; }

  /*   .product-card__image-wrapper{height:220px;} */
  .more_info_block .nav-tabs li a {
    padding: 0 13px;
    font-size: 13px; }

  .download-lists li {
    width: 19.2%; }

  .download-page .download-box {
    width: 90%;
    padding: 15px; }

  .download-page .download-scroll {
    width: 85%; }

  .other-download #dowload_search {
    width: 94%;
    margin-left: 0; }

  .other-download .download_list {
    width: 94%; }

  .other-download .download_list.middle {
    margin: 0;
    margin-bottom: 15px; }

  .accreditions-block .brand-col {
    width: 100%;
    padding-left: 35px; } }
@media (max-width: 450px) {
  /*   .product-card__image-wrapper{height:180px;margin-bottom: 85px;} */
  .more_info_block .nav-tabs li a {
    padding: 0 10px; }

  .site-header__link {
    padding: 5px; }

  .other-download .download-lists li {
    width: 19%;
    text-transform: none;
    font-size: 14px; }

  .other-download .download-page .grid__item {
    padding: 0 10px; }

  .other-download .download-page .subbox .section-header h2, .other-download .download-page .subbox .section-header .h2 {
    font-size: 22px;
    padding-top: 8px;
    padding-left: 0; }

  .other-download .download-page .download-box h4, .other-download .download-page .download-box .h4 {
    font-size: 20px; }

  .more_info_block .tab-content {
    padding: 15px; }

  .content-block .form-vertical .btn, .content-block .form-vertical .btn--secondary {
    width: 250px; } }
@media (max-width: 380px) {
  .timeclock p {
    text-transform: none; }

  .more_info_block .nav-tabs li a {
    padding: 0 22px; }

  .other-download .download-lists li {
    float: left;
    width: 19.6%;
    margin-right: 1px; }

  .other-download .download-page .download-box .dborder-top {
    padding: 15px 0 0 0; }

  .other-download .download-page .subbox .section-header h2, .other-download .download-page .subbox .section-header .h2 {
    font-size: 18px;
    padding-top: 50px; }

  .other-download .download-page .download-box span {
    margin-left: 26px; }

  .site-footer .social-icons span {
    margin: 8px 4px; } }
#ly-languages-switcher {
  padding: 2px 18px 2px 8px !important; }

.site-contact__list {
  float: right;
  position: relative;
  bottom: 35px; }
  .site-contact__list li {
    position: relative;
    float: left;
    list-style: none;
    margin-left: 22px; }
    .site-contact__list li:nth-child(1):after, .site-contact__list li:nth-child(2):after {
      content: '';
      width: 1px;
      height: 12px;
      position: absolute;
      right: -12px;
      margin-top: 4px;
      background: #b17040; }
    .site-contact__list li a {
      font-size: 14px;
      font-weight: 500;
      color: #a33033;
      transition: 0.3s;
      text-decoration: underline; }
      .site-contact__list li a:hover {
        color: #d8232f; }

@media only screen and (max-width: 768px) {
  .for_contactus {
    display: none; } }
.comfirm_li02 li {
  float: left;
  padding: 10px; }

.comfirm_li li {
  /* float: left; */
  display: inline-block;
  padding: 10px;
  float: left; }
  @media only screen and (max-width: 768px) {
    .comfirm_li li {
      width: 100%; } }

.influence_re li {
  float: left;
  padding: 10px; }

.addblackcolor {
  color: #ff0000 !important; }

/* test page */
.testimonials .quotes-slider__text p {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase; }

.testimonials .quotes-wrapper .slick-dots {
  display: none !important; }

.testimonials .rte-setting p::before {
  content: '\201C'; }

.testimonials .rte-setting p::after {
  content: '\201D'; }

.testimonials .quotes-wrapper .slick-prev, .testimonials .quotes-wrapper .slick-next {
  opacity: 0;
  transition: all 0.5s ease 0s; }

.testimonials:hover .quotes-wrapper .slick-prev, .testimonials:hover .quotes-wrapper .slick-next {
  opacity: 1; }

blockquote cite {
  color: #333; }

blockquote {
  font-weight: 400; }

.title-testim {
  color: #fff; }

.title-commentpage {
  padding-top: 6px;
  font-weight: 400;
  color: #636363;
  display: inline-block;
  border-top: 2px solid #993b3d; }

.page-width_plus {
  margin-bottom: -50px;
  margin-top: 10px;
  max-width: 1350px; }

.mini0 {
  padding-top: 8px;
  font-weight: 400;
  color: #fff;
  border-top: 2px solid #9d3033;
  display: inline-block; }

blockquote {
  margin: 10px 20px; }

.template-index .slick-next {
  outline: none;
  width: 35px;
  height: 50px;
  background: url(rightarrow_01.png) no-repeat;
  z-index: 99; }
  .template-index .slick-next:before {
    content: ''; }

.template-index .slick-prev {
  outline: none;
  width: 35px;
  height: 50px;
  background: url(lefttarrow_01.png) no-repeat;
  z-index: 99; }
  .template-index .slick-prev:before {
    content: ''; }

.wrap_fenhao p:before {
  content: '\201C'; }

.wrap_fenhao p:after {
  content: '\201D'; }

.comment_block_collection {
  position: absolute;
  top: 20px;
  left: 70px;
  opacity: 0;
  transition: 0.5s; }

.author-comment-page02:after {
  content: ':';
  padding-right: 10px; }

.author-comment-page {
  padding-right: 60px; }

.slick-active .page-width {
  /* border-left:1px solid #606060; */ }
  @media only screen and (min-width: 769px) {
    .slick-active .page-width {
      position: relative;
      min-height: 150px; } }
  .slick-active .page-width:before {
    content: '';
    width: 1px;
    height: 60px;
    background: #d8d8d8;
    position: absolute;
    top: 30px;
    left: -2px; }

.slick-current .page-width {
  border-left: none; }

#customer_feedback {
  margin-top: 20px; }

.comments .rating-5 {
  color: #0f0; }

/* slideshow prev next */
.hero .slick-prev, .hero .slick-next {
  top: 85%;
  height: 53px;
  margin-top: 0;
  width: 35px;
  border: none; }

.hero .slick-prev {
  left: 35px;
  background: url(lefttarrow_01.png) no-repeat;
  background-position: 75% 20%; }
  @media only screen and (max-width: 1000px) and (min-width: 769px) {
    .hero .slick-prev {
      left: 100px; } }
  @media only screen and (max-width: 768px) {
    .hero .slick-prev {
      /*   display:none !important; */
      left: 15px; } }

.hero .slick-next {
  right: 35px;
  background: url(rightarrow_01.png) no-repeat;
  background-position: 75% 49%; }
  @media only screen and (max-width: 1000px) and (min-width: 769px) {
    .hero .slick-next {
      left: 144px; } }
  @media only screen and (max-width: 768px) {
    .hero .slick-next {
      /*   display:none !important; */
      right: 15px; } }

.classmove {
  animation: mymove02 0.8s ease-in;
  -webkit-animation: mymove02 0.8s ease-in; }

@keyframes mymove02 {
  from {
    top: 70%;
    opacity: 0; }

  to {
    top: 60%;
    opacity: 1; } }

.hero__text-wrap {
  display: none; }

/*================ Module | Filters and Sort toolbar and selection ================*/
.filters-toolbar-wrapper {
  position: relative;
  bottom: 30px;
  margin-bottom: 20px; }
  @media only screen and (min-width: 769px) {
    .filters-toolbar-wrapper {
      margin-bottom: 20px; } }

.filters-toolbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .filters-toolbar .icon-chevron-down {
    fill: #000;
    width: calc(10em / 16);
    height: calc(10em / 16);
    right: 8px; }

.filters-toolbar--has-filter {
  position: relative; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar--has-filter {
      border-bottom: none; }
      .filters-toolbar--has-filter .filters-toolbar__item-child {
        flex-basis: 50%; }
      .filters-toolbar--has-filter .filters-toolbar__item-wrapper {
        -ms-flex-preferred-size: 100%;
        -webkit-flex-basis: 100%;
        -moz-flex-basis: 100%;
        flex-basis: 100%; }
      .filters-toolbar--has-filter .filters-toolbar__item--count {
        -ms-flex-preferred-size: 100%;
        -webkit-flex-basis: 100%;
        -moz-flex-basis: 100%;
        flex-basis: 100%;
        text-align: left; }
        .filters-toolbar--has-filter .filters-toolbar__item--count:before {
          background-color: #000;
          content: "";
          height: 1px;
          left: 0;
          position: absolute;
          top: auto;
          width: 100%; } }

.filters-toolbar__item {
  padding: 10px 15px;
  background: #f7f7f7;
  min-width: 33%;
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__item {
      margin-right: 0px;
      margin-bottom: 20px;
      background: #fff; } }
  .no-flexbox .filters-toolbar__item {
    text-align: left !important; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__item:first-child .filters-toolbar__input {
      padding-left: 0; } }

.filters-toolbar__item-child {
  flex: 0 1 50%;
  text-align: right;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__item-child {
      flex-grow: 0; } }
  .filters-toolbar__item-child:first-child {
    position: absolute;
    right: 0;
    top: -26px; }
    @media only screen and (max-width: 768px) {
      .filters-toolbar__item-child:first-child {
        margin-right: 2.5rem; } }
    @media only screen and (min-width: 769px) {
      .filters-toolbar__item-child:first-child {
        margin-right: 3rem; } }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__item-child .filters-toolbar__input {
      padding-left: 0;
      padding-right: 25px;
      width: 100%; } }

.filters-toolbar__item-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex: 1 1 40%;
  -moz-flex: 1 1 40%;
  -ms-flex: 1 1 40%;
  flex: 1 1 40%;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__item-wrapper {
      justify-content: space-between; } }
  .filters-toolbar__item-wrapper:after {
    clear: both;
    content: '';
    display: table; }

.filters-toolbar__item--count {
  min-width: 0;
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  text-align: right; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__item--count {
      -webkit-flex: 0 1 50%;
      -moz-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
      text-align: left; } }

.no-flexbox .filters-toolbar select {
  width: 100% !important; }

.filters-toolbar__label {
  display: inline-block;
  position: absolute;
  left: 30px;
  top: 19px; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__label {
      display: block;
      margin-bottom: 0;
      margin-top: 8px; } }

.filters-toolbar__input-wrapper {
  display: inline-block; }

.filters-toolbar__input {
  border: 0 solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  outline: none;
  height: 55px;
  opacity: 1;
  position: relative; }
  .filters-toolbar__item:first-child .filters-toolbar__input {
    padding-left: 0; }
  .no-flexbox .filters-toolbar__input {
    margin: 0; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__input {
      height: 46px; } }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

.filters-toolbar__product-count {
  font-size: 0.93333em;
  font-style: italic;
  line-height: 55px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__product-count {
      font-size: 0.86667em;
      line-height: 46px; } }

.collection-right {
  width: 80%;
  float: left; }
  @media only screen and (max-width: 768px) {
    .collection-right {
      width: 100%; } }

.collection-left {
  width: 20%;
  float: left; }
  @media only screen and (max-width: 768px) {
    .collection-left {
      width: 100%; } }
  @media only screen and (min-width: 769px) {
    .collection-left {
      position: relative; } }

.title-golry {
  border-bottom: 1px solid #808080;
  padding-bottom: 20px;
  font-weight: 700; }

.categories-submenu {
  padding-left: 15px;
  margin-bottom: 20px; }
  .categories-submenu li {
    padding: 5px 0; }
    .categories-submenu li a {
      color: #808080; }

.active-filter .tag-close::before {
  color: #fff; }

.tag-close:before {
  font-size: 12px;
  content: '\2714';
  color: transparent;
  display: inline-block;
  padding-left: 8px;
  line-height: 30px;
  margin-right: 10px; }

.select-box {
  border: none; }

.advanced-filter {
  list-style: none;
  padding: 3px; }
  .advanced-filter:first-child {
    padding-top: 10px; }

.filter-box .filter-type {
  margin-top: 20px; }
  .filter-box .filter-type .advanced-filter:last-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6; }
  .filter-box .filter-type:last-child .advanced-filter:last-child {
    border-bottom: none; }

.filter-box .filter-type > span {
  margin-right: 10px;
  font-size: 16px; }

.filter-box .filter-type .count {
  float: right; }

.filter-box li a {
  color: #4c4c4c; }

.filter-box li .tag-close {
  color: #fff; }

.tag-close::before {
  border: 1px solid #777;
  content: '';
  color: #fff;
  display: inline-block;
  padding: 0 2px;
  line-height: 12px;
  border-radius: 4px;
  margin-right: 10px;
  width: 18px;
  height: 16px;
  text-align: center; }

.active-filter .tag-close::before {
  content: '\2714';
  background: #a11b23;
  border: 1px solid #a11b23; }

.clear-btn {
  text-decoration: underline;
  display: inline-block;
  font-size: 14px;
  margin-left: 12px; }

.clear-btn:hover {
  color: #4d5c68;
  opacity: 1; }

.right-coll-span {
  float: right; }

.top-title-filter {
  margin-bottom: 5px; }

.light-black {
  color: #000; }
  .light-black strong {
    font-weight: 600; }

.aftera-plus span {
  float: right; }
.aftera-plus:hover {
  cursor: pointer; }

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

@media only screen and (max-width: 768px) {
  #shopify-section-collection-left-img {
    display: none; } }

.current-tag-box {
  padding: 30px 20px;
  margin-bottom: 20px;
  margin-left: 18px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6; }
  @media only screen and (max-width: 768px) {
    .current-tag-box {
      padding: 10px 20px;
      margin-left: 0px; } }

.section-header__title {
  color: #333333;
  font-weight: 600; }
  .section-header__title a {
    border-radius: 4px;
    padding: 5px 10px;
    display: inline-block;
    margin: 5px 3px;
    color: #262626;
    background: #f7f7f7;
    position: relative;
    font-weight: 600; }
    .section-header__title a:after {
      content: "x";
      color: #7b7b7b;
      padding-left: 15px; }

@media only screen and (max-width: 768px) {
  .filters-toolbar {
    width: 300px;
    position: absolute;
    z-index: 99;
    left: -310px;
    top: 0; } }

.close-slidebar {
  padding: 10px 0;
  color: #000; }
  @media only screen and (min-width: 769px) {
    .close-slidebar {
      display: none; } }
  .close-slidebar span {
    float: right;
    background: #808080;
    color: #fff;
    padding: 5px;
    position: relative;
    border-radius: 5px;
    top: -7px; }

@media only screen and (max-width: 768px) {
  #SortTags {
    display: none; } }

.collection-sort__label001 {
  position: relative; }
  @media only screen and (max-width: 768px) {
    .collection-sort__label001 {
      color: #000;
      border: 1px solid #e6e6e6;
      padding: 9px;
      background: #f4f4f4; } }

@media only screen and (max-width: 768px) {
  .collection-sort__label002 {
    display: none;
    border: 1px solid #e6e6e6; } }

@media only screen and (max-width: 768px) {
  .template-collection .section-header {
    margin-bottom: 5px; } }

.over-nav-tag {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.3;
  z-index: 9;
  display: none; }

.movetagfilter {
  left: -310px;
  animation: mymovetag 0.5s;
  -webkit-animation: mymovetag 0.5s; }

@keyframes mymovetag {
  from {
    left: -10px; }

  to {
    left: -310px; } }

@-webkit-keyframes mymovetag {
  from {
    left: -10px; }

  to {
    left: -310px; } }

.movetagfilter02 {
  left: -10px;
  animation: mymovetag02 0.5s;
  -webkit-animation: mymovetag02 0.5s; }

@keyframes mymovetag02 {
  from {
    left: -310px; }

  to {
    left: -10px; } }

@-webkit-keyframes mymovetag02 {
  from {
    left: -310px; }

  to {
    left: -10px; } }

@media only screen and (min-width: 769px) {
  .medium-up-hide {
    display: none !important; } }

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

.page-empty02 {
  padding: 20px 0; }

.notfound-404 {
  color: #999; }
  @media only screen and (min-width: 769px) {
    .notfound-404 {
      font-size: 22px; } }

.areviews_no_reviews_title {
  display: none !important; }

.cart-grid-pro {
  z-index: 99; }

.product-form__cart-submit-index {
  z-index: 99;
  border-radius: 4px;
  position: relative;
  color: #333;
  border: 1px solid #808080;
  background: transparent;
  padding: 10px;
  /* margin: 10px; */
  width: 80%;
  margin-left: 10%;
  margin-top: 10px; }
  @media only screen and (max-width: 768px) {
    .product-form__cart-submit-index {
      width: 100%;
      margin-left: 0%;
      padding: 10px 0;
      letter-spacing: 0; } }

/* .template-collection .product-form__cart-submit-index{
    width: 90%;
    margin-left: 5%;
    @include media-query($small) {
       width: 100%;
    margin-left: 0%;
      padding: 10px 0;
  }
} */
.new_lable_pro {
  position: absolute;
  top: 0;
  left: 0; }

.save_money {
  color: #fff;
  background: #a11b23;
  display: inline-block;
  margin-left: 10px;
  padding: 9px;
  border-radius: 7px;
  position: relative;
  top: -3px;
  margin-bottom: 3px; }

.all_logolist {
  background: #f1f1f1; }
  @media only screen and (max-width: 768px) {
    .all_logolist {
      margin: 0 10px; } }

#shopify-section-1554796540105 {
  background: #fff; }

.lolist-title {
  position: relative;
  z-index: 10;
  font-size: 16px;
  color: #000;
  margin-top: 10px;
  font-weight: 800; }

.lolist-subtitle {
  position: relative;
  z-index: 10;
  margin-top: 10px;
  color: #4c4c4c; }

.wrap_circle {
  position: relative; }
  .wrap_circle .circle_bg01, .wrap_circle .circle_bg02, .wrap_circle .circle_bg03, .wrap_circle .circle_bg04, .wrap_circle .circle_bg05 {
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transition: 0.5s;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%); }
  .wrap_circle img {
    position: relative;
    z-index: 6; }
  .wrap_circle .circle_bg01 {
    z-index: 5;
    width: 50px;
    height: 50px;
    transition-delay: 0;
    background: #bbbbbb; }
  .wrap_circle .circle_bg02 {
    transition-delay: 0.1s;
    z-index: 4;
    width: 65px;
    height: 65px;
    background: #cfcfcf; }
  .wrap_circle .circle_bg03 {
    transition-delay: 0.2s;
    z-index: 3;
    width: 80px;
    height: 80px;
    background: #d4d4d4; }
  .wrap_circle .circle_bg04 {
    transition-delay: 0.3s;
    z-index: 2;
    width: 95px;
    height: 95px;
    background: #dbdbdb; }
  .wrap_circle .circle_bg05 {
    transition-delay: 0.4s;
    z-index: 1;
    width: 110px;
    height: 110px;
    background: #e4e4e4; }

.wrap_circle:hover .circle_bg01, .wrap_circle:hover .circle_bg02, .wrap_circle:hover .circle_bg03, .wrap_circle:hover .circle_bg04, .wrap_circle:hover .circle_bg05 {
  opacity: 1; }

.de-box {
  background: #fff;
  display: inline-block;
  width: 24.5%;
  padding: 20px 10px; }
  @media only screen and (max-width: 768px) {
    .de-box {
      width: 49%;
      margin-bottom: 10px; } }

.back-box {
  background: #fff;
  padding-top: 25px; }

.collection_title_white {
  color: #000;
  padding-bottom: 5px;
  font-size: 21px;
  position: relative; }

.line-title {
  display: inline-block;
  width: 100%;
  position: absolute;
  right: 0;
  height: 1px;
  top: 13px;
  background: linear-gradient(to right, #cccccc, #f7f7f7); }

.left-a-a {
  border-radius: 5px;
  padding: 3px;
  border: 1px solid #666666;
  color: #666666;
  background: transparent;
  font-size: 12px;
  position: relative;
  bottom: 3px;
  margin-left: 10px; }
  .left-a-a:hover {
    background: #808080;
    color: #fff; }

.left-titlespan {
  z-index: 9;
  background: #fff;
  position: relative;
  padding-right: 30px; }

.left-titlespan02 {
  color: #b13a34;
  font-weight: 600; }
  .left-titlespan02 a {
    font-weight: 400; }

.firelogo {
  position: absolute;
  left: -30px;
  top: -5px; }

.title_a_tr {
  padding-bottom: 10px;
  display: inline-block; }
  .title_a_tr:hover {
    text-decoration: underline; }

.pro_description-p {
  /*  padding:10px; */ }

.bottom_a_btn {
  color: #000;
  border: 1px solid #000;
  padding: 8px;
  border-radius: 3px; }
  .bottom_a_btn:hover {
    color: #fff;
    border: none;
    background: #a11b23; }

@media only screen and (max-width: 1300px) {
  #shopify-section-1554860320848 .firelogo {
    left: 0; }
  #shopify-section-1554860320848 .left-titlespan {
    margin-left: 30px; } }
@media only screen and (max-width: 768px) {
  #shopify-section-1554860320848 .firelogo {
    left: -0px; }
  #shopify-section-1554860320848 .left-titlespan {
    margin-left: 30px; }
  #shopify-section-1554860320848 .line-title {
    width: 70%; } }

/*  new gallery  */
#categories-scroll {
  background: #fff;
  padding: 20px 0; }
  #categories-scroll div {
    box-sizing: border-box; }
  #categories-scroll .categories-box-scroll {
    float: left;
    width: 32.5%; }
    #categories-scroll .categories-box-scroll:nth-child(2) {
      margin: 0 1.2%; }
      #categories-scroll .categories-box-scroll:nth-child(2) .top-boxscroll {
        margin-top: 15px; }
        @media only screen and (max-width: 768px) {
          #categories-scroll .categories-box-scroll:nth-child(2) .top-boxscroll {
            margin-bottom: 7px;
            margin-top: 7px; } }
      @media only screen and (max-width: 768px) {
        #categories-scroll .categories-box-scroll:nth-child(2) {
          margin: 10px 0 0 0; } }
    @media only screen and (max-width: 768px) {
      #categories-scroll .categories-box-scroll {
        width: 100%; } }
  #categories-scroll .boxscrollright {
    float: right;
    width: 48% !important; }
    @media only screen and (max-width: 768px) {
      #categories-scroll .boxscrollright {
        width: 49% !important; } }
  #categories-scroll .boxscrollleft {
    float: left;
    width: 48% !important; }
    @media only screen and (max-width: 768px) {
      #categories-scroll .boxscrollleft {
        width: 49% !important; } }
  #categories-scroll .top-boxscroll {
    margin-bottom: 15px;
    float: left;
    width: 100%; }
    @media only screen and (max-width: 768px) {
      #categories-scroll .top-boxscroll {
        margin-bottom: 7px; } }
  #categories-scroll:after {
    content: '';
    display: table;
    clear: both; }

.bg_c4 {
  background: #fff; }

.swiper-paginationblog {
  text-align: right;
  position: relative;
  bottom: 33px; }
  .swiper-paginationblog span {
    background: #111 !important;
    width: 12px !important;
    height: 12px !important; }
  .swiper-paginationblog .swiper-pagination-bullet-active {
    background: #a73c34 !important; }

.collection_title_white02 {
  padding-bottom: 12px; }

.article-block__image01 {
  width: 100%;
  display: inline-block; }
  @media only screen and (min-width: 769px) {
    .article-block__image01 {
      width: 40%;
      float: left; } }
  .article-block__image01 img {
    border-radius: 5px; }

.article-block__info01 {
  text-align: left;
  width: 55%;
  display: inline-block; }
  @media only screen and (max-width: 768px) {
    .article-block__info01 {
      width: 100%; } }

.swiper-padding-r .article-block {
  /*        margin-right: 20px;
      @include media-query($small) {
           margin-right: 4px;
      } */
  background: #fff;
  border-radius: 5px;
  min-height: 250px; }

.article_content {
  font-size: 14px;
  text-align: left;
  padding: 10px 0;
  color: #4c4c4c; }

.read-more-article {
  text-decoration: underline;
  color: #a11b23; }

.article-block__tag {
  color: #a11b23; }
  .article-block__tag:before {
    content: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/tag-before.png?v=4036159537516220040);
    position: relative;
    top: 3px; }

/*   new slide block */
.left-slidebar {
  width: 72.5%;
  float: left;
  display: inline-block; }
  @media (min-width: 1600px) {
    .left-slidebar {
      width: 72%; } }
  @media only screen and (max-width: 768px) {
    .left-slidebar {
      width: 100%; } }

.right-threebar {
  width: 25.5%;
  display: inline-block; }
  @media (min-width: 1200px) {
    .right-threebar {
      float: right; } }
  @media (max-width: 1200px) and (min-width: 769px) {
    .right-threebar {
      margin-left: 10px; } }
  @media (min-width: 1600px) {
    .right-threebar {
      width: 26%; } }
  @media only screen and (max-width: 768px) {
    .right-threebar {
      text-align: center;
      width: 100%; }
      .right-threebar > div {
        margin: 0 auto; } }

.flag-box02 {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.site-header__search-login {
  background: #f1f1f1; }
  @media only screen and (max-width: 768px) {
    .site-header__search-login {
      display: none; } }

.top-header1 {
  padding: 0 50px;
  max-width: 1550px;
  margin: 0 auto !important; }
  @media (min-width: 769px) and (max-width: 1200px) {
    .top-header1 {
      padding: 0; } }

.header__input_top {
  padding: 6px 15px 6px 30px;
  background: #fff;
  width: 83%; }
  @media (max-width: 1500px) {
    .header__input_top {
      width: 76%; } }

.search-header__submit01 {
  background: #aaa;
  color: #fff;
  position: relative;
  right: 3px;
  border: none;
  padding: 6px 15px;
  width: 16%; }
  @media (max-width: 1500px) {
    .search-header__submit01 {
      width: 22%;
      padding: 6px 4px; } }

.search__formm {
  position: relative;
  padding-top: 20px; }

.se-icon {
  display: inline-block;
  position: absolute;
  top: 26px;
  left: 7px; }
  .se-icon path {
    fill: #b1b1b1 !important; }

.login-text {
  color: #999;
  padding: 0 10px; }

.icon_cart_text {
  color: #999; }

.right_header_03 {
  padding-top: 5px;
  padding-left: 20px;
  margin-bottom: 10px; }
  @media (max-width: 1400px) and (min-width: 1100px) {
    .right_header_03 {
      padding-left: 40px; } }
  @media (min-width: 1401px) {
    .right_header_03 {
      padding-left: 40px; } }

.site-nav__dropdown-container {
  display: inline-block !important; }

.meganav__link--third-level svg {
  transition: 0.3s;
  width: 10px !important;
  position: absolute;
  top: 3px;
  left: -7px; }
  .meganav__link--third-level svg path {
    fill: #ccc;
    transition: 0.3s; }
.meganav__link--third-level:hover svg {
  transform: rotate(-90deg); }
  .meganav__link--third-level:hover svg path {
    fill: #a11b23; }
.meganav__link--third-level img {
  width: 60px; }

.site-nav__link-toggle, .site-nav__link {
  position: relative; }
  .site-nav__link-toggle svg, .site-nav__link svg {
    transition: 0.3s;
    width: 8px !important;
    position: absolute;
    top: 25px;
    right: 9px; }
    @media (max-width: 1300px) {
      .site-nav__link-toggle svg, .site-nav__link svg {
        right: 0px; } }
    .site-nav__link-toggle svg path, .site-nav__link svg path {
      fill: #ccc;
      transition: 0.3s; }
  .site-nav__link-toggle:hover svg path, .site-nav__link:hover svg path {
    fill: #a11b23; }

@media only screen and (max-width: 768px) {
  .right-box001 a, .right-box002 a, .right-box003 a {
    width: 100%;
    display: block; } }

.swiper-button-prev002, .swiper-button-next002 {
  width: 35px !important;
  height: 50px !important;
  cursor: pointer;
  top: 46% !important; }

.swiper-button-prev002 {
  background-image: url(https://cdn.shopify.com/s/files/1/0011/7220/9721/files/lefttarrow_01.png?6221) !important;
  position: absolute;
  left: -55px;
  z-index: 999; }

.swiper-button-next002 {
  background-image: url(rightarrow_01.png) !important;
  position: absolute;
  right: -55px;
  z-index: 999; }

#shopify-section-1545640060175 {
  background: #fff; }

.no_padding-ma {
  margin-bottom: 0px;
  margin-top: 0px; }

.swiper-containerblog {
  overflow: hidden !important;
  /*    padding-bottom: 20px !important; */ }

.sca-qv-image:hover .product-form__cart-submit_bo {
  background-color: #a11b23;
  color: #fff; }

.sca-qv-image .sca-qv-button:before {
  content: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/quick-view01_small.png?v=6263186808660597247); }

.widthhalf {
  float: left;
  width: 50%; }
  .widthhalf img {
    width: 60px; }
  .widthhalf .link-iconright {
    display: inline-block;
    position: relative;
    bottom: 12px; }
  .widthhalf .link_info {
    font-size: 12px;
    font-weight: 400;
    color: #666666; }

.link-iconright {
  display: inline-block;
  position: relative;
  bottom: 12px; }

.link_info {
  font-size: 12px;
  font-weight: 400;
  color: #666666; }

.meganav__navother {
  padding-bottom: 20px;
  /*      column-count: 2;    */ }
  .meganav__navother:after {
    content: '';
    dipplay: table;
    clear: both; }

.dfd {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

#SiteNavLinklist-others {
  left: -200px;
  min-width: 650px;
  padding-left: 20px !important; }
  @media (min-width: 1050px) and (max-width: 1500px) {
    #SiteNavLinklist-others {
      left: -330px; } }

#SiteNavLinklist-accessories {
  left: -340px;
  min-width: 650px;
  padding-left: 20px !important; }
  @media (min-width: 1050px) and (max-width: 1450px) {
    #SiteNavLinklist-accessories {
      left: -425px; } }

@media only screen and (max-width: 768px) {
  .featured-box img {
    width: 100%; } }

.template-404 img {
  max-width: 1050px; }

#page_table table * {
  border: none; }

#page_table {
  box-shadow: 3px 3px 16px 2px;
  max-width: 1150px;
  padding: 20px;
  padding-top: 30px; }

.data_content {
  height: 300px;
  overflow: scroll;
  overflow-x: hidden;
  margin-top: 20px; }
  @media only screen and (max-width: 768px) {
    .data_content {
      height: 200px; } }

.data_p {
  padding: 20px 0;
  border-bottom: 1px solid #e6e6e6; }

.bluetitle {
  display: block;
  font-size: 22px;
  border-bottom: 3px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-family: 'Noto Sans';
  letter-spacing: -1px;
  color: #005d87; }

.data_title {
  font-size: 22px;
  color: #000;
  font-weight: 600; }

.data_link {
  color: #fff;
  background: #a7101f;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  transition: 0.3s; }
  @media (max-width: 420px) {
    .data_link {
      margin-top: 10px; } }
  .data_link:hover {
    border: 1px solid;
    background: transparent; }

#shopify-section-date-dcroll {
  background: #f7f7f7;
  padding: 20px 10px; }

.data_content::-webkit-scrollbar {
  width: 12px;
  background-color: #eee; }

.data_content::-webkit-scrollbar-track {
  background-color: #eee; }

.data_content::-webkit-scrollbar-thumb {
  background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/scroll03_small.png?v=6332559349046819821) no-repeat;
  background-color: #999;
  background-position-y: 45%; }
  .data_content::-webkit-scrollbar-thumb:hover {
    background-color: #999; }

.data_content::-webkit-scrollbar-button:start {
  background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/scroll01_small.png?v=10938021286171324021) no-repeat;
  background-size: 12px 12px; }

.data_content::-webkit-scrollbar-button:end {
  background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/73/assets/scroll02_small.png?v=6123165476775478958) no-repeat;
  background-size: 12px 12px; }

.filter-sanjiao {
  position: absolute;
  right: 10px;
  top: 4px; }
  @media only screen and (min-width: 769px) {
    .filter-sanjiao {
      display: none; } }
  .filter-sanjiao svg {
    width: 8px; }
    .filter-sanjiao svg path {
      fill: #888; }

.content-blockright {
  width: 73%;
  display: inline-block; }
  @media only screen and (max-width: 768px) {
    .content-blockright {
      width: 100%; } }

.content-blockleft {
  float: left;
  width: 23%;
  margin-right: 3%;
  display: inline-block; }
  @media only screen and (max-width: 768px) {
    .content-blockleft {
      width: 100%;
      margin-right: 0%; } }

.sell_titlebest {
  padding: 5px;
  color: #337ab7 !important; }
  .sell_titlebest * {
    color: #337ab7 !important; }
  .sell_titlebest a:hover {
    color: #ae3737 !important; }

.wrap_sell {
  background: #f5f5f5;
  padding: 20px; }

.img-responsive02 {
  position: absolute;
  display: block;
  top: 0;
  color: #000000;
  transform: rotateX(-90deg);
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transform-origin: 0% 0% 0px;
  -webkit-transform-origin: 0% 0% 0px;
  -moz-transform-origin: 0% 0% 0px; }

.featured-box:hover .img-responsive02 {
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg); }

/* .img-responsive01{


    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform-origin: 0% 0% 0px;
    -webkit-transform-origin:0% 0% 0px;
    -moz-transform-origin: 0% 0% 0px;
}
.featured-box:hover .img-responsive01{

    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
 
} */
.featured-box {
  position: relative; }

#shopify-section-collection-left-img .img-block {
  padding-right: 0px; }
  #shopify-section-collection-left-img .img-block img {
    width: 100%; }

.fa-star {
  color: #a11b23 !important; }

.fa-star-o:before {
  color: #a11b23 !important; }

.fa-star-half-o, .fa-star-half-alt {
  color: #a11b23 !important; }

.aftera-plus {
  font-size: 18px;
  color: #333333; }
  .aftera-plus strong {
    font-weight: 600; }

.meganav__link--second-level {
  background: #f1f1f1;
  font-weight: 600;
  font-size: 17px;
  max-width: 280px; }

#SiteNavLinklist-others .meganav__link--second-level, #SiteNavLinklist-accessories .meganav__link--second-level {
  background: transparent; }

.new_lable_pro02 {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0; }

.save_percentage {
  position: absolute;
  top: 16px;
  left: 15px;
  font-weight: 600; }
  @media only screen and (max-width: 768px) {
    .save_percentage {
      left: 13px;
      font-weight: 400; } }

/* fangdajing */
#warp {
  overflow: hidden;
  padding: 10px; }

#warp #minbox {
  float: left;
  position: relative; }

#maxbox {
  width: 480px;
  height: 480px;
  position: absolute;
  left: 100%;
  overflow: hidden;
  display: none;
  z-index: 9; }

#maxbox img {
  position: absolute;
  max-width: 1000px;
  width: 1000px; }

#con {
  float: left;
  margin-left: 20px; }

#meng {
  width: 100px;
  height: 100px;
  position: absolute;
  background: #ffff0063;
  filter: alpha(opacity=0);
  left: 0;
  top: 0;
  display: none; }

.photos {
  position: relative; }

#SiteNavParent {
  padding-right: 20px; }
  @media (max-width: 1000px) and (min-width: 769px) {
    #SiteNavParent {
      padding-left: 0; } }
  .sticky--active #SiteNavParent {
    padding-right: 0; }
    @media (max-width: 1000px) and (min-width: 769px) {
      .sticky--active #SiteNavParent {
        padding-left: 0; } }

.grid.grid--no-gutters.meganav__scroller--has-list {
  display: inline-block; }

.widtay {
  width: auto; }
  .widtay > li {
    text-align: left;
    padding-bottom: 10px; }
    .widtay > li img {
      width: 60px; }

.erjili {
  margin: 5px 10px;
  display: block !important; }

.erji_link {
  color: #000; }
  .erji_link svg {
    transition: 0.3s;
    width: 10px !important;
    position: absolute;
    top: -3px;
    left: -19px; }
    .erji_link svg path {
      fill: #ccc;
      transition: 0.3s; }

.erji_link:hover svg {
  transform: rotate(-90deg); }
  .erji_link:hover svg path {
    fill: #a11b23; }

@media (min-width: 1000px) {
  .template-collection .bottom-button {
    padding-bottom: 20px;
    width: 100%;
    position: absolute;
    bottom: 0; } }

@media (min-width: 1200px) {
  .template-page .bottom-button {
    padding-bottom: 20px;
    width: 100%;
    position: absolute;
    bottom: 0; } }

.halfstar {
  position: relative;
  bottom: 1px; }

@media only screen and (max-width: 768px) {
  .privy-pusher {
    height: 0px !important; } }

#SiteNavLinklist-consumer-radios {
  min-width: 650px; }

#SiteNavLinklist-business-radios {
  min-width: 650px; }

#SiteNavLinklist-contact-us {
  right: -50px;
  left: auto;
  min-width: 320px; }

.sca-qv-button-wrap {
  display: none !important; }

.template-index .sca-qv-button-wrap, .template-collection .sca-qv-button-wrap {
  display: inline-block !important; }

@media only screen and (min-width: 769px) {
  .template-index .product-card__name {
    min-height: 58px; } }

@media (max-width: 450px) {
  .product-card__name {
    min-height: 75px; } }

#SiteNav > .site-nav__item > .site-nav__dropdown {
  border-bottom: 4px solid #a11b23; }

.link_title_top {
  font-weight: 600;
  font-size: 17px; }

.right-des .left-images {
  width: 50%; }
  @media only screen and (max-width: 768px) {
    .right-des .left-images {
      width: 100%; } }

.mid-propro {
  display: flex;
  flex-direction: column;
  padding: 30px 0; }
  @media only screen and (min-width: 769px) {
    .mid-propro {
      flex-direction: row; } }
  .mid-propro .left-images {
    flex: 0 1 50%;
    text-align: center; }
  .mid-propro .right-des {
    flex: 0 1 50%; }
    @media only screen and (max-width: 768px) {
      .mid-propro .right-des {
        padding: 20px; } }
    @media (min-width: 1200px) {
      .mid-propro .right-des {
        padding-left: 100px; } }
    @media (min-width: 769px) and (max-width: 1200px) {
      .mid-propro .right-des {
        padding-left: 40px; } }
  .mid-propro .des_title {
    color: #000;
    font-weight: 600;
    font-size: 18px; }
  .mid-propro .price_right, .mid-propro .munber_right {
    font-size: 22px;
    color: #a11b23;
    padding-right: 20px;
    font-weight: 600; }
  .mid-propro .value_right {
    font-size: 22px;
    color: #b2b2b2; }
  @media only screen and (min-width: 769px) {
    .mid-propro .des_right {
      width: 65%; } }

.collection_clock {
  padding-top: 50px; }

.title_giveaway_coll {
  text-transform: uppercase;
  word-spacing: 12px;
  font-size: 25px; }

.giveaway-bottom {
  padding: 10px;
  background: #f5f5f5;
  text-align: center; }
  @media only screen and (min-width: 769px) {
    .giveaway-bottom {
      padding: 50px 50px 100px;
      position: relative;
      top: 80px; } }
  .giveaway-bottom .top_text_gw {
    color: #808080;
    font-size: 25px;
    text-transform: uppercase; }
  .giveaway-bottom .mid_text_gw {
    font-size: 16px;
    display: inline-block; }
    @media (min-width: 1000px) {
      .giveaway-bottom .mid_text_gw {
        width: 50%; } }
  .giveaway-bottom .bottom_text_gw {
    display: inline-block; }
    @media only screen and (min-width: 769px) {
      .giveaway-bottom .bottom_text_gw {
        padding: 0 50px; } }
    @media (min-width: 1000px) and (max-width: 1500px) {
      .giveaway-bottom .bottom_text_gw {
        width: 90%; } }
    @media (min-width: 1501px) {
      .giveaway-bottom .bottom_text_gw {
        width: 85%; } }

.btn-giveawa {
  height: 42px !important;
  position: relative;
  bottom: 1px; }

@media only screen and (min-width: 769px) {
  .form-giveaway {
    width: 70%; } }

.newsletter-input_giveawaay {
  box-shadow: 0px 0px 1px 1px; }

.ozWidgetRioButtonSvg_ path {
  fill: #dc4e41 !important; }

.addthis_inline_share_toolbox_oh8i {
  display: inline-block;
  margin-top: 10px; }

#googleplus_button {
  transition: 0.3s;
  margin: 0 7px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #ccc; }
  #googleplus_button:hover {
    top: -12px !important; }

.at-resp-share-element .at-share-btn {
  margin: 0 7px !important;
  box-shadow: 0px 0px 1px 1px #ccc; }

.at-resp-share-element .at-svc-gmail svg path {
  fill: #fccf14 !important; }

.at-resp-share-element .at-svc-twitter svg path {
  fill: #76a9c6 !important; }

.at-resp-share-element .at-svc-facebook svg path {
  fill: #3b5998 !important; }

@media only screen and (min-width: 769px) {
  #shopify-section-giveaway_featured-products {
    position: relative;
    top: 40px; } }

.product__photo-wrapper-product-template img {
  max-width: 450px; }

@media only screen and (min-width: 769px) {
  .all_logolist .medium-up--one-third {
    flex-basis: 32% !important; } }
@media (min-width: 480px) and (max-width: 768px) {
  .all_logolist .medium-up--one-third {
    flex-basis: 32% !important; } }
@media (min-width: 1600px) {
  .all_logolist .medium-up--one-third {
    flex-basis: 33% !important; } }

.template-index .hero__image.lazysizes-display-clone {
  display: none; }

/* .zoomLens{
 display:none !important;
} */
.fb_iframe_widget02 {
  display: inline-block;
  position: relative;
  top: 12px;
  left: 5px; }

.inverted {
  color: white !important;
  background: #a11b23 !important;
  opacity: 0.8 !important; }

.areviews_questions > span > span {
  font-size: 13px !important; }

@media (min-width: 1000px) {
  #SiteNavLinklist-business-radios {
    left: -150px; } }

/* .zoomLens{display:none!important} */
@media (max-width: 768px) {
  .zoomContainer {
    display: none !important; } }
.zoom_06 {
  /*  max-width:450px; */
  width: 100%;
  max-width: 100%; }

@media only screen and (max-width: 768px) {
  .template-collection #shopify-section-footer {
    margin-top: 20px; } }

.form-giveaway .kBPlZK {
  padding: 0 !important; }

/* ajax cart css */
.iscartpopup .ajaxcart-popup {
  transform: translateX(0); }

.ajaxcart-popup {
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 1000000;
  width: 100%;
  height: 100%;
  max-width: 400px;
  padding: 15px;
  transition: .2s;
  transform: translateX(100%);
  border-left: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); }
  @media only screen and (max-width: 768px) {
    .ajaxcart-popup {
      max-width: 320px; } }
  .ajaxcart-popup .cartcount {
    font-style: italic;
    padding: 5px 0; }
    .ajaxcart-popup .cartcount .cartcount-span {
      color: #f22f08; }
  .ajaxcart-popup #CartContainer .mlveda-div {
    display: none !important; }

.close-cart {
  /*float: right;margin: 0 2px;width: 100%;max-width: 19px;cursor: pointer;*/
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer; }
  .close-cart:before {
    width: 20px;
    height: 20px;
    content: "+";
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #000;
    font-size: 30px;
    position: absolute;
    top: 0;
    right: 5px; }

.drawer__header {
  float: left;
  width: 100%;
  border-bottom: 1px solid #d9d9d9; }

.ajaxcart-popup h3, .ajaxcart-popup .h3 {
  font-size: 1.3em;
  margin-bottom: 10px; }

.ajaxcart__product-meta {
  font-style: italic;
  color: #999; }

.ajaxcart-right {
  padding-left: 15px; }

.ajax-rtinnerright {
  color: #000;
  font-weight: bold;
  padding-top: 4px; }

.ajax-rtinnerleft {
  float: left;
  margin-bottom: 8px;
  line-height: 20px; }

.ajaxcart__qty {
  border-radius: 4px;
  float: left;
  width: 100%;
  max-width: 80px;
  background: #fff;
  border: 1px solid #4d4d4d; }

.ajaxcart__qty-adjust {
  float: left;
  background: transparent;
  border: 0;
  font-size: 1.6em;
  padding: 3px 3px;
  line-height: 20px; }
  .ajaxcart__qty-adjust:hover {
    opacity: 0.5; }
  .ajaxcart__qty-adjust:focus, .ajaxcart__qty-adjust:visited {
    outline: none; }

.ajaxcart__qty .ajaxcart__qty-num {
  width: 36px;
  float: left;
  padding: 3px 0;
  text-align: center;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0; }

.cartview {
  text-align: left;
  padding: 15px 0;
  text-transform: uppercase;
  /* float: left; */
  padding-top: 15px; }
  .cartview .btn, .cartview .btn--secondary {
    padding: 5px 16px;
    font-weight: lighter; }
  .cartview .icon-arrow-right {
    vertical-align: baseline; }

.wrap_all_pros {
  height: 80vh;
  width: 390px;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .wrap_all_pros {
      height: 80vh;
      width: 310px; } }

.ajaxcart__inner {
  overflow: scroll;
  height: 80vh;
  float: left;
  width: 100%; }
  @media only screen and (max-width: 768px) {
    .ajaxcart__inner {
      height: 80vh; } }

.ajaxcart__footer.row {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #fff;
  overflow: hidden;
  left: 0;
  padding: 2px 15px 0;
  border-top: 1px solid #d9d9d9; }

.ajaxsubtext {
  font-size: 18px; }

.ajaxsubtotal {
  font-size: 18px;
  font-weight: bold; }

.ajaxcart__product {
  float: left;
  padding: 20px 25px 20px 5px;
  border-bottom: 1px solid #d9d9d9; }
  .ajaxcart__product .no-padding {
    padding-left: 0; }
    .ajaxcart__product .no-padding img {
      border: 1px solid #d9d9d9; }

.ajaxremove {
  position: absolute;
  right: 3px;
  top: -18px;
  width: 20px;
  height: 20px;
  font-size: 13px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  display: none; }
  .ajaxremove .ajaxifyCartremove {
    display: block; }
    .ajaxremove .ajaxifyCartremove:hover {
      opacity: 0.5; }

.close-cart img {
  max-width: 18px; }

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

#divtime {
  position: absolute;
  top: 50%;
  left: 3.5%;
  color: #476fab;
  letter-spacing: 3px;
  word-spacing: 3px;
  font-size: 28px;
  transform: translateY(-70%); }
  @media (min-width: 1600px) {
    #divtime {
      letter-spacing: 4px;
      word-spacing: 10px;
      font-size: 26px;
      left: 4.5%; } }
  @media (max-width: 1600px) and (min-width: 1200px) {
    #divtime {
      letter-spacing: 3px;
      word-spacing: 2px;
      left: 3.8%; } }
  @media (min-width: 1050px) and (max-width: 1200px) {
    #divtime {
      letter-spacing: 2px;
      word-spacing: 8px;
      font-size: 2vw;
      left: 4%; } }
  @media (min-width: 769px) and (max-width: 800px) {
    #divtime {
      letter-spacing: 1px;
      word-spacing: 6px;
      left: 4%;
      font-size: 2vw; } }
  @media (min-width: 800px) and (max-width: 900px) {
    #divtime {
      letter-spacing: 2px;
      word-spacing: 5px;
      left: 3%;
      font-size: 2vw; } }
  @media (min-width: 900px) and (max-width: 1000px) {
    #divtime {
      letter-spacing: 3px;
      word-spacing: 2px;
      left: 3.5%;
      font-size: 2vw; } }
  @media (min-width: 1000px) and (max-width: 1050px) {
    #divtime {
      letter-spacing: 3px;
      word-spacing: 3px;
      left: 3.5%;
      font-size: 2vw; } }
  @media (max-width: 769px) and (min-width: 480px) {
    #divtime {
      left: 21%;
      letter-spacing: 11px;
      word-spacing: -2px;
      font-size: 4vw; } }
  @media (max-width: 480px) and (min-width: 460px) {
    #divtime {
      letter-spacing: 4px;
      word-spacing: 17px;
      font-size: 7vw; } }
  @media (max-width: 460px) and (min-width: 400px) {
    #divtime {
      letter-spacing: 5px;
      word-spacing: 10px;
      font-size: 7vw; } }
  @media (max-width: 340px) and (min-width: 300px) {
    #divtime {
      letter-spacing: 3px;
      font-size: 7vw;
      word-spacing: 10px; } }
  @media (max-width: 360px) and (min-width: 340px) {
    #divtime {
      letter-spacing: 4px;
      word-spacing: 8px;
      font-size: 7vw; } }
  @media (max-width: 400px) and (min-width: 360px) {
    #divtime {
      letter-spacing: 6px;
      word-spacing: 0px;
      font-size: 7vw; }
      #divtime #times_day02 {
        margin-left: 4px; }
      #divtime #times_minute02 {
        margin-left: -3px; }
      #divtime #times_minute02 {
        margin-left: 4px; }
      #divtime #second02 {
        margin-left: 4px; } }
  @media (max-width: 300px) {
    #divtime {
      font-size: 7vw;
      letter-spacing: 0px;
      word-spacing: 0px; } }

.right-box003 {
  position: relative; }

.template-index #shopify-section-1521010384672 {
  display: none; }

/* cart */
.wrapoverblack {
  background: #000;
  opacity: 0.8;
  display: none;
  width: 100%;
  position: fixed;
  height: 100%;
  z-index: 99999; }
  .iscartpopup .wrapoverblack {
    display: block; }

#shopify-section-collection-filters {
  padding-top: 20px; }

.cart__remove_original {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  border: 1px solid #4d4d4d;
  padding: 4px 15px;
  border-radius: 4px; }

.ajaxcart__product {
  position: relative; }

.ajax-qtty {
  margin-bottom: 10px; }

.sticky--active .site-nav {
  background: #262626; }

body {
  background: #222222; }

.home-youtube-bg {
  background: #fff; }
  .home-youtube-bg a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-bottom: -8px; }
  .home-youtube-bg .youtube-box {
    transition: all 0.3s ease 0s; }
    .home-youtube-bg .youtube-box .img__overlay .home-youtube-icon {
      fill: #fff;
      width: 30px;
      height: 30px;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      display: none;
      z-index: 4; }
    .home-youtube-bg .youtube-box:hover .img__overlay::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      height: 94%;
      /*background:rgba(0,0,0,0.6);*/
      background-color: #000;
      opacity: 0.6;
      z-index: 3; }
    .home-youtube-bg .youtube-box:hover .img__overlay .home-youtube-icon {
      display: block; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  margin: 0 auto !important; }

/*================ product faq page ================*/
.faq-page .page-title {
  height: 500px;
  background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/files/faq-bg.png?v=2998956880370998753) center 85% no-repeat;
  background-attachment: fixed; }
  @media only screen and (max-width: 768px) {
    .faq-page .page-title {
      height: 270px; } }
.faq-page .page-width {
  max-width: 1100px; }
.faq-page .faq-tab ul {
  margin-top: -90px; }
  .faq-page .faq-tab ul li {
    list-style: none;
    float: left;
    width: 15%;
    text-align: center;
    cursor: pointer;
    background: #f8f8f8;
    border-radius: 6px; }
    @media only screen and (max-width: 768px) {
      .faq-page .faq-tab ul li {
        width: 31.3%;
        margin-bottom: 10px; } }
    .faq-page .faq-tab ul li span {
      display: block;
      padding: 20px 8px 10px;
      background: #f1f1f1;
      border-radius: 6px 6px 0 0; }
      .faq-page .faq-tab ul li span svg {
        max-width: 90px;
        width: 100%; }
      @media only screen and (max-width: 768px) {
        .faq-page .faq-tab ul li span {
          padding: 0; }
          .faq-page .faq-tab ul li span svg {
            max-width: 60px; } }
    .faq-page .faq-tab ul li p {
      padding: 16px 0;
      color: #000;
      border-radius: 0 0 6px 6px; }
      @media only screen and (max-width: 768px) {
        .faq-page .faq-tab ul li p {
          padding: 6px 0; } }
  .faq-page .faq-tab ul li:not(:last-of-type) {
    margin-right: 2%; }
  .faq-page .faq-tab ul li.active, .faq-page .faq-tab ul li:hover {
    box-shadow: -5px 2px 9px 1px rgba(0, 0, 0, 0.2); }
    .faq-page .faq-tab ul li.active p, .faq-page .faq-tab ul li:hover p {
      color: #971e29;
      font-weight: bold; }
.faq-page .faq_subbox {
  display: none;
  margin-top: 45px; }
  @media only screen and (max-width: 768px) {
    .faq-page .faq_subbox {
      margin-top: 10px; } }
  .faq-page .faq_subbox .title {
    cursor: pointer;
    font-weight: 500;
    margin: 20px 0 15px; }
    .faq-page .faq_subbox .title:before {
      content: '';
      border-left: 10px solid #000000;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      display: inline-block;
      margin-right: 12px;
      vertical-align: bottom; }
  .faq-page .faq_subbox .title.selected:before {
    content: '';
    border-top: 10px solid #000000;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    display: inline-block;
    margin-right: 12px;
    vertical-align: bottom; }
  .faq-page .faq_subbox .faq-box {
    padding: 20px 10px;
    background: #fafafa;
    display: none; }
    .faq-page .faq_subbox .faq-box p strong {
      color: #971e29; }

.template-page .faq-page {
  margin-top: -16px; }

.quotes-wrapper .slick-slider {
  margin-bottom: 0; }

#footer_wrapper {
  position: relative; }

#shopify-section-footer {
  background: #252525;
  /*  	background:url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/bottom-bg.png?v=1575620708");
  	background-size:100% 100%;
    	background-repeat:no-repeat;
    	background-position:left bottom; */ }

/* #footer_wrapper{
 	background:url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/gif.gif?v=1575620704");
	background-size:100% 100%;
  	background-repeat:no-repeat;	
  	background-position:left bottom;
} */
/* #shopify-section-header header{
 	background:url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/head-bg.png?v=1575620703");
	background-size:100% 100%;;
  	background-repeat:no-repeat;	
} */
/* #shopify-section-header  .site-header__search-login{
 	background:transparent !important;

} */
/* .all_logolist_snow{
	background:url("https://cdn.shopify.com/s/files/1/0011/7220/9721/files/policy-bg.png?v=1575620704");
	background-size:100% 100%;;
  	background-repeat:no-repeat;
  	min-height:220px;
} */
/* @media screen and (max-width:1680px){
  #shopify-section-footer{
  	background-size:auto 100%;
  }
  #footer_wrapper{
  	background-size:auto 100%;  
  }
} */
/* @media screen and (max-width:800px){
  #shopify-section-footer{
  	background-size:auto 100% !important;
  }
  #footer_wrapper{
  	background:transparent !important;
  }
  .all_logolist_snow_mobile{
  	 background:#f1f1f1;
     padding-top:0px;
  }
  .site-header__logo_mobile{
  	position:relative !important;
  }
  .site-header__logo-lin_mobile{
  	display:flex !important;
    align-item:bottom;
  }
  .logo_mobile_absolute{
  	height:auto !important;
    max-height:60px;
  }

} */
@media screen and (min-width: 1600px) {
  .quote-arrowss {
    padding-bottom: 10px; }
    .quote-arrowss .slick-next {
      right: -70px !important; }
    .quote-arrowss .slick-prev {
      left: -70px !important; } }
@media screen and (max-width: 1600px) and (min-width: 768px) {
  .quote-arrowss {
    padding-bottom: 10px; }
    .quote-arrowss .slick-next {
      right: -20px !important; }
    .quote-arrowss .slick-prev {
      left: -20px !important; } }
@media screen and (max-width: 768px) {
  .quote-arrowss {
    padding-bottom: 10px; }
    .quote-arrowss .slick-next {
      right: 0px !important; }
    .quote-arrowss .slick-prev {
      left: 0px !important; } }
.right-threebar .right-box002, .right-threebar .right-box003 {
  margin-top: 25px; }
  @media (max-width: 1200px) and (min-width: 769px) {
    .right-threebar .right-box002, .right-threebar .right-box003 {
      margin-top: 22px; } }

.right-box001 img, .right-box002 img, .right-box003 img {
  border-radius: 5px;
  vertical-align: top; }

.quote__slide-wrapper blockquote {
  margin: 10px 40px; }

#shopify-section-faq-contents {
  /*=============faq  css================*/ }
  #shopify-section-faq-contents .question {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 5px !important;
    border-bottom: 1px solid #dcdcdc; }
    #shopify-section-faq-contents .question .tagicon {
      display: inline-block;
      vertical-align: middle; }
      #shopify-section-faq-contents .question .tagicon .icon-plus {
        width: 15px;
        margin-right: 5px;
        color: #000;
        display: block; }
      #shopify-section-faq-contents .question .tagicon .icon-minus {
        width: 15px;
        margin-right: 5px;
        color: #000;
        display: none; }
    #shopify-section-faq-contents .question .content {
      vertical-align: middle;
      display: inline-block;
      width: 92%;
      color: #221e1f !important; }
  #shopify-section-faq-contents .isopen .tagicon .icon-plus {
    display: none; }
  #shopify-section-faq-contents .isopen .tagicon .icon-minus {
    display: block; }
  #shopify-section-faq-contents .answer {
    display: none; }
    #shopify-section-faq-contents .answer .content {
      padding-left: 30px; }
      @media (max-width: 768px) {
        #shopify-section-faq-contents .answer .content {
          padding-left: 20px; } }
      #shopify-section-faq-contents .answer .content p {
        padding: 0;
        margin: 0 0 10px 0; }
  #shopify-section-faq-contents .faq-bottom-text {
    padding: 10px; }
  #shopify-section-faq-contents .faq-slide {
    clear: both; }
  @media all and (max-width: 480px) {
    #shopify-section-faq-contents .answer .content {
      width: 96%;
      float: none;
      display: block;
      margin: 10px; }
      #shopify-section-faq-contents .answer .content p {
        padding: 0; } }

#refcandy-candyjar .footer.row {
  display: none; }

#faq-2 h3, #faq-2 .h3 {
  color: #616161;
  font-size: 30px; }

.faq-container {
  max-width: 720px;
  margin: 0 auto; }

.ref-topblock {
  margin: 20px 0; }

.page-width05 {
  max-width: 1400px; }

.footer-currencys {
  /*      height: 20px;
      width: 100%; */
  text-align: center;
  display: inline-block; }
  .footer-currencys .geolizr-currency-switch-wrapper.geolizr-absolute-auto {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-block; }
  .footer-currencys .geolizr-currency-switch-wrapper .geolizr-currency-links-up {
    bottom: -106px;
    left: 1px; }
  .footer-currencys .geolizr-currency-switcher-arrow-up {
    display: none; }
  .footer-currencys .geolizr-currency-switcher-value {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important; }

@media (min-width: 769px) and (max-width: 1099px) {
  .medium-up--one-third01 {
    width: 12%; } }
@media (max-width: 1400px) and (min-width: 1100px) {
  .medium-up--one-third01 {
    width: 25%; } }

@media (min-width: 769px) {
  .medium-up--one-third02 {
    width: 33%; } }
@media (max-width: 1400px) and (min-width: 1100px) {
  .medium-up--one-third02 {
    width: 33%; } }

@media (min-width: 769px) and (max-width: 1099px) {
  .medium-up--one-third03 {
    width: 52%; } }
@media (max-width: 1400px) and (min-width: 1100px) {
  .medium-up--one-third03 {
    width: 42%; } }

.klaviyo-bis-trigger {
  margin: 0px auto 15px !important;
  background: #a11b23 !important; }

.product-form__cart-submit.btn--sold-out {
  background-color: #aaa; }

/* reward program page*/
.vip-main .page-width {
  padding: 0 5%; }
  @media only screen and (max-width: 768px) {
    .vip-main .page-width {
      padding: 0; }
      .vip-main .page-width .grid {
        margin-left: 0; } }
.vip-main .content-block {
  border-bottom: none; }
.vip-main .vip-top {
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 768px) {
    .vip-main .vip-top {
      flex-direction: column; }
      .vip-main .vip-top .right-box {
        order: 1; }
      .vip-main .vip-top .left-box {
        order: 2;
        padding-left: 0; } }
  .vip-main .vip-top .left-box, .vip-main .vip-top .right-box {
    flex: 0 1 50%; }
  .vip-main .vip-top .left-box {
    padding-left: 12%; }
    @media screen and (max-width: 768px) {
      .vip-main .vip-top .left-box {
        padding-left: 6%; } }
  .vip-main .vip-top h1, .vip-main .vip-top .h1, .vip-main .vip-top .h1--mini {
    margin-top: 0; }
    @media only screen and (max-width: 768px) {
      .vip-main .vip-top h1, .vip-main .vip-top .h1, .vip-main .vip-top .h1--mini {
        font-size: 1.2rem; } }
  .vip-main .vip-top p {
    color: #221e1f; }
.vip-main .btn, .vip-main .btn--secondary {
  border-radius: 4px;
  background: #a21a23; }
  @media only screen and (max-width: 768px) {
    .vip-main .btn, .vip-main .btn--secondary {
      padding: 15px 30px; } }
.vip-main .btn-2 {
  background: #fff;
  border: 1px solid #a21a23;
  color: #a21a23; }
  .vip-main .btn-2:hover {
    color: #fff; }
.vip-main .vip-icons {
  padding: 2% 0;
  background: #fafafa;
  text-align: left;
  color: #221e1f; }
  @media only screen and (max-width: 768px) {
    .vip-main .vip-icons {
      text-align: center; } }
  .vip-main .vip-icons .icon-top {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem; }
    @media only screen and (max-width: 768px) {
      .vip-main .vip-icons .icon-top {
        display: block;
        margin: auto; } }
    .vip-main .vip-icons .icon-top img {
      margin-right: 20px; }
      @media only screen and (max-width: 768px) {
        .vip-main .vip-icons .icon-top img {
          margin-right: 0;
          display: block;
          margin: auto; } }
  .vip-main .vip-icons .grid__item {
    padding-right: 0;
    padding-left: 6%; }
    @media only screen and (max-width: 768px) {
      .vip-main .vip-icons .grid__item {
        display: inline-block;
        float: none;
        width: 30%;
        padding: 0;
        vertical-align: top; } }
.vip-main .page-title {
  margin-top: 2%;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .vip-main .page-title {
      margin-top: 10%; } }
  .vip-main .page-title h1, .vip-main .page-title .h1, .vip-main .page-title .h1--mini {
    text-transform: capitalize;
    border-top: 0;
    margin-top: 0;
    color: #221e1f;
    position: relative;
    font-weight: bold; }
  .vip-main .page-title:before {
    content: "";
    width: 100px;
    height: 2px;
    background: #a21a23;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    top: -6px; }
.vip-main .vip-table {
  padding: 4% 0;
  max-width: 900px;
  margin: auto;
  color: #221e1f; }
  @media only screen and (max-width: 768px) {
    .vip-main .vip-table {
      padding: 10% 0; } }
  .vip-main .vip-table .rte__table-wrapper {
    margin-top: 2%; }
  .vip-main .vip-table table th, .vip-main .vip-table table td {
    border: none;
    text-align: center; }
  .vip-main .vip-table table th img {
    display: block;
    margin: auto; }
  .vip-main .vip-table table tr td {
    border-right: 1px solid #ccc;
    width: 20%;
    padding: 2px; }
    .vip-main .vip-table table tr td:last-child {
      border-right: none; }
    .vip-main .vip-table table tr td:first-child {
      text-align: left;
      color: #000; }
  .vip-main .vip-table table .entryone, .vip-main .vip-table table .techone, .vip-main .vip-table table .genone, .vip-main .vip-table table .advanone {
    font-size: 26px; }
  .vip-main .vip-table table .entryone {
    color: #d46d50; }
  .vip-main .vip-table table .techone {
    color: #bababa; }
  .vip-main .vip-table table .genone {
    color: #fedc74; }
  .vip-main .vip-table table .advanone {
    color: #f9e5a9; }
.vip-main .redone {
  text-align: center;
  color: #fff;
  padding: 1% 0; }
  @media only screen and (max-width: 768px) {
    .vip-main .redone {
      padding: 3% 0; } }
  .vip-main .redone h1, .vip-main .redone .h1, .vip-main .redone .h1--mini {
    color: #fff;
    line-height: 1.1;
    margin-bottom: 5px; }
    @media only screen and (max-width: 768px) {
      .vip-main .redone h1, .vip-main .redone .h1, .vip-main .redone .h1--mini {
        font-size: 1.2rem; } }
    .vip-main .redone h1 span, .vip-main .redone .h1 span, .vip-main .redone .h1--mini span {
      font-size: 3rem;
      color: #ffe076; }
      @media only screen and (max-width: 768px) {
        .vip-main .redone h1 span, .vip-main .redone .h1 span, .vip-main .redone .h1--mini span {
          font-size: 1.4rem; } }
  .vip-main .redone hr {
    width: 100px;
    margin: 5px auto;
    border: none;
    height: 4px; }
    .vip-main .redone hr:before {
      content: "";
      height: 4px;
      width: 100px;
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
      background: #fff; }
  .vip-main .redone .btn, .vip-main .redone .btn--secondary {
    background: #fff;
    color: #a21a23;
    padding: 10px 30px; }
    .vip-main .redone .btn:hover, .vip-main .redone .btn--secondary:hover {
      background: transparent;
      color: #fff;
      border: 1px solid #fff; }
.vip-main .vip-faq {
  max-width: 900px;
  margin: auto; }
  @media only screen and (max-width: 768px) {
    .vip-main .vip-faq {
      padding-left: 10px;
      padding-right: 10px; } }
  .vip-main .vip-faq .question {
    clear: both;
    cursor: pointer;
    margin-top: 5px;
    position: relative;
    font-weight: normal;
    font-size: 16px; }
    .vip-main .vip-faq .question:after {
      content: "+";
      color: #3e3e3e;
      font-size: 24px;
      text-align: center;
      cursor: pointer;
      margin-left: 10px;
      float: right; }
    .vip-main .vip-faq .question.minus:after {
      content: "\2013"; }
  .vip-main .vip-faq .answer {
    display: none;
    clear: both;
    padding: 20px 10px;
    background: #fafafa; }
.vip-main .vip-mobile-box {
  text-align: center;
  margin: 0 8px 10% 8px; }
  .vip-main .vip-mobile-box .top .arrow-down {
    margin: 0 auto  20px  auto;
    width: 20px; }
  .vip-main .vip-mobile-box .top.active .arrow-down {
    transform: rotate(180deg); }
  .vip-main .vip-mobile-box .bottom {
    display: none;
    padding: 0 10px 25px;
    border-bottom: 1px solid #dedede; }

.btn--sold-out {
  pointer-events: none; }

.container-sharefaq {
  border-top: 1px solid #dcdcdc;
  margin: 65px 0 30px;
  position: relative;
  height: 1px; }
  .container-sharefaq .page-faq-share {
    position: absolute;
    top: -33px;
    background: #fff;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block; }
    .container-sharefaq .page-faq-share .grid__item0222 a {
      padding: 0px 8px; }
      @media only screen and (max-width: 768px) {
        .container-sharefaq .page-faq-share .grid__item0222 a {
          padding: 0px 3px; } }
    @media only screen and (max-width: 768px) {
      .container-sharefaq .page-faq-share {
        left: 57%;
        padding: 20px 10px; } }

@media (min-width: 1920px) {
  body {
    max-width: 1920px;
    margin: 0 auto !important; }

  .grid {
    margin-left: 0; }

  .main-content {
    background: #fff; } }
/*  begin new pro  */
.more-hideho {
  display: none; }

.wrapper-top {
  position: relative; }
  .wrapper-top .pro-right_textover {
    position: absolute;
    top: 45%;
    right: 5%;
    width: 40%;
    transform: translateY(-50%); }
    @media (max-width: 768px) {
      .wrapper-top .pro-right_textover {
        right: auto;
        left: 5%;
        top: 50%; } }

.banner-bottom-list {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 768px) {
    .banner-bottom-list {
      flex-wrap: wrap; } }
  .banner-bottom-list .banner-bottom-listitem {
    color: #fff;
    flex: 0 1 20%;
    text-align: center; }
    @media (max-width: 768px) {
      .banner-bottom-list .banner-bottom-listitem {
        flex: 0 1 49%;
        margin-bottom: 10px; } }
    .banner-bottom-list .banner-bottom-listitem img {
      max-width: 55px;
      background: #222;
      border-radius: 50%;
      box-shadow: #969696 0px 0px 6px 1px; }
      @media (max-width: 768px) {
        .banner-bottom-list .banner-bottom-listitem img {
          max-width: 40px; } }
    .banner-bottom-list .banner-bottom-listitem:nth-child(4) img {
      padding: 5px; }

.henggnag-pro-ho {
  margin: 20px 0 30px 20px; }
  @media (max-width: 1600px) {
    .henggnag-pro-ho {
      width: 100px; } }
  @media (max-width: 768px) {
    .henggnag-pro-ho {
      display: none; } }

.pro-right_textover-title {
  font-size: 60px;
  padding-left: 20px;
  color: #fff;
  line-height: 70px;
  width: 80%; }
  @media (max-width: 1600px) {
    .pro-right_textover-title {
      font-size: 50px;
      line-height: 60px; } }
  @media (max-width: 1500px) {
    .pro-right_textover-title {
      font-size: 45px; } }
  @media (max-width: 768px) {
    .pro-right_textover-title {
      display: none; } }

.template-new-pros .breadcrumb {
  display: none; }
.template-new-pros .top-probanner-ho {
  margin-bottom: 40px; }
.template-new-pros .main-content {
  padding-bottom: 0; }

.textoverimage-container {
  margin-bottom: 30px;
  position: relative; }
  .textoverimage-container .textoverimage-container-text {
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    font-size: 60px;
    color: #fff;
    top: 50%;
    width: 80%;
    font-weight: bold;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media (max-width: 1600px) {
      .textoverimage-container .textoverimage-container-text {
        font-size: 50px; } }
    .textoverimage-container .textoverimage-container-text > div {
      margin-bottom: 25px; }
      @media (min-width: 1600px) {
        .textoverimage-container .textoverimage-container-text > div {
          margin-bottom: 45px;
          top: 53%; } }
    @media (max-width: 1300px) {
      .textoverimage-container .textoverimage-container-text {
        font-size: 42px; } }
    @media (max-width: 768px) {
      .textoverimage-container .textoverimage-container-text {
        font-size: 17px;
        top: 64%;
        width: 96%; } }

.textandimage-container {
  padding: 50px 0 0; }
  @media (max-width: 768px) {
    .textandimage-container {
      padding: 0; } }

.textandimage-container-item {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .textandimage-container-item > div {
    flex: 0 1 50%; }
    @media (max-width: 768px) {
      .textandimage-container-item > div {
        flex: 0 1 100%; } }
  .textandimage-container-item .textandimage-text {
    color: #000;
    padding: 0 10%; }
    @media (max-width: 1600px) {
      .textandimage-container-item .textandimage-text {
        padding: 0 6%; } }
    @media (max-width: 768px) {
      .textandimage-container-item .textandimage-text {
        padding: 30px 6%; } }
    .textandimage-container-item .textandimage-text .textandimage-text-img {
      width: 100px;
      position: relative;
      left: -10px; }
      @media (max-width: 1600px) {
        .textandimage-container-item .textandimage-text .textandimage-text-img {
          width: 80px;
          left: -6px; } }
    .textandimage-container-item .textandimage-text .textandimage-text-title {
      font-size: 36px;
      font-weight: bold;
      margin: 10px 0 30px; }
      @media (max-width: 1600px) {
        .textandimage-container-item .textandimage-text .textandimage-text-title {
          font-size: 28px; } }
      @media (min-width: 1900px) {
        .textandimage-container-item .textandimage-text .textandimage-text-title {
          font-size: 1.8vw; } }
      @media (max-width: 768px) {
        .textandimage-container-item .textandimage-text .textandimage-text-title {
          margin: 10px 0 20px;
          font-size: 23px; } }
  @media (max-width: 768px) {
    .textandimage-container-item .re-img-box-textandimage {
      order: 2; } }
  .textandimage-container-item .re-img-box-textandimage img {
    vertical-align: top; }
  .textandimage-container-item:nth-child(3) .textandimage-text-img {
    padding-left: 8px; }

.product-ho-over-container {
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media (min-width: 1600px) {
    .product-ho-over-container {
      padding: 70px 20px 100px; } }
  .product-ho-over-container .product-ho-over-item {
    color: #212121;
    position: relative;
    text-align: center; }
    @media (min-width: 768px) {
      .product-ho-over-container .product-ho-over-item {
        flex: 0 1 32.5%; } }
    .product-ho-over-container .product-ho-over-item .product-itembox-bottomtext-title {
      font-size: 20px;
      margin: 20px 0;
      font-weight: bold; }
    @media (max-width: 768px) {
      .product-ho-over-container .product-ho-over-item {
        background: #F9F9F9; } }
  .product-ho-over-container .product-itembox-bottomtext-img {
    padding: 10px;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #f2f2f2;
    vertical-align: top; }
    @media (max-width: 1300px) {
      .product-ho-over-container .product-itembox-bottomtext-img {
        width: 60px;
        height: 60px; } }
  .product-ho-over-container .product-itembox-bottomtext {
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    /* justify-content: end; */
    padding-top: 24%;
    align-items: center; }
    @media (min-width: 768px) {
      .product-ho-over-container .product-itembox-bottomtext {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%; } }
    .product-ho-over-container .product-itembox-bottomtext .product-itembox-bottomtext-subtitle {
      width: 90%;
      margin: 0 auto; }
    @media (max-width: 1300px) {
      .product-ho-over-container .product-itembox-bottomtext {
        padding-top: 15%; } }
    @media (max-width: 768px) {
      .product-ho-over-container .product-itembox-bottomtext {
        padding-top: 15%;
        position: relative;
        background: transparent;
        padding-bottom: 10%; } }

.quan-box {
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: #f2f2f2 0 0 0px 2px; }
  @media (max-width: 768px) {
    .quan-box {
      width: 82px;
      margin: 0 auto; } }

.morefeatures-container {
  color: #1b1b1b;
  padding-top: 40px;
  background: #F7F7F7; }
  .morefeatures-container .morefeatures-title {
    margin-bottom: 40px;
    font-size: 36px;
    position: relative;
    font-weight: bold;
    text-align: center; }
    .morefeatures-container .morefeatures-title:after {
      content: '';
      position: absolute;
      width: 100px;
      height: 20px;
      bottom: -20px;
      background: url(https://cdn.shopify.cn/s/files/1/0011/7220/9721/files/9022a705161ff42b7879d88f1fd6d0e8.png?v=1591668371) center center no-repeat;
      left: 50%;
      background-size: contain;
      transform: translateX(-50%); }
      @media (max-width: 768px) {
        .morefeatures-container .morefeatures-title:after {
          width: 85px;
          height: 15px; } }
    @media (max-width: 768px) {
      .morefeatures-container .morefeatures-title {
        font-size: 28px; } }
  .morefeatures-container .morefeatures-box-text {
    display: flex;
    width: 70%;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto; }
    .morefeatures-container .morefeatures-box-text .morefeatures-box-text-item {
      background: #ededed;
      padding: 5px 10px;
      border-radius: 7px;
      margin: 20px 20px 0; }
      @media (max-width: 768px) {
        .morefeatures-container .morefeatures-box-text .morefeatures-box-text-item {
          margin: 15px 3px 0; } }
    @media (min-width: 1600px) {
      .morefeatures-container .morefeatures-box-text {
        width: 55%; } }
    @media (max-width: 768px) {
      .morefeatures-container .morefeatures-box-text {
        width: 100%; } }

.morefeaturesbannercontainer {
  margin-top: 40px; }
  .morefeaturesbannercontainer img {
    vertical-align: top; }

.talkingrange-container {
  position: relative; }
  .talkingrange-container .bottom_image_talk {
    position: absolute;
    bottom: 12%;
    left: 54%;
    width: 23%;
    transform: translateX(-50%); }
    @media (max-width: 768px) {
      .talkingrange-container .bottom_image_talk {
        bottom: auto;
        left: 25%;
        width: 60%;
        transform: translate(0);
        top: 22%; } }

.re-overtext-talk-wrapper {
  position: relative; }

.overtext-talk {
  color: #fff;
  position: absolute;
  top: 48%;
  font-weight: bold;
  font-size: 18px;
  width: 90%;
  left: 55%;
  transform: translate(-50%, -50%); }
  @media (min-width: 1600px) {
    .overtext-talk {
      font-size: 22px; } }
  @media (max-width: 1300px) {
    .overtext-talk {
      font-size: 15px; } }
  @media (max-width: 768px) {
    .overtext-talk {
      font-size: 13px;
      top: 45%;
      width: 95%; } }

.talkingrange-text {
  position: absolute;
  top: 15%;
  left: 54%;
  width: 23%;
  transform: translateX(-50%); }
  .talkingrange-text .talkingrange-text-title {
    color: #1b1b1b;
    font-size: 28px;
    font-weight: bold; }
    @media (min-width: 1600px) {
      .talkingrange-text .talkingrange-text-title {
        font-size: 36px; } }
    @media (max-width: 768px) {
      .talkingrange-text .talkingrange-text-title {
        font-size: 18px; } }
  .talkingrange-text .talkingrange-text-subtitle {
    color: #ed7c04;
    font-size: 32px;
    margin-top: 5px;
    font-weight: bold; }
    @media (min-width: 1600px) {
      .talkingrange-text .talkingrange-text-subtitle {
        font-size: 44px; } }
    @media (max-width: 768px) {
      .talkingrange-text .talkingrange-text-subtitle {
        font-size: 24px; } }
  @media (max-width: 768px) {
    .talkingrange-text {
      top: 8%;
      left: 25%;
      width: 60%;
      transform: translate(0); } }

.Specifications-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .Specifications-container > div {
    flex: 0 1 50%; }
    @media (max-width: 768px) {
      .Specifications-container > div {
        flex: 0 1 100%; } }
  .Specifications-container .Specifications-title {
    font-size: 28px;
    width: 62%;
    font-weight: bold;
    margin: 0 auto 50px; }
    @media (min-width: 1600px) {
      .Specifications-container .Specifications-title {
        font-size: 36px;
        width: 54%; } }
    @media (max-width: 768px) {
      .Specifications-container .Specifications-title {
        margin: 0 auto;
        position: absolute;
        width: 100%;
        top: 50px;
        text-align: center; } }
  .Specifications-container .Specifications-box-text-item-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold; }
  .Specifications-container .Specifications-box-text-item-subtitle {
    font-size: 14px;
    width: 60%;
    margin: 0 auto;
    word-break: break-all; }
    @media (max-width: 768px) {
      .Specifications-container .Specifications-box-text-item-subtitle {
        width: 80%; } }
  @media (max-width: 768px) {
    .Specifications-container {
      position: relative;
      padding-top: 100px;
      padding-bottom: 40px; } }

.Specifications-box-text {
  color: #333232; }
  @media (min-width: 1300px) {
    .Specifications-box-text {
      padding-top: 80px; } }
  @media (min-width: 1600px) {
    .Specifications-box-text {
      padding-top: 100px; } }

.wrapper-item-specs {
  display: flex;
  width: 80%;
  flex-wrap: wrap;
  margin: 0 auto; }
  .wrapper-item-specs > div {
    flex: 0 1 50%;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eeeeee; }
    @media (max-width: 768px) {
      .wrapper-item-specs > div {
        padding: 20px 0; } }
    .wrapper-item-specs > div:nth-child(2n+1) {
      border-right: 1px solid #eeeeee; }
    .wrapper-item-specs > div:nth-last-child(1) {
      border-bottom: none; }
    .wrapper-item-specs > div:nth-last-child(2) {
      border-bottom: none; }
  @media (min-width: 1600px) {
    .wrapper-item-specs {
      width: 70%; } }
  @media (max-width: 768px) {
    .wrapper-item-specs {
      width: 90%;
      padding-top: 20px; } }

.whatinboxs-container {
  color: #333232;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .whatinboxs-container > div {
    flex: 0 1 50%; }
    @media (min-width: 1000px) and (max-width: 1400px) {
      .whatinboxs-container > div {
        padding: 20px 0px; } }
    @media (max-width: 768px) {
      .whatinboxs-container > div {
        flex: 0 1 100%; } }

.whats-boxs-container {
  width: 65%;
  padding: 30px 100px;
  margin: 0 auto;
  background: #F7F7F7; }
  .whats-boxs-container ul li {
    list-style: none;
    font-size: 14px;
    margin-bottom: 5px; }
  @media (max-width: 1400px) {
    .whats-boxs-container {
      width: 80%; } }
  @media (max-width: 768px) {
    .whats-boxs-container {
      width: 100%;
      padding: 25px 40px; } }

.whats-boxs-title {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 28px; }
  @media (min-width: 1600px) {
    .whats-boxs-title {
      font-size: 36px; } }

.erweima-container {
  padding: 20px 0;
  color: #333232;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .erweima-container > div {
    flex: 0 1 50%; }
    @media (max-width: 768px) {
      .erweima-container > div {
        flex: 0 1 100%; } }
  .erweima-container .erweima-wrapper {
    width: 70%;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .erweima-container .erweima-wrapper {
        width: 85%; } }
  .erweima-container .erweima-text {
    font-size: 14px; }
  .erweima-container .erweima-title {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 28px; }
    @media (min-width: 1600px) {
      .erweima-container .erweima-title {
        font-size: 36px; } }
  @media (max-width: 768px) {
    .erweima-container {
      padding: 0 0 20px 0;
      background: #fff; } }

@media (max-width: 768px) {
  .left-erweima {
    padding: 20px 0; } }

.battery_title_ho {
  font-size: 16px;
  padding-top: 20px; }
  @media (min-width: 1600px) {
    .battery_title_ho {
      font-size: 18px;
      width: 80%;
      margin: 0 auto; } }
  @media (max-width: 768px) {
    .battery_title_ho {
      font-size: 12px;
      padding-top: 12px; } }

.topbannermobile-title {
  margin-bottom: 2px;
  padding-bottom: 9px;
  font-size: 23px;
  position: relative;
  font-weight: bold;
  text-align: center;
  color: #fff; }
  .topbannermobile-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 20px;
    bottom: -20px;
    background: url(https://cdn.shopify.cn/s/files/1/0011/7220/9721/files/9022a705161ff42b7879d88f1fd6d0e8.png?v=1591668371) center center no-repeat;
    left: 50%;
    background-size: contain;
    transform: translateX(-50%); }
    @media (max-width: 768px) {
      .topbannermobile-title:after {
        width: 85px;
        height: 15px;
        bottom: -15px; } }
  @media (min-width: 768px) {
    .topbannermobile-title {
      display: none; } }

.re-topbannermobile-title {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%); }

@media (max-width: 768px) {
  .product-ho-over-item-img {
    vertical-align: top; }

  .swiper-container-over {
    padding-bottom: 50px !important; } }
.swiper-pagination-over {
  top: 45% !important; }
  @media (min-width: 390px) {
    .swiper-pagination-over {
      top: 47% !important; } }
  .swiper-pagination-over .swiper-pagination-bullet {
    width: 13px !important;
    height: 13px !important; }
  .swiper-pagination-over .swiper-pagination-bullet-active {
    width: 15px !important;
    height: 15px !important;
    position: relative;
    top: 1px !important;
    background: url(https://cdn.shopify.cn/s/files/1/0011/7220/9721/files/yuanbeijing.png?v=1591758105) center center no-repeat !important;
    background-size: contain !important; }

@media (min-width: 1000px) {
  .textoverimage-container-text > div, .product-ho-over-container .product-itembox-bottomtext, .morefeatures-title, .morefeatures-box-text, .re-overtext-talk-wrapper, .Specifications-box-text, .erweima-wrapper, .whats-boxs-container {
    opacity: 0; } }
.normalmove {
  animation: normalmove 1.2s ease-out;
  animation-fill-mode: forwards; }

@keyframes normalmove {
  0% {
    opacity: 0;
    -webkit-transform: translate(50%, 300px);
    transform: translate(50%, 300px); }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.normalmove02 {
  animation: normalmove02 1.2s ease-out;
  animation-fill-mode: forwards; }

@keyframes normalmove02 {
  0% {
    opacity: 0;
    -webkit-transform: translate(69%, 300px);
    transform: translate(69%, 300px); }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.normalmove03 {
  animation: normalmove03 1.2s ease-out;
  animation-fill-mode: forwards; }

@keyframes normalmove03 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%); }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.normalmove04 {
  animation: normalmove04 1.2s ease-out;
  animation-fill-mode: forwards; }

@keyframes normalmove04 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%); }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.normalmove05 {
  animation: normalmove05 1.2s ease-out;
  animation-fill-mode: forwards; }

@keyframes normalmove05 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px); }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

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

.swiper-container-pro01 {
  padding-bottom: 70px !important;
  overflow: hidden !important; }

.swiper-pagination-pro01 .swiper-pagination-bullet {
  width: 11px !important;
  height: 11px !important; }
.swiper-pagination-pro01 .swiper-pagination-bullet-active {
  width: 13px !important;
  height: 13px !important;
  position: relative;
  top: 1px !important;
  background: url(https://cdn.shopify.cn/s/files/1/0011/7220/9721/files/yuanbeijing.png?v=1591758105) center center no-repeat !important;
  background-size: contain !important; }

.swiper-pagination-sw3 .swiper-pagination-bullet-active {
  background: #eb5757 !important; }

.swiper-button-next-pro01, .swiper-button-prev-pro01 {
  border-radius: 50%;
  width: 45px !important;
  height: 45px !important;
  background-size: 45px 45px !important;
  box-shadow: #dfdfdf 0px 0px 3px 1px; }

.swiper-button-next-pro01 {
  background-image: url(https://cdn.shopify.cn/s/files/1/0011/7220/9721/files/right-arrow.png?v=1591769714) !important;
  right: 2px !important; }

.swiper-button-prev-pro01 {
  background-image: url(https://cdn.shopify.cn/s/files/1/0011/7220/9721/files/left-arrow.png?v=1591769717) !important;
  left: 2px !important; }

.re-overtext-talk-wrapper {
  display: block; }

/* template-raddy-sw3 */
.template-raddy-sw3 .breadcrumb {
  display: none; }
.template-raddy-sw3 #shopify-section-product-template-raddysw3 {
  padding-top: 50px; }
.template-raddy-sw3 .product-raddysw3-over-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  top: 70px; }
  .template-raddy-sw3 .product-raddysw3-over-container .product-raddysw3-over-item {
    flex: 0 1 20%;
    /*     text-align: center; */
    margin: 0 1%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: #eee 1px 1px 8px 2px; }
    @media (max-width: 768px) {
      .template-raddy-sw3 .product-raddysw3-over-container .product-raddysw3-over-item {
        flex: 0 1 48%;
        padding: 15px 10px;
        margin-bottom: 20px; } }
  @media (max-width: 768px) {
    .template-raddy-sw3 .product-raddysw3-over-container {
      position: absolute;
      padding: 0px 5px;
      top: 0px; } }
.template-raddy-sw3 .product-fourbox-over-container {
  color: #212121;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  .template-raddy-sw3 .product-fourbox-over-container .product-fourbox-over-item {
    flex: 0 1 18%;
    text-align: center; }
    @media (max-width: 768px) {
      .template-raddy-sw3 .product-fourbox-over-container .product-fourbox-over-item {
        flex: 0 1 100%;
        margin-bottom: 25px;
        display: flex;
        text-align: left;
        align-items: center; }
        .template-raddy-sw3 .product-fourbox-over-container .product-fourbox-over-item .product-fourbox-over-item-imgwrapper {
          flex: 0 1 35%;
          padding-left: 10px; }
        .template-raddy-sw3 .product-fourbox-over-container .product-fourbox-over-item .product-fourbox-bottomtext {
          flex: 0 1 65%;
          padding-left: 15px; }
          .template-raddy-sw3 .product-fourbox-over-container .product-fourbox-over-item .product-fourbox-bottomtext .product-fourbox-bottomtext-title {
            margin: 0px 0 5px;
            font-size: 18px; }
          .template-raddy-sw3 .product-fourbox-over-container .product-fourbox-over-item .product-fourbox-bottomtext .product-fourbox-bottomtext-subtitle {
            font-size: 12px; } }
.template-raddy-sw3 .titlefourbox-overblocktitle {
  font-size: 3vw;
  color: #000;
  text-align: center;
  font-weight: bold;
  margin: 30px 0 60px; }
  @media (max-width: 768px) {
    .template-raddy-sw3 .titlefourbox-overblocktitle {
      font-size: 28px;
      text-align: left;
      margin: 30px 0;
      padding-left: 20px; } }

.allinopne-top {
  position: relative; }
  .allinopne-top .cc-allinopen {
    color: #fff;
    position: absolute;
    position: absolute;
    top: 20%;
    left: 36%; }
    .allinopne-top .cc-allinopen .arr-threea {
      font-size: 1.5vw;
      vertical-align: middle;
      margin-right: 10px; }
      @media (max-width: 768px) {
        .allinopne-top .cc-allinopen .arr-threea {
          font-size: 16px; } }
    .allinopne-top .cc-allinopen .allinopen-texttop {
      font-size: 3vw;
      vertical-align: middle;
      font-weight: bold; }
      @media (max-width: 768px) {
        .allinopne-top .cc-allinopen .allinopen-texttop {
          font-size: 28px;
          display: block; } }
    @media (max-width: 768px) {
      .allinopne-top .cc-allinopen {
        top: 6%;
        left: 10%; } }

#shopify-section-product-ho-over-raddysw3 {
  color: #000; }
  #shopify-section-product-ho-over-raddysw3 .product-raddysw3-bottomtext-subtitle {
    color: #808080;
    min-height: 41px; }
    @media (max-width: 768px) {
      #shopify-section-product-ho-over-raddysw3 .product-raddysw3-bottomtext-subtitle {
        min-height: 48px; } }

.titleraddysw3-overblocktitle {
  font-size: 3vw;
  color: #000;
  text-align: center;
  font-weight: bold;
  margin: 30px 0 0px; }
  @media (max-width: 768px) {
    .titleraddysw3-overblocktitle {
      font-size: 26px;
      margin: 0;
      padding: 20px 5px 30px; } }

.linght-box-container {
  position: relative; }
  .linght-box-container .light-box-imgwrapper img {
    vertical-align: top; }
  .linght-box-container .light-box-textwrapper {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 30%;
    color: #fff; }
    .linght-box-container .light-box-textwrapper .light-box-textwrapper-title {
      font-size: 36px;
      font-weight: bold; }
      @media (max-width: 1600px) {
        .linght-box-container .light-box-textwrapper .light-box-textwrapper-title {
          font-size: 28px; } }
    .linght-box-container .light-box-textwrapper .light-box-textwrapper-subtitle {
      font-size: 19px;
      margin: 30px 0; }
      @media (min-width: 1600px) {
        .linght-box-container .light-box-textwrapper .light-box-textwrapper-subtitle {
          line-height: 1.5em; } }
      @media (max-width: 1600px) {
        .linght-box-container .light-box-textwrapper .light-box-textwrapper-subtitle {
          font-size: 16px;
          margin: 20px 0; } }
      @media (max-width: 768px) {
        .linght-box-container .light-box-textwrapper .light-box-textwrapper-subtitle {
          font-size: 14px;
          margin: 10px 0 15px; } }
    @media (max-width: 768px) {
      .linght-box-container .light-box-textwrapper {
        top: 5%;
        left: 5%;
        transform: translateY(0%);
        width: 90%; } }
  .linght-box-container .light-box-buttoncontainer {
    display: flex;
    font-size: 16px;
    color: #000; }
    @media (max-width: 1600px) {
      .linght-box-container .light-box-buttoncontainer {
        font-size: 15px; } }
    .linght-box-container .light-box-buttoncontainer > div {
      padding: 5px 10px;
      margin-right: 20px;
      background: #fff;
      border-radius: 8px;
      cursor: pointer; }

.product-fourbox-bottomtext-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 30px 0 20px; }
  @media (min-width: 768px) and (max-width: 1470px) {
    .product-fourbox-bottomtext-title {
      font-size: 16px; } }

.product-fourbox-bottomtext-subtitle {
  font-size: 18px; }
  @media (max-width: 1600px) {
    .product-fourbox-bottomtext-subtitle {
      font-size: 16px; } }

#shopify-section-product-fourbox-raddysw3 {
  padding: 30px 0; }
  @media (max-width: 768px) {
    #shopify-section-product-fourbox-raddysw3 {
      padding: 0; } }

.container-outsidebox {
  position: relative; }

#shopify-section-product-ho-over-raddysw3 {
  padding: 40px 0 0px;
  margin-bottom: 100px;
  background: #E6E6E6; }
  @media (max-width: 768px) {
    #shopify-section-product-ho-over-raddysw3 {
      padding: 40px 0 140px;
      margin-bottom: 550px; } }
  @media (min-width: 300px) and (max-width: 550px) {
    #shopify-section-product-ho-over-raddysw3 {
      margin-bottom: 420px; } }

.product-raddysw3-bottomtext-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px; }
  @media (max-width: 768px) {
    .product-raddysw3-bottomtext-title {
      font-size: 14px; } }

.product-raddysw3-bottomtext-subtitle {
  margin-bottom: 25px; }
  @media (max-width: 768px) {
    .product-raddysw3-bottomtext-subtitle {
      font-size: 12px;
      margin-bottom: 10px; } }

#shopify-section-product-ho-Specifications-raddysw3 {
  margin: 80px 0; }
  @media (max-width: 768px) {
    #shopify-section-product-ho-Specifications-raddysw3 {
      margin: 80px 0 0; } }

.template-raddy-sw3 .Specifications-container .Specifications-title {
  text-align: left;
  padding-left: 35px; }

.light-box-buttoncontainer .red-btn-sw3 {
  background-color: #eb5757 !important; }

@media (max-width: 768px) {
  .template-raddy-sw3 .swiper-button-prev-pro01, .template-raddy-sw3 .swiper-button-next-pro01 {
    display: none; } }
.template-raddy-sw3 .wrapper-item-specs {
  width: 85%; }
@media (min-width: 1000px) {
  .template-raddy-sw3 .product-raddysw3-over-container, .template-raddy-sw3 .product-fourbox-over-container, .template-raddy-sw3 .allinopne-top .cc-allinopen {
    opacity: 0; } }

@media (min-width: 1920px) {
  .textandimage-text-subtitle {
    font-size: 0.9vw; } }

@media (max-width: 1600px) {
  .product-form .klaviyo-bis-trigger {
    display: block;
    flex: 0 1 100%; } }

.product-single__photo-video video {
  width: 95%;
  margin: 0 auto; }
.product-single__photo-video iframe {
  width: 95%; }

.Icon--play-ho {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transform: translate(-50%, -50%);
  fill: #a11b23;
  stroke: #eee; }
  @media (max-width: 768px) {
    .Icon--play-ho {
      width: 25px; } }

.template-8th-anniversary .breadcrumb {
  display: none; }
.template-8th-anniversary .main-content {
  background: #383431;
  padding-bottom: 0; }

.container-8th-anniversary img {
  vertical-align: top; }
.container-8th-anniversary .anniversary-topbanner-wrapper {
  position: relative; }
  @media (min-width: 768px) {
    .container-8th-anniversary .anniversary-topbanner-wrapper {
      padding-bottom: 8vw; } }
  .container-8th-anniversary .anniversary-topbanner-wrapper .time_left-topbannerblock {
    position: relative;
    width: 100%; }
    @media (max-width: 768px) {
      .container-8th-anniversary .anniversary-topbanner-wrapper .time_left-topbannerblock {
        padding: 5vw 3vw 0; } }
    @media (min-width: 768px) {
      .container-8th-anniversary .anniversary-topbanner-wrapper .time_left-topbannerblock {
        position: absolute;
        width: 32%;
        bottom: 20.5%;
        left: 7%; } }
    @media (min-width: 1920px) {
      .container-8th-anniversary .anniversary-topbanner-wrapper .time_left-topbannerblock {
        padding: 0; } }
  .container-8th-anniversary .anniversary-topbanner-wrapper .right-share-topbannerblock {
    position: absolute;
    width: 32%;
    bottom: 20.5%;
    right: 7%; }
    @media (max-width: 768px) {
      .container-8th-anniversary .anniversary-topbanner-wrapper .right-share-topbannerblock {
        width: 82%;
        bottom: 8.5%;
        right: 9%; } }
  @media (min-width: 1921px) {
    .container-8th-anniversary .anniversary-topbanner-wrapper {
      padding-bottom: 130px; } }

.anniversary-02-loop-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .anniversary-02-loop-container .anniversary-02-loop-item {
    flex: 0 1 13%; }
    @media (max-width: 768px) {
      .anniversary-02-loop-container .anniversary-02-loop-item {
        flex: 0 1 33%;
        margin-bottom: 35px; } }

#shopify-section-anniversary-02 {
  background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/8th-04.jpg?v=1596425010) center 0% no-repeat;
  padding: 5vw 30px;
  /*     background-size: cover; */
  position: relative; }
  #shopify-section-anniversary-02 .anniversary-02-title {
    font-size: 5vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -65%);
    background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/part2-03.png?v=1596426418) center no-repeat;
    background-size: cover;
    padding: 1.46vw 4vw;
    text-transform: capitalize; }
    @media (min-width: 768px) {
      #shopify-section-anniversary-02 .anniversary-02-title {
        font-size: 2vw; } }
    @media (max-width: 768px) {
      #shopify-section-anniversary-02 .anniversary-02-title {
        padding: 4.6vw 0;
        font-size: 7vw;
        width: 75%;
        text-align: center; } }
    @media (min-width: 1920px) {
      #shopify-section-anniversary-02 .anniversary-02-title {
        font-size: 38.5px;
        padding: 33px 96px; } }
  @media (max-width: 768px) {
    #shopify-section-anniversary-02 {
      padding: 60px 10px;
      background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/a-mobile02.png?v=1596609809) center 0% no-repeat; } }

.anniversary-02-loop-item-title {
  background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/part2-01.png?v=1596425482) center no-repeat;
  background-size: cover;
  text-align: center;
  font-size: 1vw;
  color: #fff;
  padding: 9px 20px;
  margin-bottom: 20px; }
  .anniversary-02-loop-item:nth-child(6) .anniversary-02-loop-item-title {
    background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/part2-02.png?v=1596425591) center no-repeat;
    background-size: cover;
    padding: 0px 20%;
    line-height: 1.2em; }
    @media (min-width: 1600px) {
      .anniversary-02-loop-item:nth-child(6) .anniversary-02-loop-item-title {
        padding: 2px 20%; } }
    @media (min-width: 1000px) and (max-width: 1600px) {
      .anniversary-02-loop-item:nth-child(6) .anniversary-02-loop-item-title {
        padding: 1px 20%; } }
    @media (max-width: 768px) {
      .anniversary-02-loop-item:nth-child(6) .anniversary-02-loop-item-title {
        font-size: 3vw;
        padding: 1px 20%;
        background-size: contain; } }
  @media (max-width: 768px) {
    .anniversary-02-loop-item-title {
      font-size: 3vw;
      background-size: contain; } }
  @media (min-width: 1600px) {
    .anniversary-02-loop-item-title {
      padding: 0.6vw 1vw; } }
  @media (min-width: 1000px) and (max-width: 1600px) {
    .anniversary-02-loop-item-title {
      padding: 0.5vw 1vw; } }

.anniversary-03-wrapper {
  position: relative; }
  .anniversary-03-wrapper .text-box-anniversary-03 {
    position: absolute;
    top: 41%;
    left: 13.5%;
    width: 38%;
    color: #f2f3c9; }
    .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-title {
      font-size: 3.64vw;
      line-height: 1.2em;
      font-weight: bold; }
      @media (max-width: 768px) {
        .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-title {
          font-size: 9vw;
          text-align: center; } }
      @media (min-width: 1920px) {
        .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-title {
          font-size: 70px; } }
    .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-subtitle {
      padding: 1.5vw 0 1.2vw;
      width: 64%;
      font-size: 1vw; }
      @media (max-width: 768px) {
        .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-subtitle {
          padding: 2vw 0 4vw;
          width: 70%;
          margin: 0 auto;
          /* font-weight: bold; */
          text-align: center;
          font-size: 3vw; } }
      @media (min-width: 1920px) {
        .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-subtitle {
          font-size: 19px; } }
    .anniversary-03-wrapper .text-box-anniversary-03 .alink-03anniversary {
      display: inline-block;
      font-size: 1.1vw;
      font-weight: bold;
      color: #000;
      background: #ECA354;
      padding: 10px;
      border-radius: 6px; }
      .anniversary-03-wrapper .text-box-anniversary-03 .alink-03anniversary img {
        vertical-align: middle;
        width: 1.1vw;
        margin-left: 10px;
        margin-bottom: 2px; }
        @media (max-width: 768px) {
          .anniversary-03-wrapper .text-box-anniversary-03 .alink-03anniversary img {
            width: 2.5vw; } }
      @media (max-width: 768px) {
        .anniversary-03-wrapper .text-box-anniversary-03 .alink-03anniversary {
          font-size: 3.2vw;
          padding: 5px 10px; } }
      @media (min-width: 1920px) {
        .anniversary-03-wrapper .text-box-anniversary-03 .alink-03anniversary {
          font-size: 20px; } }
    @media (max-width: 768px) {
      .anniversary-03-wrapper .text-box-anniversary-03 {
        top: 15%;
        left: 5%;
        width: 90%;
        text-align: center; } }

#shopify-section-anniversary-04 {
  background: #383431;
  color: #ecedc5;
  padding: 5vw 0; }
  #shopify-section-anniversary-04 .anniversary-04-wrapper {
    width: 75%;
    margin: 0 auto; }
    @media (max-width: 768px) {
      #shopify-section-anniversary-04 .anniversary-04-wrapper {
        width: 95%; } }

.anniversary-04topblock {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px; }
  .anniversary-04topblock .anniversary-04topblock-left {
    flex: 0 1 41%; }
    @media (max-width: 768px) {
      .anniversary-04topblock .anniversary-04topblock-left {
        flex: 0 1 90%;
        margin-bottom: 30px; } }
  .anniversary-04topblock .anniversary-04topblock-right {
    flex: 0 1 59%;
    padding: 2% 0 0 2%; }
    @media (max-width: 768px) {
      .anniversary-04topblock .anniversary-04topblock-right {
        flex: 0 1 100%;
        padding: 0; } }
  @media (max-width: 768px) {
    .anniversary-04topblock {
      margin-bottom: 20px;
      justify-content: center; } }

.anniversary-04topblock-left-title {
  text-align: center;
  color: #eca354;
  font-weight: bold;
  font-size: 2.32vw; }
  @media (max-width: 768px) {
    .anniversary-04topblock-left-title {
      font-size: 6vw; } }
  @media (min-width: 1920px) {
    .anniversary-04topblock-left-title {
      font-size: 44.5px; } }

.midbox-anniversary-04topblock-left {
  position: relative; }
  .midbox-anniversary-04topblock-left .md-content-04 {
    position: absolute;
    top: 15%;
    width: 75%;
    left: 15%;
    font-size: 1.02vw;
    line-height: 1.6em; }
    @media (max-width: 768px) {
      .midbox-anniversary-04topblock-left .md-content-04 {
        top: 16%;
        font-size: 2.8vw; } }
    @media (min-width: 1920px) {
      .midbox-anniversary-04topblock-left .md-content-04 {
        font-size: 19px; } }

.bottom-text-04topblock-left {
  width: 80%;
  margin: 0 auto 0 14%;
  font-size: 0.85vw; }
  .bottom-text-04topblock-left p {
    margin-bottom: 4px; }
  @media (max-width: 768px) {
    .bottom-text-04topblock-left {
      font-size: 2.4vw; } }
  @media (min-width: 1920px) {
    .bottom-text-04topblock-left {
      font-size: 16px; } }

@media (min-width: 1000px) {
  .anniversary-04bottomblock {
    padding-left: 1.9%; } }

.anniversary-05-wrapper {
  position: relative; }
  .anniversary-05-wrapper .anniversary-05-righttext {
    color: #f2f3c9; }
    @media (min-width: 768px) {
      .anniversary-05-wrapper .anniversary-05-righttext {
        width: 40%;
        position: absolute;
        top: 4.3%;
        right: 5%; } }
    @media (max-width: 768px) {
      .anniversary-05-wrapper .anniversary-05-righttext {
        margin: 0 auto;
        width: 90%;
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center; } }

.anniversary-05title {
  font-size: 3.2vw;
  font-weight: bold; }
  @media (max-width: 768px) {
    .anniversary-05title {
      font-size: 8vw; } }
  @media (min-width: 1920px) {
    .anniversary-05title {
      font-size: 61px; } }

.anniversary-05subtitle {
  font-size: 1.6vw;
  font-weight: bold;
  margin: 30px 0 20px;
  letter-spacing: 0.01em; }
  @media (max-width: 768px) {
    .anniversary-05subtitle {
      font-size: 4vw;
      margin: 20px 0 10px; } }
  @media (min-width: 1920px) {
    .anniversary-05subtitle {
      font-size: 31px; } }

.anniversary-05sprice {
  font-size: 5.5vw;
  font-weight: bold;
  color: #fe9019;
  text-shadow: #383431 5px 1px 2px;
  line-height: 1; }
  @media (max-width: 768px) {
    .anniversary-05sprice {
      font-size: 14vw;
      text-shadow: #000 5px 1px 2px;
      padding: 10px 0; } }
  @media (min-width: 1920px) {
    .anniversary-05sprice {
      font-size: 105px; } }

.anniversary-05bottomurl {
  color: #f2f3c9;
  display: inline-block;
  font-weight: bold;
  border-radius: 3px;
  background: #a11b23;
  padding: 1vw 5vw;
  font-size: 1.2vw;
  margin-top: 1vw;
  margin-bottom: 2vw; }
  .anniversary-05bottomurl:hover {
    color: #fff; }
  @media (max-width: 768px) {
    .anniversary-05bottomurl {
      padding: 3vw 12vw;
      font-size: 4vw;
      margin-top: 0;
      margin-bottom: 5vw; } }
  @media (min-width: 1920px) {
    .anniversary-05bottomurl {
      padding: 25px 81px;
      font-size: 24px; } }

.anniversary-05bottomtext {
  font-size: 1.1vw; }
  .anniversary-05bottomtext p {
    margin-bottom: 4px; }
  @media (max-width: 768px) {
    .anniversary-05bottomtext {
      font-size: 3vw; } }
  @media (min-width: 1920px) {
    .anniversary-05bottomtext {
      font-size: 22px; } }

.anniversary-06-wrapper {
  position: relative; }
  .anniversary-06-wrapper .anniversary-06-righttext {
    color: #f2f3c9; }
    @media (min-width: 768px) {
      .anniversary-06-wrapper .anniversary-06-righttext {
        width: 35%;
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        right: 10%; } }
    @media (max-width: 768px) {
      .anniversary-06-wrapper .anniversary-06-righttext {
        width: 90%;
        margin: 0 auto;
        padding: 40px 0 10px;
        text-align: center; } }

.anniversary-06title {
  font-size: 3.5vw;
  font-weight: bold;
  color: #eca354; }
  @media (max-width: 768px) {
    .anniversary-06title {
      font-size: 9vw; } }
  @media (min-width: 1920px) {
    .anniversary-06title {
      font-size: 67px; } }

.anniversary-06subtitle {
  margin: 1vw 0 3vw;
  width: 90%;
  font-size: 1.2vw; }
  .anniversary-06subtitle span {
    color: #eca354; }
  @media (max-width: 768px) {
    .anniversary-06subtitle {
      margin: 3vw auto 8vw;
      width: 72%;
      font-size: 2.8vw; } }
  @media (min-width: 1920px) {
    .anniversary-06subtitle {
      margin: 40px 0 70px;
      font-size: 24px; } }

.f-tops {
  margin: 1vw 0; }
  @media (max-width: 768px) {
    .f-tops {
      margin: 3vw 0; } }

.anniversary-06bottomurl {
  color: #383431;
  background: #eca354;
  display: inline-block;
  padding: 0.6vw 5vw;
  font-size: 1.5vw;
  font-weight: bold;
  letter-spacing: 0.03em;
  border-radius: 2vw;
  border: 5px solid #3b3734;
  box-shadow: #eca354 0px 0px 0px 2px; }
  @media (max-width: 768px) {
    .anniversary-06bottomurl {
      padding: 1vw 13vw;
      font-size: 4vw; } }
  @media (min-width: 1920px) {
    .anniversary-06bottomurl {
      padding: 15px 80px;
      font-size: 29px; } }

.anniversary-07-wrapper {
  position: relative; }
  .anniversary-07-wrapper .anniversary-07title {
    position: absolute;
    text-align: center;
    top: 40%;
    right: 14%;
    line-height: 1.6em;
    font-size: 1vw; }
    .anniversary-07-wrapper .anniversary-07title span {
      display: block; }
    @media (max-width: 768px) {
      .anniversary-07-wrapper .anniversary-07title {
        top: auto;
        right: 18%;
        bottom: 23.6%;
        line-height: 1.6em;
        font-size: 3vw; } }
    @media (min-width: 1920px) {
      .anniversary-07-wrapper .anniversary-07title {
        font-size: 19.2px; } }

.anniversary-07-righttext {
  color: #383431; }

.anniversary-07subtitle {
  position: absolute;
  right: 0;
  top: 56%;
  width: 39.5%;
  font-size: 1.1em; }
  .anniversary-07subtitle span {
    display: block; }
  @media (max-width: 768px) {
    .anniversary-07subtitle {
      right: auto;
      top: auto;
      left: 15%;
      width: 70%;
      bottom: 4%;
      font-size: 2.8vw; } }

.anniversary-08-wrapper {
  background: #383431;
  padding: 15px 0 3vw; }
  .anniversary-08-wrapper .img-bl-container-08 {
    width: 73%;
    margin: 0 auto; }
    .anniversary-08-wrapper .img-bl-container-08 .img-bl-item-08 {
      margin-bottom: 5vw; }
    @media (max-width: 768px) {
      .anniversary-08-wrapper .img-bl-container-08 {
        width: 90%; } }
  @media (max-width: 768px) {
    .anniversary-08-wrapper {
      padding: 15px 0 50px; } }

.s-bg-diandian {
  margin-bottom: 5vw; }

.img-b-container-09 > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .img-b-container-09 > div .img-bl-item-09 {
    flex: 0 1 16%; }

.anniversary-09-wrapper {
  background: #eca354;
  padding: 10px 1.5vw;
  position: relative; }
  @media (max-width: 768px) {
    .anniversary-09-wrapper {
      padding: 0px 0 20px; } }

.anniversary-09-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.8vw 5vw;
  color: #383431;
  background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/part9-01_fb18d512-39ec-4d72-b3ce-cb56e93c1e47.png?v=1596524511) center no-repeat;
  font-weight: bold;
  background-size: cover;
  font-size: 2vw; }
  @media (max-width: 768px) {
    .anniversary-09-title {
      font-size: 5vw;
      width: 80%;
      text-align: center;
      padding: 4vw 3vw; } }
  @media (min-width: 1920px) {
    .anniversary-09-title {
      padding: 30px 50px;
      font-size: 45px; } }

.s-black-diandian {
  margin-bottom: 6vw; }
  @media (max-width: 768px) {
    .s-black-diandian {
      margin-bottom: 8vw; } }

.box-two-ann09 {
  margin: 4vw 0;
  position: relative;
  left: -6%; }

.box-three-ann09 {
  position: relative;
  left: 2%; }

.anniversary-10-wrapper {
  background: #eca354;
  padding: 2vw 0 5vw; }

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

/* .anniversary-10-title{
     color: #38382e;
    background: #e88c29;
    text-align: center;
    display: inline-block;
    padding: 1.2vw 6vw;
    font-size: 2.2vw;
    border-radius: 40px;
    font-weight: bold;
    text-shadow: #fff 2px 1px 0px;
} */
.anniversary-10-title {
  width: 45%;
  padding-bottom: 3vw;
  margin: 0 auto; }
  @media (max-width: 768px) {
    .anniversary-10-title {
      width: 85%;
      padding-bottom: 6vw; } }

.img-b-container-10 {
  color: #f2f3c9; }
  .img-b-container-10 a {
    color: #f2f3c9; }
    .img-b-container-10 a:hover {
      color: #fff; }

.img-bl-item-10 {
  position: relative;
  margin-bottom: 1.5vw;
  margin-top: 0 !important; }
  .img-bl-item-10 .review-anniversary {
    position: absolute;
    top: 50%;
    left: 9%;
    width: 83%;
    font-size: 0.6vw;
    transform: translateY(-50%); }
    .img-bl-item-10 .review-anniversary span {
      margin-left: 6vw; }
    @media (max-width: 768px) {
      .img-bl-item-10 .review-anniversary {
        font-size: 2.3vw;
        left: 10%; } }
    @media (min-width: 1921px) {
      .img-bl-item-10 .review-anniversary {
        font-size: 15.3px; } }
    @media (max-width: 1300px) {
      .img-bl-item-10 .review-anniversary {
        left: 7%;
        width: 90%; } }

.container-boxswiper {
  width: 87%;
  margin: 0 auto; }
  @media (max-width: 768px) {
    .container-boxswiper {
      width: 90%; } }

@media (min-width: 768px) {
  .posiweizhi01, .posiweizhi04 {
    left: -0.5%; }

  .posiweizhi02, .posiweizhi05 {
    left: 1.5%; }

  .posiweizhi03, .posiweizhi06 {
    left: -1.5%; } }
@media (max-width: 768px) {
  .posiweizhi02, .posiweizhi04, .posiweizhi06 {
    left: 1.5%; } }
@media (min-width: 768px) {
  .img-b-container-10 {
    overflow: visible !important; } }

.divtime03 {
  color: #eca354;
  font-size: 2vw;
  letter-spacing: 2.1vw; }
  @media (max-width: 768px) {
    .divtime03 {
      color: #eca354;
      font-size: 6vw;
      letter-spacing: 6vw; } }
  @media (min-width: 1920px) {
    .divtime03 {
      font-size: 34px;
      letter-spacing: 45px; } }

#times_day03 {
  position: absolute;
  bottom: 21%;
  left: 12%; }
  @media (max-width: 768px) {
    #times_day03 {
      bottom: 19%;
      left: 14%; } }
  @media (min-width: 1920px) {
    #times_day03 {
      bottom: 22%;
      left: 12%; } }

#times_hour03 {
  position: absolute;
  bottom: 21%;
  left: 32.5%; }
  @media (max-width: 768px) {
    #times_hour03 {
      bottom: 19%;
      left: 34%; } }
  @media (min-width: 1920px) {
    #times_hour03 {
      left: 33%;
      bottom: 22%; } }

#times_minute03 {
  position: absolute;
  bottom: 21%;
  left: 53.6%; }
  @media (max-width: 768px) {
    #times_minute03 {
      bottom: 19%;
      left: 53.5%; } }
  @media (min-width: 1920px) {
    #times_minute03 {
      bottom: 22%;
      left: 54%; } }

#second03 {
  position: absolute;
  bottom: 21%;
  left: 75%; }
  @media (max-width: 768px) {
    #second03 {
      bottom: 19%;
      left: 73%; } }
  @media (min-width: 1920px) {
    #second03 {
      bottom: 22%;
      left: 74.7%; } }

#facebook-ann {
  opacity: 1;
  position: absolute;
  bottom: 23%;
  left: 18%; }
  #facebook-ann svg {
    width: 1.8vw;
    transition: .3s;
    height: 1.8vw; }
    @media (max-width: 768px) {
      #facebook-ann svg {
        width: 4.8vw;
        height: 4.8vw; } }
    #facebook-ann svg path {
      fill: #eca354 !important; }
    #facebook-ann svg:hover path {
      fill: #a11b23 !important; }

#twitter-ann {
  opacity: 1;
  position: absolute;
  bottom: 23%;
  left: 45%; }
  #twitter-ann svg {
    width: 1.8vw;
    transition: .3s;
    height: 1.8vw; }
    @media (max-width: 768px) {
      #twitter-ann svg {
        width: 4.8vw;
        height: 4.8vw; } }
    #twitter-ann svg path {
      fill: #eca354 !important; }
    #twitter-ann svg:hover path {
      fill: #a11b23 !important; }

#pinterest-ann {
  opacity: 1;
  position: absolute;
  bottom: 23%;
  left: 74%; }
  #pinterest-ann svg {
    transition: .3s;
    width: 1.8vw;
    height: 1.8vw; }
    @media (max-width: 768px) {
      #pinterest-ann svg {
        width: 4.8vw;
        height: 4.8vw; } }
    #pinterest-ann svg path {
      fill: #eca354 !important; }
    #pinterest-ann svg:hover path {
      fill: #a11b23 !important; }

/* .share-facebook-title{
 position: absolute;
  
      bottom: 25%;
left: 73%;
  font-size:1.5vw;
}
.share-twitter-title{
 position: absolute;
      bottom: 25%;
left: 73%;
}

.share-pinterest-title{
position: absolute;
      bottom: 25%;
left: 73%;
} */
@media (max-width: 768px) {
  .box-one-ann09 {
    position: relative;
    left: 1%; } }

@media (max-width: 768px) {
  .sw-hobox {
    flex: 0 1 100%;
    width: 100%; }

  .swiper-slidetesu .anniversary-02-loop-item-title {
    background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/part2-02.png?v=1596425591) center no-repeat;
    font-size: 3vw;
    padding: 1px 10%;
    background-size: contain; } }
@media (max-width: 768px) {
  .img-bl-item-10 img {
    /*   height: 74px; */ } }

/* .smalls-imgheight{

    transform: scaleY(1.5);
} */
.re-sapns {
  display: inline; }

/* product 3d */
.ad-modles-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
  width: 70px;
  stroke: #666;
  cursor: pointer;
  fill: #666;
  transition: .3s; }
  @media (max-width: 768px) {
    .ad-modles-icon {
      width: 50px; } }
  .ad-modles-icon:hover {
    stroke: #a11b23;
    fill: #a11b23; }
  .red-svgcolor .ad-modles-icon {
    stroke: #a11b23;
    fill: #a11b23; }

.modle-views {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  @media (max-width: 768px) {
    .modle-views {
      width: 350px !important;
      height: 350px !important; } }
  .modle-views:focus {
    outline: none; }
  .modle-views *:focus {
    outline: none !important; }

.modle-iconwrapper {
  position: absolute;
  top: 0;
  right: 0; }

.modle-views-container {
  position: absolute;
  top: calc(50% - 1px);
  /* width: 100%; */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 98;
  width: 100%;
  height: calc(100% + 1px);
  text-align: center;
  background: #fff;
  display: none; }

.ss-deletes {
  color: #a11b23;
  position: absolute;
  top: 19px;
  right: 10px;
  font-size: 13px;
  /* font-weight: bold; */
  z-index: 99;
  display: none; }

.photos__item.photos__item--main {
  position: relative;
  padding: 0px 10px;
  padding-right: 8px;
  border: 1px solid #e8e8e8; }

@media only screen and (min-width: 769px) {
  .photos-big {
    margin-bottom: 0; } }
.photos-big .slick-arrow:before {
  display: none; }
.photos-big .product-single__photo:not(:first-child) {
  display: none; }
  .photos-big .product-single__photo:not(:first-child).slick-slide {
    display: block; }

.product-single__photo {
  display: block; }

.collection-rightoffer.collection-right {
  width: 100%; }
  .collection-rightoffer.collection-right .product-card__image-wrapper img {
    width: 100%; }

@media (min-width: 1200px) {
  .template-collection .collection-rightoffer.collection-right .product-card {
    min-height: 455px; } }
@media (min-width: 1400px) {
  .template-collection .collection-rightoffer.collection-right .product-card {
    min-height: 470px; } }

/* ks page */
.centerwidths-ra {
  max-width: 1200px;
  margin: 0 auto; }

.ks-page-container {
  color: #222;
  font-family: 'Open Sans'; }
  .ks-page-container video {
    object-fit: fill; }
  .ks-page-container .videoblock_title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    width: 50%;
    margin: 0 auto;
    padding-top: 70px; }
    @media (max-width: 768px) {
      .ks-page-container .videoblock_title {
        font-size: 24px;
        width: 94%;
        padding-top: 30px; } }
  .ks-page-container .videoblock_subtitle {
    text-align: center;
    font-size: 16px;
    padding: 20px 0 40px; }
    @media (max-width: 768px) {
      .ks-page-container .videoblock_subtitle {
        font-size: 14px;
        padding: 10px 0 20px; } }
  .ks-page-container .Testers-say_title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding: 70px 0 60px; }
    @media (max-width: 768px) {
      .ks-page-container .Testers-say_title {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        padding: 20px 0 10px; } }
  .ks-page-container .Testers-say_subtitle {
    position: relative;
    width: 71%;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    line-height: 2; }
    .ks-page-container .Testers-say_subtitle:before {
      content: '“';
      font-size: 30px;
      position: absolute;
      font-size: 80px;
      line-height: 1;
      top: 0;
      left: -8%;
      font-weight: bold; }
      @media (max-width: 768px) {
        .ks-page-container .Testers-say_subtitle:before {
          font-size: 30px;
          left: -20px; } }
    .ks-page-container .Testers-say_subtitle:after {
      content: '”';
      position: absolute;
      font-size: 80px;
      line-height: 1;
      top: 0;
      right: -8%;
      font-weight: bold; }
      @media (max-width: 768px) {
        .ks-page-container .Testers-say_subtitle:after {
          font-size: 30px;
          right: -20px; } }
    @media (max-width: 768px) {
      .ks-page-container .Testers-say_subtitle {
        width: 82%;
        font-size: 14px;
        line-height: 1.5; } }
  .ks-page-container .Testers-say-bottombox {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin: 80px 0; }
    .ks-page-container .Testers-say-bottombox > div {
      flex: 0 1 50%;
      padding: 0 1%; }
      @media (max-width: 768px) {
        .ks-page-container .Testers-say-bottombox > div {
          flex: 0 1 100%; } }
    @media (max-width: 768px) {
      .ks-page-container .Testers-say-bottombox {
        margin: 50px 0;
        padding: 0 10px; } }
  .ks-page-container .Testers-say-bottombox_title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px; }
    @media (max-width: 768px) {
      .ks-page-container .Testers-say-bottombox_title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 5px; } }
  .ks-page-container .Testers-say-bottombox_subtitle {
    font-size: 16px;
    line-height: 1.8; }
    @media (max-width: 768px) {
      .ks-page-container .Testers-say-bottombox_subtitle {
        font-size: 14px;
        margin-bottom: 10px; } }
  .ks-page-container .How-well_title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.1;
    margin: 70px 0; }
    .ks-page-container .How-well_title p {
      margin-bottom: 0; }
    @media (max-width: 768px) {
      .ks-page-container .How-well_title {
        font-size: 24px;
        margin: 30px 0; } }
  .ks-page-container .How-well-topbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .ks-page-container .How-well-topbox > div {
      flex: 0 1 48%; }
      @media (max-width: 768px) {
        .ks-page-container .How-well-topbox > div {
          flex: 0 1 100%;
          margin-bottom: 10px; } }
  .ks-page-container .How-well_title02 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 70px 0 35px; }
    @media (max-width: 768px) {
      .ks-page-container .How-well_title02 {
        margin: 40px 0 15px; } }
  .ks-page-container .How-well_subtitle02 {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 3% 30px; }
    .ks-page-container .How-well_subtitle02 p {
      margin-bottom: 0; }
    @media (max-width: 768px) {
      .ks-page-container .How-well_subtitle02 {
        font-size: 14px; } }
  .ks-page-container .How-well-bottombox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px 0 30px; }
    .ks-page-container .How-well-bottombox > div {
      flex: 0 1 48%; }
      @media (max-width: 768px) {
        .ks-page-container .How-well-bottombox > div {
          flex: 0 1 100%;
          margin-bottom: 10px; } }
  .ks-page-container .videoblock_title02 {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px; }
  .ks-page-container .ks-pagelogotitle {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 100px 0 50px 0; }
    @media (max-width: 768px) {
      .ks-page-container .ks-pagelogotitle {
        font-size: 24px;
        margin: 40px 0 30px 0; } }
  .ks-page-container .ks-pageboxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .ks-page-container .ks-pageboxes > div {
      flex: 0 1 16%;
      text-align: center;
      margin-bottom: 50px; }
      .ks-page-container .ks-pageboxes > div .link_text03 {
        font-size: 18px;
        font-weight: bold;
        width: 73%;
        margin: 0 auto;
        padding-top: 12px; }
        @media (max-width: 768px) {
          .ks-page-container .ks-pageboxes > div .link_text03 {
            font-size: 14px;
            width: 90%;
            padding-top: 8px; } }
      @media (max-width: 768px) {
        .ks-page-container .ks-pageboxes > div {
          flex: 0 1 32%;
          margin-bottom: 30px; }
          .ks-page-container .ks-pageboxes > div img {
            max-width: 70px; } }
  .ks-page-container .ks-pagelogo_title02 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 70px 0; }
    @media (max-width: 768px) {
      .ks-page-container .ks-pagelogo_title02 {
        margin: 30px 0; } }
  .ks-page-container .ks-pagelogo_subtitle {
    padding: 20px 2% 50px;
    line-height: 1.8;
    font-size: 16px; }
    .ks-page-container .ks-pagelogo_subtitle p {
      margin-bottom: 0; }
    @media (max-width: 768px) {
      .ks-page-container .ks-pagelogo_subtitle {
        font-size: 14px; } }
  .ks-page-container .ks-page-imgwithtext-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px; }
    .ks-page-container .ks-page-imgwithtext-item > div {
      flex: 0 1 48%; }
      @media (max-width: 768px) {
        .ks-page-container .ks-page-imgwithtext-item > div {
          flex: 0 1 100%; }
          .ks-page-container .ks-page-imgwithtext-item > div.ks-page-imgwithtext__box {
            order: 2; }
          .ks-page-container .ks-page-imgwithtext-item > div.imgwithtext-imgwrapper {
            order: 1; } }
    .ks-page-container .ks-page-imgwithtext-item .ks-page-imgwithtext__box {
      padding: 0 25px; }
      .ks-page-container .ks-page-imgwithtext-item .ks-page-imgwithtext__box h3, .ks-page-container .ks-page-imgwithtext-item .ks-page-imgwithtext__box .h3 {
        font-size: 18px;
        margin-bottom: 30px; }
        @media (max-width: 768px) {
          .ks-page-container .ks-page-imgwithtext-item .ks-page-imgwithtext__box h3, .ks-page-container .ks-page-imgwithtext-item .ks-page-imgwithtext__box .h3 {
            margin-bottom: 10px;
            margin-top: 20px; } }
      .ks-page-container .ks-page-imgwithtext-item .ks-page-imgwithtext__box .landingpage-imgwithtext__subtext {
        font-size: 16px;
        line-height: 2; }
        @media (max-width: 768px) {
          .ks-page-container .ks-page-imgwithtext-item .ks-page-imgwithtext__box .landingpage-imgwithtext__subtext {
            font-size: 14px; } }
  .ks-page-container .ks-spec_title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 50px 0 30px 0; }
    @media (max-width: 768px) {
      .ks-page-container .ks-spec_title {
        font-size: 24px; } }
  .ks-page-container .ks-spec_bottomtitle {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 80px 0 15px 0; }
    @media (max-width: 768px) {
      .ks-page-container .ks-spec_bottomtitle {
        margin: 40px 0 15px 0;
        font-size: 24px; } }
  .ks-page-container .ks-spec_wrapeprs {
    width: 73%;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .ks-page-container .ks-spec_wrapeprs {
        width: 100%; } }
  .ks-page-container .ks-spec_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 30px;
    margin-bottom: 20px; }
    .ks-page-container .ks-spec_item > span {
      flex: 0 1 50%; }
    @media (max-width: 768px) {
      .ks-page-container .ks-spec_item {
        padding: 0 10px; } }
  .ks-page-container .Transmitter_wrapeprs {
    width: 73%;
    margin: 0px auto 30px; }
    @media (max-width: 768px) {
      .ks-page-container .Transmitter_wrapeprs {
        width: 100%; } }
  .ks-page-container .Transmitter_title {
    font-size: 24px;
    background: #201D1E;
    color: #fff;
    padding: 10px 30px;
    margin-bottom: 20px; }
    @media (max-width: 768px) {
      .ks-page-container .Transmitter_title {
        padding: 10px; } }
  .ks-page-container .ks-Transmitter_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 30px; }
    .ks-page-container .ks-Transmitter_item > span {
      flex: 0 1 50%; }
    @media (max-width: 768px) {
      .ks-page-container .ks-Transmitter_item {
        padding: 0 10px; } }
  .ks-page-container .ks-whatinbox-topbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 50px 0; }
    .ks-page-container .ks-whatinbox-topbox > div {
      flex: 0 1 48%; }
      .ks-page-container .ks-whatinbox-topbox > div.ks-whatinbox-topbox-text {
        padding: 0 30px; }
      @media (max-width: 768px) {
        .ks-page-container .ks-whatinbox-topbox > div {
          flex: 0 1 100%;
          order: 1; }
          .ks-page-container .ks-whatinbox-topbox > div.ks-whatinbox-topbox-text {
            order: 2; } }
  .ks-page-container .ks-whatinbox-topbox-text-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 35px; }
    @media (max-width: 768px) {
      .ks-page-container .ks-whatinbox-topbox-text-title {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 20px; } }
  .ks-page-container .ks-whatinbox-topbox-text-subtitle {
    font-size: 16px; }
  .ks-page-container .ks-whatinbox-title02 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0; }
    @media (max-width: 768px) {
      .ks-page-container .ks-whatinbox-title02 {
        font-size: 24px; } }
  .ks-page-container .ks-whatinbox-title03 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 30px 0 20px; }
    @media (max-width: 768px) {
      .ks-page-container .ks-whatinbox-title03 {
        font-size: 24px;
        margin: 10px 0 20px; } }
  .ks-page-container .ks-whatinbox-subtitle03 {
    width: 80%;
    margin: 30px auto 80px;
    font-size: 15px;
    line-height: 1.8; }
    .ks-page-container .ks-whatinbox-subtitle03 p {
      margin-bottom: 0; }
    @media (max-width: 768px) {
      .ks-page-container .ks-whatinbox-subtitle03 {
        width: 90%;
        margin: 30px auto;
        font-size: 14px; } }
  .ks-page-container .ks-Riskscontainer {
    font-size: 16px; }
    @media (max-width: 768px) {
      .ks-page-container .ks-Riskscontainer {
        font-size: 15px; } }
  .ks-page-container .topRisks-box {
    background: #FAFAFA;
    padding: 70px 0; }
    @media (max-width: 768px) {
      .ks-page-container .topRisks-box {
        padding: 40px 0; } }
  .ks-page-container .pecentboxs-ra {
    width: 80%;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .ks-page-container .pecentboxs-ra {
        width: 90%; } }
  .ks-page-container .topRisks-box-subtitle {
    line-height: 1.8; }
    .ks-page-container .topRisks-box-subtitle p {
      margin-bottom: 0; }
  .ks-page-container .topRisks-box-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 30px; }
    @media (max-width: 768px) {
      .ks-page-container .topRisks-box-title {
        font-size: 24px;
        margin: 0px 0 20px; } }
  .ks-page-container .lead-box-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 60px 0 30px; }
    @media (max-width: 768px) {
      .ks-page-container .lead-box-title {
        font-size: 24px;
        margin: 20px 0; } }
  .ks-page-container .lead-box-subtitle {
    line-height: 1.8; }
    .ks-page-container .lead-box-subtitle p {
      margin: 0 0 30px; }
      @media (max-width: 768px) {
        .ks-page-container .lead-box-subtitle p {
          margin: 0 0 20px; } }
  .ks-page-container .lead-box-btn {
    display: inline-block;
    color: #fff;
    background: #A21A23;
    padding: 12px 25px;
    font-weight: bold;
    transition: .3s; }
    .ks-page-container .lead-box-btn:hover {
      background-color: #ac1c25; }
  .ks-page-container .line_ra_ks {
    width: 100%;
    background: #c7c7c7;
    height: 1px;
    margin-bottom: 15px; }
  .ks-page-container .ks-page-Specifications-containers {
    padding-bottom: 20px; }

/* christmas */
@media (max-width: 768px) {
  #christmas_footer_img {
    display: none !important; } }
#christmas_footer_img {
  position: absolute; }

#christmas_footer_img {
  right: 0%;
  top: 130px;
  width: 380px;
  animation: csman 16s ease-in-out 0s infinite;
  -moz-animation: csman 16s ease-in-out 0s infinite;
  -webkit-animation: csman 16s ease-in-out 0s infinite;
  -o-animation: csman 16s ease-in-out 0s infinite; }

.site-header__logo img {
  /* animation: cslogo 10s ease-in-out 0s infinite ;
  -moz-animation: cslogo 10s ease-in-out 0s infinite ;
  -webkit-animation: cslogo 10s ease-in-out 0s infinite ;
  -o-animation: cslogo 10s ease-in-out 0s infinite ; */ }

@keyframes csman {
  0% {
    right: 0%;
    top: 130px;
    z-index: 0; }

  97% {
    right: 100%;
    top: 284px;
    z-index: 0; }

  98% {
    right: 100%;
    top: 284px;
    z-index: -2; }

  99% {
    right: 0%;
    top: 130px;
    z-index: -2; }

  100% {
    right: 0%;
    top: 130px;
    z-index: 0; } }

/* @keyframes cslogo
{
0%   {      top: -3.6vw;
    left: -11px;
}

  50%  {       top: -3.3vw;
    left: -75px;}
100% {  top: -3.6vw;
    left: -11px;}
} */
@keyframes cslogo {
  0% {
    top: -45px;
    left: -11px; }

  50% {
    top: -45px;
    left: -75px; }

  100% {
    top: -45px;
    left: -11px; } }

@media only screen and (min-width: 769px) {
  .product-page-sticky {
    position: sticky;
    top: 0px; }

  .product-page-visible {
    overflow: visible; } }
.img_lianxus {
  margin-bottom: 30px; }

.Testers-say-bottombox_subtitle p {
  margin-bottom: 0; }

.ks-page-container .ks-spec_wrapeprs, .ks-page-container .Transmitter_wrapeprs, .ks-page-container .Transmitter_wrapeprs {
  max-width: 680px; }

/* ----------------- product page ---------------------*/
.product-single__thumbnail {
  padding: 0px;
  margin: 10px 8px 0 0; }

.product-single__thumbnail:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #e8e8e8; }

.product-stock-status {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0px;
  font-size: 16px; }
  .product-stock-status img {
    vertical-align: middle;
    margin-right: 10px; }
  .product-stock-status .has-stock-title {
    color: #a11b23;
    font-weight: bold;
    margin-right: 10px; }
  .product-stock-status .has-stock {
    color: #a11b23;
    text-decoration: underline; }
  .product-stock-status .us-stock {
    margin-right: 30px; }
  .product-stock-status .no-stock {
    color: #808080;
    text-decoration: underline; }

.searchanise-recommendations {
  height: 460px;
  background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/files/loading_480-min.gif?v=10667452722688440275) center center no-repeat;
  background-size: contain; }

.snize-recommendation {
  background: #fff; }

.display-none {
  display: none; }

@media only screen and (max-width: 728px) {
  .product-stock-status {
    font-size: 16px; }
    .product-stock-status img {
      margin-right: 5px; }
    .product-stock-status .has-stock-title {
      margin-rught: 5px; }
    .product-stock-status .us-stock {
      margin-right: 10px; }

  .show-the-mobile-banner {
    display: block;
    margin-bottom: 20px; } }
@media only screen and (min-width: 729px) {
  .show-the-pc-banner {
    display: block;
    margin-bottom: 20px; } }
@media only screen and (max-width: 375px) {
  .product-stock-status {
    font-size: 16px; } }
.product-form__item--submit {
  max-width: 300px; }
  .product-form__item--submit .btn--full {
    max-width: 300px; }

.product-form__item--quantity {
  flex: 0 0 150px; }
  .product-form__item--quantity .js-qty__input {
    padding-left: 20px;
    padding-right: 20px; }
  .product-form__item--quantity .js-qty {
    padding: 0px 33px; }
  .product-form__item--quantity .js-qty__adjust {
    background: #f4f4f4; }
  .product-form__item--quantity .js-qty__adjust--minus {
    border: unset; }
  .product-form__item--quantity .js-qty__adjust--plus {
    border: unset; }

@media screen and (min-width: 1600px) {
  .bg_c4 {
    padding-bottom: 30px; } }
/*------------------------------ product pages Option ------------------------*/
@media screen and (min-width: 1600px) {
  .bg_c4 {
    padding-bottom: 20px; } }
.product-form {
  align-items: flex-start; }

.product-form__item--product-imgwrapper {
  display: inline-block !important; }
  .product-form__item--product-imgwrapper img {
    border: 1px solid #808080; }
  .product-form__item--product-imgwrapper.actived img {
    border: 1px solid #a11b23; }

.product-form__item--color-wrapper {
  display: inline-block !important;
  margin-left: 10px;
  border-radius: 6px;
  border: 2px solid transparent; }
  .product-form__item--color-wrapper .color-item {
    width: 27px;
    height: 27px;
    border-radius: 4px;
    opacity: 0.8;
    padding: 1px; }
  .product-form__item--color-wrapper.actived {
    border: 2px solid #a11b23; }
  .product-form__item--color-wrapper img.color-img-x {
    max-width: 25px;
    margin: auto; }

.product-form__item--power {
  max-width: 180px; }

.product-form__item--power-wrapper {
  display: inline-block !important;
  margin-left: 10px;
  /*   border: 2px solid transparent; */ }
  .product-form__item--power-wrapper .opacity {
    opacity: 0.3; }
  .product-form__item--power-wrapper .img-item {
    width: 35px;
    height: 35px; }
  .product-form__item--power-wrapper .actived {
    display: none; }
  .product-form__item--power-wrapper .normal {
    display: block; }
  .product-form__item--power-wrapper.actived {
    /*     border: 2px solid #a11b23; */ }
    .product-form__item--power-wrapper.actived .actived {
      display: block; }
    .product-form__item--power-wrapper.actived .normal {
      display: none; }

#klaviyo-product-bottom-position {
  padding: 0px 5px;
  max-width: 445px;
  flex: 1 0 100%; }
  #klaviyo-product-bottom-position .klaviyo-bis-trigger {
    white-space: unset !important; }

@media screen and (min-width: 1137px) {
  #klaviyo-product-bottom-position {
    padding: 0px;
    width: 150px;
    flex: 1 0 150px; }
    #klaviyo-product-bottom-position .klaviyo-bis-trigger {
      margin-bottom: 10px !important;
      white-space: unset !important;
      padding: 5px 10px 0px !important;
      letter-spacing: 1px; } }
@media screen and (max-width: 375px) {
  .product-form__item--submit {
    max-width: 100%; }
    .product-form__item--submit .btn--full {
      max-width: 100%; } }
.cbb-frequently-bought-container {
  max-width: 100% !important;
  padding: 0 0 30px 0 !important; }

.product-frequently-bought-location {
  margin-bottom: 0; }

.zoomContainer {
  z-index: 20 !important; }
